-- phpMyAdmin SQL Dump
-- version 3.5.8.1
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Jan 25, 2017 at 02:28 PM
-- Server version: 5.5.52-cll-lve
-- PHP Version: 5.3.29

SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";


/*!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 */;

--
-- Database: `wordpress_5`
--
CREATE DATABASE `wordpress_5` DEFAULT CHARACTER SET utf8 COLLATE utf8_general_ci;
USE `wordpress_5`;

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_commentmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `comment_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `comment_id` (`comment_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

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

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

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_answer`
--

CREATE TABLE IF NOT EXISTS `wp_esp_answer` (
  `ANS_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `REG_ID` int(10) unsigned NOT NULL,
  `QST_ID` int(10) unsigned NOT NULL,
  `ANS_value` text NOT NULL,
  PRIMARY KEY (`ANS_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;

--
-- Dumping data for table `wp_esp_answer`
--

INSERT INTO `wp_esp_answer` (`ANS_ID`, `REG_ID`, `QST_ID`, `ANS_value`) VALUES
(1, 0, 1, ''),
(2, 0, 2, ''),
(3, 0, 3, ''),
(4, 0, 4, ''),
(5, 0, 5, ''),
(6, 0, 6, ''),
(7, 0, 7, ''),
(8, 0, 8, ''),
(9, 0, 9, ''),
(10, 0, 10, '');

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_attendee_meta`
--

CREATE TABLE IF NOT EXISTS `wp_esp_attendee_meta` (
  `ATTM_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `ATT_ID` bigint(20) unsigned NOT NULL,
  `ATT_fname` varchar(45) NOT NULL,
  `ATT_lname` varchar(45) NOT NULL,
  `ATT_address` varchar(255) DEFAULT NULL,
  `ATT_address2` varchar(255) DEFAULT NULL,
  `ATT_city` varchar(45) DEFAULT NULL,
  `STA_ID` int(10) DEFAULT NULL,
  `CNT_ISO` varchar(45) DEFAULT NULL,
  `ATT_zip` varchar(12) DEFAULT NULL,
  `ATT_email` varchar(255) NOT NULL,
  `ATT_phone` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`ATTM_ID`),
  KEY `ATT_fname` (`ATT_fname`),
  KEY `ATT_lname` (`ATT_lname`),
  KEY `ATT_email` (`ATT_email`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `wp_esp_attendee_meta`
--

INSERT INTO `wp_esp_attendee_meta` (`ATTM_ID`, `ATT_ID`, `ATT_fname`, `ATT_lname`, `ATT_address`, `ATT_address2`, `ATT_city`, `STA_ID`, `CNT_ISO`, `ATT_zip`, `ATT_email`, `ATT_phone`) VALUES
(1, 3393, 'Pat', 'Rat', '', '', '', 0, '', '', 'patcharee@asiacentre.co.th', '');

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_checkin`
--

CREATE TABLE IF NOT EXISTS `wp_esp_checkin` (
  `CHK_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `REG_ID` int(10) unsigned NOT NULL,
  `DTT_ID` int(10) unsigned NOT NULL,
  `CHK_in` tinyint(1) unsigned NOT NULL DEFAULT '1',
  `CHK_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  PRIMARY KEY (`CHK_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_country`
--

CREATE TABLE IF NOT EXISTS `wp_esp_country` (
  `CNT_ISO` varchar(2) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `CNT_ISO3` varchar(3) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `RGN_ID` tinyint(3) unsigned DEFAULT NULL,
  `CNT_name` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `CNT_cur_code` varchar(6) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT 'USD',
  `CNT_cur_single` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT 'dollar',
  `CNT_cur_plural` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT 'dollars',
  `CNT_cur_sign` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '$',
  `CNT_cur_sign_b4` tinyint(1) DEFAULT '1',
  `CNT_cur_dec_plc` tinyint(3) unsigned NOT NULL DEFAULT '2',
  `CNT_cur_dec_mrk` varchar(1) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '.',
  `CNT_cur_thsnds` varchar(1) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT ',',
  `CNT_tel_code` varchar(12) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `CNT_is_EU` tinyint(1) DEFAULT '0',
  `CNT_active` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`CNT_ISO`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `wp_esp_country`
--

INSERT INTO `wp_esp_country` (`CNT_ISO`, `CNT_ISO3`, `RGN_ID`, `CNT_name`, `CNT_cur_code`, `CNT_cur_single`, `CNT_cur_plural`, `CNT_cur_sign`, `CNT_cur_sign_b4`, `CNT_cur_dec_plc`, `CNT_cur_dec_mrk`, `CNT_cur_thsnds`, `CNT_tel_code`, `CNT_is_EU`, `CNT_active`) VALUES
('AD', 'AND', 0, 'Andorra', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+376', 0, 0),
('AE', 'ARE', 0, 'United Arab Emirates', 'AED', 'Dirham', 'Dirhams', 'د.إ', 1, 2, '.', ',', '+971', 0, 0),
('AF', 'AFG', 0, 'Afghanistan', 'AFN', 'Afghani', 'Afghanis', '؋', 1, 2, '.', ',', '+93', 0, 0),
('AG', 'ATG', 0, 'Antigua and Barbuda', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-268', 0, 0),
('AI', 'AIA', 0, 'Anguilla', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-264', 0, 0),
('AL', 'ALB', 0, 'Albania', 'ALL', 'Lek', 'Leks', 'Lek', 1, 2, '.', ',', '+355', 0, 0),
('AM', 'ARM', 0, 'Armenia', 'AMD', 'Dram', 'Dram', 'Դրամ', 1, 2, '.', ',', '+374', 0, 0),
('AN', 'ANT', 0, 'Netherlands Antilles', 'ANG', 'Guilder', 'Guilders', 'ƒ', 1, 2, '.', ',', '+599', 0, 0),
('AO', 'AGO', 0, 'Angola', 'AOA', 'Kwanza', 'Kwanzas', '', 1, 2, '.', ',', '+244', 0, 0),
('AR', 'ARG', 0, 'Argentina', 'ARS', 'Peso', 'Pesos', '$', 1, 2, '.', ',', '+54', 0, 0),
('AS', 'ASM', 0, 'American Samoa', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-684', 0, 0),
('AT', 'AUT', 0, 'Austria', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+43', 1, 0),
('AU', 'AUS', 0, 'Australia', 'AUD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+61', 0, 0),
('AW', 'ABW', 0, 'Aruba', 'AWG', 'Guilder', 'Guilders', 'ƒ', 1, 2, '.', ',', '+297', 0, 0),
('AZ', 'AZE', 0, 'Azerbaijan', 'AMD', 'Dram', 'Dram', 'Դրամ', 1, 2, '.', ',', '+374-97', 0, 0),
('BA', 'BIH', 0, 'Bosnia and Herzegovina', 'BAM', 'Marka', 'Markas', 'KM', 1, 2, '.', ',', '+387', 0, 0),
('BB', 'BRB', 0, 'Barbados', 'BBD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-246', 0, 0),
('BD', 'BGD', 0, 'Bangladesh', 'BDT', 'Taka', 'Takas', '৳', 1, 2, '.', ',', '+880', 0, 0),
('BE', 'BEL', 0, 'Belgium', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+32', 1, 0),
('BF', 'BFA', 0, 'Burkina Faso', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+226', 0, 0),
('BG', 'BGR', 0, 'Bulgaria', 'BGN', 'Lev', 'Levs', 'лв', 1, 2, '.', ',', '+359', 1, 0),
('BH', 'BHR', 0, 'Bahrain', 'BHD', 'Dinar', 'Dinars', '', 1, 3, '.', ',', '+973', 0, 0),
('BI', 'BDI', 0, 'Burundi', 'BIF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+257', 0, 0),
('BJ', 'BEN', 0, 'Benin', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+229', 0, 0),
('BM', 'BMU', 0, 'Bermuda', 'BMD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-441', 0, 0),
('BN', 'BRN', 0, 'Brunei Darussalam', 'BND', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+673', 0, 0),
('BO', 'BOL', 0, 'Bolivia', 'BOB', 'Boliviano', 'Bolivianos', '$b', 1, 2, '.', ',', '+591', 0, 0),
('BR', 'BRA', 0, 'Brazil', 'BRL', 'Real', 'Reals', 'R$', 1, 2, '.', ',', '+55', 0, 0),
('BS', 'BHS', 0, 'Bahamas', 'BSD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-242', 0, 0),
('BT', 'BTN', 0, 'Bhutan', 'BTN', 'Ngultrum', 'Ngultrums', '', 1, 2, '.', ',', '+975', 0, 0),
('BW', 'BWA', 0, 'Botswana', 'BWP', 'Pula', 'Pulas', 'P', 1, 2, '.', ',', '+267', 0, 0),
('BY', 'BLR', 0, 'Belarus', 'BYR', 'Ruble', 'Rubles', 'p.', 1, 0, '.', ',', '+375', 0, 0),
('BZ', 'BLZ', 0, 'Belize', 'BZD', 'Dollar', 'Dollars', 'BZ$', 1, 2, '.', ',', '+501', 0, 0),
('CA', 'CAN', 0, 'Canada', 'CAD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1', 0, 1),
('CD', 'COD', 0, 'Congo, the Democratic Republic of the', 'CDF', 'Franc', 'Francs', '₣', 1, 2, '.', ',', '+243', 0, 0),
('CF', 'CAF', 0, 'Central African Republic', 'XAF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+236', 0, 0),
('CG', 'COG', 0, 'Congo', 'XAF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+242', 0, 0),
('CH', 'CHE', 0, 'Switzerland', 'CHF', 'Franc', 'Francs', '₣', 1, 2, '.', ',', '+41', 0, 0),
('CI', 'CIV', 0, 'Cote D''Ivoire', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+225', 0, 0),
('CK', 'COK', 0, 'Cook Islands', 'NZD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+682', 0, 0),
('CL', 'CHL', 0, 'Chile', 'CLP', 'Peso', 'Pesos', '$', 1, 0, '.', ',', '+56', 0, 0),
('CM', 'CMR', 0, 'Cameroon', 'XAF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+237', 0, 0),
('CN', 'CHN', 0, 'China', 'CNY', 'Yuan Renminbi', 'Yuan Renminbis', '¥', 1, 2, '.', ',', '+86', 0, 0),
('CO', 'COL', 0, 'Colombia', 'COP', 'Peso', 'Pesos', '$', 1, 2, '.', ',', '+57', 0, 0),
('CR', 'CRI', 0, 'Costa Rica', 'CRC', 'Colon', 'Colons', '₡', 1, 2, '.', ',', '+506', 0, 0),
('CU', 'CUB', 0, 'Cuba', 'CUP', 'Peso', 'Pesos', '₱', 1, 2, '.', ',', '+53', 0, 0),
('CV', 'CPV', 0, 'Cape Verde', 'CVE', 'Escudo', 'Escudos', '', 1, 2, '.', ',', '+238', 0, 0),
('CY', 'CYP', 0, 'Cyprus', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+357', 1, 0),
('CZ', 'CZE', 0, 'Czech Republic', 'CZK', 'Koruna', 'Korunas', 'Kč', 1, 2, '.', ',', '+420', 1, 0),
('DE', 'DEU', 0, 'Germany', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+49', 1, 0),
('DJ', 'DJI', 0, 'Djibouti', 'DJF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+253', 0, 0),
('DK', 'DNK', 0, 'Denmark', 'DKK', 'Krone', 'Kroner', 'kr', 1, 2, '.', ',', '+45', 1, 0),
('DM', 'DMA', 0, 'Dominica', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-767', 0, 0),
('DO', 'DOM', 0, 'Dominican Republic', 'DOP', 'Peso', 'Pesos', 'RD$', 1, 2, '.', ',', '+849', 0, 0),
('DZ', 'DZA', 0, 'Algeria', 'DZD', 'Dinar', 'Dinars', '', 1, 3, '.', ',', '+213', 0, 0),
('EC', 'ECU', 0, 'Ecuador', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+593', 0, 0),
('EE', 'EST', 0, 'Estonia', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+372', 1, 0),
('EG', 'EGY', 0, 'Egypt', 'EGP', 'Pound', 'Pounds', '£', 1, 2, '.', ',', '+20', 0, 0),
('EH', 'ESH', 0, 'Western Sahara', 'MAD', 'Dirham', 'Dirhams', '', 1, 2, '.', ',', '+212', 0, 0),
('ER', 'ERI', 0, 'Eritrea', 'ERN', 'Nakfa', 'Nakfas', '', 1, 2, '.', ',', '+291', 0, 0),
('ES', 'ESP', 0, 'Spain', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+34', 1, 0),
('ET', 'ETH', 0, 'Ethiopia', 'ETB', 'Birr', 'Birrs', '', 1, 2, '.', ',', '+251', 0, 0),
('FI', 'FIN', 0, 'Finland', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+358', 1, 0),
('FJ', 'FJI', 0, 'Fiji', 'FJD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+679', 0, 0),
('FK', 'FLK', 0, 'Falkland Islands (Malvinas)', 'FKP', 'Pound', 'Pounds', '£', 1, 2, '.', ',', '+500', 0, 0),
('FM', 'FSM', 0, 'Micronesia, Federated States of', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+691', 0, 0),
('FO', 'FRO', 0, 'Faroe Islands', 'DKK', 'Krone', 'Krones', 'kr', 1, 2, '.', ',', '+298', 0, 0),
('FR', 'FRA', 0, 'France', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+33', 1, 0),
('GA', 'GAB', 0, 'Gabon', 'XAF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+241', 0, 0),
('GB', 'GBR', 0, 'United Kingdom', 'GBP', 'Pound', 'Pounds', '£', 1, 2, '.', ',', '+44', 1, 0),
('GD', 'GRD', 0, 'Grenada', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-473', 0, 0),
('GE', 'GEO', 0, 'Georgia', 'RUB', 'Ruble', 'Rubles', 'руб', 1, 2, '.', ',', '+995', 0, 0),
('GF', 'GUF', 0, 'French Guiana', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+594', 0, 0),
('GH', 'GHA', 0, 'Ghana', 'GHS', 'Cedi', 'Cedis', '', 1, 2, '.', ',', '+233', 0, 0),
('GI', 'GIB', 0, 'Gibraltar', 'GIP', 'Pound', 'Pounds', '£', 1, 2, '.', ',', '+350', 0, 0),
('GL', 'GRL', 0, 'Greenland', 'DKK', 'Krone', 'Krones', 'kr', 1, 2, '.', ',', '+299', 0, 0),
('GM', 'GMB', 0, 'Gambia', 'GMD', 'Dalasi', 'Dalasis', '', 1, 2, '.', ',', '+220', 0, 0),
('GN', 'GIN', 0, 'Guinea', 'GNF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+224', 0, 0),
('GP', 'GLP', 0, 'Guadeloupe', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+590', 0, 0),
('GQ', 'GNQ', 0, 'Equatorial Guinea', 'XAF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+240', 0, 0),
('GR', 'GRC', 0, 'Greece', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+30', 1, 0),
('GT', 'GTM', 0, 'Guatemala', 'GTQ', 'Quetzal', 'Quetzals', 'Q', 1, 2, '.', ',', '+502', 0, 0),
('GU', 'GUM', 0, 'Guam', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-671', 0, 0),
('GW', 'GNB', 0, 'Guinea-Bissau', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+245', 0, 0),
('GY', 'GUY', 0, 'Guyana', 'GYD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+592', 0, 0),
('HK', 'HKG', 0, 'Hong Kong', 'HKD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+852', 0, 0),
('HN', 'HND', 0, 'Honduras', 'HNL', 'Lempira', 'Lempiras', 'L', 1, 2, '.', ',', '+504', 0, 0),
('HR', 'HRV', 0, 'Croatia', 'HRK', 'Kuna', 'Kunas', 'kn', 1, 2, '.', ',', '+385', 0, 0),
('HT', 'HTI', 0, 'Haiti', 'HTG', 'Gourde', 'Gourdes', '', 1, 2, '.', ',', '+509', 0, 0),
('HU', 'HUN', 0, 'Hungary', 'HUF', 'Forint', 'Forints', 'Ft', 1, 2, '.', ',', '+36', 1, 0),
('ID', 'IDN', 0, 'Indonesia', 'IDR', 'Rupiah', 'Rupiahs', 'Rp', 1, 2, '.', ',', '+62', 0, 0),
('IE', 'IRL', 0, 'Ireland', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+353', 1, 0),
('IL', 'ISR', 0, 'Israel', 'ILS', 'Shekel', 'Shekels', '₪', 1, 2, '.', ',', '+972', 0, 0),
('IN', 'IND', 0, 'India', 'INR', 'Rupee', 'Rupees', '$', 1, 2, '.', ',', '+91', 0, 0),
('IQ', 'IRQ', 0, 'Iraq', 'IQD', 'Dinar', 'Dinars', 'د.ع', 1, 3, '.', ',', '+964', 0, 0),
('IR', 'IRN', 0, 'Iran, Islamic Republic of', 'IRR', 'Rial', 'Rials', '﷼', 1, 2, '.', ',', '+98', 0, 0),
('IS', 'ISL', 0, 'Iceland', 'ISK', 'Króna', 'krónur', 'kr', 1, 0, '.', ',', '+354', 0, 0),
('IT', 'ITA', 0, 'Italy', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+39', 1, 0),
('JM', 'JAM', 0, 'Jamaica', 'JMD', 'Dollar', 'Dollars', 'J$', 1, 2, '.', ',', '+1-876', 0, 0),
('JO', 'JOR', 0, 'Jordan', 'JOD', 'Dinar', 'Dinars', '', 1, 3, '.', ',', '+962', 0, 0),
('JP', 'JPN', 0, 'Japan', 'JPY', 'Yen', 'Yens', '¥', 1, 0, '.', ',', '+81', 0, 0),
('KE', 'KEN', 0, 'Kenya', 'KES', 'Shilling', 'Shillings', 'S', 1, 2, '.', ',', '+254', 0, 0),
('KG', 'KGZ', 0, 'Kyrgyzstan', 'KGS', 'Som', 'Soms', 'лв', 1, 2, '.', ',', '+996', 0, 0),
('KH', 'KHM', 0, 'Cambodia', 'KHR', 'Riels', 'Rielss', '៛', 1, 2, '.', ',', '+855', 0, 0),
('KI', 'KIR', 0, 'Kiribati', 'AUD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+686', 0, 0),
('KM', 'COM', 0, 'Comoros', 'KMF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+269', 0, 0),
('KN', 'KNA', 0, 'Saint Kitts and Nevis', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-869', 0, 0),
('KP', 'PRK', 0, 'Korea, Democratic People''s Republic of', 'KPW', 'Won', 'Wons', '₩', 1, 2, '.', ',', '+850', 0, 0),
('KR', 'KOR', 0, 'Korea, Republic of', 'KRW', 'Won', 'Wons', '₩', 1, 0, '.', ',', '+82', 0, 0),
('KW', 'KWT', 0, 'Kuwait', 'KWD', 'Dinar', 'Dinars', '', 1, 3, '.', ',', '+965', 0, 0),
('KY', 'CYM', 0, 'Cayman Islands', 'KYD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-345', 0, 0),
('KZ', 'KAZ', 0, 'Kazakhstan', 'KZT', 'Tenge', 'Tenges', 'лв', 1, 2, '.', ',', '+7', 0, 0),
('LA', 'LAO', 0, 'Lao People''s Democratic Republic', 'LAK', 'Kip', 'Kips', '₭', 1, 2, '.', ',', '+856', 0, 0),
('LB', 'LBN', 0, 'Lebanon', 'LBP', 'Pound', 'Pounds', '£', 1, 2, '.', ',', '+961', 0, 0),
('LC', 'LCA', 0, 'Saint Lucia', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-758', 0, 0),
('LI', 'LIE', 0, 'Liechtenstein', 'CHF', 'Franc', 'Francs', '₣', 1, 2, '.', ',', '+423', 0, 0),
('LK', 'LKA', 0, 'Sri Lanka', 'LKR', 'Rupee', 'Rupees', '₨', 1, 2, '.', ',', '+94', 0, 0),
('LR', 'LBR', 0, 'Liberia', 'LRD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+231', 0, 0),
('LS', 'LSO', 0, 'Lesotho', 'LSL', 'Loti', 'Lotis', '', 1, 2, '.', ',', '+266', 0, 0),
('LT', 'LTU', 0, 'Lithuania', 'LTL', 'Litas', 'Litass', 'Lt', 1, 2, '.', ',', '+370', 1, 0),
('LU', 'LUX', 0, 'Luxembourg', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+352', 1, 0),
('LV', 'LVA', 0, 'Latvia', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+371', 1, 0),
('LY', 'LBY', 0, 'Libyan Arab Jamahiriya', 'LYD', 'Dinar', 'Dinars', '', 1, 3, '.', ',', '+218', 0, 0),
('MA', 'MAR', 0, 'Morocco', 'MAD', 'Dirham', 'Dirhams', '', 1, 2, '.', ',', '+212', 0, 0),
('MC', 'MCO', 0, 'Monaco', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+377', 0, 0),
('MD', 'MDA', 0, 'Moldova, Republic of', 'MDL', 'Leu', 'Leus', '', 1, 2, '.', ',', '+373', 0, 0),
('MG', 'MDG', 0, 'Madagascar', 'MGA', 'Ariary', 'Ariarys', '', 1, 2, '.', ',', '+261', 0, 0),
('MH', 'MHL', 0, 'Marshall Islands', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+692', 0, 0),
('MK', 'MKD', 0, 'Macedonia, the Former Yugoslav Republic of', 'MKD', 'Denar', 'Denars', 'ден', 1, 2, '.', ',', '+389', 0, 0),
('ML', 'MLI', 0, 'Mali', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+223', 0, 0),
('MM', 'MMR', 0, 'Myanmar', 'MMK', 'Kyat', 'Kyats', '', 1, 2, '.', ',', '+95', 0, 0),
('MN', 'MNG', 0, 'Mongolia', 'MNT', 'Tugrik', 'Tugriks', '₮', 1, 2, '.', ',', '+976', 0, 0),
('MO', 'MAC', 0, 'Macao', 'MOP', 'Pataca', 'Patacas', '', 1, 2, '.', ',', '+853', 0, 0),
('MP', 'MNP', 0, 'Northern Mariana Islands', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-670', 0, 0),
('MQ', 'MTQ', 0, 'Martinique', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+596', 0, 0),
('MR', 'MRT', 0, 'Mauritania', 'MRO', 'Ouguiya', 'Ouguiyas', '', 1, 2, '.', ',', '+222', 0, 0),
('MS', 'MSR', 0, 'Montserrat', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-664', 0, 0),
('MT', 'MLT', 0, 'Malta', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+356', 1, 0),
('MU', 'MUS', 0, 'Mauritius', 'MUR', 'Rupee', 'Rupees', '₨', 1, 2, '.', ',', '+230', 0, 0),
('MV', 'MDV', 0, 'Maldives', 'MVR', 'Rufiyaa', 'Rufiyaas', '', 1, 2, '.', ',', '+960', 0, 0),
('MW', 'MWI', 0, 'Malawi', 'MWK', 'Kwacha', 'Kwachas', '', 1, 2, '.', ',', '+265', 0, 0),
('MX', 'MEX', 0, 'Mexico', 'MXN', 'Peso', 'Pesos', '$', 1, 2, '.', ',', '+52', 0, 0),
('MY', 'MYS', 0, 'Malaysia', 'MYR', 'Ringgit', 'Ringgits', 'RM', 1, 2, '.', ',', '+60', 0, 0),
('MZ', 'MOZ', 0, 'Mozambique', 'MZM', 'Meticail', 'Meticails', '', 1, 2, '.', ',', '+258', 0, 0),
('NA', 'NAM', 0, 'Namibia', 'NAD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+264', 0, 0),
('NC', 'NCL', 0, 'New Caledonia', 'XPF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+687', 0, 0),
('NE', 'NER', 0, 'Niger', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+227', 0, 0),
('NF', 'NFK', 0, 'Norfolk Island', 'AUD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+672', 0, 0),
('NG', 'NGA', 0, 'Nigeria', 'NGN', 'Naira', 'Nairas', '₦', 1, 2, '.', ',', '+234', 0, 0),
('NI', 'NIC', 0, 'Nicaragua', 'NIO', 'Cordoba', 'Cordobas', 'C$', 1, 2, '.', ',', '+505', 0, 0),
('NL', 'NLD', 0, 'Netherlands', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+31', 1, 0),
('NO', 'NOR', 0, 'Norway', 'NOK', 'Krone', 'Krones', 'kr', 1, 2, '.', ',', '+47', 0, 0),
('NP', 'NPL', 0, 'Nepal', 'NPR', 'Rupee', 'Rupees', '₨', 1, 2, '.', ',', '+977', 0, 0),
('NR', 'NRU', 0, 'Nauru', 'AUD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+674', 0, 0),
('NU', 'NIU', 0, 'Niue', 'NZD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+683', 0, 0),
('NZ', 'NZL', 0, 'New Zealand', 'NZD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+64', 0, 0),
('OM', 'OMN', 0, 'Oman', 'OMR', 'Rial', 'Rials', '﷼', 1, 3, '.', ',', '+968', 0, 0),
('PA', 'PAN', 0, 'Panama', 'PAB', 'Balboa', 'Balboas', 'B/.', 1, 2, '.', ',', '+507', 0, 0),
('PE', 'PER', 0, 'Peru', 'PEN', 'Sol', 'Sols', 'S/.', 1, 2, '.', ',', '+51', 0, 0),
('PF', 'PYF', 0, 'French Polynesia', 'XPF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+689', 0, 0),
('PG', 'PNG', 0, 'Papua New Guinea', 'PGK', 'Kina', 'Kinas', '', 1, 2, '.', ',', '+675', 0, 0),
('PH', 'PHL', 0, 'Philippines', 'PHP', 'Peso', 'Pesos', '₱', 1, 2, '.', ',', '+63', 0, 0),
('PK', 'PAK', 0, 'Pakistan', 'PKR', 'Rupee', 'Rupees', '₨', 1, 2, '.', ',', '+92', 0, 0),
('PL', 'POL', 0, 'Poland', 'PLN', 'Zloty', 'Zlotys', 'zł', 1, 2, '.', ',', '+48', 1, 0),
('PM', 'SPM', 0, 'Saint Pierre and Miquelon', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+508', 0, 0),
('PN', 'PCN', 0, 'Pitcairn', 'NZD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '', 0, 0),
('PR', 'PRI', 0, 'Puerto Rico', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1', 0, 0),
('PT', 'PRT', 0, 'Portugal', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+351', 1, 0),
('PW', 'PLW', 0, 'Palau', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+680', 0, 0),
('PY', 'PRY', 0, 'Paraguay', 'PYG', 'Guarani', 'Guaranis', 'Gs', 1, 0, '.', ',', '+595', 0, 0),
('QA', 'QAT', 0, 'Qatar', 'QAR', 'Rial', 'Rials', '﷼', 1, 2, '.', ',', '+974', 0, 0),
('RE', 'REU', 0, 'Reunion', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+262', 0, 0),
('RO', 'ROM', 0, 'Romania', 'RON', 'Leu', 'Leus', 'lei', 1, 2, '.', ',', '+40', 1, 0),
('RU', 'RUS', 0, 'Russian Federation', 'RUB', 'Ruble', 'Rubles', 'руб', 1, 2, '.', ',', '+7', 0, 0),
('RW', 'RWA', 0, 'Rwanda', 'RWF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+250', 0, 0),
('SA', 'SAU', 0, 'Saudi Arabia', 'SAR', 'Rial', 'Rials', '﷼', 1, 2, '.', ',', '+966', 0, 0),
('SB', 'SLB', 0, 'Solomon Islands', 'SBD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+677', 0, 0),
('SC', 'SYC', 0, 'Seychelles', 'SCR', 'Rupee', 'Rupees', '₨', 1, 2, '.', ',', '+248', 0, 0),
('SD', 'SDN', 0, 'Sudan', 'SDG', 'Pound', 'Pounds', '', 1, 2, '.', ',', '+249', 0, 0),
('SE', 'SWE', 0, 'Sweden', 'SEK', 'Krona', 'Kronor', 'kr', 1, 2, '.', ',', '+46', 1, 0),
('SG', 'SGP', 0, 'Singapore', 'SGD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+65', 0, 0),
('SH', 'SHN', 0, 'Saint Helena', 'SHP', 'Pound', 'Pounds', '£', 1, 2, '.', ',', '+290', 0, 0),
('SI', 'SVN', 0, 'Slovenia', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+386', 1, 0),
('SJ', 'SJM', 0, 'Svalbard and Jan Mayen', 'NOK', 'Krone', 'Krones', 'kr', 1, 2, '.', ',', '+47', 0, 0),
('SK', 'SVK', 0, 'Slovakia', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+421', 1, 0),
('SL', 'SLE', 0, 'Sierra Leone', 'SLL', 'Leone', 'Leones', '', 1, 2, '.', ',', '+232', 0, 0),
('SM', 'SMR', 0, 'San Marino', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+378', 0, 0),
('SN', 'SEN', 0, 'Senegal', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+221', 0, 0),
('SO', 'SOM', 0, 'Somalia', 'SOS', 'Shilling', 'Shillings', 'S', 1, 2, '.', ',', '+252', 0, 0),
('SR', 'SUR', 0, 'Suriname', 'SRD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+597', 0, 0),
('ST', 'STP', 0, 'Sao Tome and Principe', 'STD', 'Dobra', 'Dobras', '', 1, 2, '.', ',', '+239', 0, 0),
('SV', 'SLV', 0, 'El Salvador', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+503', 0, 0),
('SY', 'SYR', 0, 'Syrian Arab Republic', 'SYP', 'Pound', 'Pounds', '£', 1, 2, '.', ',', '+963', 0, 0),
('SZ', 'SWZ', 0, 'Swaziland', 'SZL', 'Lilangeni', 'Lilangenis', '', 1, 2, '.', ',', '+268', 0, 0),
('TC', 'TCA', 0, 'Turks and Caicos Islands', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-649', 0, 0),
('TD', 'TCD', 0, 'Chad', 'XAF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+235', 0, 0),
('TG', 'TGO', 0, 'Togo', 'XOF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+228', 0, 0),
('TH', 'THA', 0, 'Thailand', 'USD', 'Dollar', 'Dollas', '$', 1, 2, '.', ',', '+66', 0, 1),
('TJ', 'TJK', 0, 'Tajikistan', 'TJS', 'Somoni', 'Somonis', '', 1, 2, '.', ',', '+992', 0, 0),
('TK', 'TKL', 0, 'Tokelau', 'NZD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+690', 0, 0),
('TM', 'TKM', 0, 'Turkmenistan', 'TMM', 'Manat', 'Manats', '', 1, 2, '.', ',', '+993', 0, 0),
('TN', 'TUN', 0, 'Tunisia', 'TND', 'Dinar', 'Dinars', '', 1, 3, '.', ',', '+216', 0, 0),
('TO', 'TON', 0, 'Tonga', 'TOP', 'Pa''anga', 'Pa''angas', '', 1, 2, '.', ',', '+676', 0, 0),
('TR', 'TUR', 0, 'Turkey', 'TRY', 'Lira', 'Liras', '$', 1, 2, '.', ',', '+90', 0, 0),
('TT', 'TTO', 0, 'Trinidad and Tobago', 'TTD', 'Dollar', 'Dollars', 'TT$', 1, 2, '.', ',', '+1-868', 0, 0),
('TV', 'TUV', 0, 'Tuvalu', 'AUD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+688', 0, 0),
('TW', 'TWN', 0, 'Taiwan, Province of China', 'TWD', 'Dollar', 'Dollars', 'NT$', 1, 2, '.', ',', '+886', 0, 0),
('TZ', 'TZA', 0, 'Tanzania, United Republic of', 'TZS', 'Shilling', 'Shillings', 'S', 1, 2, '.', ',', '+255', 0, 0),
('UA', 'UKR', 0, 'Ukraine', 'UAH', 'Hryvnia', 'Hryvnias', '₴', 1, 2, '.', ',', '+380', 0, 0),
('UG', 'UGA', 0, 'Uganda', 'UGX', 'Shilling', 'Shillings', 'S', 1, 2, '.', ',', '+256', 0, 0),
('US', 'USA', 0, 'United States', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1', 0, 0),
('UY', 'URY', 0, 'Uruguay', 'UYU', 'Peso', 'Pesos', '$U', 1, 2, '.', ',', '+598', 0, 0),
('UZ', 'UZB', 0, 'Uzbekistan', 'UZS', 'Som', 'Soms', 'лв', 1, 2, '.', ',', '+998', 0, 0),
('VA', 'VAT', 0, 'Holy See (Vatican City State)', 'EUR', 'Euro', 'Euros', '€', 1, 2, '.', ',', '+379', 0, 0),
('VC', 'VCT', 0, 'Saint Vincent and the Grenadines', 'XCD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-784', 0, 0),
('VE', 'VEN', 0, 'Venezuela', 'VEB', 'Bolivar', 'Bolivars', '', 1, 2, '.', ',', '+58', 0, 0),
('VG', 'VGB', 0, 'Virgin Islands, British', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-284', 0, 0),
('VI', 'VIR', 0, 'Virgin Islands, US', 'USD', 'Dollar', 'Dollars', '$', 1, 2, '.', ',', '+1-340', 0, 0),
('VN', 'VNM', 0, 'Viet Nam', 'VND', 'Dong', 'Dongs', '₫', 1, 2, '.', ',', '+84', 0, 0),
('VU', 'VUT', 0, 'Vanuatu', 'VUV', 'Vatu', 'Vatus', '', 1, 0, '.', ',', '+678', 0, 0),
('WF', 'WLF', 0, 'Wallis and Futuna', 'XPF', 'Franc', 'Francs', '₣', 1, 0, '.', ',', '+681', 0, 0),
('WS', 'WSM', 0, 'Samoa', 'WST', 'Tala', 'Talas', '', 1, 2, '.', ',', '+685', 0, 0),
('YE', 'YEM', 0, 'Yemen', 'YER', 'Rial', 'Rials', '﷼', 1, 2, '.', ',', '+967', 0, 0),
('ZA', 'ZAF', 0, 'South Africa', 'ZAR', 'Rand', 'Rands', 'R', 1, 2, '.', ',', '+27', 0, 0),
('ZM', 'ZMB', 0, 'Zambia', 'ZMK', 'Kwacha', 'Kwachas', '', 1, 2, '.', ',', '+260', 0, 0),
('ZW', 'ZWE', 0, 'Zimbabwe', 'ZWD', 'Dollar', 'Dollars', 'Z$', 1, 2, '.', ',', '+263', 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_currency`
--

CREATE TABLE IF NOT EXISTS `wp_esp_currency` (
  `CUR_code` varchar(6) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `CUR_single` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT 'dollar',
  `CUR_plural` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT 'dollars',
  `CUR_sign` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT '$',
  `CUR_dec_plc` varchar(1) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT '2',
  `CUR_active` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`CUR_code`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `wp_esp_currency`
--

INSERT INTO `wp_esp_currency` (`CUR_code`, `CUR_single`, `CUR_plural`, `CUR_sign`, `CUR_dec_plc`, `CUR_active`) VALUES
('AED', 'Dirham', 'Dirhams', 'د.إ', '2', 1),
('AFN', 'Afghani', 'Afghanis', '؋', '2', 1),
('ALL', 'Lek', 'Leks', 'Lek', '2', 1),
('AMD', 'Dram', 'Dram', 'Դրամ', '2', 1),
('ANG', 'Guilder', 'Guilders', 'ƒ', '2', 1),
('AOA', 'Kwanza', 'Kwanzas', '', '2', 1),
('ARS', 'Peso', 'Pesos', '$', '2', 1),
('AUD', 'Dollar', 'Dollars', '$', '2', 1),
('AWG', 'Guilder', 'Guilders', 'ƒ', '2', 1),
('BAM', 'Marka', 'Markas', 'KM', '2', 1),
('BBD', 'Dollar', 'Dollars', '$', '2', 1),
('BDT', 'Taka', 'Takas', '৳', '2', 1),
('BGN', 'Lev', 'Levs', 'лв', '2', 1),
('BHD', 'Dinar', 'Dinars', '', '3', 1),
('BIF', 'Franc', 'Francs', '₣', '0', 1),
('BMD', 'Dollar', 'Dollars', '$', '2', 1),
('BND', 'Dollar', 'Dollars', '$', '2', 1),
('BOB', 'Boliviano', 'Bolivianos', '$b', '2', 1),
('BRL', 'Real', 'Reals', 'R$', '2', 1),
('BSD', 'Dollar', 'Dollars', '$', '2', 1),
('BTN', 'Ngultrum', 'Ngultrums', '', '2', 1),
('BWP', 'Pula', 'Pulas', 'P', '2', 1),
('BYR', 'Ruble', 'Rubles', 'p.', '0', 1),
('BZD', 'Dollar', 'Dollars', 'BZ$', '2', 1),
('CAD', 'Dollar', 'Dollars', '$', '2', 1),
('CDF', 'Franc', 'Francs', '₣', '2', 1),
('CHF', 'Franc', 'Francs', '₣', '2', 1),
('CLP', 'Peso', 'Pesos', '$', '0', 1),
('CNY', 'Yuan Renminbi', 'Yuan Renminbis', '¥', '2', 1),
('COP', 'Peso', 'Pesos', '$', '2', 1),
('CRC', 'Colon', 'Colons', '₡', '2', 1),
('CUP', 'Peso', 'Pesos', '₱', '2', 1),
('CVE', 'Escudo', 'Escudos', '', '2', 1),
('CZK', 'Koruna', 'Korunas', 'Kč', '2', 1),
('DJF', 'Franc', 'Francs', '₣', '0', 1),
('DKK', 'Krone', 'Kroner', 'kr', '2', 1),
('DOP', 'Peso', 'Pesos', 'RD$', '2', 1),
('DZD', 'Dinar', 'Dinars', '', '3', 1),
('EGP', 'Pound', 'Pounds', '£', '2', 1),
('ERN', 'Nakfa', 'Nakfas', '', '2', 1),
('ETB', 'Birr', 'Birrs', '', '2', 1),
('EUR', 'Euro', 'Euros', '€', '2', 1),
('FJD', 'Dollar', 'Dollars', '$', '2', 1),
('FKP', 'Pound', 'Pounds', '£', '2', 1),
('GBP', 'Pound', 'Pounds', '£', '2', 1),
('GHS', 'Cedi', 'Cedis', '', '2', 1),
('GIP', 'Pound', 'Pounds', '£', '2', 1),
('GMD', 'Dalasi', 'Dalasis', '', '2', 1),
('GNF', 'Franc', 'Francs', '₣', '0', 1),
('GTQ', 'Quetzal', 'Quetzals', 'Q', '2', 1),
('GYD', 'Dollar', 'Dollars', '$', '2', 1),
('HKD', 'Dollar', 'Dollars', '$', '2', 1),
('HNL', 'Lempira', 'Lempiras', 'L', '2', 1),
('HRK', 'Kuna', 'Kunas', 'kn', '2', 1),
('HTG', 'Gourde', 'Gourdes', '', '2', 1),
('HUF', 'Forint', 'Forints', 'Ft', '2', 1),
('IDR', 'Rupiah', 'Rupiahs', 'Rp', '2', 1),
('ILS', 'Shekel', 'Shekels', '₪', '2', 1),
('INR', 'Rupee', 'Rupees', '$', '2', 1),
('IQD', 'Dinar', 'Dinars', 'د.ع', '3', 1),
('IRR', 'Rial', 'Rials', '﷼', '2', 1),
('ISK', 'Króna', 'krónur', 'kr', '0', 1),
('JMD', 'Dollar', 'Dollars', 'J$', '2', 1),
('JOD', 'Dinar', 'Dinars', '', '3', 1),
('JPY', 'Yen', 'Yens', '¥', '0', 1),
('KES', 'Shilling', 'Shillings', 'S', '2', 1),
('KGS', 'Som', 'Soms', 'лв', '2', 1),
('KHR', 'Riels', 'Rielss', '៛', '2', 1),
('KMF', 'Franc', 'Francs', '₣', '0', 1),
('KPW', 'Won', 'Wons', '₩', '2', 1),
('KRW', 'Won', 'Wons', '₩', '0', 1),
('KWD', 'Dinar', 'Dinars', '', '3', 1),
('KYD', 'Dollar', 'Dollars', '$', '2', 1),
('KZT', 'Tenge', 'Tenges', 'лв', '2', 1),
('LAK', 'Kip', 'Kips', '₭', '2', 1),
('LBP', 'Pound', 'Pounds', '£', '2', 1),
('LKR', 'Rupee', 'Rupees', '₨', '2', 1),
('LRD', 'Dollar', 'Dollars', '$', '2', 1),
('LSL', 'Loti', 'Lotis', '', '2', 1),
('LTL', 'Litas', 'Litass', 'Lt', '2', 1),
('LYD', 'Dinar', 'Dinars', '', '3', 1),
('MAD', 'Dirham', 'Dirhams', '', '2', 1),
('MDL', 'Leu', 'Leus', '', '2', 1),
('MGA', 'Ariary', 'Ariarys', '', '2', 1),
('MKD', 'Denar', 'Denars', 'ден', '2', 1),
('MMK', 'Kyat', 'Kyats', '', '2', 1),
('MNT', 'Tugrik', 'Tugriks', '₮', '2', 1),
('MOP', 'Pataca', 'Patacas', '', '2', 1),
('MRO', 'Ouguiya', 'Ouguiyas', '', '2', 1),
('MUR', 'Rupee', 'Rupees', '₨', '2', 1),
('MVR', 'Rufiyaa', 'Rufiyaas', '', '2', 1),
('MWK', 'Kwacha', 'Kwachas', '', '2', 1),
('MXN', 'Peso', 'Pesos', '$', '2', 1),
('MYR', 'Ringgit', 'Ringgits', 'RM', '2', 1),
('MZM', 'Meticail', 'Meticails', '', '2', 1),
('NAD', 'Dollar', 'Dollars', '$', '2', 1),
('NGN', 'Naira', 'Nairas', '₦', '2', 1),
('NIO', 'Cordoba', 'Cordobas', 'C$', '2', 1),
('NOK', 'Krone', 'Krones', 'kr', '2', 1),
('NPR', 'Rupee', 'Rupees', '₨', '2', 1),
('NZD', 'Dollar', 'Dollars', '$', '2', 1),
('OMR', 'Rial', 'Rials', '﷼', '3', 1),
('PAB', 'Balboa', 'Balboas', 'B/.', '2', 1),
('PEN', 'Sol', 'Sols', 'S/.', '2', 1),
('PGK', 'Kina', 'Kinas', '', '2', 1),
('PHP', 'Peso', 'Pesos', '₱', '2', 1),
('PKR', 'Rupee', 'Rupees', '₨', '2', 1),
('PLN', 'Zloty', 'Zlotys', 'zł', '2', 1),
('PYG', 'Guarani', 'Guaranis', 'Gs', '0', 1),
('QAR', 'Rial', 'Rials', '﷼', '2', 1),
('RON', 'Leu', 'Leus', 'lei', '2', 1),
('RUB', 'Ruble', 'Rubles', 'руб', '2', 1),
('RWF', 'Franc', 'Francs', '₣', '0', 1),
('SAR', 'Rial', 'Rials', '﷼', '2', 1),
('SBD', 'Dollar', 'Dollars', '$', '2', 1),
('SCR', 'Rupee', 'Rupees', '₨', '2', 1),
('SDG', 'Pound', 'Pounds', '', '2', 1),
('SEK', 'Krona', 'Kronor', 'kr', '2', 1),
('SGD', 'Dollar', 'Dollars', '$', '2', 1),
('SHP', 'Pound', 'Pounds', '£', '2', 1),
('SLL', 'Leone', 'Leones', '', '2', 1),
('SOS', 'Shilling', 'Shillings', 'S', '2', 1),
('SRD', 'Dollar', 'Dollars', '$', '2', 1),
('STD', 'Dobra', 'Dobras', '', '2', 1),
('SYP', 'Pound', 'Pounds', '£', '2', 1),
('SZL', 'Lilangeni', 'Lilangenis', '', '2', 1),
('THB', 'Baht', 'Bahts', '฿', '2', 1),
('TJS', 'Somoni', 'Somonis', '', '2', 1),
('TMM', 'Manat', 'Manats', '', '2', 1),
('TND', 'Dinar', 'Dinars', '', '3', 1),
('TOP', 'Pa''anga', 'Pa''angas', '', '2', 1),
('TRY', 'Lira', 'Liras', '$', '2', 1),
('TTD', 'Dollar', 'Dollars', 'TT$', '2', 1),
('TWD', 'Dollar', 'Dollars', 'NT$', '2', 1),
('TZS', 'Shilling', 'Shillings', 'S', '2', 1),
('UAH', 'Hryvnia', 'Hryvnias', '₴', '2', 1),
('UGX', 'Shilling', 'Shillings', 'S', '2', 1),
('USD', 'Dollar', 'Dollars', '$', '2', 1),
('UYU', 'Peso', 'Pesos', '$U', '2', 1),
('UZS', 'Som', 'Soms', 'лв', '2', 1),
('VEB', 'Bolivar', 'Bolivars', '', '2', 1),
('VND', 'Dong', 'Dongs', '₫', '2', 1),
('VUV', 'Vatu', 'Vatus', '', '0', 1),
('WST', 'Tala', 'Talas ', '', '2', 1),
('XAF', 'Franc', 'Francs', '₣', '0', 1),
('XCD', 'Dollar', 'Dollars', '$', '2', 1),
('XOF', 'Franc', 'Francs', '₣', '0', 1),
('XPF', 'Franc', 'Francs', '₣', '0', 1),
('YER', 'Rial', 'Rials', '﷼', '2', 1),
('ZAR', 'Rand', 'Rands', 'R', '2', 1),
('ZMK', 'Kwacha', 'Kwachas', '', '2', 1),
('ZWD', 'Dollar', 'Dollars', 'Z$', '2', 1);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_currency_payment_method`
--

CREATE TABLE IF NOT EXISTS `wp_esp_currency_payment_method` (
  `CPM_ID` int(11) NOT NULL AUTO_INCREMENT,
  `CUR_code` varchar(6) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `PMD_ID` int(11) NOT NULL,
  PRIMARY KEY (`CPM_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=178 ;

--
-- Dumping data for table `wp_esp_currency_payment_method`
--

INSERT INTO `wp_esp_currency_payment_method` (`CPM_ID`, `CUR_code`, `PMD_ID`) VALUES
(1, 'AED', 6),
(2, 'AFN', 6),
(3, 'ALL', 6),
(4, 'AMD', 6),
(5, 'ANG', 6),
(6, 'AOA', 6),
(7, 'ARS', 6),
(8, 'AUD', 6),
(9, 'AWG', 6),
(10, 'BAM', 6),
(11, 'BBD', 6),
(12, 'BDT', 6),
(13, 'BGN', 6),
(14, 'BHD', 6),
(15, 'BIF', 6),
(16, 'BMD', 6),
(17, 'BND', 6),
(18, 'BOB', 6),
(19, 'BRL', 6),
(20, 'BSD', 6),
(21, 'BTN', 6),
(22, 'BWP', 6),
(23, 'BYR', 6),
(24, 'BZD', 6),
(25, 'CAD', 6),
(26, 'CDF', 6),
(27, 'CHF', 6),
(28, 'CLP', 6),
(29, 'CNY', 6),
(30, 'COP', 6),
(31, 'CRC', 6),
(32, 'CUP', 6),
(33, 'CVE', 6),
(34, 'CZK', 6),
(35, 'DJF', 6),
(36, 'DKK', 6),
(37, 'DOP', 6),
(38, 'DZD', 6),
(39, 'EGP', 6),
(40, 'ERN', 6),
(41, 'ETB', 6),
(42, 'EUR', 6),
(43, 'FJD', 6),
(44, 'FKP', 6),
(45, 'GBP', 6),
(46, 'GHS', 6),
(47, 'GIP', 6),
(48, 'GMD', 6),
(49, 'GNF', 6),
(50, 'GTQ', 6),
(51, 'GYD', 6),
(52, 'HKD', 6),
(53, 'HNL', 6),
(54, 'HRK', 6),
(55, 'HTG', 6),
(56, 'HUF', 6),
(57, 'IDR', 6),
(58, 'ILS', 6),
(59, 'INR', 6),
(60, 'IQD', 6),
(61, 'IRR', 6),
(62, 'ISK', 6),
(63, 'JMD', 6),
(64, 'JOD', 6),
(65, 'JPY', 6),
(66, 'KES', 6),
(67, 'KGS', 6),
(68, 'KHR', 6),
(69, 'KMF', 6),
(70, 'KPW', 6),
(71, 'KRW', 6),
(72, 'KWD', 6),
(73, 'KYD', 6),
(74, 'KZT', 6),
(75, 'LAK', 6),
(76, 'LBP', 6),
(77, 'LKR', 6),
(78, 'LRD', 6),
(79, 'LSL', 6),
(80, 'LTL', 6),
(81, 'LYD', 6),
(82, 'MAD', 6),
(83, 'MDL', 6),
(84, 'MGA', 6),
(85, 'MKD', 6),
(86, 'MMK', 6),
(87, 'MNT', 6),
(88, 'MOP', 6),
(89, 'MRO', 6),
(90, 'MUR', 6),
(91, 'MVR', 6),
(92, 'MWK', 6),
(93, 'MXN', 6),
(94, 'MYR', 6),
(95, 'MZM', 6),
(96, 'NAD', 6),
(97, 'NGN', 6),
(98, 'NIO', 6),
(99, 'NOK', 6),
(100, 'NPR', 6),
(101, 'NZD', 6),
(102, 'OMR', 6),
(103, 'PAB', 6),
(104, 'PEN', 6),
(105, 'PGK', 6),
(106, 'PHP', 6),
(107, 'PKR', 6),
(108, 'PLN', 6),
(109, 'PYG', 6),
(110, 'QAR', 6),
(111, 'RON', 6),
(112, 'RUB', 6),
(113, 'RWF', 6),
(114, 'SAR', 6),
(115, 'SBD', 6),
(116, 'SCR', 6),
(117, 'SDG', 6),
(118, 'SEK', 6),
(119, 'SGD', 6),
(120, 'SHP', 6),
(121, 'SLL', 6),
(122, 'SOS', 6),
(123, 'SRD', 6),
(124, 'STD', 6),
(125, 'SYP', 6),
(126, 'SZL', 6),
(127, 'THB', 6),
(128, 'TJS', 6),
(129, 'TMM', 6),
(130, 'TND', 6),
(131, 'TOP', 6),
(132, 'TRY', 6),
(133, 'TTD', 6),
(134, 'TWD', 6),
(135, 'TZS', 6),
(136, 'UAH', 6),
(137, 'UGX', 6),
(138, 'USD', 6),
(139, 'UYU', 6),
(140, 'UZS', 6),
(141, 'VEB', 6),
(142, 'VND', 6),
(143, 'VUV', 6),
(144, 'WST', 6),
(145, 'XAF', 6),
(146, 'XCD', 6),
(147, 'XOF', 6),
(148, 'XPF', 6),
(149, 'YER', 6),
(150, 'ZAR', 6),
(151, 'ZMK', 6),
(152, 'ZWD', 6),
(153, 'AUD', 9),
(154, 'BRL', 9),
(155, 'CAD', 9),
(156, 'CHF', 9),
(157, 'CZK', 9),
(158, 'DKK', 9),
(159, 'EUR', 9),
(160, 'GBP', 9),
(161, 'HKD', 9),
(162, 'HUF', 9),
(163, 'ILS', 9),
(164, 'JPY', 9),
(165, 'MXN', 9),
(166, 'MYR', 9),
(167, 'NOK', 9),
(168, 'NZD', 9),
(169, 'PHP', 9),
(170, 'PLN', 9),
(171, 'RUB', 9),
(172, 'SEK', 9),
(173, 'SGD', 9),
(174, 'THB', 9),
(175, 'TRY', 9),
(176, 'TWD', 9),
(177, 'USD', 9);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_datetime`
--

CREATE TABLE IF NOT EXISTS `wp_esp_datetime` (
  `DTT_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `EVT_ID` bigint(20) unsigned NOT NULL,
  `DTT_name` varchar(255) NOT NULL DEFAULT '',
  `DTT_description` text NOT NULL,
  `DTT_EVT_start` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `DTT_EVT_end` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `DTT_reg_limit` mediumint(8) DEFAULT '-1',
  `DTT_sold` mediumint(8) unsigned DEFAULT '0',
  `DTT_is_primary` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `DTT_order` mediumint(3) unsigned DEFAULT '0',
  `DTT_parent` int(10) unsigned DEFAULT '0',
  `DTT_deleted` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`DTT_ID`),
  KEY `EVT_ID` (`EVT_ID`),
  KEY `DTT_is_primary` (`DTT_is_primary`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `wp_esp_datetime`
--

INSERT INTO `wp_esp_datetime` (`DTT_ID`, `EVT_ID`, `DTT_name`, `DTT_description`, `DTT_EVT_start`, `DTT_EVT_end`, `DTT_reg_limit`, `DTT_sold`, `DTT_is_primary`, `DTT_order`, `DTT_parent`, `DTT_deleted`) VALUES
(1, 3388, '', '', '2017-01-18 08:00:00', '2017-01-18 10:00:00', -1, 1, 0, 1, 0, 0),
(2, 3406, '', '', '2017-01-09 02:00:00', '2017-01-20 10:00:00', 5, 0, 0, 1, 0, 0),
(3, 3411, '', '', '2016-11-25 11:00:00', '2016-11-25 13:00:00', -1, 0, 0, 1, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_datetime_ticket`
--

CREATE TABLE IF NOT EXISTS `wp_esp_datetime_ticket` (
  `DTK_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `DTT_ID` int(10) unsigned NOT NULL,
  `TKT_ID` int(10) unsigned NOT NULL,
  PRIMARY KEY (`DTK_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `wp_esp_datetime_ticket`
--

INSERT INTO `wp_esp_datetime_ticket` (`DTK_ID`, `DTT_ID`, `TKT_ID`) VALUES
(1, 1, 2),
(2, 2, 3),
(3, 3, 4);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_event_message_template`
--

CREATE TABLE IF NOT EXISTS `wp_esp_event_message_template` (
  `EMT_ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `EVT_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `GRP_ID` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`EMT_ID`),
  KEY `EVT_ID` (`EVT_ID`),
  KEY `GRP_ID` (`GRP_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_event_meta`
--

CREATE TABLE IF NOT EXISTS `wp_esp_event_meta` (
  `EVTM_ID` int(11) NOT NULL AUTO_INCREMENT,
  `EVT_ID` bigint(20) unsigned NOT NULL,
  `EVT_display_desc` tinyint(1) unsigned NOT NULL DEFAULT '1',
  `EVT_display_ticket_selector` tinyint(1) unsigned NOT NULL DEFAULT '1',
  `EVT_visible_on` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `EVT_default_registration_status` varchar(3) DEFAULT NULL,
  `EVT_phone` varchar(45) DEFAULT NULL,
  `EVT_additional_limit` tinyint(3) unsigned DEFAULT NULL,
  `EVT_member_only` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `EVT_allow_overflow` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `EVT_timezone_string` varchar(45) DEFAULT NULL,
  `EVT_external_URL` varchar(200) DEFAULT NULL,
  `EVT_donations` tinyint(1) DEFAULT NULL,
  PRIMARY KEY (`EVTM_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `wp_esp_event_meta`
--

INSERT INTO `wp_esp_event_meta` (`EVTM_ID`, `EVT_ID`, `EVT_display_desc`, `EVT_display_ticket_selector`, `EVT_visible_on`, `EVT_default_registration_status`, `EVT_phone`, `EVT_additional_limit`, `EVT_member_only`, `EVT_allow_overflow`, `EVT_timezone_string`, `EVT_external_URL`, `EVT_donations`) VALUES
(1, 3388, 0, 1, '0000-00-00 00:00:00', 'RPP', '021293773', 10, 0, 0, '', '', 0),
(2, 3406, 0, 1, '0000-00-00 00:00:00', 'RPP', '021293773', 10, 0, 0, '', '', 0),
(3, 3411, 0, 1, '0000-00-00 00:00:00', 'RPP', '', 10, 0, 0, '', '', 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_event_question_group`
--

CREATE TABLE IF NOT EXISTS `wp_esp_event_question_group` (
  `EQG_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `EVT_ID` bigint(20) unsigned NOT NULL,
  `QSG_ID` int(10) unsigned NOT NULL,
  `EQG_primary` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`EQG_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `wp_esp_event_question_group`
--

INSERT INTO `wp_esp_event_question_group` (`EQG_ID`, `EVT_ID`, `QSG_ID`, `EQG_primary`) VALUES
(1, 3388, 1, 1),
(2, 3388, 2, 1),
(3, 3406, 1, 1),
(4, 3406, 2, 1),
(5, 3411, 1, 1),
(6, 3411, 2, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_event_venue`
--

CREATE TABLE IF NOT EXISTS `wp_esp_event_venue` (
  `EVV_ID` int(11) NOT NULL AUTO_INCREMENT,
  `EVT_ID` bigint(20) unsigned NOT NULL,
  `VNU_ID` bigint(20) unsigned NOT NULL,
  `EVV_primary` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`EVV_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_extra_meta`
--

CREATE TABLE IF NOT EXISTS `wp_esp_extra_meta` (
  `EXM_ID` int(11) NOT NULL AUTO_INCREMENT,
  `OBJ_ID` int(11) DEFAULT NULL,
  `EXM_type` varchar(45) DEFAULT NULL,
  `EXM_key` varchar(45) DEFAULT NULL,
  `EXM_value` text,
  PRIMARY KEY (`EXM_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;

--
-- Dumping data for table `wp_esp_extra_meta`
--

INSERT INTO `wp_esp_extra_meta` (`EXM_ID`, `OBJ_ID`, `EXM_type`, `EXM_key`, `EXM_value`) VALUES
(1, 6, 'Payment_Method', 'pdf_payee_name', NULL),
(2, 6, 'Payment_Method', 'pdf_payee_email', NULL),
(3, 6, 'Payment_Method', 'pdf_payee_tax_number', NULL),
(4, 6, 'Payment_Method', 'pdf_payee_address', NULL),
(5, 6, 'Payment_Method', 'pdf_instructions', 'Please send this invoice with payment attached to the address above, or use the payment link below. Payment must be received within 48 hours of event date.'),
(6, 6, 'Payment_Method', 'pdf_logo_image', NULL),
(7, 6, 'Payment_Method', 'page_confirmation_text', 'Payment must be received within 48 hours of event date.  Details about where to send payment is included on the invoice.'),
(8, 6, 'Payment_Method', 'page_extra_info', NULL),
(9, 9, 'Payment_Method', 'paypal_id', 'info@asiacentre.co.th'),
(10, 9, 'Payment_Method', 'image_url', 'http://asiacentre.co.th/wp-content/uploads/2016/12/Asia-Centre-Logo-Flat-Color.jpg'),
(11, 9, 'Payment_Method', 'shipping_details', '1');

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_line_item`
--

CREATE TABLE IF NOT EXISTS `wp_esp_line_item` (
  `LIN_ID` int(11) NOT NULL AUTO_INCREMENT,
  `LIN_code` varchar(245) NOT NULL DEFAULT '',
  `TXN_ID` int(11) DEFAULT NULL,
  `LIN_name` varchar(245) NOT NULL DEFAULT '',
  `LIN_desc` text,
  `LIN_unit_price` decimal(10,3) DEFAULT NULL,
  `LIN_percent` decimal(10,3) DEFAULT NULL,
  `LIN_is_taxable` tinyint(1) DEFAULT '0',
  `LIN_order` int(11) DEFAULT '0',
  `LIN_parent` int(11) DEFAULT '0',
  `LIN_type` varchar(25) NOT NULL,
  `LIN_total` decimal(10,3) DEFAULT NULL,
  `LIN_quantity` int(10) DEFAULT NULL,
  `OBJ_ID` int(11) DEFAULT NULL,
  `OBJ_type` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`LIN_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=60 ;

--
-- Dumping data for table `wp_esp_line_item`
--

INSERT INTO `wp_esp_line_item` (`LIN_ID`, `LIN_code`, `TXN_ID`, `LIN_name`, `LIN_desc`, `LIN_unit_price`, `LIN_percent`, `LIN_is_taxable`, `LIN_order`, `LIN_parent`, `LIN_type`, `LIN_total`, `LIN_quantity`, `OBJ_ID`, `OBJ_type`) VALUES
(1, 'total', 1, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(2, 'tickets', 1, 'Tickets', NULL, 0.000, 0.000, 0, 1, 1, 'sub-total', 0.000, NULL, NULL, NULL),
(3, 'taxes', 1, 'Taxes', NULL, 0.000, 0.000, 0, 1, 1, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(4, 'total', 2, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(5, 'tickets', 2, 'Tickets', '', 0.000, 0.000, 0, 1, 4, 'sub-total', 0.000, 0, 0, NULL),
(6, 'taxes', 2, 'Taxes', NULL, 0.000, 0.000, 0, 1, 4, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(7, 'total', 3, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(8, 'tickets', 3, 'Tickets', '', 0.000, 0.000, 0, 1, 7, 'sub-total', 0.000, 0, 0, NULL),
(9, 'taxes', 3, 'Taxes', NULL, 0.000, 0.000, 0, 1, 7, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(10, 'total', 4, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(11, 'tickets', 4, 'Tickets', NULL, 0.000, 0.000, 0, 1, 10, 'sub-total', 0.000, NULL, NULL, NULL),
(12, 'taxes', 4, 'Taxes', NULL, 0.000, 0.000, 0, 1, 10, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(13, 'total', 5, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(14, 'tickets', 5, 'Tickets', NULL, 0.000, 0.000, 0, 1, 13, 'sub-total', 0.000, NULL, NULL, NULL),
(15, 'taxes', 5, 'Taxes', NULL, 0.000, 0.000, 0, 1, 13, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(16, 'total', 6, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(17, 'tickets', 6, 'Tickets', '', 0.000, 0.000, 0, 1, 16, 'sub-total', 0.000, 0, 0, NULL),
(18, '82d3dc06b5786189f140704f26899bbb', 6, 'Free Ticket', ' (For Benedict Anderson  1st Anniversary Memorial Roundtable (test))', 0.000, 0.000, 0, 0, 17, 'line-item', 0.000, 1, 2, 'Ticket'),
(19, 'd5dfb1e85ffa0b9e8dd5d85da6c7e01c', 6, '', '', 0.000, 0.000, 0, 1, 18, 'sub-item', 0.000, 1, 2, 'Price'),
(20, 'taxes', 6, 'Taxes', '', 0.000, 0.000, 0, 1, 16, 'tax-sub-total', 0.000, 0, 0, NULL),
(21, 'total', 7, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(22, 'tickets', 7, 'Tickets', '', 0.000, 0.000, 0, 1, 21, 'sub-total', 0.000, 0, 0, NULL),
(23, 'taxes', 7, 'Taxes', NULL, 0.000, 0.000, 0, 1, 21, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(24, 'total', 8, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(25, 'tickets', 8, 'Tickets', NULL, 0.000, 0.000, 0, 1, 24, 'sub-total', 0.000, NULL, NULL, NULL),
(26, 'taxes', 8, 'Taxes', NULL, 0.000, 0.000, 0, 1, 24, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(27, 'total', 9, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(28, 'tickets', 9, 'Tickets', NULL, 0.000, 0.000, 0, 1, 27, 'sub-total', 0.000, NULL, NULL, NULL),
(29, 'taxes', 9, 'Taxes', NULL, 0.000, 0.000, 0, 1, 27, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(30, 'total', 10, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(31, 'tickets', 10, 'Tickets', NULL, 0.000, 0.000, 0, 1, 30, 'sub-total', 0.000, NULL, NULL, NULL),
(32, 'taxes', 10, 'Taxes', NULL, 0.000, 0.000, 0, 1, 30, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(33, 'total', 11, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(34, 'tickets', 11, 'Tickets', '', 0.000, 0.000, 0, 1, 33, 'sub-total', 0.000, 0, 0, NULL),
(35, 'taxes', 11, 'Taxes', NULL, 0.000, 0.000, 0, 1, 33, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(36, 'total', 12, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(37, 'tickets', 12, 'Tickets', '', 0.000, 0.000, 0, 1, 36, 'sub-total', 0.000, 0, 0, NULL),
(38, 'taxes', 12, 'Taxes', NULL, 0.000, 0.000, 0, 1, 36, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(39, 'total', 13, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(40, 'tickets', 13, 'Tickets', '', 0.000, 0.000, 0, 1, 39, 'sub-total', 0.000, 0, 0, NULL),
(41, 'taxes', 13, 'Taxes', NULL, 0.000, 0.000, 0, 1, 39, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(42, 'total', 14, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(43, 'tickets', 14, 'Tickets', NULL, 0.000, 0.000, 0, 1, 42, 'sub-total', 0.000, NULL, NULL, NULL),
(44, 'taxes', 14, 'Taxes', NULL, 0.000, 0.000, 0, 1, 42, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(45, 'total', 15, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(46, 'tickets', 15, 'Tickets', '', 0.000, 0.000, 0, 1, 45, 'sub-total', 0.000, 0, 0, NULL),
(47, 'taxes', 15, 'Taxes', NULL, 0.000, 0.000, 0, 1, 45, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(48, 'total', 16, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(49, 'tickets', 16, 'Tickets', '', 0.000, 0.000, 0, 1, 48, 'sub-total', 0.000, 0, 0, NULL),
(50, 'taxes', 16, 'Taxes', NULL, 0.000, 0.000, 0, 1, 48, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(51, 'total', 17, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(52, 'tickets', 17, 'Tickets', NULL, 0.000, 0.000, 0, 1, 51, 'sub-total', 0.000, NULL, NULL, NULL),
(53, 'taxes', 17, 'Taxes', NULL, 0.000, 0.000, 0, 1, 51, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(54, 'total', 18, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(55, 'tickets', 18, 'Tickets', NULL, 0.000, 0.000, 0, 1, 54, 'sub-total', 0.000, NULL, NULL, NULL),
(56, 'taxes', 18, 'Taxes', NULL, 0.000, 0.000, 0, 1, 54, 'tax-sub-total', 0.000, NULL, NULL, NULL),
(57, 'total', 19, 'Grand Total', '', 0.000, 0.000, 0, 1, 0, 'total', 0.000, 0, 0, 'Transaction'),
(58, 'tickets', 19, 'Tickets', NULL, 0.000, 0.000, 0, 1, 57, 'sub-total', 0.000, NULL, NULL, NULL),
(59, 'taxes', 19, 'Taxes', NULL, 0.000, 0.000, 0, 1, 57, 'tax-sub-total', 0.000, NULL, NULL, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_log`
--

CREATE TABLE IF NOT EXISTS `wp_esp_log` (
  `LOG_ID` int(11) NOT NULL AUTO_INCREMENT,
  `LOG_time` datetime DEFAULT NULL,
  `OBJ_ID` varchar(45) DEFAULT NULL,
  `OBJ_type` varchar(45) DEFAULT NULL,
  `LOG_type` varchar(45) DEFAULT NULL,
  `LOG_message` text,
  `LOG_wp_user` int(11) DEFAULT NULL,
  PRIMARY KEY (`LOG_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_message_template`
--

CREATE TABLE IF NOT EXISTS `wp_esp_message_template` (
  `MTP_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `GRP_ID` int(10) unsigned NOT NULL,
  `MTP_context` varchar(50) NOT NULL,
  `MTP_template_field` varchar(30) NOT NULL,
  `MTP_content` text NOT NULL,
  PRIMARY KEY (`MTP_ID`),
  KEY `GRP_ID` (`GRP_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=49 ;

--
-- Dumping data for table `wp_esp_message_template`
--

INSERT INTO `wp_esp_message_template` (`MTP_ID`, `GRP_ID`, `MTP_context`, `MTP_template_field`, `MTP_content`) VALUES
(1, 1, 'purchaser', 'subject', '[COMPANY] Receipt for Transaction: [TXN_ID]'),
(2, 1, 'purchaser', 'content', 'a:11:{s:4:"main";s:3937:"<div class="print_button_div noPrint">\n	[INVOICE_RECEIPT_SWITCHER_BUTTON] [DISPLAY_PDF_BUTTON]\n	<div class="clear"></div>\n</div>\n<div id="invoice">\n	<table id="invoice-header" class="not-really-a-table">\n		<tr>\n			<td id="logo-dv">\n				[INVOICE_LOGO]\n				<div class="vcard" id="company-address">\n					<div class="fn org"><strong>[INVOICE_PAYEE_NAME]</strong></div>\n					<div class="adr">\n						[INVOICE_PAYEE_ADDRESS]\n					</div>\n					<div class="email">[INVOICE_PAYEE_EMAIL]</div>\n					<div class="vat">[INVOICE_PAYEE_TAX_NUMBER_*]</div>\n				</div>\n			</td>\n			<td>\n				<div id="invoice-info">\n					<h2 id="invoice-hdr">Order Confirmation</h2>\n\n					<h3 id="invoice-date">Date:						<span class="plain-text">[PRIMARY_REGISTRANT_REGISTRATION_DATE]</span></h3>\n\n					<h3 id="invoice-txn-id">Transaction ID:						<span class="plain-text">[TXN_ID]</span></h3>\n\n					<h3 id="invoice-txn-status">Status:						<span class="[TXN_STATUS_ID] plain-text">[TXN_STATUS]</span></h3>\n				</div>\n			</td>\n		</tr>\n	</table>\n	<div class="events">\n		[EVENT_LIST]\n	</div>\n	<div class="taxes">\n		<h3 class="section-title">Additional Charges/Discounts</h3>\n		<table class="invoice-amount">\n			<thead>\n				<tr class="header_row">\n					<th class="left ticket_th">Name</th>\n					<th class="left">Description</th>\n					<th class="event_th item_c">Quantity</th>\n					<th class="event_th item_c">Unit Price</th>\n					<th class="subtotal_th">Total</th>\n				</tr>\n			</thead>\n			<tbody>\n				<tr>\n					<td colspan="5">[ADDITIONAL_LINE_ITEM_LIST]</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="taxes">\n		<h3 class="section-title">Taxes</h3>\n		<p><strong>*</strong> Taxable items. The total amount collected for taxes is reflected in the total(s) below.</p>\n		<table class="invoice-amount">\n			<thead>\n				<tr class="header_row">\n					<th class="left ticket_th">Tax Name</th>\n					<th class="left">Description</th>\n					<th class="event_th item_c">Rate</th>\n					<th class="subtotal_th">Tax Amount</th>\n				</tr>\n			</thead>\n			<tbody>\n				<tr>\n					<td colspan="4">[TAX_LINE_ITEM_LIST]</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="grand-total-dv">\n		<h2 class="grand-total">Grand Total: [TOTAL_COST]</h2>\n	</div>\n	<div class="payment-dv">\n		<h3 class="section-title">Payments</h3>\n		<table class="invoice-amount">\n			<thead>\n				<tr class="header_row">\n					<th><span class="">Payment Method</span></th>\n					<th class=''left datetime_th''>Date</th>\n					<th><span class="">Transaction Id / Cheque #</span></th>\n					<th><span class="">P.O. / S.O.#</span></th>\n					<th><span class="">Status</span></th>\n					<th>Amount</th>\n				</tr>\n			</thead>\n			<tbody>\n				<tr>\n					<td colspan="6">[PAYMENT_LIST_*]</td>\n				</tr>\n				<tr class="item">\n					<td class=''aln-cntr'' colspan="6">[OWING_STATUS_MESSAGE_*]</td>\n				</tr>\n			</tbody>\n			<tfoot>\n				<tr class=''total_tr''>\n					<td colspan="4"> </td>\n					<td class="item_r">Total Paid</td>\n					<td class="item_r">[TOTAL_AMOUNT_PAID]</td>\n				</tr>\n				<tr class="total_tr odd">\n					<td colspan="4"> </td>\n					<td class="total" id="total_currency">Amount Owed:</td>\n					<td class="total">[TOTAL_OWING]</td>\n				</tr>\n			</tfoot>\n		</table>\n	</div>\n	<div class="additional-info-dv">\n		<h3 class="section-title">Additional Information:</h3>\n		<div class="additional-info">\n			<h2>Venue Details:</h2>\n			<table class="venue-list">\n				<tr class="venue-details">\n					<td class="venue-details-part venue-address-dv">\n						<h3><a href="[VENUE_URL]">[VENUE_TITLE]</a></h3>\n\n						<p>[VENUE_DESCRIPTION]</p>\n						[VENUE_FORMATTED_ADDRESS]\n					</td>\n					<td class="venue-details-part venue-image-dv">[GOOGLE_MAP_IMAGE]</td>\n				</tr>\n			</table>\n			<div class=''aln-cntr''>Powered by <a href=''http://eventespresso.com''>Event Espresso </a></div>\n		</div>\n	</div>\n</div>\n<div class="print_button_div noPrint">\n	[INVOICE_RECEIPT_SWITCHER_BUTTON] [DISPLAY_PDF_BUTTON]\n	<div class="clear"></div>\n</div>\n";s:10:"event_list";s:426:"<h3 class="section-title event-name">\n	<img class="icon" src="http://asiacentre.co.th/wp-content/plugins/event-espresso-decaf/core/templates/global_assets/images/calendar_year-24x24.png">Event Name:	<span class="plain-text">[EVENT_NAME]</span>\n	<span class="small-text link">( <a href="[EVENT_URL]">view</a> )</span>\n</h3>\n<p class="event-description">\n	[EVENT_EXCERPT]\n</p>\n<ul class="tickets-per-event">\n	[TICKET_LIST]\n</ul>";s:11:"ticket_list";s:1751:"<li class="event-ticket">\n	<div class="ticket-details">\n		<table class="invoice-amount">\n			<thead>\n				<tr class="header_row">\n					<th class="name-column">Ticket</th>\n					<th colspan="2" class="desc-column">Description</th>\n					<th class="number-column item_c">Quantity</th>\n					<th class="number-column item_c">Price</th>\n					<th class="number-column item_r">Total</th>\n				</tr>\n			</thead>\n			<tbody>[TICKET_LINE_ITEM_LIST]</tbody>\n		</table>\n	</div>\n	<div class="reg-details-for-ticket">\n		<div class="ticket-time-and-place-details">\n			<div class="ticket-time-details">\n				<h4 class="sub-section-title no-bottom-margin">\n					<img class="icon" src="http://asiacentre.co.th/wp-content/plugins/event-espresso-decaf/core/templates/global_assets/images/clock-16x16.png">Date/Time:				</h4>\n				<ul class="event-dates">[DATETIME_LIST]</ul>\n			</div>\n			<div class="ticket-place-details">\n				<h4 class="sub-section-title no-bottom-margin">\n					<img class="icon" src="http://asiacentre.co.th/wp-content/plugins/event-espresso-decaf/core/templates/global_assets/images/location-pin-16x16.png">Venue				</h4>\n				<ul class="event-venues">\n					<li>[VENUE_TITLE]\n						<span class="small-text">( <a href="[VENUE_URL]">view</a> )</span>\n					</li>\n				</ul>\n			</div>\n		</div>\n		<div class="ticket-registrations-area">\n			<h4 class="sub-section-title">\n				<img class="icon" src="http://asiacentre.co.th/wp-content/plugins/event-espresso-decaf/core/templates/global_assets/images/users-16x16.png">Registration Details				<span class="small-text link">( <a class="print_button noPrint" href="[PRIMARY_REGISTRANT_FRONTEND_EDIT_REG_LINK]">edit</a> )</span>\n			</h4>\n			<ul class="ticket-registrations-list">[ATTENDEE_LIST]</ul>\n		</div>\n	</div>\n</li>\n";s:23:"ticket_line_item_no_pms";s:363:"<tr class="item">\n	<td>[LINE_ITEM_NAME][LINE_ITEM_TAXABLE_*]</td>\n	<td colspan="2">[LINE_ITEM_DESCRIPTION]\n		<p class="ticket-note">This ticket can be used once at [TKT_USES_* schema=any] of the dates/times below.</p>\n	</td>\n	<td class="item_c">[LINE_ITEM_QUANTITY]</td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>";s:20:"ticket_line_item_pms";s:548:"<tr class="item">\n	<td>[LINE_ITEM_NAME][LINE_ITEM_TAXABLE_*]</td>\n	<td colspan="2">[LINE_ITEM_DESCRIPTION]\n		<p class="ticket-note">This ticket can be used once at [TKT_USES_* schema=any] of the dates/times below.</p>\n	</td>\n	<td class="item_c">[LINE_ITEM_QUANTITY]</td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n[PRICE_MODIFIER_LINE_ITEM_LIST]\n<tr class="total_tr odd">\n	<td colspan="4"></td>\n	<td class="total" nowrap="nowrap">Ticket Total:</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n";s:29:"price_modifier_line_item_list";s:232:"<tr class="subitem-row">\n	<td class="subitem">[LINE_ITEM_NAME]</td>\n	<td colspan="2">[LINE_ITEM_DESCRIPTION]</td>\n	<td class="item_c"></td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>";s:13:"datetime_list";s:139:"<li>\n	[DTT_NAME] <br />\n	[DATETIME_START] - [DATETIME_END] ([DATETIME_TIMEZONE]) <br />\n	<p class="ticket-note">[DTT_DESCRIPTION]</p>\n</li>";s:13:"attendee_list";s:335:"<li class="ticket-registration">\n	<table class="registration-details">\n		<tr class="odd">\n			<th>Attendee</th>\n			<td>[FNAME] [LNAME] ([ATTENDEE_EMAIL])</td>\n		</tr>\n		<tr>\n			<th>Registration Code:</th>\n			<td>[REGISTRATION_CODE] - <span class="[REGISTRATION_STATUS_ID]">[REGISTRATION_STATUS_LABEL]</span></td>\n		</tr>\n	</table>\n</li>";s:18:"tax_line_item_list";s:194:"	</td>\n</tr>\n<tr>\n	<td>[LINE_ITEM_NAME]</td>\n	<td>[LINE_ITEM_DESCRIPTION]</td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n<tr>\n	<td colspan="4">";s:25:"additional_line_item_list";s:274:"	</td>\n</tr>\n<tr class="item">\n	<td>[LINE_ITEM_NAME][LINE_ITEM_TAXABLE_*]</td>\n	<td>[LINE_ITEM_DESCRIPTION]</td>\n	<td class="item_c">[LINE_ITEM_QUANTITY]</td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n<tr>\n	<td colspan="5">";s:12:"payment_list";s:250:"	</td></tr>\n<tr class=''item''>\n	<td>[PAYMENT_GATEWAY]</td>\n	<td>[PAYMENT_TIMESTAMP]</td>\n	<td>[PAYMENT_GATEWAY_TXN_ID]</td>\n	<td>[PAYMENT_PO_NUMBER]</td>\n	<td>[PAYMENT_STATUS]</td>\n	<td class=''item_r''>[PAYMENT_AMOUNT]</td>\n</tr>\n<tr>\n	<td colspan="6">";}'),
(3, 2, 'purchaser', 'subject', '[COMPANY] Invoice for Transaction: [TXN_ID]'),
(4, 2, 'purchaser', 'content', 'a:11:{s:4:"main";s:3251:"<div class="print_button_div noPrint">\n	[INVOICE_RECEIPT_SWITCHER_BUTTON] [DISPLAY_PDF_BUTTON]\n	<div class="clear"></div>\n</div>\n<div id="invoice">\n	<table id="invoice-header" class="not-really-a-table">\n		<tr>\n			<td id="logo-dv">\n				[INVOICE_LOGO]\n				<div class="vcard" id="company-address">\n					<div class="fn org"><strong>[INVOICE_PAYEE_NAME]</strong></div>\n					<div class="adr">\n						[INVOICE_PAYEE_ADDRESS]\n					</div>\n					<div class="email">[INVOICE_PAYEE_EMAIL]</div>\n					<div class="vat">[INVOICE_PAYEE_TAX_NUMBER_*]</div>\n				</div>\n			</td>\n			<td>\n				<div id="invoice-info">\n					<h2 id="invoice-hdr">Invoice</h2>\n					<h3>\n						Date: <span>[PRIMARY_REGISTRANT_REGISTRATION_DATE]</span>\n					</h3>\n					<h3>Registration Code:						<span>[PRIMARY_REGISTRANT_REGISTRATION_CODE]</span></h3>\n\n					<h3>Transaction ID: <span>[TXN_ID]</span></h3>\n				</div>\n			</td>\n		</tr>\n		<tr>\n			<td id="instructions" colspan="2">\n				<p>[INVOICE_PAYMENT_INSTRUCTIONS]</p>\n			</td>\n		</tr>\n	</table>\n\n	<h2>Bill To:</h2>\n	<div class="vcard" id="client-details">\n		<div class="fn">[PRIMARY_REGISTRANT_FNAME] [PRIMARY_REGISTRANT_LNAME]</div>\n		<div class="adr">\n			<div class="street-address">\n				[PRIMARY_REGISTRANT_ADDRESS] <br>\n				[PRIMARY_REGISTRANT_ADDRESS2]\n			</div>\n			<div class="locality">[PRIMARY_REGISTRANT_CITY], [PRIMARY_REGISTRANT_ADDRESS_STATE]</div>\n			<div id="client-postcode">[PRIMARY_REGISTRANT_COUNTRY]</div>\n		</div>\n	</div>\n\n	<h2>Purchases</h2>\n	<table class="invoice-amount">\n		<thead>\n			<tr class="header_row">\n				<th class="left ticket_th">Item</th>\n				<th class="left event_th">Description</th>\n				<th class="quantity_th">Qty</th>\n				<th class="left event_th">Price</th>\n				<th class="subtotal_th item_r">Total</th>\n			</tr>\n		</thead>\n		<tbody>\n			<tr>\n				<td colspan="5">[TICKET_LIST]</td>\n			</tr>\n			<tr class="total_tr odd">\n				<td colspan="2"> </td>\n				<td colspan="2" class="total" id="total_currency">Sub-Total</td>\n				<td class="total">[TXN_SUBTOTAL]</td>\n			</tr>\n			<tr>\n				<td colspan="5">[ADDITIONAL_LINE_ITEM_LIST][TAX_LINE_ITEM_LIST]</td>\n			</tr>\n\n			<tr class="total_tr odd">\n				<td colspan="2"> </td>\n				<td colspan="2" class="total" id="total_currency">Total</td>\n				<td class="total">[TOTAL_COST]</td>\n			</tr>\n		</tbody>\n	</table>\n\n	<p>* taxable items</p>\n\n	<h2>Payments</h2>\n	<table class="invoice-amount">\n		<thead>\n			<tr class="header_row">\n				<th><span class="">Payment Method</span></th>\n				<th class=''left datetime_th''>Date</th>\n				<th><span class="">Transaction Id / Cheque #</span></th>\n				<th><span class="">P.O. / S.O.#</span></th>\n				<th><span class="">Status</span></th>\n				<th>Amount</th>\n			</tr>\n		</thead>\n		<tbody>\n			<tr>\n				<td colspan="6">[PAYMENT_LIST_*]</td>\n			</tr>\n		</tbody>\n		<tfoot>\n			<tr class=''total_tr''>\n				<td colspan="4"></td>\n				<td class="item_r">Total Paid</td>\n				<td class="item_r">[TOTAL_AMOUNT_PAID]</td>\n			</tr>\n			<tr class="total_tr">\n				<td colspan="4"></td>\n				<td class="total" id="total_currency">Amount Owed</td>\n				<td class="total">[TOTAL_OWING]</td>\n			</tr>\n		</tfoot>\n	</table>\n</div>\n<div class="print_button_div noPrint">\n	[INVOICE_RECEIPT_SWITCHER_BUTTON] [DISPLAY_PDF_BUTTON]\n	<div class="clear"></div>\n</div>\n";s:10:"event_list";s:0:"";s:11:"ticket_list";s:59:"	</td>\n</tr>\n[TICKET_LINE_ITEM_LIST]\n<tr>\n	<td colspan="5">";s:23:"ticket_line_item_no_pms";s:271:"<tr class="item">\n	<td class="item_I">[LINE_ITEM_NAME][LINE_ITEM_TAXABLE_*]</td>\n	<td class="item_I">[LINE_ITEM_DESCRIPTION]\n	</td>\n	<td class="item_I">[LINE_ITEM_QUANTITY]</td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n";s:20:"ticket_line_item_pms";s:306:"<tr class="item">\n	<td class="item_I">[LINE_ITEM_NAME][LINE_ITEM_TAXABLE_*]</td>\n	<td class="item_I">\n		[LINE_ITEM_DESCRIPTION]\n	</td>\n	<td class="item_I">[LINE_ITEM_QUANTITY]</td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n[PRICE_MODIFIER_LINE_ITEM_LIST]\n";s:29:"price_modifier_line_item_list";s:263:"<tr class="subitem-row">\n	<td class="item_I subitem">[LINE_ITEM_NAME]</td>\n	<td class="item_I">[LINE_ITEM_DESCRIPTION]</td>\n	<td class="item_r">[LINE_ITEM_QUANTITY]</td>\n	<td class="item_r">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n";s:13:"datetime_list";s:0:"";s:13:"attendee_list";s:0:"";s:18:"tax_line_item_list";s:282:"	</td></tr>\n<tr class="item sub-item tax-total">\n	<td class="item_I">[LINE_ITEM_NAME]</td>\n	<td class="item_I">[LINE_ITEM_DESCRIPTION]</td>\n	<td class="item_I"></td>\n	<td class="item_r">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n<tr>\n	<td colspan="5">\n";s:25:"additional_line_item_list";s:305:"	</td>\n</tr>\n<tr class="item">\n	<td class="item_I">[LINE_ITEM_NAME][LINE_ITEM_TAXABLE_*]</td>\n	<td class="item_I">[LINE_ITEM_DESCRIPTION]</td>\n	<td class="item_I">[LINE_ITEM_QUANTITY]</td>\n	<td class="item_c">[LINE_ITEM_AMOUNT]</td>\n	<td class="item_r">[LINE_ITEM_TOTAL]</td>\n</tr>\n<tr>\n	<td colspan="5">\n";s:12:"payment_list";s:251:"	</td></tr>\n<tr class=''item''>\n	<td>[PAYMENT_GATEWAY]</td>\n	<td>[PAYMENT_TIMESTAMP]</td>\n	<td>[PAYMENT_GATEWAY_TXN_ID]</td>\n	<td>[PAYMENT_PO_NUMBER]</td>\n	<td>[PAYMENT_STATUS]</td>\n	<td class=''item_r''>[PAYMENT_AMOUNT]</td>\n</tr>\n<tr>\n	<td colspan="6">\n";}'),
(5, 3, 'admin', 'to', ''),
(6, 3, 'admin', 'from', '[CO_FORMATTED_EMAIL]\n'),
(7, 3, 'admin', 'subject', 'Event Payment Details'),
(8, 3, 'admin', 'content', 'a:5:{s:4:"main";s:1705:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h1>Payment Notification</h1>\n									The following message was sent to the Primary Registrant of this transaction:									<h3>Payment Details:</h3>\n									<ul>\n										<li>\n											<strong>Payment Status:</strong> [PAYMENT_STATUS]\n										</li>\n										<li><strong>Transaction ID:</strong>\n											<a href="[TRANSACTION_ADMIN_URL]">[TXN_ID]</a></li>\n										<li>\n											<strong>Payment Gateway:</strong> [PAYMENT_GATEWAY]\n										</li>\n										<li>\n											<strong>Total Cost:</strong> [TOTAL_COST]\n										</li>\n										<li>\n											<strong>Payment Amount:</strong> [AMOUNT_PAID]\n										</li>\n										<li>\n											<strong>Amount Due:</strong> [TOTAL_OWING]\n										</li>\n									</ul>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n				<div class="content">\n					<h2>Registrant Details:</h2>\n					<p class="callout">\n						<strong>[PRIMARY_REGISTRANT_FNAME] [PRIMARY_REGISTRANT_LNAME]:</strong>\n						<a href="mailto:[PRIMARY_REGISTRANT_EMAIL]">[PRIMARY_REGISTRANT_EMAIL]</a>\n					</p>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:0:"";s:13:"attendee_list";s:0:"";s:11:"ticket_list";s:0:"";s:13:"datetime_list";s:0:"";}'),
(9, 3, 'primary_attendee', 'to', '[PRIMARY_REGISTRANT_EMAIL]\n'),
(10, 3, 'primary_attendee', 'from', '[CO_FORMATTED_EMAIL]\n'),
(11, 3, 'primary_attendee', 'subject', 'Event Payment Details'),
(12, 3, 'primary_attendee', 'content', 'a:5:{s:4:"main";s:2440:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h2>Hello, [PRIMARY_REGISTRANT_FNAME] [PRIMARY_REGISTRANT_LNAME]:</h2>\n									<p class="lead">We''re just notifying you of a successful payment made for the following transaction and tickets:</p>\n									<h3>Payment Details:</h3>\n									<ul>\n										<li>\n											<strong>Payment Status:</strong> [PAYMENT_STATUS]\n										</li>\n										<li>\n											<strong>Transaction ID:</strong> [TXN_ID]\n										</li>\n										<li>\n											<strong>Total Cost:</strong> [TOTAL_COST]\n										</li>\n										<li>\n											<strong>Payment Amount:</strong> [AMOUNT_PAID]\n										</li>\n										<li>\n											<strong>Amount Due:</strong> [TOTAL_OWING]\n										</li>\n									</ul>\n									[EVENT_LIST]\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="footer-wrap">\n	<tbody>\n		<tr>\n			<td class="container">\n				<table class="social" width="100%">\n					<tbody>\n						<tr>\n							<td>\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h3>Connect with Us:</h3>\n												<a class="soc-btn fb" href="[CO_FACEBOOK_URL]">Facebook</a>\n												<a class="soc-btn tw" href="[CO_TWITTER_URL]">Twitter</a>\n												<a class="soc-btn gp" href="[CO_GOOGLE_URL]">Google+</a>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h3>Contact Info:</h3>\n												Phone: <strong>[CO_PHONE]</strong>\n												Email:												<strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n								 \n							</td>\n						</tr>\n					</tbody>\n				</table>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:107:"<p class="callout">\n	<strong>Event: [EVENT_LINK]</strong>\n</p>\n<div class="content">\n	[TICKET_LIST]\n</div>\n";s:13:"attendee_list";s:0:"";s:11:"ticket_list";s:244:"<ul>\n	<li class="ticket-name">\n		<strong>Ticket Name:</strong> [TICKET_NAME]<br><em>[TICKET_DESCRIPTION]</em>\n	</li>\n	<li><strong>Price:</strong> [TICKET_PRICE]</li>\n	<li><strong>Quantity Purchased:</strong> [TKT_QTY_PURCHASED]</li>\n</ul>\n<hr/>";s:13:"datetime_list";s:0:"";}'),
(13, 4, 'admin', 'to', ''),
(14, 4, 'admin', 'from', '[CO_FORMATTED_EMAIL]\n'),
(15, 4, 'admin', 'subject', 'Event Refund Details'),
(16, 4, 'admin', 'content', 'a:5:{s:4:"main";s:1604:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h1>Refund Notification</h1>\n									The following message was sent to the Primary Registrant of this transaction:									<h3>Refund Details:</h3>\n									<ul>\n										<li>\n											<strong>Payment Status:</strong> [PAYMENT_STATUS]\n										</li>\n										<li><strong>Transaction ID:</strong>\n											<a href="[TRANSACTION_ADMIN_URL]">[TXN_ID]</a></li>\n										<li>\n											<strong>Payment Gateway:</strong> [PAYMENT_GATEWAY]\n										</li>\n										<li>\n											<strong>Total Cost:</strong> [TOTAL_COST]\n										</li>\n										<li>\n											<strong>Refund Amount:</strong> [AMOUNT_PAID]\n										</li>\n									</ul>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n				<div class="content">\n					<h2>Registrant Details:</h2>\n					<p class="callout"><strong>[PRIMARY_REGISTRANT_FNAME] [PRIMARY_REGISTRANT_LNAME]:</strong>\n						<a href="mailto:[PRIMARY_REGISTRANT_EMAIL]">[PRIMARY_REGISTRANT_EMAIL]</a></p>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:0:"";s:13:"attendee_list";s:0:"";s:11:"ticket_list";s:0:"";s:13:"datetime_list";s:0:"";}'),
(17, 4, 'primary_attendee', 'to', '[PRIMARY_REGISTRANT_EMAIL]\n'),
(18, 4, 'primary_attendee', 'from', '[CO_FORMATTED_EMAIL]\n'),
(19, 4, 'primary_attendee', 'subject', 'Event Refund Details'),
(20, 4, 'primary_attendee', 'content', 'a:5:{s:4:"main";s:2343:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h2>Hello, [PRIMARY_REGISTRANT_FNAME] [PRIMARY_REGISTRANT_LNAME]:</h2>\n									<p class="lead">We''re just notifying you of a refund issued for the following transaction and tickets:</p>\n									<h3>Refund Details:</h3>\n									<ul>\n										<li>\n											<strong>Payment Status:</strong> [PAYMENT_STATUS]\n										</li>\n										<li>\n											<strong>Transaction ID:</strong> [TXN_ID]\n										</li>\n										<li>\n											<strong>Total Cost:</strong> [TOTAL_COST]\n										</li>\n										<li>\n											<strong>Refund Amount:</strong> [AMOUNT_PAID]\n										</li>\n									</ul>\n									[EVENT_LIST]\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="footer-wrap">\n	<tbody>\n		<tr>\n			<td class="container">\n				<table class="social" width="100%">\n					<tbody>\n						<tr>\n							<td>\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h3>Connect with Us:</h3>\n												<a class="soc-btn fb" href="[CO_FACEBOOK_URL]">Facebook</a>\n												<a class="soc-btn tw" href="[CO_TWITTER_URL]">Twitter</a>\n												<a class="soc-btn gp" href="[CO_GOOGLE_URL]">Google+</a>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h3>Contact Info:</h3>\n												Phone: <strong>[CO_PHONE]</strong>\n												Email:												<strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n								 \n							</td>\n						</tr>\n					</tbody>\n				</table>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:107:"<p class="callout">\n	<strong>Event: [EVENT_LINK]</strong>\n</p>\n<div class="content">\n	[TICKET_LIST]\n</div>\n";s:13:"attendee_list";s:0:"";s:11:"ticket_list";s:244:"<ul>\n	<li class="ticket-name">\n		<strong>Ticket Name:</strong> [TICKET_NAME]<br><em>[TICKET_DESCRIPTION]</em>\n	</li>\n	<li><strong>Price:</strong> [TICKET_PRICE]</li>\n	<li><strong>Quantity Purchased:</strong> [TKT_QTY_PURCHASED]</li>\n</ul>\n<hr/>";s:13:"datetime_list";s:0:"";}'),
(21, 5, 'admin', 'to', '[EVENT_AUTHOR_FORMATTED_EMAIL]'),
(22, 5, 'admin', 'from', '[CO_FORMATTED_EMAIL]'),
(23, 5, 'admin', 'subject', 'Event Registration Details'),
(24, 5, 'admin', 'content', 'a:5:{s:4:"main";s:811:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<h1>Registration Notification</h1>\n					The following attendee(s) have registered for the following event:					<table>\n						<tbody>\n							<tr>\n								<td>[EVENT_LIST]</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:208:"<p class="callout">\n	<strong>\n		Event: [EVENT_LINK]\n		Venue:		<a href="[VENUE_URL]" target="_blank">[VENUE_TITLE]</a> ([VENUE_CITY], [VENUE_STATE])\n	</strong>\n</p>\n<h2>Registrant Details:</h2>\n[ATTENDEE_LIST]";s:13:"attendee_list";s:250:"<h4><a href="[EDIT_ATTENDEE_LINK]">[FNAME] [LNAME]</a></h4>\n<ul>\n	<li>\n		<strong>Registration Code:</strong>\n		<a href="[EDIT_ATTENDEE_LINK]">[REGISTRATION_CODE]</a>\n	</li>\n	<li>\n		<strong>Tickets:</strong>\n		<ul>[TICKET_LIST]</ul>\n	</li>\n</ul>\n<hr/>";s:11:"ticket_list";s:98:"<li>\n	<strong>[TICKET_NAME]</strong>\n</li>\n<li>\n	Dates/Times:</br>\n	<ul>[DATETIME_LIST]</ul>\n</li>";s:13:"datetime_list";s:42:"<li>[DATETIME_START] - [DATETIME_END]</li>";}'),
(25, 5, 'primary_attendee', 'to', ''),
(26, 5, 'primary_attendee', 'from', '[CO_FORMATTED_EMAIL]'),
(27, 5, 'primary_attendee', 'subject', 'Group Event Registration Details'),
(28, 5, 'primary_attendee', 'content', 'a:5:{s:4:"main";s:1893:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h2>Hello, [PRIMARY_REGISTRANT_FNAME]:</h2>\n									<p class="lead">This is a copy of your registration details!</p>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n				<div>\n					[EVENT_LIST]\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="footer-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container">\n				<table class="social" width="100%">\n					<tbody>\n						<tr>\n							<td>\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Connect with Us:</h5>\n												<a class="soc-btn fb" href="[CO_FACEBOOK_URL]">Facebook</a>\n												<a class="soc-btn tw" href="[CO_TWITTER_URL]">Twitter</a>\n												<a class="soc-btn gp" href="[CO_GOOGLE_URL]">Google+</a>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Contact Info:</h5>\n												Phone: <strong>[CO_PHONE]</strong>\n												Email:												<strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n								 \n							</td>\n						</tr>\n					</tbody>\n				</table>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:1665:"<div class="content">\n	<table>\n		<tbody>\n			<tr>\n				<td>\n					<p class="callout"><strong>Event: [EVENT_LINK]\n							Venue:							<a href="[VENUE_URL]" target="_blank">[VENUE_TITLE]</a> ([VENUE_CITY], [VENUE_STATE])</strong>\n					</p>\n				</td>\n			</tr>\n		</tbody>\n	</table>\n</div>\n\n<div class="column-wrap">\n	<div class="column">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<h3>Registrant(s):</h3>\n						[ATTENDEE_LIST]\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="column">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<ul class="sidebar">\n							<li><h5>Venue »</h5></li>\n							<li>[VENUE_IMAGE]</li>\n							<li>[VENUE_TITLE]</li>\n							<li>[VENUE_ADDRESS]</li>\n							<li>[VENUE_CITY]</li>\n							<li>[VENUE_STATE], [VENUE_ZIP]</li>\n							<li>[GOOGLE_MAP_IMAGE]</li>\n						</ul>\n						<table class="social" width="100%" bgcolor="">\n							<tbody>\n								<tr>\n									<td>\n										<table width="100%" align="left">\n											<tbody>\n												<tr>\n													<td>\n														<h6>Connect with this Event:</h6>\n														<a class="soc-btn fb" href="[EVENT_FACEBOOK_URL]">Facebook</a>\n														<a class="soc-btn tw" href="[EVENT_TWITTER_URL]">Twitter</a>\n														<h6>Contact Info:</h6>\n														Phone:														<strong>[EVENT_PHONE]</strong>\n														Email:														<strong><a href="mailto:[EVENT_AUTHOR_EMAIL]">[EVENT_AUTHOR_EMAIL]</a></strong>\n													</td>\n												</tr>\n											</tbody>\n										</table>\n									</td>\n								</tr>\n							</tbody>\n						</table>\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="clear"></div>\n</div>";s:13:"attendee_list";s:171:"<h4>[FNAME] [LNAME]</h4>\n<ul>\n	<li><strong>Registration Code:</strong> [REGISTRATION_CODE]</li>\n	<li><strong>Tickets:</strong></li>\n</ul>\n<ul>\n	[TICKET_LIST]\n</ul>\n<hr />\n";s:11:"ticket_list";s:98:"<li>\n	<strong>[TICKET_NAME]</strong>\n</li>\n<li>\n	Dates/Times:</br>\n	<ul>[DATETIME_LIST]</ul>\n</li>";s:13:"datetime_list";s:42:"<li>[DATETIME_START] - [DATETIME_END]</li>";}'),
(29, 5, 'attendee', 'to', '[RECIPIENT_EMAIL]'),
(30, 5, 'attendee', 'from', '[CO_FORMATTED_EMAIL]'),
(31, 5, 'attendee', 'subject', 'Your Event Registration Details'),
(32, 5, 'attendee', 'content', 'a:5:{s:4:"main";s:1884:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h2>Hello, [RECIPIENT_FNAME]:</h2>\n									<p class="lead">Here''s a copy of your registration details!</p>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n				<div>\n					[EVENT_LIST]\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="footer-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container">\n				<table class="social" width="100%">\n					<tbody>\n						<tr>\n							<td>\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Connect with Us:</h5>\n												<a class="soc-btn fb" href="[CO_FACEBOOK_URL]">Facebook</a>\n												<a class="soc-btn tw" href="[CO_TWITTER_URL]">Twitter</a>\n												<a class="soc-btn gp" href="[CO_GOOGLE_URL]">Google+</a>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Contact Info:</h5>\n												Phone: <strong>[CO_PHONE]</strong>\n												Email:												<strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n								 \n							</td>\n						</tr>\n					</tbody>\n				</table>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n";s:10:"event_list";s:1935:"<div class="content">\n	<table>\n		<tbody>\n			<tr>\n				<td>\n					<p class="callout"><strong>Event: [EVENT_LINK]\n							Venue:							<a href="[VENUE_URL]" target="_blank">[VENUE_TITLE]</a> ([VENUE_CITY], [VENUE_STATE])</strong>\n					</p>\n				</td>\n			</tr>\n		</tbody>\n	</table>\n</div>\n\n<div class="column-wrap">\n	<div class="column">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<h3>Registration:</h3>\n						<h4>[RECIPIENT_FNAME] [RECIPIENT_LNAME]</h4>\n						<ul>\n							<li>\n								<strong>Registration Code:</strong> [RECIPIENT_REGISTRATION_CODE]\n							</li>\n							<li><strong>Tickets:</strong></li>\n							<li>\n								<ul>[RECIPIENT_TICKET_LIST]</ul>\n							</li>\n						</ul>\n						<hr/>\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="column">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<ul class="sidebar">\n							<li><h5>Venue »</h5></li>\n							<li>[VENUE_IMAGE]</li>\n							<li>[VENUE_TITLE]</li>\n							<li>[VENUE_ADDRESS]</li>\n							<li>[VENUE_CITY]</li>\n							<li>[VENUE_STATE], [VENUE_ZIP]</li>\n							<li>[GOOGLE_MAP_IMAGE]</li>\n						</ul>\n						<table class="social" width="100%" bgcolor="">\n							<tbody>\n								<tr>\n									<td>\n										<table width="100%" align="left">\n											<tbody>\n												<tr>\n													<td>\n														<h6>Connect with this Event:</h6>\n														<a class="soc-btn fb" href="[EVENT_FACEBOOK_URL]">Facebook</a>\n														<a class="soc-btn tw" href="[EVENT_TWITTER_URL]">Twitter</a>\n														<h6>Contact Info:</h6>\n														Phone:														<strong>[EVENT_PHONE]</strong>\n														Email:														<strong><a href="mailto:[EVENT_AUTHOR_EMAIL]">[EVENT_AUTHOR_EMAIL]</a></strong>\n													</td>\n												</tr>\n											</tbody>\n										</table>\n									</td>\n								</tr>\n							</tbody>\n						</table>\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="clear"></div>\n</div>";s:13:"attendee_list";s:0:"";s:11:"ticket_list";s:98:"<li>\n	<strong>[TICKET_NAME]</strong>\n</li>\n<li>\n	Dates/Times:</br>\n	<ul>[DATETIME_LIST]</ul>\n</li>";s:13:"datetime_list";s:42:"<li>[DATETIME_START] - [DATETIME_END]</li>";}'),
(33, 6, 'admin', 'to', ''),
(34, 6, 'admin', 'from', '[CO_FORMATTED_EMAIL]'),
(35, 6, 'admin', 'subject', 'Registration Not Approved'),
(36, 6, 'admin', 'content', 'a:5:{s:4:"main";s:804:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<h1>Registration(s) Require Approval</h1>\n					The following registration(s) require your approval:					<table>\n						<tbody>\n							<tr>\n								<td>[EVENT_LIST]</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:378:"<div class="content">\n	<table>\n		<tbody>\n			<tr>\n				<td>\n					<h2>Event: [EVENT]</h2>\n				</td>\n			</tr>\n		</tbody>\n	</table>\n</div>\n<div class="column-wrap">\n	<div class="column-large">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<h2>Registrant(s):</h2>\n						[ATTENDEE_LIST]\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="clear"></div>\n</div>";s:13:"attendee_list";s:250:"<h5><a href="[EDIT_ATTENDEE_LINK]">[FNAME] [LNAME]</a></h5>\n<ul>\n	<li>\n		<strong>Registration Code:</strong>\n		<a href="[EDIT_ATTENDEE_LINK]">[REGISTRATION_CODE]</a>\n	</li>\n	<li>\n		<strong>Tickets:</strong>\n		<ul>[TICKET_LIST]</ul>\n	</li>\n</ul>\n<hr/>";s:11:"ticket_list";s:81:"<li>\n	<p>\n		<strong>[TICKET_NAME]</strong>\n		<ul>[DATETIME_LIST]</ul>\n	</p>\n</li>";s:13:"datetime_list";s:42:"<li>[DATETIME_START] - [DATETIME_END]</li>";}'),
(37, 6, 'primary_attendee', 'to', '[PRIMARY_REGISTRANT_EMAIL]\n'),
(38, 6, 'primary_attendee', 'from', '[CO_FORMATTED_EMAIL]'),
(39, 6, 'primary_attendee', 'subject', 'Registration Not Approved'),
(40, 6, 'primary_attendee', 'content', 'a:5:{s:4:"main";s:1948:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h2>Hello, [PRIMARY_REGISTRANT_FNAME]:</h2>\n\n									<p class="lead">Your registration(s) are awaiting approval by the event manager. You will be notified when the status of your registration changes.</p>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n				[EVENT_LIST]\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="footer-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container">\n				<table class="social" width="100%">\n					<tbody>\n						<tr>\n							<td>\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Connect with Us:</h5>\n												<a class="soc-btn fb" href="[CO_FACEBOOK_URL]">Facebook</a>\n												<a class="soc-btn tw" href="[CO_TWITTER_URL]">Twitter</a>\n												<a class="soc-btn gp" href="[CO_GOOGLE_URL]">Google+</a>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Contact Info:</h5>\n												Phone: <strong>[CO_PHONE]</strong>\n												Email:												<strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n							</td>\n						</tr>\n					</tbody>\n				</table>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:460:"<div class="content">\n	<table>\n		<tbody>\n			<tr>\n				<td>\n					<p class="callout">\n						<strong>Event Name:</strong>\n						<a href="[EVENT_URL]">[EVENT]</a>\n					</p>\n				</td>\n			</tr>\n		</tbody>\n	</table>\n</div>\n\n<div class="column-wrap">\n	<div class="column-large">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<h2>Registrant(s):</h2>\n						[ATTENDEE_LIST]\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="clear"></div>\n</div>";s:13:"attendee_list";s:178:"<h5>[FNAME] [LNAME]</h5>\n<ul>\n	<li><strong>Registration Code:</strong> [REGISTRATION_CODE]</li>\n	<li><strong>Tickets:</strong></li>\n</ul>\n<ul>\n	<li>[TICKET_LIST]</li>\n</ul>\n<hr/>";s:11:"ticket_list";s:81:"<li>\n	<p>\n		<strong>[TICKET_NAME]</strong>\n		<ul>[DATETIME_LIST]</ul>\n	</p>\n</li>";s:13:"datetime_list";s:42:"<li>[DATETIME_START] - [DATETIME_END]</li>";}'),
(41, 7, 'admin', 'to', '[EVENT_AUTHOR_FORMATTED_EMAIL]'),
(42, 7, 'admin', 'from', '[CO_FORMATTED_EMAIL]'),
(43, 7, 'admin', 'subject', 'Registration Pending Payment'),
(44, 7, 'admin', 'content', 'a:5:{s:4:"main";s:1006:"<table class="head-wrap" bgcolor="#999999">\n    <tr>\n        <td></td>\n        <td class="header container">\n            <div class="content">\n            <table bgcolor="#999999" class="">\n                <tr>\n                    <td>[CO_LOGO]</td>\n                    <td align="right"><h6 class="collapse">[COMPANY]</h6></td>\n                </tr>\n            </table>\n            </div>\n        </td>\n        <td></td>\n    </tr>\n</table>\n\n<table class="body-wrap">\n    <tr>\n        <td></td>\n        <td class="container" bgcolor="#FFFFFF">\n            <div class="content">\n                <h1>Registration(s) Pending Payment</h1>\n                <p>The following registration(s) are awaiting payment for the following event(s).</p>\n                <table>\n                    <tr>\n                        <td>\n                           [EVENT_LIST]\n                        </td>\n                    </tr>\n                </table>\n            </div>\n        </td>\n        <td></td>\n    </tr>\n</table>";s:10:"event_list";s:415:"<div class="content">\n	<table>\n		<tbody>\n			<tr>\n				<td>\n					<p class="callout"><strong>Event: [EVENT_LINK]</strong></p>\n				</td>\n			</tr>\n		</tbody>\n	</table>\n</div>\n\n<div class="column-wrap">\n	<div class="column-large">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<h3>Registrant(s):</h3>\n						[ATTENDEE_LIST]\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="clear"></div>\n</div>";s:13:"attendee_list";s:250:"<h4><a href="[EDIT_ATTENDEE_LINK]">[FNAME] [LNAME]</a></h4>\n<ul>\n	<li>\n		<strong>Registration Code:</strong>\n		<a href="[EDIT_ATTENDEE_LINK]">[REGISTRATION_CODE]</a>\n	</li>\n	<li>\n		<strong>Tickets:</strong>\n		<ul>[TICKET_LIST]</ul>\n	</li>\n</ul>\n<hr/>";s:11:"ticket_list";s:98:"<li>\n	<strong>[TICKET_NAME]</strong>\n</li>\n<li>\n	Dates/Times:</br>\n	<ul>[DATETIME_LIST]</ul>\n</li>";s:13:"datetime_list";s:42:"<li>[DATETIME_START] - [DATETIME_END]</li>";}'),
(45, 7, 'primary_attendee', 'to', '[PRIMARY_REGISTRANT_EMAIL]'),
(46, 7, 'primary_attendee', 'from', '[CO_FORMATTED_EMAIL]'),
(47, 7, 'primary_attendee', 'subject', 'Registration Pending Payment'),
(48, 7, 'primary_attendee', 'content', 'a:5:{s:4:"main";s:1993:"<table class="head-wrap" bgcolor="#999999">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="header container">\n				<div class="content">\n					<table bgcolor="#999999">\n						<tbody>\n							<tr>\n								<td>[CO_LOGO]</td>\n								<td align="right">\n									<h6 class="collapse">[COMPANY]</h6>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="body-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container" bgcolor="#FFFFFF">\n				<div class="content">\n					<table>\n						<tbody>\n							<tr>\n								<td>\n									<h1>Hello, [PRIMARY_REGISTRANT_FNAME]:</h1>\n									Your registration(s) is/are pending payment for the following events:									<div>\n										[EVENT_LIST]\n									</div>\n									<p class="callout">You can <a href="[PAYMENT_URL]">make a payment here »</a>.</p>\n								</td>\n							</tr>\n						</tbody>\n					</table>\n				</div>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>\n\n<table class="footer-wrap">\n	<tbody>\n		<tr>\n			<td></td>\n			<td class="container">\n				<table class="social" width="100%">\n					<tbody>\n						<tr>\n							<td>\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Connect with Us:</h5>\n												<a class="soc-btn fb" href="[CO_FACEBOOK_URL]">Facebook</a>\n												<a class="soc-btn tw" href="[CO_TWITTER_URL]">Twitter</a>\n												<a class="soc-btn gp" href="[CO_GOOGLE_URL]">Google+</a>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n\n								<table class="column" align="left">\n									<tbody>\n										<tr>\n											<td>\n												<h5>Contact Info:</h5>\n												Phone: <strong>[CO_PHONE]</strong>\n												Email:												<strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong>\n											</td>\n										</tr>\n									</tbody>\n								</table>\n							</td>\n						</tr>\n					</tbody>\n				</table>\n			</td>\n			<td></td>\n		</tr>\n	</tbody>\n</table>";s:10:"event_list";s:415:"<div class="content">\n	<table>\n		<tbody>\n			<tr>\n				<td>\n					<p class="callout"><strong>Event: [EVENT_LINK]</strong></p>\n				</td>\n			</tr>\n		</tbody>\n	</table>\n</div>\n\n<div class="column-wrap">\n	<div class="column-large">\n		<table align="left">\n			<tbody>\n				<tr>\n					<td>\n						<h3>Registrant(s):</h3>\n						[ATTENDEE_LIST]\n					</td>\n				</tr>\n			</tbody>\n		</table>\n	</div>\n	<div class="clear"></div>\n</div>";s:13:"attendee_list";s:171:"<h4>[FNAME] [LNAME]</h4>\n<ul>\n	<li><strong>Registration Code:</strong> [REGISTRATION_CODE]</li>\n	<li><strong>Tickets:</strong></li>\n</ul>\n<ul>\n	[TICKET_LIST]\n</ul>\n<hr />\n";s:11:"ticket_list";s:98:"<li>\n	<strong>[TICKET_NAME]</strong>\n</li>\n<li>\n	Dates/Times:</br>\n	<ul>[DATETIME_LIST]</ul>\n</li>";s:13:"datetime_list";s:42:"<li>[DATETIME_START] - [DATETIME_END]</li>";}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_message_template_group`
--

CREATE TABLE IF NOT EXISTS `wp_esp_message_template_group` (
  `GRP_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `MTP_user_id` int(10) NOT NULL DEFAULT '1',
  `MTP_name` varchar(245) NOT NULL DEFAULT '',
  `MTP_description` varchar(245) NOT NULL DEFAULT '',
  `MTP_messenger` varchar(30) NOT NULL,
  `MTP_message_type` varchar(50) NOT NULL,
  `MTP_is_global` tinyint(1) NOT NULL DEFAULT '0',
  `MTP_is_override` tinyint(1) NOT NULL DEFAULT '0',
  `MTP_deleted` tinyint(1) NOT NULL DEFAULT '0',
  `MTP_is_active` tinyint(1) NOT NULL DEFAULT '1',
  PRIMARY KEY (`GRP_ID`),
  KEY `MTP_user_id` (`MTP_user_id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;

--
-- Dumping data for table `wp_esp_message_template_group`
--

INSERT INTO `wp_esp_message_template_group` (`GRP_ID`, `MTP_user_id`, `MTP_name`, `MTP_description`, `MTP_messenger`, `MTP_message_type`, `MTP_is_global`, `MTP_is_override`, `MTP_deleted`, `MTP_is_active`) VALUES
(1, 1, '', '', 'html', 'receipt', 1, 0, 0, 1),
(2, 1, '', '', 'html', 'invoice', 1, 0, 0, 1),
(3, 1, '', '', 'email', 'payment', 1, 0, 0, 1),
(4, 1, '', '', 'email', 'payment_refund', 1, 0, 0, 1),
(5, 1, '', '', 'email', 'registration', 1, 0, 0, 1),
(6, 1, '', '', 'email', 'not_approved_registration', 1, 0, 0, 1),
(7, 1, '', '', 'email', 'pending_approval', 1, 0, 0, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_payment`
--

CREATE TABLE IF NOT EXISTS `wp_esp_payment` (
  `PAY_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `TXN_ID` int(10) unsigned DEFAULT NULL,
  `STS_ID` varchar(3) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `PAY_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `PAY_source` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `PAY_amount` decimal(10,3) DEFAULT NULL,
  `PMD_ID` int(11) DEFAULT NULL,
  `PAY_gateway_response` text CHARACTER SET utf8 COLLATE utf8_bin,
  `PAY_txn_id_chq_nmbr` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `PAY_po_number` varchar(32) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `PAY_extra_accntng` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `PAY_details` text CHARACTER SET utf8 COLLATE utf8_bin,
  `PAY_redirect_url` varchar(300) DEFAULT NULL,
  `PAY_redirect_args` text,
  PRIMARY KEY (`PAY_ID`),
  KEY `TXN_ID` (`TXN_ID`),
  KEY `PAY_timestamp` (`PAY_timestamp`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_payment_method`
--

CREATE TABLE IF NOT EXISTS `wp_esp_payment_method` (
  `PMD_ID` int(11) NOT NULL AUTO_INCREMENT,
  `PMD_type` varchar(124) DEFAULT NULL,
  `PMD_name` varchar(255) DEFAULT NULL,
  `PMD_desc` text,
  `PMD_admin_name` varchar(255) DEFAULT NULL,
  `PMD_admin_desc` text,
  `PMD_slug` varchar(124) DEFAULT NULL,
  `PMD_order` int(11) DEFAULT NULL,
  `PMD_debug_mode` tinyint(1) NOT NULL DEFAULT '0',
  `PMD_wp_user` int(11) NOT NULL DEFAULT '0',
  `PMD_open_by_default` tinyint(1) NOT NULL DEFAULT '0',
  `PMD_button_url` varchar(1012) DEFAULT NULL,
  `PMD_scope` varchar(255) DEFAULT 'frontend',
  PRIMARY KEY (`PMD_ID`),
  UNIQUE KEY `PMD_slug_UNIQUE` (`PMD_slug`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=10 ;

--
-- Dumping data for table `wp_esp_payment_method`
--

INSERT INTO `wp_esp_payment_method` (`PMD_ID`, `PMD_type`, `PMD_name`, `PMD_desc`, `PMD_admin_name`, `PMD_admin_desc`, `PMD_slug`, `PMD_order`, `PMD_debug_mode`, `PMD_wp_user`, `PMD_open_by_default`, `PMD_button_url`, `PMD_scope`) VALUES
(1, 'Admin_Only', 'Bank', NULL, 'Bank', 'Bank Draft', 'bank', NULL, 0, 1, 0, NULL, 'a:1:{i:0;s:5:"ADMIN";}'),
(2, 'Admin_Only', 'Cash', NULL, 'Cash', 'Cash Delivered Physically', 'cash', NULL, 0, 1, 0, NULL, 'a:1:{i:0;s:5:"ADMIN";}'),
(3, 'Admin_Only', 'Check', NULL, 'Check', 'Paper Check', 'check', NULL, 0, 1, 0, NULL, 'a:1:{i:0;s:5:"ADMIN";}'),
(4, 'Admin_Only', 'Credit Card', NULL, 'Credit Card', 'Offline Credit Card Payment', 'creditcard', NULL, 0, 1, 0, NULL, 'a:1:{i:0;s:5:"ADMIN";}'),
(5, 'Admin_Only', 'Debit Card', NULL, 'Debit Card', 'Offline Debit Payment', 'debitcard', NULL, 0, 1, 0, NULL, 'a:1:{i:0;s:5:"ADMIN";}'),
(6, 'Invoice', 'Invoice', 'After clicking "Finalize Registration", you will be given instructions on how to access your invoice and complete your payment.', 'Invoice', 'Invoice received with monies included', 'invoice', 0, 0, 1, 0, 'http://asiacentre.co.th/wp-content/plugins/event-espresso-decaf/payment_methods/Invoice/lib/invoice-logo.png', 'a:2:{i:0;s:4:"CART";i:1;s:5:"ADMIN";}'),
(7, 'Admin_Only', 'Money Order', NULL, 'Money Order', '', 'moneyorder', NULL, 0, 1, 0, NULL, 'a:1:{i:0;s:5:"ADMIN";}'),
(8, 'Admin_Only', 'Paypal', NULL, 'Paypal', 'Paypal eCheck, Invoice, etc', 'paypal', NULL, 0, 1, 0, NULL, 'a:1:{i:0;s:5:"ADMIN";}'),
(9, 'Paypal_Standard', 'Paypal Standard', 'Upon submitting this form, you will be forwarded to PayPal to make your payment. <strong>Make sure you return to this site in order to properly finalize your registration.</strong>', 'Paypal Standard', '', 'paypal_standard', 10, 0, 6, 0, 'http://asiacentre.co.th/wp-content/plugins/event-espresso-decaf/payment_methods/Paypal_Standard/lib/paypal-logo.png', 'a:1:{i:0;s:4:"CART";}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_price`
--

CREATE TABLE IF NOT EXISTS `wp_esp_price` (
  `PRC_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `PRT_ID` tinyint(3) unsigned NOT NULL,
  `PRC_amount` decimal(10,3) NOT NULL DEFAULT '0.000',
  `PRC_name` varchar(245) NOT NULL,
  `PRC_desc` text,
  `PRC_is_default` tinyint(1) unsigned NOT NULL DEFAULT '1',
  `PRC_overrides` int(10) unsigned DEFAULT NULL,
  `PRC_deleted` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `PRC_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `PRC_wp_user` bigint(20) unsigned DEFAULT NULL,
  `PRC_parent` int(10) unsigned DEFAULT '0',
  PRIMARY KEY (`PRC_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `wp_esp_price`
--

INSERT INTO `wp_esp_price` (`PRC_ID`, `PRT_ID`, `PRC_amount`, `PRC_name`, `PRC_desc`, `PRC_is_default`, `PRC_overrides`, `PRC_deleted`, `PRC_order`, `PRC_wp_user`, `PRC_parent`) VALUES
(1, 1, 0.000, 'Free Admission', '', 1, NULL, 0, 0, 1, 0),
(2, 1, 0.000, '', '', 0, 0, 0, 1, 6, 0),
(3, 1, 450.000, '', '', 0, 0, 0, 1, 6, 0),
(4, 1, 0.000, '', '', 0, 0, 0, 1, 6, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_price_type`
--

CREATE TABLE IF NOT EXISTS `wp_esp_price_type` (
  `PRT_ID` tinyint(3) unsigned NOT NULL AUTO_INCREMENT,
  `PRT_name` varchar(45) NOT NULL,
  `PBT_ID` tinyint(3) unsigned NOT NULL DEFAULT '1',
  `PRT_is_percent` tinyint(1) NOT NULL DEFAULT '0',
  `PRT_order` tinyint(3) unsigned DEFAULT NULL,
  `PRT_wp_user` bigint(20) unsigned DEFAULT NULL,
  `PRT_deleted` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`PRT_ID`),
  UNIQUE KEY `PRT_name_UNIQUE` (`PRT_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `wp_esp_price_type`
--

INSERT INTO `wp_esp_price_type` (`PRT_ID`, `PRT_name`, `PBT_ID`, `PRT_is_percent`, `PRT_order`, `PRT_wp_user`, `PRT_deleted`) VALUES
(1, 'Base Price', 1, 0, 0, 1, 0),
(2, 'Percent Discount', 2, 1, 20, 1, 0),
(3, 'Dollar Discount', 2, 0, 30, 1, 0),
(4, 'Percent Surcharge', 3, 1, 40, 1, 0),
(5, 'Dollar Surcharge', 3, 0, 50, 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_question`
--

CREATE TABLE IF NOT EXISTS `wp_esp_question` (
  `QST_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `QST_display_text` text NOT NULL,
  `QST_admin_label` varchar(255) NOT NULL,
  `QST_system` varchar(25) DEFAULT NULL,
  `QST_type` varchar(25) NOT NULL DEFAULT 'TEXT',
  `QST_required` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `QST_required_text` varchar(100) DEFAULT NULL,
  `QST_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `QST_admin_only` tinyint(1) NOT NULL DEFAULT '0',
  `QST_wp_user` bigint(20) unsigned DEFAULT NULL,
  `QST_deleted` tinyint(3) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`QST_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;

--
-- Dumping data for table `wp_esp_question`
--

INSERT INTO `wp_esp_question` (`QST_ID`, `QST_display_text`, `QST_admin_label`, `QST_system`, `QST_type`, `QST_required`, `QST_required_text`, `QST_order`, `QST_admin_only`, `QST_wp_user`, `QST_deleted`) VALUES
(1, 'First Name', 'First Name - System Question', 'fname', 'TEXT', 1, 'This field is required', 1, 0, 1, 0),
(2, 'Last Name', 'Last Name - System Question', 'lname', 'TEXT', 1, 'This field is required', 2, 0, 1, 0),
(3, 'Email Address', 'Email Address - System Question', 'email', 'TEXT', 1, 'This field is required', 3, 0, 1, 0),
(4, 'Address', 'Address - System Question', 'address', 'TEXT', 0, 'This field is required', 4, 0, 1, 0),
(5, 'Address2', 'Address2 - System Question', 'address2', 'TEXT', 0, 'This field is required', 5, 0, 1, 0),
(6, 'City', 'City - System Question', 'city', 'TEXT', 0, 'This field is required', 6, 0, 1, 0),
(7, 'State/Province', 'State/Province - System Question', 'state', 'STATE', 0, 'This field is required', 7, 0, 1, 0),
(8, 'Country', 'Country - System Question', 'country', 'COUNTRY', 0, 'This field is required', 8, 0, 1, 0),
(9, 'Zip/Postal Code', 'Zip/Postal Code - System Question', 'zip', 'TEXT', 0, 'This field is required', 9, 0, 1, 0),
(10, 'Phone Number', 'Phone Number - System Question', 'phone', 'TEXT', 0, 'This field is required', 10, 0, 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_question_group`
--

CREATE TABLE IF NOT EXISTS `wp_esp_question_group` (
  `QSG_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `QSG_name` varchar(255) NOT NULL,
  `QSG_identifier` varchar(100) NOT NULL,
  `QSG_desc` text,
  `QSG_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `QSG_show_group_name` tinyint(1) NOT NULL,
  `QSG_show_group_desc` tinyint(1) NOT NULL,
  `QSG_system` tinyint(4) DEFAULT NULL,
  `QSG_deleted` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `QSG_wp_user` bigint(20) unsigned DEFAULT NULL,
  PRIMARY KEY (`QSG_ID`),
  UNIQUE KEY `QSG_identifier_UNIQUE` (`QSG_identifier`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=3 ;

--
-- Dumping data for table `wp_esp_question_group`
--

INSERT INTO `wp_esp_question_group` (`QSG_ID`, `QSG_name`, `QSG_identifier`, `QSG_desc`, `QSG_order`, `QSG_show_group_name`, `QSG_show_group_desc`, `QSG_system`, `QSG_deleted`, `QSG_wp_user`) VALUES
(1, 'Personal Information', 'personal-information-1482897841', '', 1, 1, 1, 1, 0, NULL),
(2, 'Address Information', 'address-information-1482897841', '', 2, 1, 1, 2, 0, NULL);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_question_group_question`
--

CREATE TABLE IF NOT EXISTS `wp_esp_question_group_question` (
  `QGQ_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `QSG_ID` int(10) unsigned NOT NULL,
  `QST_ID` int(10) unsigned NOT NULL,
  `QGQ_order` int(10) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`QGQ_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ;

--
-- Dumping data for table `wp_esp_question_group_question`
--

INSERT INTO `wp_esp_question_group_question` (`QGQ_ID`, `QSG_ID`, `QST_ID`, `QGQ_order`) VALUES
(1, 1, 1, 1),
(2, 1, 2, 2),
(3, 1, 3, 3),
(4, 2, 4, 1),
(5, 2, 5, 2),
(6, 2, 6, 3),
(7, 2, 7, 4),
(8, 2, 8, 5),
(9, 2, 9, 6),
(10, 2, 10, 7);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_question_option`
--

CREATE TABLE IF NOT EXISTS `wp_esp_question_option` (
  `QSO_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `QSO_value` varchar(255) NOT NULL,
  `QSO_desc` text NOT NULL,
  `QST_ID` int(10) unsigned NOT NULL,
  `QSO_order` int(10) unsigned NOT NULL DEFAULT '0',
  `QSO_deleted` tinyint(1) unsigned NOT NULL DEFAULT '0',
  PRIMARY KEY (`QSO_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_registration`
--

CREATE TABLE IF NOT EXISTS `wp_esp_registration` (
  `REG_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `EVT_ID` bigint(20) unsigned NOT NULL,
  `ATT_ID` bigint(20) unsigned NOT NULL,
  `TXN_ID` int(10) unsigned NOT NULL,
  `TKT_ID` int(10) unsigned NOT NULL,
  `STS_ID` varchar(3) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL DEFAULT 'RPP',
  `REG_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `REG_final_price` decimal(10,3) NOT NULL DEFAULT '0.000',
  `REG_paid` decimal(10,3) NOT NULL DEFAULT '0.000',
  `REG_session` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `REG_code` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `REG_url_link` varchar(64) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `REG_count` tinyint(3) unsigned DEFAULT '1',
  `REG_group_size` tinyint(3) unsigned DEFAULT '1',
  `REG_att_is_going` tinyint(1) DEFAULT '0',
  `REG_deleted` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`REG_ID`),
  KEY `EVT_ID` (`EVT_ID`),
  KEY `ATT_ID` (`ATT_ID`),
  KEY `TXN_ID` (`TXN_ID`),
  KEY `TKT_ID` (`TKT_ID`),
  KEY `STS_ID` (`STS_ID`),
  KEY `REG_url_link` (`REG_url_link`),
  KEY `REG_code` (`REG_code`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `wp_esp_registration`
--

INSERT INTO `wp_esp_registration` (`REG_ID`, `EVT_ID`, `ATT_ID`, `TXN_ID`, `TKT_ID`, `STS_ID`, `REG_date`, `REG_final_price`, `REG_paid`, `REG_session`, `REG_code`, `REG_url_link`, `REG_count`, `REG_group_size`, `REG_att_is_going`, `REG_deleted`) VALUES
(1, 3388, 3393, 6, 2, 'RAP', '2016-12-28 05:12:00', 0.000, 0.000, 'e3e1684ec35712cc1863883cbcbc380b', '6-2-1-6e73', '1-6e73c5bfcea5ade645252634dcc81816', 1, 1, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_registration_payment`
--

CREATE TABLE IF NOT EXISTS `wp_esp_registration_payment` (
  `RPY_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `REG_ID` int(10) unsigned NOT NULL,
  `PAY_ID` int(10) unsigned DEFAULT NULL,
  `RPY_amount` decimal(10,3) NOT NULL DEFAULT '0.000',
  PRIMARY KEY (`RPY_ID`),
  KEY `REG_ID` (`REG_ID`),
  KEY `PAY_ID` (`PAY_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_state`
--

CREATE TABLE IF NOT EXISTS `wp_esp_state` (
  `STA_ID` smallint(5) unsigned NOT NULL AUTO_INCREMENT,
  `CNT_ISO` varchar(2) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `STA_abbrev` varchar(24) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `STA_name` varchar(100) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `STA_active` tinyint(1) DEFAULT '1',
  PRIMARY KEY (`STA_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=70 ;

--
-- Dumping data for table `wp_esp_state`
--

INSERT INTO `wp_esp_state` (`STA_ID`, `CNT_ISO`, `STA_abbrev`, `STA_name`, `STA_active`) VALUES
(1, 'US', 'AK', 'Alaska', 0),
(2, 'US', 'AL', 'Alabama', 0),
(3, 'US', 'AS', 'American Samoa', 0),
(4, 'US', 'AZ', 'Arizona', 0),
(5, 'US', 'AR', 'Arkansas', 0),
(6, 'US', 'CA', 'California', 0),
(7, 'US', 'CO', 'Colorado', 0),
(8, 'US', 'CT', 'Connecticut', 0),
(9, 'US', 'DE', 'Delaware', 0),
(10, 'US', 'DC', 'District of Columbia', 0),
(11, 'US', 'FM', 'Federated States of Micronesia', 0),
(12, 'US', 'FL', 'Florida', 0),
(13, 'US', 'GA', 'Georgia', 0),
(14, 'US', 'GU', 'Guam', 0),
(15, 'US', 'HI', 'Hawaii', 0),
(16, 'US', 'ID', 'Idaho', 0),
(17, 'US', 'IL', 'Illinois', 0),
(18, 'US', 'IN', 'Indiana', 0),
(19, 'US', 'IA', 'Iowa', 0),
(20, 'US', 'KS', 'Kansas', 0),
(21, 'US', 'KY', 'Kentucky', 0),
(22, 'US', 'LA', 'Louisiana', 0),
(23, 'US', 'ME', 'Maine', 0),
(24, 'US', 'MH', 'Marshall Islands', 0),
(25, 'US', 'MD', 'Maryland', 0),
(26, 'US', 'MA', 'Massachusetts', 0),
(27, 'US', 'MI', 'Michigan', 0),
(28, 'US', 'MN', 'Minnesota', 0),
(29, 'US', 'MS', 'Mississippi', 0),
(30, 'US', 'MO', 'Missouri', 0),
(31, 'US', 'MT', 'Montana', 0),
(32, 'US', 'NE', 'Nebraska', 0),
(33, 'US', 'NV', 'Nevada', 0),
(34, 'US', 'NH', 'New Hampshire', 0),
(35, 'US', 'NJ', 'New Jersey', 0),
(36, 'US', 'NM', 'New Mexico', 0),
(37, 'US', 'NY', 'New York', 0),
(38, 'US', 'NC', 'North Carolina', 0),
(39, 'US', 'ND', 'North Dakota', 0),
(40, 'US', 'MP', 'Northern Mariana Islands', 0),
(41, 'US', 'OH', 'Ohio', 0),
(42, 'US', 'OK', 'Oklahoma', 0),
(43, 'US', 'OR', 'Oregon', 0),
(44, 'US', 'PW', 'Palau', 0),
(45, 'US', 'PA', 'Pennsylvania', 0),
(46, 'US', 'PR', 'Puerto Rico', 0),
(47, 'US', 'RI', 'Rhode Island', 0),
(48, 'US', 'SC', 'South Carolina', 0),
(49, 'US', 'SD', 'South Dakota', 0),
(50, 'US', 'TN', 'Tennessee', 0),
(51, 'US', 'TX', 'Texas', 0),
(52, 'US', 'UT', 'Utah', 0),
(53, 'US', 'VT', 'Vermont', 0),
(54, 'US', 'VI', 'Virgin Islands', 0),
(55, 'US', 'VA', 'Virginia', 0),
(56, 'US', 'WA', 'Washington', 0),
(57, 'US', 'WV', 'West Virginia', 0),
(58, 'US', 'WI', 'Wisconsin', 0),
(59, 'US', 'WY', 'Wyoming', 0),
(60, 'CA', 'AB', 'Alberta', 1),
(61, 'CA', 'BC', 'British Columbia', 1),
(62, 'CA', 'MB', 'Manitoba', 1),
(63, 'CA', 'NB', 'New Brunswick', 1),
(64, 'CA', 'NL', 'Newfoundland and Labrador', 1),
(65, 'CA', 'NS', 'Nova Scotia', 1),
(66, 'CA', 'ON', 'Ontario', 1),
(67, 'CA', 'PE', 'Prince Edward Island', 1),
(68, 'CA', 'QC', 'Quebec', 1),
(69, 'CA', 'SK', 'Saskatchewan', 1);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_status`
--

CREATE TABLE IF NOT EXISTS `wp_esp_status` (
  `STS_ID` varchar(3) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `STS_code` varchar(45) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `STS_type` set('event','registration','transaction','payment','email') CHARACTER SET utf8 COLLATE utf8_bin NOT NULL,
  `STS_can_edit` tinyint(1) NOT NULL DEFAULT '0',
  `STS_desc` tinytext CHARACTER SET utf8 COLLATE utf8_bin,
  `STS_open` tinyint(1) NOT NULL DEFAULT '1',
  UNIQUE KEY `STS_ID_UNIQUE` (`STS_ID`),
  KEY `STS_type` (`STS_type`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;

--
-- Dumping data for table `wp_esp_status`
--

INSERT INTO `wp_esp_status` (`STS_ID`, `STS_code`, `STS_type`, `STS_can_edit`, `STS_desc`, `STS_open`) VALUES
('ACT', 'ACTIVE', 'event', 0, NULL, 1),
('CLS', 'REGISTRATION_CLOSED', 'event', 0, NULL, 0),
('DEL', 'DELETED', 'event', 0, NULL, 0),
('DEN', 'DENIED', 'event', 0, NULL, 0),
('DRF', 'DRAFT', 'event', 0, NULL, 0),
('EDR', 'DRAFT', 'email', 0, NULL, 0),
('ESN', 'SENT', 'email', 0, NULL, 1),
('EXP', 'EXPIRED', 'event', 0, NULL, 0),
('NAC', 'NOT_ACTIVE', 'event', 0, NULL, 0),
('NOP', 'REGISTRATION_NOT_OPEN', 'event', 0, NULL, 1),
('ONG', 'ONGOING', 'event', 0, NULL, 1),
('OPN', 'REGISTRATION_OPEN', 'event', 0, NULL, 1),
('PAP', 'APPROVED', 'payment', 0, NULL, 1),
('PCN', 'CANCELLED', 'payment', 0, NULL, 0),
('PDC', 'DECLINED', 'payment', 0, NULL, 0),
('PFL', 'FAILED', 'payment', 0, NULL, 0),
('PND', 'PENDING', 'event', 0, NULL, 1),
('PPN', 'PENDING', 'payment', 0, NULL, 1),
('RAP', 'APPROVED', 'registration', 0, NULL, 1),
('RCN', 'CANCELLED', 'registration', 0, NULL, 0),
('RDC', 'DECLINED', 'registration', 0, NULL, 0),
('RIC', 'INCOMPLETE', 'registration', 0, NULL, 1),
('RNA', 'NOT_APPROVED', 'registration', 0, NULL, 1),
('RPP', 'PENDING_PAYMENT', 'registration', 0, NULL, 1),
('SEC', 'SECONDARY', 'event', 0, NULL, 1),
('TAB', 'ABANDONED', 'transaction', 0, NULL, 0),
('TCM', 'COMPLETE', 'transaction', 0, NULL, 1),
('TFL', 'FAILED', 'transaction', 0, NULL, 0),
('TIN', 'INCOMPLETE', 'transaction', 0, NULL, 1),
('TOP', 'OVERPAID', 'transaction', 0, NULL, 1);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_ticket`
--

CREATE TABLE IF NOT EXISTS `wp_esp_ticket` (
  `TKT_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `TTM_ID` int(10) unsigned NOT NULL,
  `TKT_name` varchar(245) NOT NULL DEFAULT '',
  `TKT_description` text NOT NULL,
  `TKT_qty` mediumint(8) DEFAULT NULL,
  `TKT_sold` mediumint(8) NOT NULL DEFAULT '0',
  `TKT_uses` tinyint(4) NOT NULL DEFAULT '-1',
  `TKT_required` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `TKT_min` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `TKT_max` tinyint(4) NOT NULL DEFAULT '-1',
  `TKT_price` decimal(10,3) NOT NULL DEFAULT '0.000',
  `TKT_start_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `TKT_end_date` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `TKT_taxable` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `TKT_order` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `TKT_row` tinyint(3) unsigned NOT NULL DEFAULT '0',
  `TKT_is_default` tinyint(1) unsigned NOT NULL DEFAULT '0',
  `TKT_wp_user` bigint(20) unsigned DEFAULT NULL,
  `TKT_parent` int(10) unsigned DEFAULT '0',
  `TKT_deleted` tinyint(1) NOT NULL DEFAULT '0',
  PRIMARY KEY (`TKT_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `wp_esp_ticket`
--

INSERT INTO `wp_esp_ticket` (`TKT_ID`, `TTM_ID`, `TKT_name`, `TKT_description`, `TKT_qty`, `TKT_sold`, `TKT_uses`, `TKT_required`, `TKT_min`, `TKT_max`, `TKT_price`, `TKT_start_date`, `TKT_end_date`, `TKT_taxable`, `TKT_order`, `TKT_row`, `TKT_is_default`, `TKT_wp_user`, `TKT_parent`, `TKT_deleted`) VALUES
(1, 0, 'Free Ticket', '', 100, 0, -1, 0, 0, -1, 0.000, '0000-00-00 00:00:00', '0000-00-00 00:00:00', 0, 0, 1, 1, 1, 0, 0),
(2, 0, 'Free Ticket', '', 100, 1, -1, 0, 0, -1, 0.000, '2016-12-01 08:00:00', '2017-01-18 00:00:00', 0, 0, 0, 0, 1, 0, 0),
(3, 0, 'Workshop Fees', '', 10, 0, -1, 0, 0, -1, 450.000, '2016-12-01 01:00:00', '2017-01-08 10:00:00', 0, 0, 0, 0, 1, 0, 0),
(4, 0, 'Free Ticket', '', 70, 0, -1, 0, 0, -1, 0.000, '2016-10-31 17:45:00', '2016-11-24 17:00:00', 0, 0, 0, 0, 1, 0, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_ticket_price`
--

CREATE TABLE IF NOT EXISTS `wp_esp_ticket_price` (
  `TKP_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `TKT_ID` int(10) unsigned NOT NULL,
  `PRC_ID` int(10) unsigned NOT NULL,
  PRIMARY KEY (`TKP_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `wp_esp_ticket_price`
--

INSERT INTO `wp_esp_ticket_price` (`TKP_ID`, `TKT_ID`, `PRC_ID`) VALUES
(1, 1, 1),
(2, 2, 2),
(3, 3, 3),
(4, 4, 4);

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_ticket_template`
--

CREATE TABLE IF NOT EXISTS `wp_esp_ticket_template` (
  `TTM_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `TTM_name` varchar(45) NOT NULL,
  `TTM_description` text,
  `TTM_file` varchar(45) DEFAULT NULL,
  PRIMARY KEY (`TTM_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_transaction`
--

CREATE TABLE IF NOT EXISTS `wp_esp_transaction` (
  `TXN_ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
  `TXN_timestamp` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `TXN_total` decimal(10,3) DEFAULT '0.000',
  `TXN_paid` decimal(10,3) NOT NULL DEFAULT '0.000',
  `STS_ID` varchar(3) NOT NULL DEFAULT 'TOP',
  `TXN_session_data` text CHARACTER SET utf8 COLLATE utf8_bin,
  `TXN_hash_salt` varchar(250) CHARACTER SET utf8 COLLATE utf8_bin DEFAULT NULL,
  `PMD_ID` int(11) DEFAULT NULL,
  `TXN_reg_steps` text,
  PRIMARY KEY (`TXN_ID`),
  KEY `TXN_timestamp` (`TXN_timestamp`),
  KEY `STS_ID` (`STS_ID`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=20 ;

--
-- Dumping data for table `wp_esp_transaction`
--

INSERT INTO `wp_esp_transaction` (`TXN_ID`, `TXN_timestamp`, `TXN_total`, `TXN_paid`, `STS_ID`, `TXN_session_data`, `TXN_hash_salt`, `PMD_ID`, `TXN_reg_steps`) VALUES
(1, '2016-12-28 04:12:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482898349;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(2, '2016-12-28 04:31:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482899507;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(3, '2016-12-28 04:45:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482900324;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(4, '2016-12-28 04:56:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482901019;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(5, '2016-12-28 05:07:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482901675;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(6, '2016-12-28 05:12:00', 0.000, 0.000, 'TCM', 0x613a31313a7b733a323a226964223b733a33323a226533653136383465633335373132636331383633383833636263626333383062223b733a373a22757365725f6964223b693a363b733a31303a2269705f61646472657373223b733a31343a223132342e3132322e38352e323232223b733a31303a22757365725f6167656e74223b733a3131333a224d6f7a696c6c612f352e30202857696e646f7773204e5420362e313b2057696e36343b2078363429204170706c655765624b69742f3533372e333620284b48544d4c2c206c696b65204765636b6f29204368726f6d652f35352e302e323838332e3837205361666172692f3533372e3336223b733a31313a22696e69745f616363657373223b693a313438323930313933303b733a31313a226c6173745f616363657373223b693a313438323930313937343b733a31303a2265787069726174696f6e223b693a313438323930353533313b733a31333a2270616765735f76697369746564223b613a303a7b7d733a383a22636865636b6f7574223b4e3b733a343a2263617274223b4e3b733a31313a227472616e73616374696f6e223b4e3b7d, '', 0, 'a:3:{s:20:"attendee_information";b:1;s:15:"payment_options";b:0;s:21:"finalize_registration";b:1;}'),
(7, '2016-12-28 05:31:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482903110;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(8, '2016-12-28 05:45:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482903947;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(9, '2016-12-28 05:55:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482904528;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(10, '2016-12-28 05:55:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482904529;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(11, '2016-12-28 06:10:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482905409;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(12, '2016-12-28 06:18:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482931085;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(13, '2016-12-28 06:32:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482931963;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(14, '2016-12-28 06:53:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482933194;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(15, '2016-12-28 07:33:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482935602;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(16, '2016-12-28 08:09:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482937796;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(17, '2016-12-28 08:37:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482939464;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(18, '2016-12-28 08:37:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482939468;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}'),
(19, '2016-12-28 08:40:00', 0.000, 0.000, 'TFL', '', '', 0, 'a:3:{s:20:"attendee_information";i:1482939652;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_esp_venue_meta`
--

CREATE TABLE IF NOT EXISTS `wp_esp_venue_meta` (
  `VNUM_ID` int(11) NOT NULL AUTO_INCREMENT,
  `VNU_ID` bigint(20) unsigned NOT NULL DEFAULT '0',
  `VNU_address` varchar(255) DEFAULT NULL,
  `VNU_address2` varchar(255) DEFAULT NULL,
  `VNU_city` varchar(100) DEFAULT NULL,
  `STA_ID` int(11) DEFAULT NULL,
  `CNT_ISO` varchar(2) DEFAULT NULL,
  `VNU_zip` varchar(45) DEFAULT NULL,
  `VNU_phone` varchar(45) DEFAULT NULL,
  `VNU_capacity` int(11) DEFAULT NULL,
  `VNU_url` varchar(255) DEFAULT NULL,
  `VNU_virtual_phone` varchar(45) DEFAULT NULL,
  `VNU_virtual_url` varchar(255) DEFAULT NULL,
  `VNU_enable_for_gmap` tinyint(1) DEFAULT '0',
  `VNU_google_map_link` varchar(255) DEFAULT NULL,
  PRIMARY KEY (`VNUM_ID`),
  KEY `STA_ID` (`STA_ID`),
  KEY `CNT_ISO` (`CNT_ISO`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_frm_fields`
--

CREATE TABLE IF NOT EXISTS `wp_frm_fields` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `field_key` varchar(100) DEFAULT NULL,
  `name` text,
  `description` longtext,
  `type` text,
  `default_value` longtext,
  `options` longtext,
  `field_order` int(11) DEFAULT '0',
  `required` int(1) DEFAULT NULL,
  `field_options` longtext,
  `form_id` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `field_key` (`field_key`),
  KEY `form_id` (`form_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=31 ;

--
-- Dumping data for table `wp_frm_fields`
--

INSERT INTO `wp_frm_fields` (`id`, `field_key`, `name`, `description`, `type`, `default_value`, `options`, `field_order`, `required`, `field_options`, `form_id`, `created_at`) VALUES
(1, 'qh4icy', 'Name', 'First', 'text', NULL, NULL, 1, 1, 'a:3:{s:5:"blank";s:0:"";s:14:"separate_value";i:0;s:7:"classes";s:18:"frm_first frm_half";}', 1, '2015-08-27 07:52:48'),
(2, 'ocfup1', 'Last', 'Last', 'text', NULL, NULL, 2, 1, 'a:3:{s:5:"label";s:6:"hidden";s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_half";}', 1, '2015-08-27 07:52:48'),
(3, '29yf4d', 'Email', '', 'email', NULL, NULL, 3, 1, 'a:3:{s:5:"blank";s:0:"";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:8:"frm_full";}', 1, '2015-08-27 07:52:48'),
(4, 'itt5me', 'Website', '', 'url', NULL, NULL, 4, 0, 'a:3:{s:5:"blank";s:0:"";s:7:"invalid";s:28:"Please enter a valid website";s:7:"classes";s:8:"frm_full";}', 1, '2015-08-27 07:52:48'),
(5, 'e6lis6', 'Subject', '', 'text', NULL, NULL, 5, 1, 'a:2:{s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";}', 1, '2015-08-27 07:52:48'),
(6, '9jv0r1', 'Message', '', 'textarea', NULL, NULL, 6, 1, 'a:3:{s:3:"max";s:1:"5";s:5:"blank";s:0:"";s:7:"classes";s:8:"frm_full";}', 1, '2015-08-27 07:52:48'),
(7, '62n6q3', 'Captcha', '', 'captcha', NULL, NULL, 7, 0, 'a:4:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;}', 1, '2015-08-27 07:52:48'),
(8, 'qh4icy2', 'Name', '', 'text', '', '', 0, 1, 'a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:19:"frm_half  frm_first";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2015-08-27 07:55:21'),
(10, '29yf4d2', 'Email', '', 'email', '', '', 4, 1, 'a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2015-08-27 07:55:21'),
(13, '9jv0r12', 'Special requests', '', 'textarea', '', '', 9, 0, 'a:10:{s:3:"max";s:1:"2";s:5:"blank";s:27:"This field cannot be blank.";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2015-08-27 07:55:21'),
(14, '62n6q32', 'Captcha', '', 'captcha', '1', '', 10, 0, 'a:12:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:4:"size";s:0:"";s:3:"max";s:0:"";s:7:"invalid";s:39:"The reCAPTCHA was not entered correctly";s:7:"classes";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:7:"default";}', 3, '2015-08-27 07:55:21'),
(15, 'ynbpp9', 'Request a time', '', 'select', 'Please Choose', 'a:9:{i:0;s:13:"Please Choose";i:1;s:38:"Half day - 08.00-12.00 or  13.00-17.00";i:2;s:22:"Full Day - 08.00-17.00";i:3;s:21:"Evening - 17.00-21.00";i:4;s:30:"Full Day & Evening 08.00-21.00";i:5;s:32:"1 hour - Minimum 3 hours (8-5pm)";i:6;s:21:"Office Suite - Weekly";i:7;s:22:"Office Suite - Monthly";i:8;s:21:"Office Suite - Yearly";}', 7, 1, 'a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:17:"frm_half frm_last";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2015-08-27 07:57:30'),
(16, 'xzvb1y', 'Room Type', '', 'select', 'Please Choose', 'a:6:{i:0;s:13:"Please Choose";i:1;s:12:"Seminar Room";i:2;s:12:"Meeting Room";i:3;s:10:"Both Rooms";i:4;s:34:"Office Suite - Full Unit (2 desks)";i:5;s:33:"Office - Suite = Sharing (1 desk)";}', 5, 1, 'a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2015-08-27 08:00:12'),
(17, 'jql3f6', 'Refreshments &amp; Catering', '', 'checkbox', '', 'a:4:{i:0;s:6:"Coffee";i:1;s:5:"Lunch";i:2;s:10:"Sandwiches";i:6;s:24:"Sparking / Bottled Water";}', 8, 0, 'a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:433:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label  class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    <div class="frm_opt_container">[input]</div>\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2015-08-27 08:01:24'),
(18, 'qh4icy3', 'Name', '', 'text', '', '', 1, 1, 'a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:14:"frm_first_half";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 5, '2015-09-14 09:13:13'),
(20, '29yf4d3', 'Email', '', 'email', '', '', 3, 1, 'a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:8:"frm_full";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 5, '2015-09-14 09:13:13'),
(24, '62n6q33', 'Captcha', '', 'captcha', '1', '', 7, 0, 'a:11:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:4:"size";s:0:"";s:3:"max";s:0:"";s:7:"invalid";s:39:"The reCAPTCHA was not entered correctly";s:7:"classes";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}', 5, '2015-09-14 09:13:13'),
(25, 'd5yseo', 'Date', '', 'select', 'Please Choose', 'a:3:{i:0;s:13:"Please Choose";i:1;s:7:"Weekday";i:2;s:26:"Weekend and Public Holiday";}', 6, 1, 'a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:1;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2016-01-20 10:36:09'),
(28, 'cp5pfc', 'Telephone', '', 'text', '', '', 3, 1, 'a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:19:"frm_half  frm_first";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2016-01-20 10:45:23'),
(30, 'esi12y', 'Organization/Company', '', 'email', '', '', 1, 0, 'a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}', 3, '2016-01-20 10:48:38');

-- --------------------------------------------------------

--
-- Table structure for table `wp_frm_forms`
--

CREATE TABLE IF NOT EXISTS `wp_frm_forms` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `form_key` varchar(100) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` text,
  `parent_form_id` int(11) DEFAULT '0',
  `logged_in` tinyint(1) DEFAULT NULL,
  `editable` tinyint(1) DEFAULT NULL,
  `is_template` tinyint(1) DEFAULT '0',
  `default_template` tinyint(1) DEFAULT '0',
  `status` varchar(255) DEFAULT NULL,
  `options` longtext,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `form_key` (`form_key`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6 ;

--
-- Dumping data for table `wp_frm_forms`
--

INSERT INTO `wp_frm_forms` (`id`, `form_key`, `name`, `description`, `parent_form_id`, `logged_in`, `editable`, `is_template`, `default_template`, `status`, `options`, `created_at`) VALUES
(1, 'contact', 'Contact Us', 'We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.', 0, 0, 0, 1, 1, 'published', 'a:12:{s:12:"submit_value";s:6:"Submit";s:14:"success_action";s:7:"message";s:11:"success_msg";s:54:"Your responses were successfully submitted. Thank you!";s:9:"show_form";i:0;s:7:"akismet";s:0:"";s:7:"no_save";i:0;s:9:"ajax_load";i:0;s:10:"form_class";s:0:"";s:12:"custom_style";i:1;s:11:"before_html";s:194:"<legend class="frm_hidden">[form_name]</legend>\n[if form_name]<h3>[form_name]</h3>[/if form_name]\n[if form_description]<div class="frm_description">[form_description]</div>[/if form_description]";s:10:"after_html";s:0:"";s:11:"submit_html";s:440:"<div class="frm_submit">\n[if back_button]<input type="button" value="[back_label]" name="frm_prev_page" formnovalidate="formnovalidate" class="frm_prev_page" [back_hook] />[/if back_button]\n<input type="submit" value="[button_label]" [button_action] />\n<img class="frm_ajax_loading" src="[frmurl]/images/ajax_loader.gif" alt="Sending"/>\n[if save_draft]<a href="#" class="frm_save_draft" [draft_hook]>[draft_label]</a>[/if save_draft]\n</div>";}', '2009-11-24 00:17:31'),
(3, 'contact2', 'Space Booking', 'We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.', 0, 0, 0, 0, 0, 'published', 'a:12:{s:12:"submit_value";s:12:"Send Request";s:14:"success_action";s:7:"message";s:11:"success_msg";s:84:"Your request was successfully submitted. We will get back to you shortly. Thank you!";s:9:"show_form";i:0;s:7:"akismet";s:0:"";s:7:"no_save";i:0;s:9:"ajax_load";i:0;s:10:"form_class";s:0:"";s:12:"custom_style";s:1:"1";s:11:"before_html";s:200:"<legend class=\\"frm_hidden\\">[form_name]</legend>\r\n[if form_name]<h3>[form_name]</h3>[/if form_name]\r\n[if form_description]<div class=\\"frm_description\\">[form_description]</div>[/if form_description]";s:10:"after_html";s:0:"";s:11:"submit_html";s:471:"<div class=\\"frm_submit\\">\r\n[if back_button]<input type=\\"button\\" value=\\"[back_label]\\" name=\\"frm_prev_page\\" formnovalidate=\\"formnovalidate\\" class=\\"frm_prev_page\\" [back_hook] />[/if back_button]\r\n<input type=\\"submit\\" value=\\"[button_label]\\" [button_action] />\r\n<img class=\\"frm_ajax_loading\\" src=\\"[frmurl]/images/ajax_loader.gif\\" alt=\\"Sending\\"/>\r\n[if save_draft]<a href=\\"#\\" class=\\"frm_save_draft\\" [draft_hook]>[draft_label]</a>[/if save_draft]\r\n</div>";}', '2015-08-27 07:55:21'),
(5, 'contact3', 'Internship Application Form', 'We would like to hear from you. Please send us a message by filling out the form below and we will get back with you shortly.', 0, 0, 0, 0, 0, 'published', 'a:12:{s:12:"submit_value";s:6:"Submit";s:14:"success_action";s:7:"message";s:11:"success_msg";s:54:"Your responses were successfully submitted. Thank you!";s:9:"show_form";i:0;s:7:"akismet";s:0:"";s:7:"no_save";i:0;s:9:"ajax_load";i:0;s:10:"form_class";s:0:"";s:12:"custom_style";s:1:"1";s:11:"before_html";s:200:"<legend class=\\"frm_hidden\\">[form_name]</legend>\r\n[if form_name]<h3>[form_name]</h3>[/if form_name]\r\n[if form_description]<div class=\\"frm_description\\">[form_description]</div>[/if form_description]";s:10:"after_html";s:0:"";s:11:"submit_html";s:471:"<div class=\\"frm_submit\\">\r\n[if back_button]<input type=\\"button\\" value=\\"[back_label]\\" name=\\"frm_prev_page\\" formnovalidate=\\"formnovalidate\\" class=\\"frm_prev_page\\" [back_hook] />[/if back_button]\r\n<input type=\\"submit\\" value=\\"[button_label]\\" [button_action] />\r\n<img class=\\"frm_ajax_loading\\" src=\\"[frmurl]/images/ajax_loader.gif\\" alt=\\"Sending\\"/>\r\n[if save_draft]<a href=\\"#\\" class=\\"frm_save_draft\\" [draft_hook]>[draft_label]</a>[/if save_draft]\r\n</div>";}', '2015-09-14 09:13:13');

-- --------------------------------------------------------

--
-- Table structure for table `wp_frm_item_metas`
--

CREATE TABLE IF NOT EXISTS `wp_frm_item_metas` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `meta_value` longtext,
  `field_id` int(11) NOT NULL,
  `item_id` int(11) NOT NULL,
  `created_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  KEY `field_id` (`field_id`),
  KEY `item_id` (`item_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=25 ;

--
-- Dumping data for table `wp_frm_item_metas`
--

INSERT INTO `wp_frm_item_metas` (`id`, `meta_value`, `field_id`, `item_id`, `created_at`) VALUES
(1, 'Barry Gildea', 8, 1, '2015-08-30 11:43:13'),
(2, 'barry.gildea@gmail.com', 10, 1, '2015-08-30 11:43:13'),
(3, 'Morning (9am-12pm)', 15, 1, '2015-08-30 11:43:13'),
(4, 'U shape (Max 16 People)', 16, 1, '2015-08-30 11:43:13'),
(5, 'Tea & Coffee', 17, 1, '2015-08-30 11:43:13'),
(6, 'None', 13, 1, '2015-08-30 11:43:13'),
(7, 'naphat', 8, 2, '2015-12-26 07:14:45'),
(8, 'naphattarat@gmail.com', 10, 2, '2015-12-26 07:14:45'),
(9, 'Please Choose', 16, 2, '2015-12-26 07:14:45'),
(10, 'Full Day - 08.00-17.00', 15, 2, '2015-12-26 07:14:45'),
(11, 'a:3:{i:0;s:12:"Tea & Coffee";i:1;s:5:"Lunch";i:2;s:10:"Sandwiches";}', 17, 2, '2015-12-26 07:14:45'),
(12, 'I would like to know rental price of meeting room for 10 pp (full day)  \r\nPls, send me photos and price per day  or per week thx.  0916963132 , 0832500204', 13, 2, '2015-12-26 07:14:45'),
(13, 'Tin Aung Saw', 8, 3, '2016-01-14 11:20:14'),
(14, 'chitminem@gmail.com', 10, 3, '2016-01-14 11:20:14'),
(15, 'Seminar Room', 16, 3, '2016-01-14 11:20:14'),
(16, 'Half day - 08.00-12.00 or  13.00-17.00', 15, 3, '2016-01-14 11:20:14'),
(17, 'Tea & Coffee', 17, 3, '2016-01-14 11:20:14'),
(18, 'Request time , January 30 - 1 pm to 5 pm.\r\nI would like to host an meet up event with my friend and talk about works and experiences.\r\nI don\\''t see the place and plan layout clearly.\r\nbut i will check out. \r\nand I would like to know about the seating arrangment , is it just the hall or with desk and chairs ?\r\nMy group would be about 20 to 40 people.\r\ni will add tea and coffee.\r\nso can you quote me the availablity and price ? Thank you. :)', 13, 3, '2016-01-14 11:20:14'),
(19, 'pat', 8, 4, '2016-12-14 08:27:00'),
(20, '0894960249', 28, 4, '2016-12-14 08:27:00'),
(21, 'bic1111@hotmail.com', 10, 4, '2016-12-14 08:27:00'),
(22, 'Seminar Room', 16, 4, '2016-12-14 08:27:00'),
(23, 'Weekday', 25, 4, '2016-12-14 08:27:00'),
(24, 'Half day - 08.00-12.00 or  13.00-17.00', 15, 4, '2016-12-14 08:27:00');

-- --------------------------------------------------------

--
-- Table structure for table `wp_frm_items`
--

CREATE TABLE IF NOT EXISTS `wp_frm_items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `item_key` varchar(100) DEFAULT NULL,
  `name` varchar(255) DEFAULT NULL,
  `description` text,
  `ip` text,
  `form_id` int(11) DEFAULT NULL,
  `post_id` int(11) DEFAULT NULL,
  `user_id` int(11) DEFAULT NULL,
  `parent_item_id` int(11) DEFAULT '0',
  `is_draft` tinyint(1) DEFAULT '0',
  `updated_by` int(11) DEFAULT NULL,
  `created_at` datetime NOT NULL,
  `updated_at` datetime NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `item_key` (`item_key`),
  KEY `form_id` (`form_id`),
  KEY `post_id` (`post_id`),
  KEY `user_id` (`user_id`),
  KEY `parent_item_id` (`parent_item_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=5 ;

--
-- Dumping data for table `wp_frm_items`
--

INSERT INTO `wp_frm_items` (`id`, `item_key`, `name`, `description`, `ip`, `form_id`, `post_id`, `user_id`, `parent_item_id`, `is_draft`, `updated_by`, `created_at`, `updated_at`) VALUES
(1, 'mrv2p1', 'Barry Gildea', 'a:2:{s:7:"browser";s:121:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_10_5) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/44.0.2403.157 Safari/537.36";s:8:"referrer";s:40:"http://asiacentre.brickisred.com/spaces/";}', '171.96.181.224', 3, 0, 1, 0, 0, 1, '2015-08-30 11:43:13', '2015-08-30 11:43:13'),
(2, 'ju3gcu', 'naphat', 'a:2:{s:7:"browser";s:102:"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36";s:8:"referrer";s:31:"http://asiacentre.co.th/spaces/";}', '58.10.169.78', 3, 0, 0, 0, 0, 0, '2015-12-26 07:14:45', '2015-12-26 07:14:45'),
(3, 'jtkwon', 'Tin Aung Saw', 'a:2:{s:7:"browser";s:102:"Mozilla/5.0 (Windows NT 6.1) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/47.0.2526.106 Safari/537.36";s:8:"referrer";s:31:"http://asiacentre.co.th/spaces/";}', '115.87.244.68', 3, 0, 0, 0, 0, 0, '2016-01-14 11:20:14', '2016-01-14 11:20:14'),
(4, 'cx9nux', 'pat', 'a:2:{s:7:"browser";s:109:"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/54.0.2840.99 Safari/537.36";s:8:"referrer";s:39:"http://asiacentre.co.th/meeting-spaces/";}', '124.121.239.82', 3, 0, 6, 0, 0, 6, '2016-12-14 08:27:00', '2016-12-14 08:27:00');

-- --------------------------------------------------------

--
-- Table structure for table `wp_limit_login`
--

CREATE TABLE IF NOT EXISTS `wp_limit_login` (
  `login_id` int(11) NOT NULL AUTO_INCREMENT,
  `login_ip` varchar(100) NOT NULL,
  `login_attempts` int(11) NOT NULL,
  `attempt_time` datetime DEFAULT NULL,
  `locked_time` varchar(100) NOT NULL,
  PRIMARY KEY (`login_id`)
) ENGINE=MyISAM  DEFAULT CHARSET=latin1 AUTO_INCREMENT=7 ;

--
-- Dumping data for table `wp_limit_login`
--

INSERT INTO `wp_limit_login` (`login_id`, `login_ip`, `login_attempts`, `attempt_time`, `locked_time`) VALUES
(1, '171.96.162.157', 0, '2016-02-03 07:27:48', '0'),
(2, '58.11.124.112', 13, '2016-02-12 05:06:22', '2016-02-12 5:53:30'),
(3, '61.90.12.200', 7, '2016-02-13 04:29:08', '2016-02-13 5:32:22'),
(4, '171.96.182.158', 0, '2016-02-13 05:42:31', '0'),
(5, '125.24.164.144', 4, '2016-02-13 07:28:01', '0'),
(6, '176.127.175.37', 2, '2016-02-13 08:50:15', '0');

-- --------------------------------------------------------

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

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

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_options` (
  `option_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `option_name` varchar(191) DEFAULT NULL,
  `option_value` longtext NOT NULL,
  `autoload` varchar(20) NOT NULL DEFAULT 'yes',
  PRIMARY KEY (`option_id`),
  UNIQUE KEY `option_name` (`option_name`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=23318 ;

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

INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1, 'siteurl', 'http://asiacentre.co.th', 'yes'),
(2, 'home', 'http://asiacentre.co.th', 'yes'),
(3, 'blogname', 'Asia Centre', 'yes'),
(4, 'blogdescription', 'Connecting peoples and regions', 'yes'),
(5, 'users_can_register', '0', 'yes'),
(6, 'admin_email', 'info@asiacentre.co.th', 'yes'),
(7, 'start_of_week', '1', 'yes'),
(8, 'use_balanceTags', '', 'yes'),
(9, 'use_smilies', '1', 'yes'),
(10, 'require_name_email', '1', 'yes'),
(11, 'comments_notify', '1', 'yes'),
(12, 'posts_per_rss', '10', 'yes'),
(13, 'rss_use_excerpt', '0', 'yes'),
(14, 'mailserver_url', 'mail.example.com', 'yes'),
(15, 'mailserver_login', 'login@example.com', 'yes'),
(16, 'mailserver_pass', 'password', 'yes'),
(17, 'mailserver_port', '110', 'yes'),
(18, 'default_category', '1', 'yes'),
(19, 'default_comment_status', 'closed', 'yes'),
(20, 'default_ping_status', 'open', 'yes'),
(21, 'default_pingback_flag', '1', 'yes'),
(22, 'posts_per_page', '10', 'yes'),
(23, 'date_format', 'F j, Y', 'yes'),
(24, 'time_format', 'g:i a', 'yes'),
(25, 'links_updated_date_format', 'F j, Y g:i a', 'yes'),
(26, 'comment_moderation', '', 'yes'),
(27, 'moderation_notify', '1', 'yes'),
(28, 'permalink_structure', '/%category%/%postname%/', 'yes'),
(30, 'hack_file', '0', 'yes'),
(31, 'blog_charset', 'UTF-8', 'yes'),
(32, 'moderation_keys', '', 'no'),
(33, 'active_plugins', 'a:16:{i:0;s:25:"add-to-any/add-to-any.php";i:1;s:61:"comments-disable-accesspress/comments-disable-accesspress.php";i:2;s:33:"duplicate-post/duplicate-post.php";i:3;s:45:"enable-media-replace/enable-media-replace.php";i:4;s:25:"formidable/formidable.php";i:5;s:25:"like-box-pro/like-box.php";i:6;s:47:"regenerate-thumbnails/regenerate-thumbnails.php";i:7;s:45:"reorder-entry-images/reorder-entry-images.php";i:8;s:27:"updraftplus/updraftplus.php";i:9;s:51:"verify-google-webmaster-tools/verify-webmasters.php";i:10;s:53:"widget-importer-exporter/widget-importer-exporter.php";i:11;s:24:"wordpress-seo/wp-seo.php";i:12;s:31:"wp-google-maps/wpGoogleMaps.php";i:13;s:29:"wp-mail-smtp/wp_mail_smtp.php";i:14;s:27:"wp-pagenavi/wp-pagenavi.php";i:15;s:41:"wpfront-scroll-top/wpfront-scroll-top.php";}', 'yes'),
(34, 'category_base', '', 'yes'),
(35, 'ping_sites', 'http://rpc.pingomatic.com\nhttp://rpc.twingly.com\nhttp://api.feedster.com/ping\nhttp://api.moreover.com/RPC2\nhttp://api.moreover.com/ping\nhttp://www.blogdigger.com/RPC2\nhttp://www.blogshares.com/rpc.php\nhttp://www.blogsnow.com/ping\nhttp://www.blogstreet.com/xrbin/xmlrpc.cgi\nhttp://bulkfeeds.net/rpc\nhttp://www.newsisfree.com/xmlrpctest.php\nhttp://ping.blo.gs/\nhttp://ping.feedburner.com\nhttp://ping.syndic8.com/xmlrpc.php\nhttp://ping.weblogalot.com/rpc.php\nhttp://rpc.blogrolling.com/pinger/\nhttp://rpc.technorati.com/rpc/ping\nhttp://rpc.weblogs.com/RPC2\nhttp://www.feedsubmitter.com\nhttp://blo.gs/ping.php\nhttp://www.pingerati.net\nhttp://www.pingmyblog.com\nhttp://geourl.org/ping\nhttp://ipings.com\nhttp://www.weblogalot.com/ping', 'yes'),
(37, 'comment_max_links', '2', 'yes'),
(38, 'gmt_offset', '7', 'yes'),
(39, 'default_email_category', '1', 'yes'),
(40, 'recently_edited', 'a:5:{i:0;s:90:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/themes/Buntington/archive-gallery.php";i:1;s:80:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/themes/Buntington/style.css";i:2;s:86:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/themes/Buntington-child/style.css";i:4;s:82:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/themes/Buntington/archive.php";i:5;s:89:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/themes/Buntington/archive-course.php";}', 'no'),
(41, 'template', 'Buntington', 'yes'),
(42, 'stylesheet', 'Buntington-child', 'yes'),
(43, 'comment_whitelist', '1', 'yes'),
(44, 'blacklist_keys', '', 'no'),
(45, 'comment_registration', '1', 'yes'),
(46, 'html_type', 'text/html', 'yes'),
(47, 'use_trackback', '0', 'yes'),
(48, 'default_role', 'subscriber', 'yes'),
(49, 'db_version', '37965', 'yes'),
(50, 'uploads_use_yearmonth_folders', '1', 'yes'),
(51, 'upload_path', '', 'yes'),
(52, 'blog_public', '1', 'yes'),
(53, 'default_link_category', '0', 'yes'),
(54, 'show_on_front', 'page', 'yes'),
(55, 'tag_base', '', 'yes'),
(56, 'show_avatars', '1', 'yes'),
(57, 'avatar_rating', 'G', 'yes'),
(58, 'upload_url_path', '', 'yes'),
(59, 'thumbnail_size_w', '150', 'yes'),
(60, 'thumbnail_size_h', '150', 'yes'),
(61, 'thumbnail_crop', '1', 'yes'),
(62, 'medium_size_w', '600', 'yes'),
(63, 'medium_size_h', '480', 'yes'),
(64, 'avatar_default', 'mystery', 'yes'),
(65, 'large_size_w', '800', 'yes'),
(66, 'large_size_h', '600', 'yes'),
(67, 'image_default_link_type', '', 'yes'),
(68, 'image_default_size', '', 'yes'),
(69, 'image_default_align', '', 'yes'),
(70, 'close_comments_for_old_posts', '', 'yes'),
(71, 'close_comments_days_old', '14', 'yes'),
(72, 'thread_comments', '1', 'yes'),
(73, 'thread_comments_depth', '5', 'yes'),
(74, 'page_comments', '', 'yes'),
(75, 'comments_per_page', '50', 'yes'),
(76, 'default_comments_page', 'newest', 'yes'),
(77, 'comment_order', 'asc', 'yes'),
(78, 'sticky_posts', 'a:1:{i:0;i:1241;}', 'yes'),
(79, 'widget_categories', 'a:5:{i:2;a:4:{s:5:"title";s:7:"Related";s:5:"count";i:0;s:12:"hierarchical";i:0;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;i:4;a:0:{}i:6;a:0:{}i:8;a:0:{}}', 'yes'),
(80, 'widget_text', 'a:16:{i:1;a:0:{}i:2;a:3:{s:5:"title";s:17:"About Asia Centre";s:4:"text";s:658:"The Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\r\n\r\nIt provides consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\r\n\r\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.\r\n\r\n";s:6:"filter";b:1;}i:4;a:3:{s:5:"title";s:0:"";s:4:"text";s:156:"[super_button icon="fa-empire" label="Donate Money" tagline="Become an official school sponsor" color="#ea5644" link="http://google.com" link_opens="_self"]";s:6:"filter";b:0;}i:5;a:3:{s:5:"title";s:16:"Contact Details:";s:4:"text";s:24:"[content_chunk id="328"]";s:6:"filter";b:1;}i:7;a:3:{s:5:"title";s:16:"Contact Details:";s:4:"text";s:24:"[content_chunk id="328"]";s:6:"filter";b:0;}s:12:"_multiwidget";i:1;i:9;a:3:{s:5:"title";s:15:"ASIA Centre MAP";s:4:"text";s:362:"<iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d31004.515069347988!2d100.5174504!3d13.744803200000003!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc54d13b8a0284a40!2sASIA+Centre+Co.%2C+Ltd.!5e0!3m2!1sen!2sth!4v1482380504907" width="300" height="250" frameborder="0" allowfullscreen="allowfullscreen"></iframe>\r\n";s:6:"filter";b:0;}i:11;a:3:{s:5:"title";s:27:"ASIA Centre - Meeting Space";s:4:"text";s:122:"<iframe width="315" height="315" src="https://www.youtube.com/embed/4C9FyF-HR40" frameborder="0" allowfullscreen></iframe>";s:6:"filter";b:0;}i:12;a:3:{s:5:"title";s:25:"How to get to Asia Centre";s:4:"text";s:122:"<iframe width="315" height="250" src="https://www.youtube.com/embed/OAC9DUyNVeM" frameborder="0" allowfullscreen></iframe>";s:6:"filter";b:0;}i:14;a:3:{s:5:"title";s:25:"How to get to Asia Centre";s:4:"text";s:122:"<iframe width="315" height="315" src="https://www.youtube.com/embed/OAC9DUyNVeM" frameborder="0" allowfullscreen></iframe>";s:6:"filter";b:0;}i:16;a:3:{s:5:"title";s:0:"";s:4:"text";s:122:"<iframe width="250" height="250" src="https://www.youtube.com/embed/OAC9DUyNVeM" frameborder="0" allowfullscreen></iframe>";s:6:"filter";b:0;}i:18;a:3:{s:5:"title";s:22:"Getting to Asia centre";s:4:"text";s:122:"<iframe width="300" height="200" src="https://www.youtube.com/embed/OAC9DUyNVeM" frameborder="0" allowfullscreen></iframe>";s:6:"filter";b:0;}i:20;a:0:{}i:22;a:3:{s:5:"title";s:10:"Contact us";s:4:"text";s:35:"http://asiacentre.co.th/contact-us/";s:6:"filter";b:0;}i:24;a:3:{s:5:"title";s:17:"About Asia Centre";s:4:"text";s:654:"The Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\r\n\r\nIt provides consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\r\n\r\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.";s:6:"filter";b:1;}i:26;a:3:{s:5:"title";s:17:"About Asia Centre";s:4:"text";s:654:"The Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\r\n\r\nIt provides consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\r\n\r\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.";s:6:"filter";b:1;}}', 'yes'),
(81, 'widget_rss', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(82, 'uninstall_plugins', 'a:2:{s:27:"wp-pagenavi/wp-pagenavi.php";s:14:"__return_false";s:29:"easy-wp-smtp/easy-wp-smtp.php";s:22:"swpsmtp_send_uninstall";}', 'no'),
(83, 'timezone_string', '', 'yes'),
(84, 'page_for_posts', '703', 'yes'),
(85, 'page_on_front', '316', 'yes'),
(86, 'default_post_format', '0', 'yes'),
(87, 'link_manager_enabled', '0', 'yes'),
(88, 'initial_db_version', '31535', 'yes'),
(89, 'wp_user_roles', 'a:5:{s:13:"administrator";a:2:{s:4:"name";s:13:"Administrator";s:12:"capabilities";a:207:{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:14:"frm_view_forms";b:1;s:14:"frm_edit_forms";b:1;s:16:"frm_delete_forms";b:1;s:19:"frm_change_settings";b:1;s:16:"frm_view_entries";b:1;s:18:"frm_delete_entries";b:1;s:15:"wpseo_bulk_edit";b:1;s:10:"ee_read_ee";b:1;s:18:"ee_manage_gateways";b:1;s:22:"ee_read_payment_method";b:1;s:23:"ee_read_payment_methods";b:1;s:30:"ee_read_others_payment_methods";b:1;s:22:"ee_edit_payment_method";b:1;s:23:"ee_edit_payment_methods";b:1;s:30:"ee_edit_others_payment_methods";b:1;s:24:"ee_delete_payment_method";b:1;s:25:"ee_delete_payment_methods";b:1;s:17:"ee_publish_events";b:1;s:22:"ee_read_private_events";b:1;s:21:"ee_read_others_events";b:1;s:13:"ee_read_event";b:1;s:14:"ee_read_events";b:1;s:13:"ee_edit_event";b:1;s:14:"ee_edit_events";b:1;s:24:"ee_edit_published_events";b:1;s:21:"ee_edit_others_events";b:1;s:22:"ee_edit_private_events";b:1;s:26:"ee_delete_published_events";b:1;s:24:"ee_delete_private_events";b:1;s:15:"ee_delete_event";b:1;s:16:"ee_delete_events";b:1;s:23:"ee_delete_others_events";b:1;s:26:"ee_manage_event_categories";b:1;s:22:"ee_edit_event_category";b:1;s:24:"ee_delete_event_category";b:1;s:24:"ee_assign_event_category";b:1;s:17:"ee_publish_venues";b:1;s:13:"ee_read_venue";b:1;s:14:"ee_read_venues";b:1;s:21:"ee_read_others_venues";b:1;s:22:"ee_read_private_venues";b:1;s:13:"ee_edit_venue";b:1;s:14:"ee_edit_venues";b:1;s:21:"ee_edit_others_venues";b:1;s:24:"ee_edit_published_venues";b:1;s:22:"ee_edit_private_venues";b:1;s:15:"ee_delete_venue";b:1;s:16:"ee_delete_venues";b:1;s:23:"ee_delete_others_venues";b:1;s:24:"ee_delete_private_venues";b:1;s:26:"ee_delete_published_venues";b:1;s:26:"ee_manage_venue_categories";b:1;s:22:"ee_edit_venue_category";b:1;s:24:"ee_delete_venue_category";b:1;s:24:"ee_assign_venue_category";b:1;s:15:"ee_read_contact";b:1;s:16:"ee_read_contacts";b:1;s:15:"ee_edit_contact";b:1;s:16:"ee_edit_contacts";b:1;s:17:"ee_delete_contact";b:1;s:18:"ee_delete_contacts";b:1;s:20:"ee_read_registration";b:1;s:21:"ee_read_registrations";b:1;s:28:"ee_read_others_registrations";b:1;s:20:"ee_edit_registration";b:1;s:21:"ee_edit_registrations";b:1;s:28:"ee_edit_others_registrations";b:1;s:22:"ee_delete_registration";b:1;s:23:"ee_delete_registrations";b:1;s:15:"ee_read_checkin";b:1;s:23:"ee_read_others_checkins";b:1;s:16:"ee_read_checkins";b:1;s:15:"ee_edit_checkin";b:1;s:16:"ee_edit_checkins";b:1;s:23:"ee_edit_others_checkins";b:1;s:17:"ee_delete_checkin";b:1;s:18:"ee_delete_checkins";b:1;s:25:"ee_delete_others_checkins";b:1;s:19:"ee_read_transaction";b:1;s:20:"ee_read_transactions";b:1;s:16:"ee_edit_payments";b:1;s:18:"ee_delete_payments";b:1;s:15:"ee_read_message";b:1;s:16:"ee_read_messages";b:1;s:23:"ee_read_others_messages";b:1;s:23:"ee_read_global_messages";b:1;s:23:"ee_edit_global_messages";b:1;s:15:"ee_edit_message";b:1;s:16:"ee_edit_messages";b:1;s:23:"ee_edit_others_messages";b:1;s:17:"ee_delete_message";b:1;s:18:"ee_delete_messages";b:1;s:25:"ee_delete_others_messages";b:1;s:25:"ee_delete_global_messages";b:1;s:15:"ee_send_message";b:1;s:22:"ee_read_default_ticket";b:1;s:23:"ee_read_default_tickets";b:1;s:30:"ee_read_others_default_tickets";b:1;s:22:"ee_edit_default_ticket";b:1;s:23:"ee_edit_default_tickets";b:1;s:30:"ee_edit_others_default_tickets";b:1;s:24:"ee_delete_default_ticket";b:1;s:25:"ee_delete_default_tickets";b:1;s:32:"ee_delete_others_default_tickets";b:1;s:21:"ee_edit_default_price";b:1;s:22:"ee_edit_default_prices";b:1;s:23:"ee_delete_default_price";b:1;s:24:"ee_delete_default_prices";b:1;s:26:"ee_edit_default_price_type";b:1;s:27:"ee_edit_default_price_types";b:1;s:28:"ee_delete_default_price_type";b:1;s:29:"ee_delete_default_price_types";b:1;s:22:"ee_read_default_prices";b:1;s:27:"ee_read_default_price_types";b:1;s:16:"ee_edit_question";b:1;s:17:"ee_edit_questions";b:1;s:24:"ee_edit_system_questions";b:1;s:17:"ee_read_questions";b:1;s:18:"ee_delete_question";b:1;s:19:"ee_delete_questions";b:1;s:22:"ee_edit_question_group";b:1;s:23:"ee_edit_question_groups";b:1;s:23:"ee_read_question_groups";b:1;s:30:"ee_edit_system_question_groups";b:1;s:24:"ee_delete_question_group";b:1;s:25:"ee_delete_question_groups";b:1;s:20:"ee_assign_event_type";b:1;s:21:"ee_manage_event_types";b:1;s:18:"ee_edit_event_type";b:1;s:20:"ee_delete_event_type";b:1;s:28:"ee_payment_method_admin_only";b:1;s:22:"ee_payment_method_bank";b:1;s:23:"ee_payment_method_check";b:1;s:25:"ee_payment_method_invoice";b:1;s:33:"ee_payment_method_paypal_standard";b:1;s:31:"read_private_aggregator-records";b:1;s:23:"edit_aggregator-records";b:1;s:30:"edit_others_aggregator-records";b:1;s:31:"edit_private_aggregator-records";b:1;s:33:"edit_published_aggregator-records";b:1;s:25:"delete_aggregator-records";b:1;s:32:"delete_others_aggregator-records";b:1;s:33:"delete_private_aggregator-records";b:1;s:35:"delete_published_aggregator-records";b:1;s:26:"publish_aggregator-records";b:1;s:10:"copy_posts";b:1;}}s:6:"editor";a:2:{s:4:"name";s:6:"Editor";s:12:"capabilities";a:46:{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:15:"wpseo_bulk_edit";b:1;s:31:"read_private_aggregator-records";b:1;s:23:"edit_aggregator-records";b:1;s:30:"edit_others_aggregator-records";b:1;s:31:"edit_private_aggregator-records";b:1;s:33:"edit_published_aggregator-records";b:1;s:25:"delete_aggregator-records";b:1;s:32:"delete_others_aggregator-records";b:1;s:33:"delete_private_aggregator-records";b:1;s:35:"delete_published_aggregator-records";b:1;s:26:"publish_aggregator-records";b:1;s:10:"copy_posts";b:1;}}s:6:"author";a:2:{s:4:"name";s:6:"Author";s:12:"capabilities";a:15:{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:23:"edit_aggregator-records";b:1;s:33:"edit_published_aggregator-records";b:1;s:25:"delete_aggregator-records";b:1;s:35:"delete_published_aggregator-records";b:1;s:26:"publish_aggregator-records";b:1;}}s:11:"contributor";a:2:{s:4:"name";s:11:"Contributor";s:12:"capabilities";a:7:{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:23:"edit_aggregator-records";b:1;s:25:"delete_aggregator-records";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'),
(90, 'widget_search', 'a:2:{i:2;a:1:{s:5:"title";s:0:"";}s:12:"_multiwidget";i:1;}', 'yes'),
(91, 'widget_recent-posts', 'a:2:{s:12:"_multiwidget";i:1;i:3;a:0:{}}', 'yes'),
(92, 'widget_recent-comments', 'a:3:{i:1;a:2:{s:5:"title";s:14:"Fresh Comments";s:6:"number";i:3;}i:2;a:2:{s:5:"title";s:18:"Recently Commented";s:6:"number";i:3;}s:12:"_multiwidget";i:1;}', 'yes'),
(93, 'widget_archives', 'a:4:{i:3;a:3:{s:5:"title";s:8:"Archives";s:5:"count";i:1;s:8:"dropdown";i:0;}i:4;a:3:{s:5:"title";s:8:"Archives";s:5:"count";i:1;s:8:"dropdown";i:0;}s:12:"_multiwidget";i:1;i:6;a:0:{}}', 'yes'),
(94, 'widget_meta', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(95, 'sidebars_widgets', 'a:19:{s:4:"cs-1";a:1:{i:0;s:6:"text-7";}s:19:"wp_inactive_widgets";a:3:{i:0;s:13:"sofa_flickr-1";i:1;s:10:"calendar-4";i:2;s:18:"sofa_recentposts-3";}s:21:"sidebar-widgets-index";a:9:{i:0;s:12:"categories-2";i:1;s:8:"search-2";i:2;s:10:"nav_menu-2";i:3;s:17:"recent-comments-1";i:4;s:22:"sofa_upcoming_events-1";i:5;s:11:"tag_cloud-2";i:6;s:19:"sofa_quickcontact-3";i:7;s:19:"sofa_quickcontact-4";i:8;s:18:"like_box_facbook-2";}s:22:"sidebar-widgets-single";a:4:{i:0;s:6:"text-2";i:1;s:18:"sofa_recentposts-1";i:2;s:11:"tag_cloud-3";i:3;s:14:"sofa_twitter-1";}s:20:"sidebar-widgets-page";a:4:{i:0;s:23:"sofa_featured_gallery-1";i:1;s:23:"sofa_featured_gallery-8";i:2;s:7:"text-12";i:3;s:22:"sofa_upcoming_events-7";}s:24:"sidebar-widgets-category";a:3:{i:0;s:24:"sofa_featured_gallery-10";i:1;s:22:"sofa_upcoming_events-3";i:2;s:18:"like_box_facbook-6";}s:23:"sidebar-widgets-archive";a:2:{i:0;s:20:"sofa_quickcontact-10";i:1;s:11:"tag_cloud-4";}s:19:"sidebar-widgets-tag";a:2:{i:0;s:10:"archives-3";i:1;s:11:"tag_cloud-5";}s:22:"sidebar-widgets-search";a:3:{i:0;s:10:"archives-4";i:1;s:11:"tag_cloud-6";i:2;s:6:"text-4";}s:23:"sidebar-widgets-contact";a:2:{i:0;s:6:"text-5";i:1;s:7:"text-14";}s:22:"sidebar-widgets-events";a:5:{i:0;s:7:"text-26";i:1;s:24:"sofa_featured_gallery-12";i:2;s:23:"sofa_featured_gallery-6";i:3;s:24:"sofa_featured_gallery-14";i:4;s:18:"like_box_facbook-5";}s:28:"sidebar-widgets-event-single";a:5:{i:0;s:7:"text-24";i:1;s:23:"sofa_featured_gallery-3";i:2;s:19:"sofa_quickcontact-1";i:3;s:18:"like_box_facbook-7";i:4;s:18:"sofa_recentposts-8";}s:23:"sidebar-widgets-courses";a:2:{i:0;s:20:"sofa_course_search-2";i:1;s:18:"sofa_recentposts-4";}s:29:"sidebar-widgets-course-single";a:3:{i:0;s:20:"sofa_course_search-3";i:1;s:18:"sofa_recentposts-5";i:2;s:22:"sofa_upcoming_events-4";}s:25:"sidebar-widgets-galleries";a:3:{i:0;s:18:"sofa_recentposts-6";i:1;s:22:"sofa_upcoming_events-5";i:2;s:14:"sofa_twitter-3";}s:19:"sidebar-widgets-fcl";a:1:{i:0;s:10:"nav_menu-4";}s:19:"sidebar-widgets-fcm";a:2:{i:0;s:19:"sofa_quickcontact-2";i:1;s:7:"text-20";}s:19:"sidebar-widgets-fcr";a:1:{i:0;s:6:"text-9";}s:13:"array_version";i:3;}', 'yes'),
(97, 'cron', 'a:8:{i:1485277447;a:1:{s:47:"AHEE__EE_Cron_Tasks__clean_up_junk_transactions";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:6:"hourly";s:4:"args";a:0:{}s:8:"interval";i:3600;}}}i:1485313822;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:1485313825;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;}}}i:1485315481;a:1:{s:24:"tribe_common_log_cleanup";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1485318229;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:1485326773;a:2:{s:14:"updraft_backup";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}s:23:"updraft_backup_database";a:1:{s:32:"40cd750bba9870f18aada2478b24840a";a:3:{s:8:"schedule";s:5:"daily";s:4:"args";a:0:{}s:8:"interval";i:86400;}}}i:1485356947;a:1:{s:46:"check_plugin_updates-event-espresso-core-decaf";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'),
(100, 'WPLANG', '', 'yes'),
(107, '_transient_random_seed', 'e5d134a79462bd92d479e840bd929a6c', 'yes'),
(130, '_transient_twentyfifteen_categories', '1', 'yes'),
(134, 'widget_calendar', 'a:4:{i:1;a:0:{}i:2;a:1:{s:5:"title";s:19:"Calendar of posting";}s:12:"_multiwidget";i:1;i:4;a:0:{}}', 'yes'),
(135, 'widget_nav_menu', 'a:5:{i:1;a:0:{}i:2;a:2:{s:5:"title";s:6:"Select";s:8:"nav_menu";i:25;}i:3;a:2:{s:5:"title";s:12:"Useful links";s:8:"nav_menu";i:214;}i:4;a:2:{s:5:"title";s:22:"Getting to Asia Centre";s:8:"nav_menu";i:214;}s:12:"_multiwidget";i:1;}', 'yes'),
(136, 'widget_pages', 'a:4:{i:1;a:0:{}s:12:"_multiwidget";i:1;i:3;a:0:{}i:5;a:0:{}}', 'yes'),
(138, 'widget_tag_cloud', 'a:7:{i:1;a:0:{}i:2;a:2:{s:5:"title";s:0:"";s:8:"taxonomy";s:8:"post_tag";}i:3;a:2:{s:5:"title";s:4:"Tags";s:8:"taxonomy";s:8:"post_tag";}i:4;a:2:{s:5:"title";s:4:"Tags";s:8:"taxonomy";s:8:"post_tag";}i:5;a:2:{s:5:"title";s:4:"Tags";s:8:"taxonomy";s:8:"post_tag";}i:6;a:2:{s:5:"title";s:4:"Tags";s:8:"taxonomy";s:8:"post_tag";}s:12:"_multiwidget";i:1;}', 'yes'),
(143, 'theme_mods_twentyfifteen', 'a:1:{s:16:"sidebars_widgets";a:2:{s:4:"time";i:1432545279;s:4:"data";a:2:{s:19:"wp_inactive_widgets";a:0:{}s:9:"sidebar-1";a:6:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:17:"recent-comments-2";i:3;s:10:"archives-2";i:4;s:12:"categories-2";i:5;s:6:"meta-2";}}}}', 'yes'),
(144, 'current_theme', 'Asia Centre Bun', 'yes'),
(145, 'theme_mods_twentytwelve', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:7:"primary";i:191;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1433306214;s:4:"data";a:4:{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";N;s:9:"sidebar-3";N;}}}', 'yes'),
(146, 'theme_switched', '', 'yes'),
(151, 'theme_mods_educate', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1433231446;s:4:"data";a:6:{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:8:"footer-1";N;s:8:"footer-2";N;s:8:"footer-3";N;s:8:"footer-4";N;}}}', 'yes'),
(156, 'theme_mods_edu-blue', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1433231268;s:4:"data";a:6:{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:24:"first-footer-widget-area";N;s:25:"second-footer-widget-area";N;s:24:"third-footer-widget-area";N;s:25:"fourth-footer-widget-area";N;}}}', 'yes'),
(160, 'recently_activated', 'a:0:{}', 'yes'),
(240, 'dismissed_update_core', 'a:1:{s:11:"4.2.2|en_GB";b:1;}', 'yes'),
(246, 'cdap_settings', 'a:2:{s:3:"all";s:1:"1";s:10:"post_types";a:0:{}}', 'yes'),
(399, 'theme_mods_wen-business', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1433231865;s:4:"data";a:5:{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";N;s:30:"sidebar-front-page-widget-area";N;s:15:"sidebar-contact";N;}}}', 'yes'),
(404, 'wpcf7', 'a:1:{s:7:"version";s:5:"4.3.1";}', 'yes'),
(405, 'pagenavi_options', 'a:15:{s:10:"pages_text";s:36:"Page %CURRENT_PAGE% of %TOTAL_PAGES%";s:12:"current_text";s:13:"%PAGE_NUMBER%";s:9:"page_text";s:13:"%PAGE_NUMBER%";s:10:"first_text";s:8:"« First";s:9:"last_text";s:7:"Last »";s:9:"prev_text";s:2:"«";s:9:"next_text";s:2:"»";s:12:"dotleft_text";s:3:"...";s:13:"dotright_text";s:3:"...";s:9:"num_pages";i:5;s:23:"num_larger_page_numbers";i:3;s:28:"larger_page_numbers_multiple";i:10;s:11:"always_show";i:0;s:16:"use_pagenavi_css";i:1;s:5:"style";i:1;}', 'yes'),
(411, 'theme_mods_grandcollege-v1-09', 'a:1:{i:0;b:0;}', 'yes'),
(415, 'nav_menu_options', 'a:2:{i:0;b:0;s:8:"auto_add";a:0:{}}', 'yes'),
(445, 'theme_mods_glades', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:3:{s:6:"social";i:192;s:7:"primary";i:191;s:9:"secondary";i:193;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1433314206;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";a:3:{i:0;s:14:"recent-posts-2";i:1;s:12:"categories-2";i:2;s:8:"search-2";}s:17:"magazine-homepage";a:4:{i:0;s:28:"glades_category_posts_grid-2";i:1;s:31:"glades_category_posts_columns-2";i:2;s:6:"text-2";i:3;s:29:"glades_category_posts_boxed-3";}}}}', 'yes'),
(446, 'widget_bcn_widget', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(447, 'widget_glades_category_posts_boxed', 'a:3:{i:1;a:0:{}i:3;a:3:{s:5:"title";s:11:"Posts Boxed";s:8:"category";i:194;s:6:"layout";s:10:"horizontal";}s:12:"_multiwidget";i:1;}', 'yes'),
(448, 'widget_glades_category_posts_columns', 'a:3:{i:1;a:0:{}i:2;a:6:{s:18:"category_one_title";s:4:"News";s:12:"category_one";i:194;s:18:"category_two_title";s:5:"Other";s:12:"category_two";i:194;s:6:"number";i:4;s:14:"highlight_post";b:0;}s:12:"_multiwidget";i:1;}', 'yes'),
(449, 'widget_glades_category_posts_grid', 'a:3:{i:1;a:0:{}i:2;a:4:{s:5:"title";s:4:"News";s:8:"category";i:194;s:6:"layout";s:11:"two-columns";s:6:"number";i:2;}s:12:"_multiwidget";i:1;}', 'yes'),
(450, 'theme_mods_dynamic-news-lite', 'a:2:{i:0;b:0;s:16:"sidebars_widgets";a:2:{s:4:"time";i:1433311383;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:0:{}s:7:"sidebar";a:3:{i:0;s:8:"search-2";i:1;s:14:"recent-posts-2";i:2;s:12:"categories-2";}s:18:"frontpage-magazine";N;}}}', 'yes'),
(456, 'featured-content', 'a:3:{s:6:"tag-id";i:79;s:8:"tag-name";s:7:"content";s:8:"hide-tag";i:1;}', 'yes'),
(457, 'glades_theme_options', 'a:4:{s:6:"layout";s:5:"boxed";s:7:"sidebar";s:13:"right-sidebar";s:12:"header_icons";i:1;s:11:"footer_text";s:11:"Asia Centre";}', 'yes'),
(490, 'theme_mods_asiacentre', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:3:{s:6:"social";i:192;s:7:"primary";i:191;s:9:"secondary";i:193;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1435735287;s:4:"data";a:3:{s:19:"wp_inactive_widgets";a:17:{i:0;s:10:"calendar-2";i:1;s:10:"archives-2";i:2;s:10:"archives-3";i:3;s:10:"archives-4";i:4;s:6:"text-3";i:5;s:6:"text-4";i:6;s:6:"text-5";i:7;s:6:"text-6";i:8;s:17:"recent-comments-2";i:9;s:11:"tag_cloud-2";i:10;s:11:"tag_cloud-3";i:11;s:11:"tag_cloud-4";i:12;s:11:"tag_cloud-5";i:13;s:11:"tag_cloud-6";i:14;s:10:"nav_menu-2";i:15;s:10:"nav_menu-3";i:16;s:10:"nav_menu-4";}s:7:"sidebar";a:3:{i:0;s:14:"recent-posts-2";i:1;s:12:"categories-2";i:2;s:8:"search-2";}s:17:"magazine-homepage";a:4:{i:0;s:28:"glades_category_posts_grid-2";i:1;s:31:"glades_category_posts_columns-2";i:2;s:6:"text-2";i:3;s:29:"glades_category_posts_boxed-3";}}}}', 'yes'),
(640, 'theme_mods_Buntington-child', 'a:2:{i:0;b:0;s:18:"nav_menu_locations";a:2:{s:7:"primary";i:191;s:10:"functional";i:193;}}', 'yes'),
(641, 'vpt_option', 'a:83:{s:16:"site_logo_upload";s:72:"http://asiacentre.co.th/wp-content/uploads/2015/08/asia-centre-logo1.png";s:17:"site_logo_favicon";s:62:"http://asiacentre.co.th/wp-content/uploads/2015/09/favicon.png";s:19:"font_family_content";s:0:"";s:18:"font_style_content";a:0:{}s:19:"font_weight_content";a:0:{}s:19:"font_subset_content";a:0:{}s:20:"content_font_preview";s:536:"<link href='''' rel=''stylesheet'' type=''text/css''>\n<p style="padding: 0 10px 0 10px;font-family:;font-weight: bold;font-size: 23px;line-height: 26px">\n	That''s my title (ŠšĐđČčĆćŽž)\n</p>\n<p style="padding: 0 10px 0 10px;font-family:;font-weight: normal;font-size: 16px;line-height: 26px">\n	Grumpy wizards make toxic brew for the evil Queen and Jack (ŠšĐđČčĆćŽž).\n	<br />\n	Pellentesque sed odio nisi. Sed ut pellentesque libero, quis bibendum nibh. Phasellus sodales scelerisque nisi, eu rutrum mi lorem ipsum dolor.\n</p>";s:17:"font_family_title";s:0:"";s:16:"font_style_title";a:0:{}s:17:"font_weight_title";a:0:{}s:17:"font_subset_title";a:0:{}s:18:"title_font_preview";s:536:"<link href='''' rel=''stylesheet'' type=''text/css''>\n<p style="padding: 0 10px 0 10px;font-family:;font-weight: bold;font-size: 23px;line-height: 26px">\n	That''s my title (ŠšĐđČčĆćŽž)\n</p>\n<p style="padding: 0 10px 0 10px;font-family:;font-weight: normal;font-size: 16px;line-height: 26px">\n	Grumpy wizards make toxic brew for the evil Queen and Jack (ŠšĐđČčĆćŽž).\n	<br />\n	Pellentesque sed odio nisi. Sed ut pellentesque libero, quis bibendum nibh. Phasellus sodales scelerisque nisi, eu rutrum mi lorem ipsum dolor.\n</p>";s:11:"links_color";s:7:"#c96d14";s:17:"links_hover_color";s:7:"#111111";s:11:"navig_color";s:7:"#c96d14";s:17:"navig_hover_color";s:7:"#363636";s:17:"navig_dropdown_bg";s:7:"#FFFFFF";s:20:"navig_dropdown_color";s:7:"#363636";s:29:"navig_dropdown_bg_hover_color";s:7:"#F9F9F9";s:26:"navig_dropdown_hover_color";s:7:"#c96d14";s:23:"navig_submenu_tit_color";s:7:"#CCCCCC";s:13:"f_navig_color";s:7:"#636363";s:19:"f_navig_hover_color";s:7:"#c96d14";s:20:"use_background_image";s:0:"";s:12:"image_bg_url";s:0:"";s:15:"image_bg_repeat";s:6:"repeat";s:19:"image_bg_attachment";s:6:"scroll";s:17:"image_bg_position";s:8:"top left";s:13:"image_bg_size";s:6:"normal";s:15:"footer_bg_color";s:7:"#FFFFFF";s:17:"footer_text_color";s:7:"#777777";s:17:"footer_link_color";s:7:"#c96d14";s:23:"footer_link_hover_color";s:7:"#111111";s:12:"scheme_light";s:0:"";s:21:"nb_social_media_sites";s:0:"";s:13:"sm_foursquare";s:0:"";s:11:"sm_dribbble";s:0:"";s:11:"sm_facebook";s:41:"https://www.facebook.com/asiacentre.co.th";s:9:"sm_flickr";s:0:"";s:9:"sm_github";s:0:"";s:9:"sm_google";s:0:"";s:12:"sm_instagram";s:40:"https://www.instagram.com/asiacentre_bkk";s:11:"sm_linkedin";s:0:"";s:12:"sm_pinterest";s:0:"";s:9:"sm_tumblr";s:0:"";s:10:"sm_twitter";s:34:"https://twitter.com/AsiaCentre_BKK";s:10:"sm_youtube";s:56:"https://www.youtube.com/channel/UCeF_N9fxoIApkyRdQ5PqkWw";s:15:"show_google_map";s:0:"";s:10:"gmap_title";s:14:"Bangkok Office";s:8:"gmap_lat";s:9:"13.756290";s:8:"gmap_lon";s:10:"100.532647";s:9:"gmap_zoom";s:2:"15";s:11:"gmap_marker";s:0:"";s:12:"contact_name";s:11:"Asia Centre";s:15:"contact_address";s:90:"128/183 Phayathai Plaza Building (17th Floor),  Phayathai Road, Thung-Phayathai, Rachatewi";s:12:"contact_city";s:7:"Bangkok";s:13:"contact_state";s:0:"";s:11:"contact_zip";s:5:"10400";s:15:"contact_country";s:8:"Thailand";s:15:"contact_phone_1";s:16:"(66) 02-129 3773";s:15:"contact_phone_2";s:16:"(66) 02-129 3774";s:13:"contact_email";s:21:"info@asiacentre.co.th";s:17:"posts_page_layout";s:4:"grid";s:23:"posts_page_num_of_posts";s:1:"6";s:17:"use_page_comments";s:1:"1";s:19:"post_summary_primal";s:2:"24";s:22:"post_summary_secondary";s:2:"24";s:17:"post_summary_more";s:9:"Read More";s:16:"sidebar_position";s:5:"right";s:9:"404_image";s:0:"";s:15:"theme_copyright";s:63:"© 2016 AsiaCentre, Bangkok, Thailand. -  info@asiacentre.co.th";s:10:"nb_addthis";s:0:"";s:11:"use_addthis";s:0:"";s:12:"addthis_code";s:0:"";s:6:"use_ga";s:0:"";s:7:"ga_code";s:0:"";s:7:"nb_keys";s:0:"";s:10:"flickr_key";s:0:"";s:20:"twitter_consumer_key";s:0:"";s:23:"twitter_consumer_secret";s:0:"";s:20:"twitter_access_token";s:0:"";s:27:"twitter_access_token_secret";s:0:"";s:0:"";s:0:"";}', 'yes'),
(654, 'courses_children', 'a:0:{}', 'yes'),
(660, 'widget_sofa_upcoming_events', 'a:6:{i:1;a:2:{s:5:"title";s:15:"Upcoming events";s:9:"items_num";i:2;}i:3;a:2:{s:5:"title";s:14:"Upcoming Event";s:9:"items_num";i:3;}i:4;a:2:{s:5:"title";s:14:"Upcoming Event";s:9:"items_num";i:1;}i:5;a:2:{s:5:"title";s:14:"upcoming event";s:9:"items_num";i:2;}s:12:"_multiwidget";i:1;i:7;a:2:{s:5:"title";s:15:"Upcoming Events";s:9:"items_num";i:3;}}', 'yes'),
(661, 'widget_sofa_recentposts', 'a:8:{i:1;a:5:{s:19:"s_recentposts_title";s:15:"Recently posted";s:18:"s_recentposts_sort";s:4:"DESC";s:20:"s_recentposts_number";s:1:"8";s:17:"s_recentposts_cat";s:0:"";s:19:"s_recentposts_style";N;}i:3;a:5:{s:19:"s_recentposts_title";s:11:"Recent News";s:18:"s_recentposts_sort";s:4:"DESC";s:20:"s_recentposts_number";s:1:"3";s:17:"s_recentposts_cat";s:0:"";s:19:"s_recentposts_style";N;}i:4;a:5:{s:19:"s_recentposts_title";s:15:"Recently Posted";s:18:"s_recentposts_sort";s:4:"DESC";s:20:"s_recentposts_number";s:1:"3";s:17:"s_recentposts_cat";s:0:"";s:19:"s_recentposts_style";N;}i:5;a:5:{s:19:"s_recentposts_title";s:11:"Recent News";s:18:"s_recentposts_sort";s:4:"DESC";s:20:"s_recentposts_number";s:1:"2";s:17:"s_recentposts_cat";s:0:"";s:19:"s_recentposts_style";N;}i:6;a:5:{s:19:"s_recentposts_title";s:11:"Recent News";s:18:"s_recentposts_sort";s:4:"DESC";s:20:"s_recentposts_number";s:1:"3";s:17:"s_recentposts_cat";s:0:"";s:19:"s_recentposts_style";N;}s:12:"_multiwidget";i:1;i:8;a:5:{s:19:"s_recentposts_title";s:0:"";s:18:"s_recentposts_sort";s:4:"DESC";s:20:"s_recentposts_number";s:1:"0";s:17:"s_recentposts_cat";s:0:"";s:19:"s_recentposts_style";s:2:"on";}i:10;a:0:{}}', 'yes'),
(662, 'widget_sofa_twitter', 'a:3:{i:1;a:4:{s:15:"s_twitter_title";s:0:"";s:14:"s_twitter_user";s:14:"AsiaCentre_BKK";s:15:"s_twitts_number";s:1:"3";s:24:"s_twitts_exclude_replies";s:2:"no";}i:3;a:4:{s:15:"s_twitter_title";s:0:"";s:14:"s_twitter_user";s:9:"president";s:15:"s_twitts_number";s:1:"3";s:24:"s_twitts_exclude_replies";s:2:"no";}s:12:"_multiwidget";i:1;}', 'yes'),
(663, 'widget_sofa_featured_gallery', 'a:10:{i:1;a:2:{s:5:"title";s:19:"View Spaces Gallery";s:7:"gallery";i:2471;}i:2;a:2:{s:5:"title";s:16:"From the Gallery";s:7:"gallery";i:111;}i:3;a:2:{s:5:"title";s:14:"UPR Conference";s:7:"gallery";i:3428;}i:5;a:0:{}i:6;a:2:{s:5:"title";s:30:"Media & Communication Workshop";s:7:"gallery";i:3253;}s:12:"_multiwidget";i:1;i:8;a:2:{s:5:"title";s:28:"Media&Communication Workshop";s:7:"gallery";i:3253;}i:10;a:2:{s:5:"title";s:26:"ASIA Centre Spaces Gallery";s:7:"gallery";i:2471;}i:12;a:2:{s:5:"title";s:14:"UPR Conference";s:7:"gallery";i:3428;}i:14;a:2:{s:5:"title";s:26:"ASIA Centre Spaces Gallery";s:7:"gallery";i:2471;}}', 'yes'),
(664, 'widget_sofa_course_search', 'a:4:{i:1;a:2:{s:5:"title";s:13:"Course Search";s:4:"text";s:36:"* search by id, instructor, title...";}i:2;a:2:{s:5:"title";s:13:"Course Finder";s:4:"text";s:53:"* Search by course ID, title, instructor, level, etc.";}i:3;a:2:{s:5:"title";s:13:"Course Finder";s:4:"text";s:53:"* Search by course ID, title, instructor, level, etc.";}s:12:"_multiwidget";i:1;}', 'yes'),
(665, 'widget_sofa_quickcontact', 'a:7:{i:1;a:1:{s:20:"s_quickcontact_title";s:0:"";}i:2;a:1:{s:20:"s_quickcontact_title";s:19:"Asia Centre Address";}i:3;a:1:{s:20:"s_quickcontact_title";s:0:"";}i:4;a:1:{s:20:"s_quickcontact_title";s:0:"";}i:8;a:0:{}s:12:"_multiwidget";i:1;i:10;a:0:{}}', 'yes'),
(666, 'widget_sofa_flickr', 'a:2:{i:1;a:4:{s:14:"s_flickr_title";s:12:"Flickr Album";s:15:"s_flickr_choice";s:12:"30330906@N04";s:12:"s_flickr_noi";s:2:"12";s:12:"s_flickr_tou";s:4:"user";}s:12:"_multiwidget";i:1;}', 'yes'),
(823, 'theme_mods_Buntington', 'a:3:{i:0;b:0;s:18:"nav_menu_locations";a:1:{s:7:"primary";i:191;}s:16:"sidebars_widgets";a:2:{s:4:"time";i:1435735222;s:4:"data";a:17:{s:19:"wp_inactive_widgets";a:0:{}s:21:"sidebar-widgets-index";a:7:{i:0;s:14:"recent-posts-2";i:1;s:12:"categories-2";i:2;s:8:"search-2";i:3;s:10:"nav_menu-2";i:4;s:17:"recent-comments-1";i:5;s:22:"sofa_upcoming_events-1";i:6;s:11:"tag_cloud-2";}s:22:"sidebar-widgets-single";a:4:{i:0;s:6:"text-2";i:1;s:18:"sofa_recentposts-1";i:2;s:11:"tag_cloud-3";i:3;s:14:"sofa_twitter-1";}s:20:"sidebar-widgets-page";a:3:{i:0;s:22:"sofa_upcoming_events-2";i:1;s:23:"sofa_featured_gallery-1";i:2;s:6:"text-3";}s:24:"sidebar-widgets-category";a:5:{i:0;s:10:"archives-1";i:1;s:22:"sofa_upcoming_events-3";i:2;s:17:"recent-comments-2";i:3;s:23:"sofa_featured_gallery-2";i:4;s:20:"sofa_course_search-1";}s:23:"sidebar-widgets-archive";a:3:{i:0;s:10:"archives-2";i:1;s:10:"calendar-2";i:2;s:11:"tag_cloud-4";}s:19:"sidebar-widgets-tag";a:2:{i:0;s:10:"archives-3";i:1;s:11:"tag_cloud-5";}s:22:"sidebar-widgets-search";a:3:{i:0;s:10:"archives-4";i:1;s:11:"tag_cloud-6";i:2;s:6:"text-4";}s:23:"sidebar-widgets-contact";a:2:{i:0;s:6:"text-5";i:1;s:14:"sofa_twitter-2";}s:22:"sidebar-widgets-events";a:3:{i:0;s:10:"nav_menu-3";i:1;s:18:"sofa_recentposts-2";i:2;s:6:"text-6";}s:28:"sidebar-widgets-event-single";a:3:{i:0;s:18:"sofa_recentposts-3";i:1;s:23:"sofa_featured_gallery-3";i:2;s:19:"sofa_quickcontact-1";}s:23:"sidebar-widgets-courses";a:2:{i:0;s:20:"sofa_course_search-2";i:1;s:18:"sofa_recentposts-4";}s:29:"sidebar-widgets-course-single";a:3:{i:0;s:20:"sofa_course_search-3";i:1;s:18:"sofa_recentposts-5";i:2;s:22:"sofa_upcoming_events-4";}s:25:"sidebar-widgets-galleries";a:3:{i:0;s:18:"sofa_recentposts-6";i:1;s:22:"sofa_upcoming_events-5";i:2;s:14:"sofa_twitter-3";}s:19:"sidebar-widgets-fcl";a:1:{i:0;s:10:"nav_menu-4";}s:19:"sidebar-widgets-fcm";a:1:{i:0;s:19:"sofa_quickcontact-2";}s:19:"sidebar-widgets-fcr";a:1:{i:0;s:13:"sofa_flickr-1";}}}}', 'yes'),
(887, 'bcn_options', 'a:88:{s:17:"bmainsite_display";b:0;s:18:"Hmainsite_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:28:"Hmainsite_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:13:"bhome_display";b:1;s:14:"Hhome_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:24:"Hhome_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:13:"bblog_display";b:1;s:14:"Hblog_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:24:"Hblog_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:10:"hseparator";s:6:" &gt; ";s:12:"blimit_title";b:0;s:17:"amax_title_length";i:20;s:20:"bcurrent_item_linked";b:0;s:19:"Hpost_page_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:29:"Hpost_page_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:15:"apost_page_root";s:3:"316";s:15:"Hpaged_template";s:13:"Page %htitle%";s:14:"bpaged_display";b:0;s:19:"Hpost_post_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:29:"Hpost_post_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:15:"apost_post_root";s:3:"703";s:27:"bpost_post_taxonomy_display";b:1;s:24:"Spost_post_taxonomy_type";s:8:"category";s:25:"Hpost_attachment_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:35:"Hpost_attachment_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:13:"H404_template";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:10:"S404_title";s:3:"404";s:16:"Hsearch_template";s:135:"Search results for &#039;<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>&#039;";s:26:"Hsearch_template_no_anchor";s:39:"Search results for &#039;%htitle%&#039;";s:22:"Htax_post_tag_template";s:150:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a></span>";s:32:"Htax_post_tag_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:25:"Htax_post_format_template";s:150:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a></span>";s:35:"Htax_post_format_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:16:"Hauthor_template";s:107:"Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>";s:26:"Hauthor_template_no_anchor";s:21:"Articles by: %htitle%";s:12:"Sauthor_name";s:12:"display_name";s:22:"Htax_category_template";s:155:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% category archives." href="%link%" class="%type%">%htitle%</a></span>";s:32:"Htax_category_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:14:"Hdate_template";s:146:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% archives." href="%link%" class="%type%">%htitle%</a></span>";s:24:"Hdate_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:33:"Hpost_wpcf7_contact_form_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:43:"Hpost_wpcf7_contact_form_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:40:"bpost_wpcf7_contact_form_archive_display";b:0;s:29:"apost_wpcf7_contact_form_root";s:3:"703";s:41:"bpost_wpcf7_contact_form_taxonomy_display";b:0;s:38:"Spost_wpcf7_contact_form_taxonomy_type";s:4:"date";s:23:"Hpost_hom_page_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:33:"Hpost_hom_page_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:30:"bpost_hom_page_archive_display";b:1;s:19:"apost_hom_page_root";i:703;s:31:"bpost_hom_page_taxonomy_display";b:0;s:28:"Spost_hom_page_taxonomy_type";s:4:"date";s:20:"Hpost_event_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:30:"Hpost_event_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:27:"bpost_event_archive_display";b:1;s:16:"apost_event_root";i:703;s:28:"bpost_event_taxonomy_display";b:1;s:25:"Spost_event_taxonomy_type";s:6:"events";s:21:"Hpost_course_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:31:"Hpost_course_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:28:"bpost_course_archive_display";b:1;s:17:"apost_course_root";i:703;s:29:"bpost_course_taxonomy_display";b:1;s:26:"Spost_course_taxonomy_type";s:7:"courses";s:22:"Hpost_gallery_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:32:"Hpost_gallery_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:29:"bpost_gallery_archive_display";b:1;s:18:"apost_gallery_root";i:703;s:30:"bpost_gallery_taxonomy_display";b:1;s:27:"Spost_gallery_taxonomy_type";s:9:"galleries";s:21:"Hpost_slider_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:31:"Hpost_slider_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:28:"bpost_slider_archive_display";b:1;s:17:"apost_slider_root";i:703;s:29:"bpost_slider_taxonomy_display";b:0;s:26:"Spost_slider_taxonomy_type";s:4:"date";s:20:"Hpost_chunk_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:30:"Hpost_chunk_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:27:"bpost_chunk_archive_display";b:1;s:16:"apost_chunk_root";i:703;s:28:"bpost_chunk_taxonomy_display";b:0;s:25:"Spost_chunk_taxonomy_type";s:4:"date";s:20:"Htax_events_template";s:146:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% Event Category archives." href="%link%">%htitle%</a></span>";s:30:"Htax_events_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:21:"Htax_courses_template";s:147:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% Course Category archives." href="%link%">%htitle%</a></span>";s:31:"Htax_courses_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:23:"Htax_galleries_template";s:148:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% Gallery Category archives." href="%link%">%htitle%</a></span>";s:33:"Htax_galleries_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(888, 'bcn_options_bk', 'a:88:{s:17:"bmainsite_display";b:1;s:18:"Hmainsite_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:28:"Hmainsite_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:13:"bhome_display";b:1;s:14:"Hhome_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:24:"Hhome_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:13:"bblog_display";b:1;s:14:"Hblog_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:24:"Hblog_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:10:"hseparator";s:6:" &gt; ";s:12:"blimit_title";b:0;s:17:"amax_title_length";i:20;s:20:"bcurrent_item_linked";b:0;s:19:"Hpost_page_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:29:"Hpost_page_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:15:"apost_page_root";s:3:"316";s:15:"Hpaged_template";s:13:"Page %htitle%";s:14:"bpaged_display";b:0;s:19:"Hpost_post_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:29:"Hpost_post_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:15:"apost_post_root";s:3:"703";s:27:"bpost_post_taxonomy_display";b:1;s:24:"Spost_post_taxonomy_type";s:8:"category";s:25:"Hpost_attachment_template";s:133:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%" class="%type%">%htitle%</a></span>";s:35:"Hpost_attachment_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:13:"H404_template";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:10:"S404_title";s:3:"404";s:16:"Hsearch_template";s:133:"Search results for &#39;<a title="Go to the first page of search results for %title%." href="%link%" class="%type%">%htitle%</a>&#39;";s:26:"Hsearch_template_no_anchor";s:37:"Search results for &#39;%htitle%&#39;";s:22:"Htax_post_tag_template";s:150:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a></span>";s:32:"Htax_post_tag_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:25:"Htax_post_format_template";s:150:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% tag archives." href="%link%" class="%type%">%htitle%</a></span>";s:35:"Htax_post_format_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:16:"Hauthor_template";s:107:"Articles by: <a title="Go to the first page of posts by %title%." href="%link%" class="%type%">%htitle%</a>";s:26:"Hauthor_template_no_anchor";s:21:"Articles by: %htitle%";s:12:"Sauthor_name";s:12:"display_name";s:22:"Htax_category_template";s:155:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% category archives." href="%link%" class="%type%">%htitle%</a></span>";s:32:"Htax_category_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:14:"Hdate_template";s:146:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% archives." href="%link%" class="%type%">%htitle%</a></span>";s:24:"Hdate_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:33:"Hpost_wpcf7_contact_form_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:43:"Hpost_wpcf7_contact_form_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:40:"bpost_wpcf7_contact_form_archive_display";b:0;s:29:"apost_wpcf7_contact_form_root";s:3:"703";s:41:"bpost_wpcf7_contact_form_taxonomy_display";b:0;s:38:"Spost_wpcf7_contact_form_taxonomy_type";s:4:"date";s:23:"Hpost_hom_page_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:33:"Hpost_hom_page_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:30:"bpost_hom_page_archive_display";b:1;s:19:"apost_hom_page_root";s:3:"703";s:31:"bpost_hom_page_taxonomy_display";b:0;s:28:"Spost_hom_page_taxonomy_type";s:4:"date";s:20:"Hpost_event_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:30:"Hpost_event_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:27:"bpost_event_archive_display";b:1;s:16:"apost_event_root";s:3:"703";s:28:"bpost_event_taxonomy_display";b:1;s:25:"Spost_event_taxonomy_type";s:6:"events";s:21:"Hpost_course_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:31:"Hpost_course_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:28:"bpost_course_archive_display";b:1;s:17:"apost_course_root";s:3:"703";s:29:"bpost_course_taxonomy_display";b:1;s:26:"Spost_course_taxonomy_type";s:7:"courses";s:22:"Hpost_gallery_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:32:"Hpost_gallery_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:29:"bpost_gallery_archive_display";b:1;s:18:"apost_gallery_root";s:3:"703";s:30:"bpost_gallery_taxonomy_display";b:1;s:27:"Spost_gallery_taxonomy_type";s:9:"galleries";s:21:"Hpost_slider_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:31:"Hpost_slider_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:28:"bpost_slider_archive_display";b:1;s:17:"apost_slider_root";s:3:"703";s:29:"bpost_slider_taxonomy_display";b:0;s:26:"Spost_slider_taxonomy_type";s:4:"date";s:20:"Hpost_chunk_template";s:118:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to %title%." href="%link%">%htitle%</a></span>";s:30:"Hpost_chunk_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:27:"bpost_chunk_archive_display";b:1;s:16:"apost_chunk_root";s:3:"703";s:28:"bpost_chunk_taxonomy_display";b:0;s:25:"Spost_chunk_taxonomy_type";s:4:"date";s:20:"Htax_events_template";s:146:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% Event Category archives." href="%link%">%htitle%</a></span>";s:30:"Htax_events_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:21:"Htax_courses_template";s:147:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% Course Category archives." href="%link%">%htitle%</a></span>";s:31:"Htax_courses_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";s:23:"Htax_galleries_template";s:148:"<span typeof="v:Breadcrumb"><a rel="v:url" property="v:title" title="Go to the %title% Gallery Category archives." href="%link%">%htitle%</a></span>";s:33:"Htax_galleries_template_no_anchor";s:75:"<span typeof="v:Breadcrumb"><span property="v:title">%htitle%</span></span>";}', 'no'),
(889, 'bcn_version', '5.2.2', 'no'),
(956, 'db_upgraded', '', 'yes'),
(1025, 'finished_splitting_shared_terms', '1', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1084, 'frmpro_css', '/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}legend.frm_hidden{display:none !important;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0px !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;}.with_frm_style .frm_scale{margin-right:10px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;}.with_frm_style select[multiple="multiple"]{height:auto;line-height:normal;}.with_frm_style select{white-space:nowrap;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit], .with_frm_style.frm_center_submit .frm_submit input[type=button]{margin-bottom:8px !important;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form{text-align:left;}.frm_style_formidable-style.with_frm_style fieldset{border:0px solid #000000;margin:0;padding:0 0 15px 0;background-color:transparent;}.frm_style_formidable-style.with_frm_style .frm-show-form  > h3{font-size:20px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style.with_frm_style label.frm_primary_label,.frm_style_formidable-style.with_frm_style.frm_login_form label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\\e600";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\\e602";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\\e62d";}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\\e62a";}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label{float:left;display:inline;width:150px;max-width:33%;margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{display:inline;width:150px;max-width:33%;margin-left:10px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha{max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_left_container p.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_left_container .frm_error{margin-left:160px;max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_right_container p.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_right_container .frm_error{margin-right:160px;max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_left_container .attachment-thumbnail{clear:both;margin-left:160px;}.frm_style_formidable-style.with_frm_style .frm_left_container.frm_inline label.frm_primary_label{max-width:90%;}.frm_style_formidable-style.with_frm_style .form-field.frm_col_field div.frm_description{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_inline_container:not(.frm_dynamic_select_container) .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color:#cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color:#555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style .frm_file_names, .frm_style_formidable-style.with_frm_style .frm_uploaded_files .frm_remove_link{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color:#555555;font-style:italic;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;margin-left:5px ;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style .frm_other_container select:not([multiple="multiple"]){width:auto;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_form_submit_style,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color:#cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0px 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=''#eeeeee'')";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=''#eeeeee'');margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:hover{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:active{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio{margin:0 5px 0 0;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;display:inline;white-space:prewrap;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;color:#B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color:#555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color:#555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_text_block input,.frm_style_formidable-style.with_frm_style .frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background:#ffffff;border-width:1px;border-color:#cccccc;height:#auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100%;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100%;}.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}}@media only screen and (max-width: 500px) {.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_left_container p.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_left_container .attachment-thumbnail,.frm_style_formidable-style.with_frm_style .frm_right_container p.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_right_container .frm_error{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_left_container p.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_left_container .attachment-thumbnail,.frm_style_formidable-style.with_frm_style .frm_right_container p.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{width:100%;max-width:100%;margin-right:0px;margin-left:0px;padding-right:0px;padding-left:0px;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_ajax_loading.frm_loading_now{visibility:visible !important;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{border-radius:10px;-webkit-appearance:radio;}.with_frm_style .frm_checkbox input[type=checkbox]{border-radius:0;-webkit-appearance:checkbox;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{margin-right:5px;width:auto;border:none;}.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#ffffff;}.with_frm_style .frm_uploaded_files{padding:5px 0;}.with_frm_style .frm_file_names{display:block;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#cccccc'')";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#cccccc'');}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#66afe9'')";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#66afe9'');}.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(//asiacentre.co.th/wp-content/plugins/formidable/images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}#ui-datepicker-div{display:none;z-index:999999 !important;}.frm_form_fields div.rating-cancel{display:none !important;}.frm_form_fields div.rating-cancel,.frm_form_fields div.star-rating{float:left;width:17px;height:17px;font-size:16px;line-height:normal;cursor:pointer;display:block;background:transparent;overflow:hidden;}.frm_form_fields div.rating-cancel a:before{font:16px/1 ''dashicons'';content:''\\f460'';color:#CDCDCD;}.frm_form_fields div.star-rating:before,.frm_form_fields div.star-rating a:before{font:16px/1 ''dashicons'';content:''\\f154'';color:#F0AD4E;}.frm_form_fields div.rating-cancel a,.frm_form_fields div.star-rating a{display:block;width:16px;height:100%;border:0;}.frm_form_fields div.star-rating-on:before,.frm_form_fields div.star-rating-on a:before{content:''\\f155'';}.frm_form_fields div.star-rating-hover:before,.frm_form_fields div.star-rating-hover a:before{content:''\\f155'';}.frm_form_fields div.frm_half_star:before,.frm_form_fields div.frm_half_star a:before{content:''\\f459'';}.frm_form_fields div.rating-cancel.star-rating-hover a:before{color:#B63E3F;}.frm_form_fields div.star-rating-readonly,.frm_form_fields div.star-rating-readonly a{cursor:default !important;}.frm_form_fields div.star-rating{overflow:hidden!important;}.with_frm_style .frm_form_field{clear:both;}.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm_alignright{float:right !important;}.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error{margin-right:33%;padding-right:12px;}.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-left:33%;padding-left:12px;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=''checkbox'']):not([type=''radio'']):not([type=''button'']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_left_container label.frm_primary_label{float:left;display:inline;max-width:33%;margin-right:10px;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_right_container .g-recaptcha{max-width:62%;}.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha{display:inline-block;}.frm_left_container p.description,.frm_left_container div.description,.frm_left_container div.frm_description,.frm_left_container .frm_error{margin-left:33%;max-width:62%;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 label.frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 label.frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 label.frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 label.frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 label.frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 label.frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 label.frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.with_frm_style .frm_inline_container.frm_grid_first label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.with_frm_style .frm_inline_container.frm_scale_container label.frm_primary_label{float:left;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_form_field .frm_repeat_sec .frm_add_form_row{opacity:0;display:none;*display:inline;display:inline\\0/; -moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events:none;}.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row{opacity:100;display:inline;pointer-events:auto;}.frm_form_field .frm_repeat_grid .frm_form_field label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_two_col .frm_opt_container:after,.frm_form_field.frm_three_col .frm_opt_container:after,.frm_form_field.frm_four_col .frm_opt_container:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none !important;display:inline;width:auto !important;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_text_block{margin-left:20px;}.frm_text_block input,.frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_text_block .frm_checkbox input[type=checkbox],.frm_text_block .frm_radio input[type=radio]{margin-right:4px;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:inline-block;}html[xmlns] .frm_clearfix{display:block;}* html .frm_clearfix{height:1%;}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.with_frm_style.frm_login_form.frm_inline_login .login-remember input{vertical-align:baseline;}.with_frm_style.frm_login_form.frm_inline_login .login-submit{float:left;}.with_frm_style.frm_login_form.frm_inline_login label{display:inline;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{float:left;margin-right:5px;}.with_frm_style.frm_login_form.frm_inline_login form{position:relative;clear:none;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:absolute;top:35px;}.with_frm_style.frm_login_form.frm_inline_login input[type=submit]{margin:0 !important;}.with_frm_style.frm_login_form.frm_no_labels .login-username label,.with_frm_style.frm_login_form.frm_no_labels .login-password label{display:none;}.with_frm_style .frm-open-login{float:left;margin-right:15px;}.with_frm_style .frm-open-login a{text-decoration:none;border:none;outline:none;}.with_frm_style.frm_slide.frm_login_form form{display:none;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none;*display:inline;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;left:-9999px;box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{left:0;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));background:-webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat 0px 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type="text"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;height:auto;background:white url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat 100% -20px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px;}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;word-wrap:break-word;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color:#3875d7;color:#fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0 5px;width:100%;height:auto !important;height:1%;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{margin:1px 0;padding:0;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single-nosearch .chosen-search, .with_frm_style .chosen-rtl .chosen-drop{left:9999px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;background:white url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat -30px -20px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}@font-face {font-family:''s11-fp'';src:url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.eot'');src:local(''☺''), url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.woff'') format(''woff''), url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.ttf'') format(''truetype''), url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.svg'') format(''svg'');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: ''s11-fp'' !important;font-size:16px;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;}.frm_icon_font,a.frm_icon_font.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.ab-icon.frm_dashicon_font:before{content: "\\f324";}.frm_logo_icon:before {content: "\\e601";}.frm_required_icon:before {content: "\\e612";}.frm_delete_icon:before {content: "\\e610" !important;}.frm_move_icon:before {content: "\\e61a";}.frm_clear_icon:before {content: "\\e60a";}.frm_noclear_icon:before {content: "\\e60b";}.frm_duplicate_icon:before {content: "\\e61b";}.frm_new_icon:before {content: "\\e614";}.frm_tooltip_icon:before {content: "\\e611";}.frm_forbid_icon:before {content: "\\e636";}.frm_check_icon:before {content: "\\e605";}.frm_check1_icon:before {content: "\\e606";}.frm_plus_icon:before {content: "\\e62f";}.frm_plus1_icon:before {content: "\\e602";}.frm_plus2_icon:before {content: "\\e603";}.frm_plus3_icon:before {content: "\\e632";}.frm_plus4_icon:before {content: "\\e60f";}.frm_minus_icon:before {content: "\\e62e";}.frm_minus1_icon:before {content: "\\e600";}.frm_minus2_icon:before {content: "\\e604";}.frm_minus3_icon:before {content: "\\e633";}.frm_minus4_icon:before {content: "\\e613";}.frm_cancel_icon:before {content: "\\e607";}.frm_cancel1_icon:before {content: "\\e608";}.frm_arrowup_icon:before {content: "\\e60d";}.frm_arrowup1_icon:before {content: "\\e60e";}.frm_arrowup2_icon:before {content: "\\e630";}.frm_arrowup3_icon:before {content: "\\e62b";}.frm_arrowup4_icon:before {content: "\\e62c";}.frm_arrowup5_icon:before {content: "\\e635";}.frm_arrowup6_icon:before {content: "\\e62d";}.frm_arrowdown_icon:before {content: "\\e609";}.frm_arrowdown1_icon:before {content: "\\e60c";}.frm_arrowdown2_icon:before {content: "\\e631";}.frm_arrowdown3_icon:before {content: "\\e628";}.frm_arrowdown4_icon:before {content: "\\e629";}.frm_arrowdown5_icon:before {content: "\\e634";}.frm_arrowdown6_icon:before {content: "\\e62a";}.frm_download_icon:before {content: "\\e615";}.frm_upload_icon:before {content: "\\e616";}.frm_menu_icon:before {content: "\\e618";}.frm_twitter_icon:before {content: "\\e619";}.frm_sms_icon:before {content: "\\e61c";}.frm_pencil_icon:before {content: "\\e61d";}.frm_pencil1_icon:before {content: "\\e61e";}.frm_paypal_icon:before {content: "\\e61f";}.frm_twilio_icon:before {content: "\\e620";}.frm_googleplus_icon:before {content: "\\e621";}.frm_mailchimp_icon:before {content: "\\e622";}.frm_pdf_icon:before {content: "\\e623";}.frm_highrise_icon:before {content: "\\e617";}.frm_feed_icon:before {content: "\\e624";}.frm_facebook_icon:before {content: "\\e625";}.frm_email_icon:before {content: "\\e626";}.frm_aweber_icon:before {content: "\\e627";}.frm_register_icon:before {content: "\\e637";}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type="text"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type="text"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite2x.png'') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.frm_primary_label{display: block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_seventh label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field.frm_repeat_buttons:not(.frm_fourth):not(.frm_sixth):not(.frm_eighth) label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_fifth label.frm_primary_label{display:block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_fifth label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style.frm_login_form.frm_inline_login p{clear:both;float:none;}.with_frm_style.frm_login_form.frm_inline_login form{position:static;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static;}.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe{width:100%;}}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(1086, 'frm_db_version', '27', 'yes'),
(1087, 'frm_options', 'O:11:"FrmSettings":22:{s:11:"option_name";s:11:"frm_options";s:4:"menu";N;s:7:"mu_menu";N;s:15:"preview_page_id";N;s:8:"use_html";N;s:10:"jquery_css";N;s:12:"accordion_js";N;s:11:"success_msg";N;s:9:"blank_msg";N;s:10:"unique_msg";N;s:11:"invalid_msg";N;s:10:"failed_msg";N;s:12:"submit_value";N;s:9:"login_msg";N;s:16:"admin_permission";N;s:8:"email_to";N;s:10:"load_style";N;s:12:"custom_style";N;s:6:"pubkey";N;s:7:"privkey";N;s:7:"re_lang";N;s:6:"re_msg";N;}', 'yes'),
(1088, '_transient_frm_options', 'O:11:"FrmSettings":22:{s:11:"option_name";s:11:"frm_options";s:4:"menu";N;s:7:"mu_menu";N;s:15:"preview_page_id";N;s:8:"use_html";N;s:10:"jquery_css";N;s:12:"accordion_js";N;s:11:"success_msg";N;s:9:"blank_msg";N;s:10:"unique_msg";N;s:11:"invalid_msg";N;s:10:"failed_msg";N;s:12:"submit_value";N;s:9:"login_msg";N;s:16:"admin_permission";N;s:8:"email_to";N;s:10:"load_style";N;s:12:"custom_style";N;s:6:"pubkey";N;s:7:"privkey";N;s:7:"re_lang";N;s:6:"re_msg";N;}', 'yes'),
(1198, 'widget_frm_show_form', 'a:2:{i:1;a:0:{}s:12:"_multiwidget";i:1;}', 'yes'),
(1205, 'wpseo', 'a:21:{s:14:"blocking_files";a:0:{}s:26:"ignore_blog_public_warning";b:1;s:31:"ignore_meta_description_warning";b:0;s:20:"ignore_page_comments";b:0;s:16:"ignore_permalink";b:0;s:15:"ms_defaults_set";b:0;s:23:"theme_description_found";s:0:"";s:21:"theme_has_description";b:0;s:7:"version";s:5:"3.0.7";s:11:"alexaverify";s:0:"";s:12:"company_logo";s:84:"http://asiacentre.co.th/wp-content/uploads/2016/03/Asia-Centre-Logo-Square-Color.jpg";s:12:"company_name";s:11:"Asia Centre";s:17:"company_or_person";s:7:"company";s:20:"disableadvanced_meta";b:1;s:19:"onpage_indexability";b:1;s:12:"googleverify";s:0:"";s:8:"msverify";s:0:"";s:11:"person_name";s:0:"";s:12:"website_name";s:0:"";s:22:"alternate_website_name";s:46:"เอเชีย เซ็นเตอร์";s:12:"yandexverify";s:0:"";}', 'yes'),
(1206, 'wpseo_permalinks', 'a:13:{s:15:"cleanpermalinks";b:0;s:24:"cleanpermalink-extravars";s:0:"";s:29:"cleanpermalink-googlecampaign";b:0;s:31:"cleanpermalink-googlesitesearch";b:0;s:15:"cleanreplytocom";b:0;s:10:"cleanslugs";b:1;s:14:"hide-feedlinks";b:0;s:12:"hide-rsdlink";b:0;s:14:"hide-shortlink";b:0;s:16:"hide-wlwmanifest";b:0;s:18:"redirectattachment";b:0;s:17:"stripcategorybase";b:0;s:13:"trailingslash";b:0;}', 'yes'),
(1207, 'wpseo_titles', 'a:135:{s:10:"title_test";i:0;s:17:"forcerewritetitle";b:0;s:9:"separator";s:7:"sc-pipe";s:5:"noodp";b:0;s:6:"noydir";b:0;s:15:"usemetakeywords";b:0;s:16:"title-home-wpseo";s:42:"%%sitename%% %%page%% %%sep%% %%sitedesc%%";s:18:"title-author-wpseo";s:41:"%%name%%, Author at %%sitename%% %%page%%";s:19:"title-archive-wpseo";s:38:"%%date%% %%page%% %%sep%% %%sitename%%";s:18:"title-search-wpseo";s:63:"You searched for %%searchphrase%% %%page%% %%sep%% %%sitename%%";s:15:"title-404-wpseo";s:35:"Page not found %%sep%% %%sitename%%";s:19:"metadesc-home-wpseo";s:0:"";s:21:"metadesc-author-wpseo";s:0:"";s:22:"metadesc-archive-wpseo";s:0:"";s:18:"metakey-home-wpseo";s:0:"";s:20:"metakey-author-wpseo";s:0:"";s:22:"noindex-subpages-wpseo";b:0;s:20:"noindex-author-wpseo";b:0;s:21:"noindex-archive-wpseo";b:1;s:14:"disable-author";b:0;s:12:"disable-date";b:0;s:10:"title-post";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:13:"metadesc-post";s:0:"";s:12:"metakey-post";s:0:"";s:12:"noindex-post";b:0;s:13:"showdate-post";b:0;s:16:"hideeditbox-post";b:0;s:10:"title-page";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:13:"metadesc-page";s:0:"";s:12:"metakey-page";s:0:"";s:12:"noindex-page";b:0;s:13:"showdate-page";b:0;s:16:"hideeditbox-page";b:0;s:16:"title-attachment";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:19:"metadesc-attachment";s:0:"";s:18:"metakey-attachment";s:0:"";s:18:"noindex-attachment";b:0;s:19:"showdate-attachment";b:0;s:22:"hideeditbox-attachment";b:0;s:18:"title-tax-category";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:21:"metadesc-tax-category";s:0:"";s:20:"metakey-tax-category";s:0:"";s:24:"hideeditbox-tax-category";b:0;s:20:"noindex-tax-category";b:0;s:18:"title-tax-post_tag";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:21:"metadesc-tax-post_tag";s:0:"";s:20:"metakey-tax-post_tag";s:0:"";s:24:"hideeditbox-tax-post_tag";b:0;s:20:"noindex-tax-post_tag";b:0;s:21:"title-tax-post_format";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:24:"metadesc-tax-post_format";s:0:"";s:23:"metakey-tax-post_format";s:0:"";s:27:"hideeditbox-tax-post_format";b:0;s:23:"noindex-tax-post_format";b:1;s:14:"title-hom_page";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:17:"metadesc-hom_page";s:0:"";s:16:"metakey-hom_page";s:0:"";s:16:"noindex-hom_page";b:0;s:17:"showdate-hom_page";b:0;s:20:"hideeditbox-hom_page";b:0;s:11:"title-event";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:14:"metadesc-event";s:0:"";s:13:"metakey-event";s:0:"";s:13:"noindex-event";b:0;s:14:"showdate-event";b:0;s:17:"hideeditbox-event";b:0;s:12:"title-course";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:15:"metadesc-course";s:0:"";s:14:"metakey-course";s:0:"";s:14:"noindex-course";b:0;s:15:"showdate-course";b:0;s:18:"hideeditbox-course";b:0;s:13:"title-gallery";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:16:"metadesc-gallery";s:0:"";s:15:"metakey-gallery";s:0:"";s:15:"noindex-gallery";b:0;s:16:"showdate-gallery";b:0;s:19:"hideeditbox-gallery";b:0;s:12:"title-slider";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:15:"metadesc-slider";s:0:"";s:14:"metakey-slider";s:0:"";s:14:"noindex-slider";b:0;s:15:"showdate-slider";b:0;s:18:"hideeditbox-slider";b:0;s:11:"title-chunk";s:39:"%%title%% %%page%% %%sep%% %%sitename%%";s:14:"metadesc-chunk";s:0:"";s:13:"metakey-chunk";s:0:"";s:13:"noindex-chunk";b:0;s:14:"showdate-chunk";b:0;s:17:"hideeditbox-chunk";b:0;s:24:"title-ptarchive-hom_page";s:51:"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%";s:27:"metadesc-ptarchive-hom_page";s:0:"";s:26:"metakey-ptarchive-hom_page";s:0:"";s:26:"bctitle-ptarchive-hom_page";s:0:"";s:26:"noindex-ptarchive-hom_page";b:0;s:21:"title-ptarchive-event";s:51:"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%";s:24:"metadesc-ptarchive-event";s:0:"";s:23:"metakey-ptarchive-event";s:0:"";s:23:"bctitle-ptarchive-event";s:0:"";s:23:"noindex-ptarchive-event";b:0;s:22:"title-ptarchive-course";s:51:"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%";s:25:"metadesc-ptarchive-course";s:0:"";s:24:"metakey-ptarchive-course";s:0:"";s:24:"bctitle-ptarchive-course";s:0:"";s:24:"noindex-ptarchive-course";b:0;s:23:"title-ptarchive-gallery";s:51:"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%";s:26:"metadesc-ptarchive-gallery";s:0:"";s:25:"metakey-ptarchive-gallery";s:0:"";s:25:"bctitle-ptarchive-gallery";s:0:"";s:25:"noindex-ptarchive-gallery";b:0;s:22:"title-ptarchive-slider";s:51:"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%";s:25:"metadesc-ptarchive-slider";s:0:"";s:24:"metakey-ptarchive-slider";s:0:"";s:24:"bctitle-ptarchive-slider";s:0:"";s:24:"noindex-ptarchive-slider";b:0;s:21:"title-ptarchive-chunk";s:51:"%%pt_plural%% Archive %%page%% %%sep%% %%sitename%%";s:24:"metadesc-ptarchive-chunk";s:0:"";s:23:"metakey-ptarchive-chunk";s:0:"";s:23:"bctitle-ptarchive-chunk";s:0:"";s:23:"noindex-ptarchive-chunk";b:0;s:16:"title-tax-events";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:19:"metadesc-tax-events";s:0:"";s:18:"metakey-tax-events";s:0:"";s:22:"hideeditbox-tax-events";b:0;s:18:"noindex-tax-events";b:0;s:17:"title-tax-courses";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:20:"metadesc-tax-courses";s:0:"";s:19:"metakey-tax-courses";s:0:"";s:23:"hideeditbox-tax-courses";b:0;s:19:"noindex-tax-courses";b:0;s:19:"title-tax-galleries";s:53:"%%term_title%% Archives %%page%% %%sep%% %%sitename%%";s:22:"metadesc-tax-galleries";s:0:"";s:21:"metakey-tax-galleries";s:0:"";s:25:"hideeditbox-tax-galleries";b:0;s:21:"noindex-tax-galleries";b:0;}', 'yes'),
(1208, 'wpseo_social', 'a:21:{s:9:"fb_admins";a:0:{}s:12:"fbconnectkey";s:32:"1ee49c4ddf6cf73c767388cd4dad63dd";s:13:"facebook_site";s:42:"https://www.facebook.com/asiacentre.co.th/";s:13:"instagram_url";s:41:"https://www.instagram.com/asiacentre_bkk/";s:12:"linkedin_url";s:0:"";s:11:"myspace_url";s:0:"";s:16:"og_default_image";s:0:"";s:18:"og_frontpage_title";s:0:"";s:17:"og_frontpage_desc";s:0:"";s:18:"og_frontpage_image";s:0:"";s:9:"opengraph";b:1;s:10:"googleplus";b:0;s:13:"pinterest_url";s:0:"";s:15:"pinterestverify";s:0:"";s:14:"plus-publisher";s:0:"";s:7:"twitter";b:1;s:12:"twitter_site";s:14:"AsiaCentre_BKK";s:17:"twitter_card_type";s:7:"summary";s:11:"youtube_url";s:56:"https://www.youtube.com/channel/UCeF_N9fxoIApkyRdQ5PqkWw";s:15:"google_plus_url";s:0:"";s:10:"fbadminapp";s:0:"";}', 'yes'),
(1209, 'wpseo_rss', 'a:2:{s:9:"rssbefore";s:0:"";s:8:"rssafter";s:53:"The post %%POSTLINK%% appeared first on %%BLOGLINK%%.";}', 'yes'),
(1210, 'wpseo_internallinks', 'a:16:{s:20:"breadcrumbs-404crumb";s:25:"Error 404: Page not found";s:23:"breadcrumbs-blog-remove";b:0;s:20:"breadcrumbs-boldlast";b:0;s:25:"breadcrumbs-archiveprefix";s:12:"Archives for";s:18:"breadcrumbs-enable";b:0;s:16:"breadcrumbs-home";s:4:"Home";s:18:"breadcrumbs-prefix";s:0:"";s:24:"breadcrumbs-searchprefix";s:16:"You searched for";s:15:"breadcrumbs-sep";s:7:"&raquo;";s:23:"post_types-post-maintax";i:0;s:24:"post_types-event-maintax";i:0;s:25:"post_types-course-maintax";i:0;s:26:"post_types-gallery-maintax";i:0;s:24:"taxonomy-events-ptparent";i:0;s:25:"taxonomy-courses-ptparent";i:0;s:27:"taxonomy-galleries-ptparent";i:0;}', 'yes'),
(1211, 'wpseo_xml', 'a:25:{s:22:"disable_author_sitemap";b:1;s:22:"disable_author_noposts";b:1;s:16:"enablexmlsitemap";b:1;s:16:"entries-per-page";i:1000;s:14:"excluded-posts";s:0:"";s:38:"user_role-administrator-not_in_sitemap";b:0;s:31:"user_role-editor-not_in_sitemap";b:0;s:31:"user_role-author-not_in_sitemap";b:0;s:36:"user_role-contributor-not_in_sitemap";b:0;s:35:"user_role-subscriber-not_in_sitemap";b:0;s:30:"post_types-post-not_in_sitemap";b:0;s:30:"post_types-page-not_in_sitemap";b:0;s:36:"post_types-attachment-not_in_sitemap";b:1;s:34:"post_types-hom_page-not_in_sitemap";b:0;s:31:"post_types-event-not_in_sitemap";b:0;s:32:"post_types-course-not_in_sitemap";b:0;s:33:"post_types-gallery-not_in_sitemap";b:0;s:32:"post_types-slider-not_in_sitemap";b:0;s:31:"post_types-chunk-not_in_sitemap";b:0;s:34:"taxonomies-category-not_in_sitemap";b:0;s:34:"taxonomies-post_tag-not_in_sitemap";b:0;s:37:"taxonomies-post_format-not_in_sitemap";b:0;s:32:"taxonomies-events-not_in_sitemap";b:0;s:33:"taxonomies-courses-not_in_sitemap";b:0;s:35:"taxonomies-galleries-not_in_sitemap";b:0;}', 'yes'),
(1216, 'gwebmasters_code', '<meta name="google-site-verification" content="rna-z8OyPcAOmjbRfJb1WC6ahVZO5yChmP3XyxGoOm4" />', 'yes'),
(1292, 'updraftplus_unlocked_fd', '1', 'yes'),
(1293, 'updraftplus_last_lock_time_fd', '2017-01-24 07:58:23', 'yes'),
(1294, 'updraftplus_semaphore_fd', '0', 'yes'),
(1297, 'updraft_autobackup_default', '0', 'yes'),
(1298, 'updraft_dropbox', 'a:5:{s:6:"appkey";N;s:6:"secret";N;s:6:"folder";N;s:16:"tk_request_token";N;s:15:"tk_access_token";N;}', 'yes'),
(1299, 'updraft_googledrive', 'a:3:{s:8:"clientid";s:0:"";s:6:"secret";s:0:"";s:6:"folder";s:11:"UpdraftPlus";}', 'yes'),
(1300, 'updraftplus_tmp_googledrive_access_token', '', 'yes'),
(1301, 'updraftplus_dismissedautobackup', '1487751619', 'yes'),
(1302, 'updraftplus_dismissedexpiry', '', 'yes'),
(1303, 'updraftplus_dismisseddashnotice', '1475315410', 'yes'),
(1304, 'updraft_interval', 'daily', 'yes'),
(1305, 'updraft_interval_increments', '', 'yes'),
(1306, 'updraft_interval_database', 'daily', 'yes'),
(1307, 'updraft_retain', '1', 'yes'),
(1308, 'updraft_retain_db', '1', 'yes'),
(1309, 'updraft_encryptionphrase', '', 'yes'),
(1310, 'updraft_service', 'none', 'yes'),
(1311, 'updraft_dropbox_appkey', '', 'yes'),
(1312, 'updraft_dropbox_secret', '', 'yes'),
(1313, 'updraft_googledrive_clientid', '', 'yes'),
(1314, 'updraft_googledrive_secret', '', 'yes'),
(1315, 'updraft_googledrive_remotepath', '', 'yes'),
(1316, 'updraft_ftp_login', '', 'yes'),
(1317, 'updraft_ftp_pass', '', 'yes'),
(1318, 'updraft_ftp_remote_path', '', 'yes'),
(1319, 'updraft_server_address', '', 'yes'),
(1320, 'updraft_dir', 'updraft', 'yes'),
(1321, 'updraft_email', '', 'yes'),
(1322, 'updraft_delete_local', '0', 'yes'),
(1323, 'updraft_debug_mode', '0', 'yes'),
(1324, 'updraft_include_plugins', '0', 'yes'),
(1325, 'updraft_include_themes', '0', 'yes'),
(1326, 'updraft_include_uploads', '0', 'yes'),
(1327, 'updraft_include_others', '0', 'yes'),
(1328, 'updraft_include_wpcore', '0', 'yes'),
(1329, 'updraft_include_wpcore_exclude', '', 'yes'),
(1330, 'updraft_include_more', '0', 'yes'),
(1331, 'updraft_include_blogs', '', 'yes'),
(1332, 'updraft_include_mu-plugins', '', 'yes'),
(1333, 'updraft_include_others_exclude', '', 'yes'),
(1334, 'updraft_include_uploads_exclude', '', 'yes'),
(1335, 'updraft_lastmessage', 'The backup apparently succeeded and is now complete (Jan 24 14:58:32)', 'yes'),
(1336, 'updraft_googledrive_token', '', 'yes'),
(1337, 'updraft_dropboxtk_request_token', '', 'yes'),
(1338, 'updraft_dropboxtk_access_token', '', 'yes'),
(1339, 'updraft_dropbox_folder', '', 'yes'),
(1340, 'updraft_adminlocking', '', 'yes'),
(1341, 'updraft_updraftvault', '', 'yes'),
(1342, 'updraft_last_backup', 'a:5:{s:11:"backup_time";i:1485244703;s:12:"backup_array";a:3:{s:2:"db";s:53:"backup_2017-01-24-1458_Asia_Centre_6051e694ba7b-db.gz";s:7:"db-size";i:544980;s:9:"checksums";a:1:{s:4:"sha1";a:1:{s:3:"db0";s:40:"db832974055dbbaa9ee2316903361cb03d12ac30";}}}s:7:"success";i:1;s:6:"errors";a:0:{}s:12:"backup_nonce";s:12:"6051e694ba7b";}', 'yes'),
(1343, 'updraft_starttime_files', '06:49', 'yes'),
(1344, 'updraft_starttime_db', '06:49', 'yes'),
(1345, 'updraft_startday_db', '0', 'yes'),
(1346, 'updraft_startday_files', '0', 'yes'),
(1347, 'updraft_sftp_settings', '', 'yes'),
(1348, 'updraft_s3', 'a:3:{s:9:"accesskey";s:0:"";s:9:"secretkey";s:0:"";s:4:"path";s:0:"";}', 'yes'),
(1349, 'updraft_s3generic', 'a:4:{s:8:"endpoint";s:0:"";s:9:"accesskey";s:0:"";s:9:"secretkey";s:0:"";s:4:"path";s:0:"";}', 'yes'),
(1350, 'updraft_dreamhost', '', 'yes'),
(1351, 'updraft_s3generic_login', '', 'yes'),
(1352, 'updraft_s3generic_pass', '', 'yes'),
(1353, 'updraft_s3generic_remote_path', '', 'yes'),
(1354, 'updraft_s3generic_endpoint', '', 'yes'),
(1355, 'updraft_webdav_settings', '', 'yes'),
(1356, 'updraft_openstack', 'a:6:{s:7:"authurl";s:0:"";s:6:"tenant";s:0:"";s:6:"region";s:0:"";s:4:"user";s:0:"";s:8:"password";s:0:"";s:4:"path";s:0:"";}', 'yes'),
(1357, 'updraft_bitcasa', 'a:0:{}', 'yes'),
(1358, 'updraft_copycom', 'a:0:{}', 'yes'),
(1359, 'updraft_onedrive', 'a:0:{}', 'yes'),
(1360, 'updraft_cloudfiles', 'a:5:{s:7:"authurl";s:35:"https://auth.api.rackspacecloud.com";s:6:"region";s:3:"DFW";s:4:"user";s:0:"";s:6:"apikey";s:0:"";s:4:"path";s:0:"";}', 'yes'),
(1361, 'updraft_cloudfiles_user', '', 'yes'),
(1362, 'updraft_cloudfiles_apikey', '', 'yes'),
(1363, 'updraft_cloudfiles_path', '', 'yes'),
(1364, 'updraft_cloudfiles_authurl', '', 'yes'),
(1365, 'updraft_ssl_useservercerts', '0', 'yes'),
(1366, 'updraft_ssl_disableverify', '0', 'yes'),
(1367, 'updraft_s3_login', '', 'yes'),
(1368, 'updraft_s3_pass', '', 'yes'),
(1369, 'updraft_s3_remote_path', '', 'yes'),
(1370, 'updraft_dreamobjects_login', '', 'yes'),
(1371, 'updraft_dreamobjects_pass', '', 'yes'),
(1372, 'updraft_dreamobjects_remote_path', '', 'yes'),
(1373, 'updraft_report_warningsonly', 'a:0:{}', 'yes'),
(1374, 'updraft_report_wholebackup', 'a:0:{}', 'yes'),
(1375, 'updraft_log_syslog', '0', 'yes'),
(1376, 'updraft_extradatabases', '', 'yes'),
(1377, 'updraft_backup_history', 'a:1:{i:1485244703;a:7:{s:2:"db";s:53:"backup_2017-01-24-1458_Asia_Centre_6051e694ba7b-db.gz";s:7:"db-size";i:544980;s:9:"checksums";a:1:{s:4:"sha1";a:1:{s:3:"db0";s:40:"db832974055dbbaa9ee2316903361cb03d12ac30";}}s:5:"nonce";s:12:"6051e694ba7b";s:7:"service";a:1:{i:0;s:4:"none";}s:18:"created_by_version";s:9:"2.11.21.1";s:12:"is_multisite";b:0;}}', 'yes'),
(1380, 'updraftplus_unlocked_', '1', 'yes'),
(1381, 'updraftplus_last_lock_time_', '2015-08-31 03:55:06', 'yes'),
(1382, 'updraftplus_semaphore_', '0', 'yes'),
(1466, 'updraft_ftp', 'a:5:{s:4:"host";s:0:"";s:4:"user";s:0:"";s:4:"pass";s:0:"";s:4:"path";s:0:"";s:7:"passive";s:1:"1";}', 'yes'),
(1467, 'updraft_dreamobjects', 'a:3:{s:9:"accesskey";s:0:"";s:9:"secretkey";s:0:"";s:4:"path";s:0:"";}', 'yes'),
(1468, 'updraft_ssl_nossl', '0', 'yes'),
(1469, 'updraft_split_every', '500', 'yes'),
(1470, 'updraft_extradbs', '', 'yes'),
(1471, 'updraft_backupdb_nonwp', '0', 'yes'),
(1472, 'updraft_include_more_path', '', 'yes'),
(1504, 'rei-options', 'a:9:{s:4:"post";s:4:"post";s:4:"page";s:4:"page";s:8:"hom_page";s:8:"hom_page";s:5:"event";s:5:"event";s:6:"course";s:6:"course";s:7:"gallery";s:7:"gallery";s:6:"slider";s:6:"slider";s:5:"chunk";s:5:"chunk";s:13:"feature-image";s:4:"true";}', 'yes'),
(1507, 'lps_login_background_color', '#ffffff', 'yes'),
(1508, 'lps_login_label_color', '', 'yes'),
(1509, 'lps_login_nav_color', '', 'yes'),
(1510, 'lps_login_nav_hover_color', '', 'yes'),
(1511, 'lps_login_form_border_radius', '5', 'yes'),
(1512, 'lps_login_label_size', '22', 'yes'),
(1513, 'lps_login_nav_link_hide', '', 'yes'),
(1514, 'lps_login_logo_hide', '', 'yes'),
(1515, 'lps_login_form_position', '1', 'yes'),
(1516, 'lps_login_form_color', '', 'yes'),
(1517, 'lps_login_logo_msg_hide', '', 'yes'),
(1518, 'lps_login_on_off', '1', 'yes'),
(1519, 'lps_login_blog_link_hide', '', 'yes'),
(1520, 'lps_login_form_input_feild_border_radius', '5', 'yes'),
(1521, 'lps_login_background_image', '', 'yes'),
(1522, 'lps_login_form_color_opacity', '', 'yes'),
(1523, 'lps_login_custom_css', '', 'yes'),
(1524, 'lps_login_button_border_radius', '5', 'yes'),
(1525, 'lps_login_form_border_color', '', 'yes'),
(1526, 'lps_login_form_input_feild_border_color', '', 'yes'),
(1527, 'lps_login_remember_label_size', '', 'yes'),
(1528, 'lps_login_logo_link', 'http://asiacentre.co.th', 'yes'),
(1529, 'lps_login_logo_tittle', 'Asia Centre', 'yes'),
(1530, 'lps_body_bg_img', '', 'yes'),
(1531, 'lps_login_logo', 'http://asiacentre.co.th/wp-content/uploads/2015/09/site-logo.png', 'yes'),
(1532, 'lps_login_logo_width', '', 'yes'),
(1533, 'lps_login_logo_height', '', 'yes'),
(1534, 'lps_login_button_color', '', 'yes'),
(1535, 'lps_login_button_border_color', '', 'yes'),
(1536, 'lps_login_button_color_hover', '', 'yes'),
(1537, 'lps_login_button_text_color', '', 'yes'),
(1538, 'lps_login_button_text_color_hover', '', 'yes'),
(1539, 'lps_login_button_border_color_hover', '', 'yes'),
(1540, 'lps_login_bg_repeat', 'no-repeat', 'yes'),
(1541, 'lps_login_form_input_color_opacity', '', 'yes'),
(1542, 'lps_login_form_border_style', 'none', 'yes'),
(1543, 'lps_login_form_input_border_style', 'none', 'yes'),
(1544, 'lps_login_form_input_border_size', '5', 'yes'),
(1545, 'lps_login_form_border_size', '5', 'yes'),
(1546, 'lps_login_form_bg', '', 'yes'),
(1547, 'lps_login_form_label_font', 'Arial', 'yes'),
(1548, 'lps_login_nav_size', '17', 'yes'),
(1727, 'wpgmza_xml_location', '{uploads_dir}/wp-google-maps/', 'yes'),
(1728, 'wpgmza_xml_url', '{uploads_url}/wp-google-maps/', 'yes'),
(1729, 'wpgmza_db_version', '6.3.05', 'yes'),
(1730, 'wpgmaps_current_version', '6.3.05', 'yes'),
(1731, 'WPGMZA_OTHER_SETTINGS', 'a:1:{s:27:"wpgmza_settings_marker_pull";s:1:"0";}', 'yes'),
(1732, 'WPGMZA_FIRST_TIME', '6.3.05', 'yes'),
(1733, 'WPGMZA_SETTINGS', 'a:10:{s:24:"map_default_starting_lat";s:9:"13.756312";s:24:"map_default_starting_lng";s:10:"100.532647";s:18:"map_default_height";s:3:"400";s:17:"map_default_width";s:3:"100";s:16:"map_default_zoom";i:16;s:20:"map_default_max_zoom";i:1;s:16:"map_default_type";i:1;s:21:"map_default_alignment";i:1;s:22:"map_default_width_type";s:2:"\\%";s:23:"map_default_height_type";s:2:"px";}', 'yes'),
(1837, 'cs_modifiable', 'a:10:{s:10:"modifiable";a:16:{i:0;s:23:"sidebar-widgets-archive";i:1;s:24:"sidebar-widgets-category";i:2;s:23:"sidebar-widgets-contact";i:3;s:29:"sidebar-widgets-course-single";i:4;s:23:"sidebar-widgets-courses";i:5;s:28:"sidebar-widgets-event-single";i:6;s:22:"sidebar-widgets-events";i:7;s:19:"sidebar-widgets-fcl";i:8;s:19:"sidebar-widgets-fcm";i:9;s:19:"sidebar-widgets-fcr";i:10;s:25:"sidebar-widgets-galleries";i:11;s:21:"sidebar-widgets-index";i:12;s:20:"sidebar-widgets-page";i:13;s:22:"sidebar-widgets-search";i:14;s:22:"sidebar-widgets-single";i:15;s:19:"sidebar-widgets-tag";}s:16:"post_type_single";a:0:{}s:17:"post_type_archive";a:0:{}s:15:"category_single";a:0:{}s:16:"category_archive";a:0:{}s:4:"blog";a:0:{}s:4:"tags";a:0:{}s:7:"authors";a:0:{}s:6:"search";a:0:{}s:4:"date";a:0:{}}', 'yes'),
(1838, 'cs_sidebars', 'a:1:{i:0;a:7:{s:2:"id";s:4:"cs-1";s:4:"name";s:9:"Locations";s:11:"description";s:9:"locations";s:13:"before_widget";s:0:"";s:12:"after_widget";s:0:"";s:12:"before_title";s:0:"";s:11:"after_title";s:0:"";}}', 'yes'),
(2029, 'espresso_db_update', 'a:1:{s:12:"4.7.12.decaf";a:4:{i:0;s:19:"2015-09-26 15:09:05";i:1;s:19:"2016-12-27 08:11:43";i:2;s:19:"2016-12-27 09:16:39";i:3;s:19:"2016-12-28 04:03:53";}}', 'no'),
(2030, 'ee_lang_check_en_GB_4.7.12.decaf', '1', 'yes'),
(2043, 'ee_caps_initialized', 'a:1:{s:13:"administrator";a:251:{i:0;s:10:"ee_read_ee";i:1;s:18:"ee_manage_gateways";i:2;s:22:"ee_read_payment_method";i:3;s:23:"ee_read_payment_methods";i:4;s:30:"ee_read_others_payment_methods";i:5;s:22:"ee_edit_payment_method";i:6;s:23:"ee_edit_payment_methods";i:7;s:30:"ee_edit_others_payment_methods";i:8;s:24:"ee_delete_payment_method";i:9;s:25:"ee_delete_payment_methods";i:10;s:17:"ee_publish_events";i:11;s:22:"ee_read_private_events";i:12;s:21:"ee_read_others_events";i:13;s:13:"ee_read_event";i:14;s:14:"ee_read_events";i:15;s:13:"ee_edit_event";i:16;s:14:"ee_edit_events";i:17;s:24:"ee_edit_published_events";i:18;s:21:"ee_edit_others_events";i:19;s:22:"ee_edit_private_events";i:20;s:26:"ee_delete_published_events";i:21;s:24:"ee_delete_private_events";i:22;s:15:"ee_delete_event";i:23;s:16:"ee_delete_events";i:24;s:23:"ee_delete_others_events";i:25;s:26:"ee_manage_event_categories";i:26;s:22:"ee_edit_event_category";i:27;s:24:"ee_delete_event_category";i:28;s:24:"ee_assign_event_category";i:29;s:17:"ee_publish_venues";i:30;s:13:"ee_read_venue";i:31;s:14:"ee_read_venues";i:32;s:21:"ee_read_others_venues";i:33;s:22:"ee_read_private_venues";i:34;s:13:"ee_edit_venue";i:35;s:14:"ee_edit_venues";i:36;s:21:"ee_edit_others_venues";i:37;s:24:"ee_edit_published_venues";i:38;s:22:"ee_edit_private_venues";i:39;s:15:"ee_delete_venue";i:40;s:16:"ee_delete_venues";i:41;s:23:"ee_delete_others_venues";i:42;s:24:"ee_delete_private_venues";i:43;s:26:"ee_delete_published_venues";i:44;s:26:"ee_manage_venue_categories";i:45;s:22:"ee_edit_venue_category";i:46;s:24:"ee_delete_venue_category";i:47;s:24:"ee_assign_venue_category";i:48;s:15:"ee_read_contact";i:49;s:16:"ee_read_contacts";i:50;s:15:"ee_edit_contact";i:51;s:16:"ee_edit_contacts";i:52;s:17:"ee_delete_contact";i:53;s:18:"ee_delete_contacts";i:54;s:20:"ee_read_registration";i:55;s:21:"ee_read_registrations";i:56;s:28:"ee_read_others_registrations";i:57;s:20:"ee_edit_registration";i:58;s:21:"ee_edit_registrations";i:59;s:28:"ee_edit_others_registrations";i:60;s:22:"ee_delete_registration";i:61;s:23:"ee_delete_registrations";i:62;s:15:"ee_read_checkin";i:63;s:23:"ee_read_others_checkins";i:64;s:16:"ee_read_checkins";i:65;s:15:"ee_edit_checkin";i:66;s:16:"ee_edit_checkins";i:67;s:23:"ee_edit_others_checkins";i:68;s:17:"ee_delete_checkin";i:69;s:18:"ee_delete_checkins";i:70;s:25:"ee_delete_others_checkins";i:71;s:19:"ee_read_transaction";i:72;s:20:"ee_read_transactions";i:73;s:16:"ee_edit_payments";i:74;s:18:"ee_delete_payments";i:75;s:15:"ee_read_message";i:76;s:16:"ee_read_messages";i:77;s:23:"ee_read_others_messages";i:78;s:23:"ee_read_global_messages";i:79;s:23:"ee_edit_global_messages";i:80;s:15:"ee_edit_message";i:81;s:16:"ee_edit_messages";i:82;s:23:"ee_edit_others_messages";i:83;s:17:"ee_delete_message";i:84;s:18:"ee_delete_messages";i:85;s:25:"ee_delete_others_messages";i:86;s:25:"ee_delete_global_messages";i:87;s:15:"ee_send_message";i:88;s:22:"ee_read_default_ticket";i:89;s:23:"ee_read_default_tickets";i:90;s:30:"ee_read_others_default_tickets";i:91;s:22:"ee_edit_default_ticket";i:92;s:23:"ee_edit_default_tickets";i:93;s:30:"ee_edit_others_default_tickets";i:94;s:24:"ee_delete_default_ticket";i:95;s:25:"ee_delete_default_tickets";i:96;s:32:"ee_delete_others_default_tickets";i:97;s:21:"ee_edit_default_price";i:98;s:22:"ee_edit_default_prices";i:99;s:23:"ee_delete_default_price";i:100;s:24:"ee_delete_default_prices";i:101;s:26:"ee_edit_default_price_type";i:102;s:27:"ee_edit_default_price_types";i:103;s:28:"ee_delete_default_price_type";i:104;s:29:"ee_delete_default_price_types";i:105;s:22:"ee_read_default_prices";i:106;s:27:"ee_read_default_price_types";i:107;s:16:"ee_edit_question";i:108;s:17:"ee_edit_questions";i:109;s:24:"ee_edit_system_questions";i:110;s:17:"ee_read_questions";i:111;s:18:"ee_delete_question";i:112;s:19:"ee_delete_questions";i:113;s:22:"ee_edit_question_group";i:114;s:23:"ee_edit_question_groups";i:115;s:23:"ee_read_question_groups";i:116;s:30:"ee_edit_system_question_groups";i:117;s:24:"ee_delete_question_group";i:118;s:25:"ee_delete_question_groups";i:119;s:20:"ee_assign_event_type";i:120;s:21:"ee_manage_event_types";i:121;s:18:"ee_edit_event_type";i:122;s:20:"ee_delete_event_type";i:123;s:28:"ee_payment_method_admin_only";i:124;s:22:"ee_payment_method_bank";i:125;s:23:"ee_payment_method_check";i:126;s:25:"ee_payment_method_invoice";i:127;s:33:"ee_payment_method_paypal_standard";i:128;s:10:"ee_read_ee";i:129;s:18:"ee_manage_gateways";i:130;s:22:"ee_read_payment_method";i:131;s:23:"ee_read_payment_methods";i:132;s:30:"ee_read_others_payment_methods";i:133;s:22:"ee_edit_payment_method";i:134;s:23:"ee_edit_payment_methods";i:135;s:30:"ee_edit_others_payment_methods";i:136;s:24:"ee_delete_payment_method";i:137;s:25:"ee_delete_payment_methods";i:138;s:17:"ee_publish_events";i:139;s:22:"ee_read_private_events";i:140;s:21:"ee_read_others_events";i:141;s:13:"ee_read_event";i:142;s:14:"ee_read_events";i:143;s:13:"ee_edit_event";i:144;s:14:"ee_edit_events";i:145;s:24:"ee_edit_published_events";i:146;s:21:"ee_edit_others_events";i:147;s:22:"ee_edit_private_events";i:148;s:26:"ee_delete_published_events";i:149;s:24:"ee_delete_private_events";i:150;s:15:"ee_delete_event";i:151;s:16:"ee_delete_events";i:152;s:23:"ee_delete_others_events";i:153;s:26:"ee_manage_event_categories";i:154;s:22:"ee_edit_event_category";i:155;s:24:"ee_delete_event_category";i:156;s:24:"ee_assign_event_category";i:157;s:17:"ee_publish_venues";i:158;s:13:"ee_read_venue";i:159;s:14:"ee_read_venues";i:160;s:21:"ee_read_others_venues";i:161;s:22:"ee_read_private_venues";i:162;s:13:"ee_edit_venue";i:163;s:14:"ee_edit_venues";i:164;s:21:"ee_edit_others_venues";i:165;s:24:"ee_edit_published_venues";i:166;s:22:"ee_edit_private_venues";i:167;s:15:"ee_delete_venue";i:168;s:16:"ee_delete_venues";i:169;s:23:"ee_delete_others_venues";i:170;s:24:"ee_delete_private_venues";i:171;s:26:"ee_delete_published_venues";i:172;s:26:"ee_manage_venue_categories";i:173;s:22:"ee_edit_venue_category";i:174;s:24:"ee_delete_venue_category";i:175;s:24:"ee_assign_venue_category";i:176;s:15:"ee_read_contact";i:177;s:16:"ee_read_contacts";i:178;s:15:"ee_edit_contact";i:179;s:16:"ee_edit_contacts";i:180;s:17:"ee_delete_contact";i:181;s:18:"ee_delete_contacts";i:182;s:20:"ee_read_registration";i:183;s:21:"ee_read_registrations";i:184;s:28:"ee_read_others_registrations";i:185;s:20:"ee_edit_registration";i:186;s:21:"ee_edit_registrations";i:187;s:28:"ee_edit_others_registrations";i:188;s:22:"ee_delete_registration";i:189;s:23:"ee_delete_registrations";i:190;s:15:"ee_read_checkin";i:191;s:23:"ee_read_others_checkins";i:192;s:16:"ee_read_checkins";i:193;s:15:"ee_edit_checkin";i:194;s:16:"ee_edit_checkins";i:195;s:23:"ee_edit_others_checkins";i:196;s:17:"ee_delete_checkin";i:197;s:18:"ee_delete_checkins";i:198;s:25:"ee_delete_others_checkins";i:199;s:19:"ee_read_transaction";i:200;s:20:"ee_read_transactions";i:201;s:16:"ee_edit_payments";i:202;s:18:"ee_delete_payments";i:203;s:15:"ee_read_message";i:204;s:16:"ee_read_messages";i:205;s:23:"ee_read_others_messages";i:206;s:23:"ee_read_global_messages";i:207;s:23:"ee_edit_global_messages";i:208;s:15:"ee_edit_message";i:209;s:16:"ee_edit_messages";i:210;s:23:"ee_edit_others_messages";i:211;s:17:"ee_delete_message";i:212;s:18:"ee_delete_messages";i:213;s:25:"ee_delete_others_messages";i:214;s:25:"ee_delete_global_messages";i:215;s:15:"ee_send_message";i:216;s:22:"ee_read_default_ticket";i:217;s:23:"ee_read_default_tickets";i:218;s:30:"ee_read_others_default_tickets";i:219;s:22:"ee_edit_default_ticket";i:220;s:23:"ee_edit_default_tickets";i:221;s:30:"ee_edit_others_default_tickets";i:222;s:24:"ee_delete_default_ticket";i:223;s:25:"ee_delete_default_tickets";i:224;s:32:"ee_delete_others_default_tickets";i:225;s:21:"ee_edit_default_price";i:226;s:22:"ee_edit_default_prices";i:227;s:23:"ee_delete_default_price";i:228;s:24:"ee_delete_default_prices";i:229;s:26:"ee_edit_default_price_type";i:230;s:27:"ee_edit_default_price_types";i:231;s:28:"ee_delete_default_price_type";i:232;s:29:"ee_delete_default_price_types";i:233;s:22:"ee_read_default_prices";i:234;s:27:"ee_read_default_price_types";i:235;s:16:"ee_edit_question";i:236;s:17:"ee_edit_questions";i:237;s:24:"ee_edit_system_questions";i:238;s:17:"ee_read_questions";i:239;s:18:"ee_delete_question";i:240;s:19:"ee_delete_questions";i:241;s:22:"ee_edit_question_group";i:242;s:23:"ee_edit_question_groups";i:243;s:23:"ee_read_question_groups";i:244;s:30:"ee_edit_system_question_groups";i:245;s:24:"ee_delete_question_group";i:246;s:25:"ee_delete_question_groups";i:247;s:20:"ee_assign_event_type";i:248;s:21:"ee_manage_event_types";i:249;s:18:"ee_edit_event_type";i:250;s:20:"ee_delete_event_type";}}', 'yes'),
(2044, 'ee_config_option_names', 'a:0:{}', 'yes'),
(2049, 'espresso_event_type_children', 'a:0:{}', 'yes'),
(2050, 'ee_session_settings', 'a:1:{s:8:"sid_salt";s:64:"AR@clryHlr3kpWpo1s@&nUxVhozctaEdLOBxw06jWmD)vURGQkZ#xpR@iI)8xLcF";}', 'yes'),
(2054, 'uxip_ee_active_theme', 'Asia Centre 2015', 'yes'),
(2057, 'uxip_ee_all_tkt_count', '1', 'yes'),
(2058, 'uxip_ee_free_tkt_count', '1', 'yes'),
(2069, 'ee_network_config', 'O:17:"EE_Network_Config":1:{s:4:"core";O:22:"EE_Network_Core_Config":1:{s:16:"site_license_key";s:0:"";}}', 'yes'),
(2117, 'ee_locked_transactions', 'a:0:{}', 'yes'),
(2122, 'ee_config-template_settings-EED_Event_Single', 'O:22:"EE_Event_Single_Config":2:{s:28:"display_status_banner_single";i:0;s:13:"display_venue";i:1;}', 'no'),
(2261, 'ee_config-template_settings-EED_Events_Archive', 'O:24:"EE_Events_Archive_Config":6:{s:21:"display_status_banner";i:0;s:19:"display_description";i:1;s:23:"display_ticket_selector";i:0;s:17:"display_datetimes";i:1;s:13:"display_venue";i:0;s:22:"display_expired_events";i:0;}', 'no'),
(4531, 'updraft_retain_extrarules', '', 'yes'),
(4534, 'site_icon', '0', 'yes'),
(4535, 'medium_large_size_w', '768', 'yes'),
(4536, 'medium_large_size_h', '0', 'yes'),
(4539, 'widget_wpgmza_map_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(4545, 'updraftplus_unlocked_f', '1', 'yes'),
(4546, 'updraftplus_last_lock_time_f', '2016-01-10 06:50:21', 'yes'),
(4547, 'updraftplus_semaphore_f', '0', 'yes'),
(4580, 'updraftplus_unlocked_d', '1', 'yes'),
(4581, 'updraftplus_last_lock_time_d', '2016-02-08 06:44:31', 'yes'),
(4582, 'updraftplus_semaphore_d', '0', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(4695, '_transient_frmpro_css', '/* WARNING: Any changes made to this file will be lost when your Formidable settings are updated */\n.frm_hidden,.with_frm_style .frm_button.frm_hidden{display:none;}legend.frm_hidden{display:none !important;}.frm_transparent{color:transparent;}.input[type=file].frm_transparent:focus, .with_frm_style input[type=file]{background-color:transparent;border:none;outline:none;box-shadow:none;}.with_frm_style input[type=file]{display:initial;}.frm_preview_page:before{content:normal !important;}.frm_preview_page{padding:25px;}.with_frm_style .form-field.frm_col_field{clear:none;float:left;margin-right:20px;}.with_frm_style label.frm_primary_label{max-width:100%;}.with_frm_style .frm_top_container label.frm_primary_label,.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_top{display:block;float:none;width:auto;}.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.with_frm_style .frm_right_container label.frm_primary_label,.with_frm_style .frm_pos_right{display:inline;float:right;margin-left:10px;}.with_frm_style .frm_none_container label.frm_primary_label,.with_frm_style .frm_pos_none,.frm_none_container label.frm_primary_label{display:none;}.with_frm_style .frm_section_heading.frm_hide_section{margin-top:0px !important;}.with_frm_style .frm_hidden_container label.frm_primary_label,.with_frm_style .frm_pos_hidden,.frm_hidden_container label.frm_primary_label{visibility:hidden;}.with_frm_style .frm_scale{margin-right:10px;text-align:center;float:left;}.with_frm_style .frm_scale input{display:block;}.with_frm_style select[multiple="multiple"]{height:auto;line-height:normal;}.with_frm_style select{white-space:nowrap;}.with_frm_style .frm_catlevel_2,.with_frm_style .frm_catlevel_3,.with_frm_style .frm_catlevel_4,.with_frm_style .frm_catlevel_5{margin-left:18px;}.with_frm_style .wp-editor-container{border:1px solid #e5e5e5;}.with_frm_style .quicktags-toolbar input{font-size:12px !important;}.with_frm_style .wp-editor-container textarea{border:none;}.with_frm_style .auto_width #loginform input,.with_frm_style .auto_width input,.with_frm_style input.auto_width,.with_frm_style select.auto_width,.with_frm_style textarea.auto_width{width:auto;}.with_frm_style .frm_repeat_buttons{white-space:nowrap;}.with_frm_style .frm_button{text-decoration:none;border:1px solid #eee;padding:5px;display:inline;}.with_frm_style .frm_submit{clear:both;}.frm_inline_form .frm_form_field.form-field{margin-right:2.5%;display:inline-block;}.frm_inline_form .frm_submit{display:inline-block;}.with_frm_style.frm_center_submit .frm_submit{text-align:center;}.with_frm_style.frm_center_submit .frm_submit input[type=submit], .with_frm_style.frm_center_submit .frm_submit input[type=button]{margin-bottom:8px !important;}.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{display: block;margin: 0 auto;}.frm_forms.frm_style_formidable-style.with_frm_style{max-width:100%;direction:ltr;}.frm_style_formidable-style.with_frm_style,.frm_style_formidable-style.with_frm_style form{text-align:left;}.frm_style_formidable-style.with_frm_style fieldset{border:0px solid #000000;margin:0;padding:0 0 15px 0;background-color:transparent;}.frm_style_formidable-style.with_frm_style .frm-show-form  > h3{font-size:20px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm-show-form  .frm_section_heading h3{padding:15px 0 3px 0;margin:0;font-size:18px;font-weight:bold;color:#444444;border:none;border-top:2px solid #e8e8e8;background-color:transparent}.frm_style_formidable-style.with_frm_style h3 .frm_after_collapse{display:inline;}.frm_style_formidable-style.with_frm_style h3 .frm_before_collapse{display:none;}.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style .frm_section_heading h3{margin:0;}.frm_style_formidable-style.with_frm_style .frm_section_heading{margin-top:15px;}.frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing,.menu-edit #post-body-content .frm_style_formidable-style.with_frm_style  .frm-show-form .frm_section_heading .frm_section_spacing{margin-bottom:12px;}.frm_style_formidable-style.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.frm_style_formidable-style.with_frm_style label.frm_primary_label,.frm_style_formidable-style.with_frm_style.frm_login_form label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;text-align:left;margin:0;padding:0 0 3px 0;width:auto;display:block;}.frm_style_formidable-style.with_frm_style .frm_icon_font{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before{content:"\\e600";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{content:"\\e602";}.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_minus_icon:before,.frm_style_formidable-style.with_frm_style .frm_icon_font.frm_plus_icon:before{color:#444444;}.frm_style_formidable-style.with_frm_style .frm_trigger.active .frm_icon_font.frm_arrow_icon:before{content:"\\e62d";}.frm_style_formidable-style.with_frm_style .frm_trigger .frm_icon_font.frm_arrow_icon:before{content:"\\e62a";}.frm_style_formidable-style.with_frm_style .form-field{margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd {margin-bottom:0;}.frm_style_formidable-style.with_frm_style .form-field.frm_section_heading{margin-bottom:0;}.frm_style_formidable-style.with_frm_style p.description,.frm_style_formidable-style.with_frm_style div.description,.frm_style_formidable-style.with_frm_style div.frm_description,.frm_style_formidable-style.with_frm_style .frm-show-form > div.frm_description,.frm_style_formidable-style.with_frm_style .frm_error{margin:0;padding:0;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:12px;color:#666666;font-weight:normal;text-align:left;font-style:normal;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm-show-form div.frm_description p{font-size:14px;color:#666666;}.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label{float:left;display:inline;width:150px;max-width:33%;margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{display:inline;width:150px;max-width:33%;margin-left:10px;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha{max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_left_container p.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_left_container .frm_error{margin-left:160px;max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_right_container p.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_right_container .frm_error{margin-right:160px;max-width:62%;}.frm_style_formidable-style.with_frm_style .frm_left_container .attachment-thumbnail{clear:both;margin-left:160px;}.frm_style_formidable-style.with_frm_style .frm_left_container.frm_inline label.frm_primary_label{max-width:90%;}.frm_style_formidable-style.with_frm_style .form-field.frm_col_field div.frm_description{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_inline_container:not(.frm_dynamic_select_container) .frm_opt_container{display:inline;}.frm_style_formidable-style.with_frm_style .frm_inline_container label.frm_primary_label{margin-right:10px;}.frm_style_formidable-style.with_frm_style .frm_pos_right{display:inline;width:150px;}.frm_style_formidable-style.with_frm_style .frm_none_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_pos_none{display:none;}.frm_style_formidable-style.with_frm_style .frm_scale label{font-weight:normal;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;}.frm_style_formidable-style.with_frm_style .frm_required{color:#B94A48;font-weight:bold;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_style_formidable-style.with_frm_style .chosen-container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;margin-bottom:0;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=phone],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select,.frm_style_formidable-style.with_frm_style textarea,.frm_form_fields_style,.frm_style_formidable-style.with_frm_style .frm_scroll_box .frm_opt_container,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{color:#555555;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_style_formidable-style.with_frm_style input[type=file]::-webkit-file-upload-button{color:#555555;background-color:#ffffff;padding:6px 10px;border-radius:4px;border-color:#cccccc;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style input[type=text],.frm_style_formidable-style.with_frm_style input[type=password],.frm_style_formidable-style.with_frm_style input[type=email],.frm_style_formidable-style.with_frm_style input[type=number],.frm_style_formidable-style.with_frm_style input[type=url],.frm_style_formidable-style.with_frm_style input[type=tel],.frm_style_formidable-style.with_frm_style input[type=file],.frm_style_formidable-style.with_frm_style input[type=search],.frm_style_formidable-style.with_frm_style select{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style select[multiple="multiple"]{height:auto ;}.frm_style_formidable-style.with_frm_style input[type=file]{color:#555555;padding:0px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style input[type=file].frm_transparent{color:transparent;}.frm_style_formidable-style.with_frm_style .frm_file_names, .frm_style_formidable-style.with_frm_style .frm_uploaded_files .frm_remove_link{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm_default,.frm_style_formidable-style.with_frm_style .placeholder,.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field .default,.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-default{color:#555555;font-style:italic;}.frm_style_formidable-style.with_frm_style select{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style input.frm_other_input:not(.frm_other_full){width:auto ;margin-left:5px ;}.frm_style_formidable-style.with_frm_style .frm_full input.frm_other_input:not(.frm_other_full){margin-left:0 ;margin-top:8px;}.frm_style_formidable-style.with_frm_style .frm_other_container select:not([multiple="multiple"]){width:auto;}.frm_style_formidable-style.with_frm_style .wp-editor-wrap{width:100%;max-width:100%;}.frm_style_formidable-style.with_frm_style .wp-editor-container textarea{border:none;}.frm_style_formidable-style.with_frm_style .mceIframeContainer{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .auto_width input,.frm_style_formidable-style.with_frm_style input.auto_width,.frm_style_formidable-style.with_frm_style select.auto_width,.frm_style_formidable-style.with_frm_style textarea.auto_width{width:auto;}.frm_style_formidable-style.with_frm_style input[disabled],.frm_style_formidable-style.with_frm_style select[disabled],.frm_style_formidable-style.with_frm_style textarea[disabled],.frm_style_formidable-style.with_frm_style input[readonly],.frm_style_formidable-style.with_frm_style select[readonly],.frm_style_formidable-style.with_frm_style textarea[readonly]{background-color:#ffffff;color:#A1A1A1;border-color:#E5E5E5;}.frm_style_formidable-style.with_frm_style .form-field input:not([type=file]):focus,.frm_style_formidable-style.with_frm_style select:focus,.frm_style_formidable-style.with_frm_style textarea:focus,.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_focus_field input[type=search],.frm_form_fields_active_style,.frm_style_formidable-style.with_frm_style .chosen-container-active .chosen-choices{background-color:#ffffff;border-color:#66afe9;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset, 0 0 8px rgba(102,175,233, 0.6);}.frm_style_formidable-style.with_frm_style input[type=submit],.frm_style_formidable-style.with_frm_style .frm_submit input[type=button],.frm_form_submit_style,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]{width:auto;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;height:auto;line-height:normal;text-align:center;background:#ffffff;border-width:1px;border-color:#cccccc;border-style:solid;color:#444444;cursor:pointer;font-weight:normal;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;text-shadow:none;padding:6px 11px;-moz-box-sizing:border-box;box-sizing:border-box;-ms-box-sizing:border-box;-moz-box-shadow:0 1px 1px #eeeeee;-webkit-box-shadow:0px 1px 1px #eeeeee;box-shadow:0 1px 1px #eeeeee;-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=''#eeeeee'')";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=3, Direction=135, Color=''#eeeeee'');margin:10px;margin-left:0;margin-right:0;vertical-align:middle;}.frm_style_formidable-style.with_frm_style input[type=submit]:hover,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:hover,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:hover{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style.frm_center_submit .frm_submit .frm_ajax_loading{margin-bottom:10px;}.frm_style_formidable-style.with_frm_style input[type=submit]:focus,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:focus,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:focus,.frm_style_formidable-style.with_frm_style input[type=submit]:active,.frm_style_formidable-style.with_frm_style .frm_submit input[type=button]:active,.frm_style_formidable-style.with_frm_style.frm_login_form input[type=submit]:active{background:#efefef;border-color:#cccccc;color:#444444;}.frm_style_formidable-style.with_frm_style a.frm_save_draft{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;font-weight:normal;}.frm_style_formidable-style.with_frm_style #frm_field_cptch_number_container{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:14px;color:#444444;font-weight:bold;clear:both;}.frm_style_formidable-style.with_frm_style .frm_radio{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio{margin:0 5px 0 0;}.frm_style_formidable-style.with_frm_style .frm_checkbox{display:block;}.frm_style_formidable-style.with_frm_style .vertical_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_checkbox,.frm_style_formidable-style.with_frm_style .horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.frm_style_formidable-style.with_frm_style .frm_radio label,.frm_style_formidable-style.with_frm_style .frm_checkbox label{font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-size:13px;color:#444444;font-weight:normal;display:inline;white-space:prewrap;}.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=text],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=password],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=url],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=tel],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=number],.frm_style_formidable-style.with_frm_style .frm_blank_field input[type=email],.frm_style_formidable-style.with_frm_style .frm_blank_field textarea,.frm_style_formidable-style.with_frm_style .frm_blank_field select,.frm_form_fields_error_style,.frm_style_formidable-style.with_frm_style .frm_blank_field .g-recaptcha iframe,.frm_style_formidable-style.with_frm_style .frm_blank_field .chosen-container-multi .chosen-choices{color:#444444;background-color:#ffffff;border-color:#B94A48;border-width:1px;border-style:solid;}.frm_style_formidable-style.with_frm_style .frm_error{font-weight:bold;}.frm_style_formidable-style.with_frm_style .frm_blank_field label,.frm_style_formidable-style.with_frm_style .frm_error{color:#B94A48;}.frm_style_formidable-style.with_frm_style .frm_error_style{background-color:#F2DEDE;border:1px solid #EBCCD1;color:#B94A48;font-size:14px;margin:0;margin-bottom:20px;}.frm_style_formidable-style.with_frm_style .frm_message,.frm_success_style{border:1px solid #D6E9C6;background-color:#DFF0D8;color:#468847;}.frm_style_formidable-style.with_frm_style .frm_message{margin:5px 0 15px;font-size:14px;}.frm_style_formidable-style.with_frm_style .frm-grid td,.frm-grid th{border-color:#cccccc;}.form_results.frm_style_formidable-style.with_frm_style{border:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr td{color:#555555;border-top:1px solid #cccccc;}.form_results.frm_style_formidable-style.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style #frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));}.frm_style_formidable-style.with_frm_style #frm_loading .progress-bar{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid,.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{border-color:#cccccc;}.frm_style_formidable-style.with_frm_style .frm_grid.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_first.frm_blank_field,.frm_style_formidable-style.with_frm_style .frm_grid_odd.frm_blank_field{background-color:#F2DEDE;border-color:#EBCCD1;}.frm_style_formidable-style.with_frm_style .frm_grid_first,.frm_style_formidable-style.with_frm_style .frm_grid_odd{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_grid{background-color:#ffffff;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_html_scroll_box{background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;font-size:14px;padding:6px 10px;outline:none;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total input,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_total textarea{color:#555555;background-color:transparent;border:none;display:inline;width:auto;padding:0;}.frm_style_formidable-style.with_frm_style .frm_text_block input,.frm_style_formidable-style.with_frm_style .frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_style_formidable-style.with_frm_style .frm_button{padding:6px 11px;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;font-size:14px;font-family:"Lucida Grande","Lucida Sans Unicode",Tahoma,sans-serif;font-weight:normal;color:#444444;background:#ffffff;border-width:1px;border-color:#cccccc;height:#auto;}.frm_style_formidable-style.with_frm_style .frm_button .frm_icon_font:before{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container{font-size:14px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single{height:32px;line-height:1.3;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-single div{top:3px;}.frm_style_formidable-style.with_frm_style .chosen-container-single .chosen-search input[type="text"]{height:32px;}.frm_style_formidable-style.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{height:15px;}@media only screen and (max-width: 600px){.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container.g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container.g-recaptcha{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_primary_label{max-width:100%;margin-right:0;margin-left:0;padding-right:0;padding-left:0;width:100%;}.frm_style_formidable-style.with_frm_style .frm_repeat_inline,.frm_style_formidable-style.with_frm_style .frm_repeat_grid{margin: 20px 0;}.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-right:0;margin-left:0;padding-right:0;padding-left:0;}}@media only screen and (max-width: 500px) {.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_left_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container select,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container textarea,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_style_formidable-style.with_frm_style .frm_form_field.frm_right_container .g-recaptcha,.frm_style_formidable-style.with_frm_style .frm_left_container p.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_left_container .attachment-thumbnail,.frm_style_formidable-style.with_frm_style .frm_right_container p.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_right_container .frm_error{max-width:100%;}.frm_style_formidable-style.with_frm_style .frm_left_container p.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.description,.frm_style_formidable-style.with_frm_style .frm_left_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_left_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_left_container .attachment-thumbnail,.frm_style_formidable-style.with_frm_style .frm_right_container p.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.description,.frm_style_formidable-style.with_frm_style .frm_right_container div.frm_description,.frm_style_formidable-style.with_frm_style .frm_right_container .frm_error,.frm_style_formidable-style.with_frm_style .frm_left_container label.frm_primary_label,.frm_style_formidable-style.with_frm_style .frm_right_container label.frm_primary_label{width:100%;max-width:100%;margin-right:0px;margin-left:0px;padding-right:0px;padding-left:0px;}}.frm_ajax_loading{visibility:hidden;width:auto;}.frm_ajax_loading.frm_loading_now{visibility:visible !important;}.frm_form_submit_style{height:auto;}a.frm_save_draft{cursor:pointer;}.horizontal_radio .frm_radio{margin:0 5px 0 0;}.horizontal_radio .frm_checkbox{margin:0;margin-right:5px;}.vertical_radio .frm_checkbox,.vertical_radio .frm_radio,.vertical_radio .frm_catlevel_1{display:block;}.horizontal_radio .frm_checkbox,.horizontal_radio .frm_radio,.horizontal_radio .frm_catlevel_1{display:inline-block;}.with_frm_style .frm_radio label .frm_file_container,.with_frm_style .frm_checkbox label .frm_file_container{display:inline-block;margin:5px;vertical-align:middle;}.with_frm_style .frm_radio input[type=radio]{border-radius:10px;-webkit-appearance:radio;}.with_frm_style .frm_checkbox input[type=checkbox]{border-radius:0;-webkit-appearance:checkbox;}.with_frm_style .frm_radio input[type=radio],.with_frm_style .frm_checkbox input[type=checkbox]{margin-right:5px;width:auto;border:none;}.with_frm_style :invalid,.with_frm_style :-moz-submit-invalid,.with_frm_style :-moz-ui-invalid{box-shadow:none;}.with_frm_style .frm_error_style img{padding-right:10px;vertical-align:middle;border:none;}.with_frm_style .frm_trigger{cursor:pointer;}.with_frm_style .frm_error_style,.with_frm_style .frm_message,.frm_success_style{-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;padding:15px;}.with_frm_style .frm_message p{margin-bottom:5px;}.frm_form_fields_style,.frm_form_fields_active_style,.frm_form_fields_error_style,.frm_form_submit_style{width:auto;}.with_frm_style .frm_trigger span{float:left;}.with_frm_style table.frm-grid,#content .with_frm_style table.frm-grid{border-collapse:collapse;border:none;}.frm-grid td,.frm-grid th{padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-top:none;border-left:none;border-right:none;}table.form_results.with_frm_style{border:1px solid #ccc;}table.form_results.with_frm_style tr td{text-align:left;color:#555555;padding:7px 9px;border-top:1px solid #cccccc;}table.form_results.with_frm_style tr.frm_even,.frm-grid .frm_even{background-color:#fff;}table.form_results.with_frm_style tr.frm_odd,.frm-grid .frm_odd{background-color:#ffffff;}.with_frm_style .frm_uploaded_files{padding:5px 0;}.with_frm_style .frm_file_names{display:block;}.frm_collapse .ui-icon{display:inline-block;}.frm_toggle_container{border:1px solid transparent;}.frm_toggle_container ul{margin:5px 0;padding-left:0;list-style-type:none;}.frm_toggle_container .frm_month_heading{text-indent:15px;}.frm_toggle_container .frm_month_listing{margin-left:40px;}#frm_loading{display:none;position:fixed;top:0;left:0;width:100%;height:100%;z-index:99999;}#frm_loading h3{font-weight:500;padding-bottom:15px;color:#fff;font-size:24px;}#frm_loading_content{position:fixed;top:20%;left:33%;width:33%;text-align:center;padding-top:30px;font-weight:bold;z-index:9999999;}#frm_loading img{max-width:100%;}#frm_loading .progress{border-radius:4px;box-shadow:0 1px 2px rgba(0, 0, 0, 0.1) inset;height:20px;margin-bottom:20px;overflow:hidden;}#frm_loading .progress.active .progress-bar{animation:2s linear 0s normal none infinite progress-bar-stripes;}#frm_loading .progress-striped .progress-bar{background-image:linear-gradient(45deg, #cccccc 25%, rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 0) 50%, #cccccc 50%, #cccccc 75%, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0));background-size:40px 40px;}#frm_loading .progress-bar{background-color:#ffffff;box-shadow:0 -1px 0 rgba(0, 0, 0, 0.15) inset;float:left;height:100%;line-height:20px;text-align:center;transition:width 0.6s ease 0s;width:100%;}.frm_pagination_cont ul.frm_pagination{display:inline-block;list-style:none;margin-left:0 !important;}.frm_pagination_cont ul.frm_pagination > li{display:inline;list-style:none;margin:2px;background-image:none;}ul.frm_pagination > li.active a{text-decoration:none;}.frm_pagination_cont ul.frm_pagination > li:first-child{margin-left:0;}.archive-pagination.frm_pagination_cont ul.frm_pagination > li{margin:0;}.frmcal{padding-top:30px;}.frmcal-title{font-size:116%;}.frmcal table.frmcal-calendar{border-collapse:collapse;margin-top:20px;color:#555555;}.frmcal table.frmcal-calendar,.frmcal table.frmcal-calendar tbody tr td{border:1px solid #cccccc;}.frmcal table.frmcal-calendar,.frmcal,.frmcal-header{width:100%;}.frmcal-header{text-align:center;}.frmcal-prev{margin-right:10px;}.frmcal-prev,.frmcal-dropdown{float:left;}.frmcal-dropdown{margin-left:5px;}.frmcal-next{float:right;}.frmcal table.frmcal-calendar thead tr th{text-align:center;padding:2px 4px;}.frmcal table.frmcal-calendar tbody tr td{height:110px;width:14.28%;vertical-align:top;padding:0 !important;color:#555555;font-size:12px;}table.frmcal-calendar .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #cccccc;-webkit-box-shadow:0 2px 5px #cccccc;box-shadow:0 2px 5px #cccccc;-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#cccccc'')";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#cccccc'');}table.frmcal-calendar .frmcal-today .frmcal_date{background-color:#ffffff;padding:0 5px;text-align:right;-moz-box-shadow:0 2px 5px #66afe9;-webkit-box-shadow:0 2px 5px #66afe9;box-shadow:0 2px 5px #66afe9;-ms-filter:"progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#66afe9'')";filter:progid:DXImageTransform.Microsoft.Shadow(Strength=4, Direction=180, Color=''#66afe9'');}.frmcal_num{display:inline;}.frmcal-content{padding:2px 4px;}.frm_image_from_url{height:50px;}.frm-loading-img{background:url(//asiacentre.co.th/wp-content/plugins/formidable/images/ajax_loader.gif) no-repeat center center;padding:6px 12px;}#ui-datepicker-div{display:none;z-index:999999 !important;}.frm_form_fields div.rating-cancel{display:none !important;}.frm_form_fields div.rating-cancel,.frm_form_fields div.star-rating{float:left;width:17px;height:17px;font-size:16px;line-height:normal;cursor:pointer;display:block;background:transparent;overflow:hidden;}.frm_form_fields div.rating-cancel a:before{font:16px/1 ''dashicons'';content:''\\f460'';color:#CDCDCD;}.frm_form_fields div.star-rating:before,.frm_form_fields div.star-rating a:before{font:16px/1 ''dashicons'';content:''\\f154'';color:#F0AD4E;}.frm_form_fields div.rating-cancel a,.frm_form_fields div.star-rating a{display:block;width:16px;height:100%;border:0;}.frm_form_fields div.star-rating-on:before,.frm_form_fields div.star-rating-on a:before{content:''\\f155'';}.frm_form_fields div.star-rating-hover:before,.frm_form_fields div.star-rating-hover a:before{content:''\\f155'';}.frm_form_fields div.frm_half_star:before,.frm_form_fields div.frm_half_star a:before{content:''\\f459'';}.frm_form_fields div.rating-cancel.star-rating-hover a:before{color:#B63E3F;}.frm_form_fields div.star-rating-readonly,.frm_form_fields div.star-rating-readonly a{cursor:default !important;}.frm_form_fields div.star-rating{overflow:hidden!important;}.with_frm_style .frm_form_field{clear:both;}.frm_form_field.frm_right_half,.frm_form_field.frm_right_third,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_right_fourth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_half,.frm_form_field.frm_last_third,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_last_fourth,.frm_form_field.frm_last_fifth,.frm_form_field.frm_last_sixth,.frm_form_field.frm_last_seventh,.frm_form_field.frm_last_eighth,.frm_form_field.frm_last_inline,.frm_form_field.frm_last,.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_two_thirds,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_inline,.frm_submit.frm_inline{clear:none;float:left;margin-left:2.5%;}.frm_form_field.frm_left_half,.frm_form_field.frm_left_third,.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_left_fifth,.frm_form_field.frm_left_inline,.frm_form_field.frm_first_half,.frm_form_field.frm_first_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_first_fourth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_first_seventh,.frm_form_field.frm_first_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_first{clear:left;float:left;margin-left:0;}.frm_form_field.frm_alignright{float:right !important;}.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_half,.frm_submit.frm_half{width:48.75%;}.frm_form_field.frm_left_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_right_third,.frm_form_field.frm_first_third,.frm_form_field.frm_last_third{width:31.66%;}.frm_form_field.frm_left_two_thirds,.frm_form_field.frm_right_two_thirds,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds{width:65.82%;}.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth{width:23.12%;}.frm_form_field.frm_three_fourths{width:74.36%;}.frm_form_field.frm_left_fifth,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_right_fifth,.frm_form_field.frm_first_fifth,.frm_form_field.frm_last_fifth{width:18%;}.frm_form_field.frm_two_fifths {width:38.5%;}.frm_form_field.frm_three_fifths {width:59%;}.frm_form_field.frm_four_fifths {width:79.5%;}.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_first_sixth,.frm_form_field.frm_last_sixth{width:14.58%;}.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_first_seventh,.frm_form_field.frm_last_seventh{width:12.14%;}.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_eighth,.frm_form_field.frm_last_eighth{width:10.31%;}.frm_form_field.frm_left_inline,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_right_inline,.frm_form_field.frm_last_inline{width:auto;}.with_frm_style .frm_form_field.frm_first_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_right_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_right_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_right_container .frm_error{margin-right:33%;padding-right:12px;}.with_frm_style .frm_form_field.frm_first_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_first_half .frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_first_half .frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_last_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_last_half.frm_left_container .frm_error,.with_frm_style .frm_form_field.frm_half.frm_left_container div.frm_description,.with_frm_style .frm_form_field.frm_half.frm_left_container .frm_error{margin-left:33%;padding-left:12px;}.frm_full,.frm_full .wp-editor-wrap,.frm_full input:not([type=''checkbox'']):not([type=''radio'']):not([type=''button'']),.frm_full select,.frm_full textarea{width:100% !important;}.frm_full .wp-editor-wrap input{width:auto !important;}.frm_form_field.frm_left_container label.frm_primary_label{float:left;display:inline;max-width:33%;margin-right:10px;}.frm_form_field.frm_left_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_left_container select,.frm_form_field.frm_left_container textarea,.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container input:not([type=radio]):not([type=checkbox]),.frm_form_field.frm_right_container select,.frm_form_field.frm_right_container textarea,.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_right_container .g-recaptcha{max-width:62%;}.frm_form_field.frm_left_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_right_container:not(.frm_dynamic_select_container) .frm_opt_container,.frm_form_field.frm_left_container .g-recaptcha,.frm_form_field.frm_right_container .g-recaptcha{display:inline-block;}.frm_left_container p.description,.frm_left_container div.description,.frm_left_container div.frm_description,.frm_left_container .frm_error{margin-left:33%;max-width:62%;}.frm_form_field.frm_left_half.frm_left_container .frm_primary_label,.frm_form_field.frm_right_half.frm_left_container .frm_primary_label,.frm_form_field.frm_left_half.frm_right_container .frm_primary_label,.frm_form_field.frm_right_half.frm_right_container .frm_primary_label,.frm_form_field.frm_first_half.frm_left_container .frm_primary_label,.frm_form_field.frm_last_half.frm_left_container .frm_primary_label,.frm_form_field.frm_first_half.frm_right_container .frm_primary_label,.frm_form_field.frm_last_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_right_container .frm_primary_label,.frm_form_field.frm_half.frm_left_container .frm_primary_label{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;max-width:33%;}.wp-editor-wrap *,.wp-editor-wrap *:after,.wp-editor-wrap *:before{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_first,.with_frm_style .frm_grid_odd{clear:both;margin-bottom:0 !important;padding:5px;border-width:1px;border-style:solid;border-color:#cccccc;border-left:none;border-right:none;}.with_frm_style .frm_grid,.with_frm_style .frm_grid_odd{border-top:none;}.frm_grid .frm_error,.frm_grid_first .frm_error,.frm_grid_odd .frm_error{display:none;}.frm_grid:after,.frm_grid_first:after,.frm_grid_odd:after{visibility:hidden;display:block;font-size:0;content:" ";clear:both;height:0;}.frm_grid_first{margin-top:20px;}.frm_grid_first,.frm_grid_odd{background-color:#ffffff;}.frm_grid{background-color:#ffffff;}.frm_grid .frm_primary_label,.frm_grid_first .frm_primary_label,.frm_grid_odd .frm_primary_label,.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{float:left !important;display:block;margin-top:0;margin-left:0 !important;}.frm_grid_first .frm_radio label,.frm_grid .frm_radio label,.frm_grid_odd .frm_radio label,.frm_grid_first .frm_checkbox label,.frm_grid .frm_checkbox label,.frm_grid_odd .frm_checkbox label{visibility:hidden;white-space:nowrap;text-align:left;}.frm_grid_first .frm_radio label input,.frm_grid .frm_radio label input,.frm_grid_odd .frm_radio label input,.frm_grid_first .frm_checkbox label input,.frm_grid .frm_checkbox label input,.frm_grid_odd .frm_checkbox label input{visibility:visible;margin:2px 0 0;float:right;}.frm_grid .frm_radio,.frm_grid_first .frm_radio,.frm_grid_odd .frm_radio,.frm_grid .frm_checkbox,.frm_grid_first .frm_checkbox,.frm_grid_odd .frm_checkbox{display:inline;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox,.frm_grid_2 label.frm_primary_label{width:48% !important;}.frm_grid_2 .frm_radio,.frm_grid_2 .frm_checkbox{margin-right:4%;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox,.frm_grid_3 label.frm_primary_label{width:30% !important;}.frm_grid_3 .frm_radio,.frm_grid_3 .frm_checkbox{margin-right:3%;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{width:20% !important;}.frm_grid_4 label.frm_primary_label{width:28% !important;}.frm_grid_4 .frm_radio,.frm_grid_4 .frm_checkbox{margin-right:4%;}.frm_grid_5 label.frm_primary_label,.frm_grid_7 label.frm_primary_label{width:24% !important;}.frm_grid_5 .frm_radio,.frm_grid_5 .frm_checkbox{width:17% !important;margin-right:2%;}.frm_grid_6 label.frm_primary_label{width:25% !important;}.frm_grid_6 .frm_radio,.frm_grid_6 .frm_checkbox{width:14% !important;margin-right:1%;}.frm_grid_7 label.frm_primary_label{width:22% !important;}.frm_grid_7 .frm_radio,.frm_grid_7 .frm_checkbox{width:12% !important;margin-right:1%;}.frm_grid_8 label.frm_primary_label{width:23% !important;}.frm_grid_8 .frm_radio,.frm_grid_8 .frm_checkbox{width:10% !important;margin-right:1%;}.frm_grid_9 label.frm_primary_label{width:20% !important;}.frm_grid_9 .frm_radio,.frm_grid_9 .frm_checkbox{width:9% !important;margin-right:1%;}.frm_grid_10 label.frm_primary_label{width:19% !important;}.frm_grid_10 .frm_radio,.frm_grid_10 .frm_checkbox{width:8% !important;margin-right:1%;}.with_frm_style .frm_inline_container.frm_grid_first label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_odd label.frm_primary_label,.with_frm_style .frm_inline_container.frm_grid_first .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid .frm_opt_container,.with_frm_style .frm_inline_container.frm_grid_odd .frm_opt_container{margin-right:0;}.with_frm_style .frm_inline_container.frm_scale_container label.frm_primary_label{float:left;}.with_frm_style .frm_other_input.frm_other_full{margin-top:10px;}.with_frm_style .frm_repeat_sec{margin-bottom:20px;margin-top:20px;}.with_frm_style .frm_repeat_inline{clear:both;}.frm_form_field .frm_repeat_sec .frm_add_form_row{opacity:0;display:none;*display:inline;display:inline\\0/; -moz-transition: opacity .15s ease-in-out;-webkit-transition: opacity .15s ease-in-out;transition: opacity .15s ease-in-out;pointer-events:none;}.frm_section_heading div.frm_repeat_sec:last-child .frm_add_form_row{opacity:100;display:inline;pointer-events:auto;}.frm_form_field .frm_repeat_grid .frm_form_field label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field label.frm_primary_label{display:inherit !important;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_checkbox,.frm_form_field.frm_four_col .frm_checkbox{float:left;}.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width:30%;margin-right:5%;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:22%;margin-right:4%;}.frm_form_field.frm_two_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_two_col .frm_checkbox:nth-child(2n+2),.frm_form_field.frm_three_col .frm_radio:nth-child(3n+3),.frm_form_field.frm_three_col .frm_checkbox:nth-child(3n+3),.frm_form_field.frm_four_col .frm_radio:nth-child(4n+4),.frm_form_field.frm_four_col .frm_checkbox:nth-child(4n+4){margin-right:0;}.frm_form_field.frm_scroll_box .frm_opt_container{height:100px;overflow:auto;}.frm_form_field.frm_html_scroll_box{height:100px;overflow:auto;background-color:#ffffff;border-color:#cccccc;border-width:1px;border-style:solid;-moz-border-radius:4px;-webkit-border-radius:4px;border-radius:4px;width:100%;max-width:100%;font-size:14px;padding:6px 10px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;outline:none;font-weight:normal;box-shadow:0 1px 1px rgba(0, 0, 0, 0.075) inset;}.frm_form_field.frm_two_col .frm_opt_container:after,.frm_form_field.frm_three_col .frm_opt_container:after,.frm_form_field.frm_four_col .frm_opt_container:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_form_field.frm_total input,.frm_form_field.frm_total textarea{opacity:1;background-color:transparent !important;border:none !important;font-weight:bold;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none !important;display:inline;width:auto !important;-moz-appearance:textfield;padding:0;}.frm_form_field.frm_total input::-webkit-outer-spin-button,.frm_form_field.frm_total input::-webkit-inner-spin-button {-webkit-appearance: none;}.frm_form_field.frm_total input:focus,.frm_form_field.frm_total textarea:focus{background-color:transparent;border:none;-moz-box-shadow:none;-webkit-box-shadow:none;box-shadow:none;}.frm_text_block{margin-left:20px;}.frm_text_block input,.frm_text_block label.frm_primary_label{margin-left:-20px;}.frm_text_block .frm_checkbox input[type=checkbox],.frm_text_block .frm_radio input[type=radio]{margin-right:4px;}.frm_form_field.frm_capitalize input,.frm_form_field.frm_capitalize select,.frm_form_field.frm_capitalize .frm_opt_container label{text-transform:capitalize;}.frm_clearfix:after{content:".";display:block;clear:both;visibility:hidden;line-height:0;height:0;}.frm_clearfix{display:inline-block;}html[xmlns] .frm_clearfix{display:block;}* html .frm_clearfix{height:1%;}.with_frm_style.frm_login_form,.with_frm_style.frm_login_form form{clear:both;}.with_frm_style.frm_login_form.frm_inline_login .login-remember input{vertical-align:baseline;}.with_frm_style.frm_login_form.frm_inline_login .login-submit{float:left;}.with_frm_style.frm_login_form.frm_inline_login label{display:inline;}.with_frm_style.frm_login_form.frm_inline_login .login-username,.with_frm_style.frm_login_form.frm_inline_login .login-password,.with_frm_style.frm_login_form.frm_inline_login .login-remember{float:left;margin-right:5px;}.with_frm_style.frm_login_form.frm_inline_login form{position:relative;clear:none;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:absolute;top:35px;}.with_frm_style.frm_login_form.frm_inline_login input[type=submit]{margin:0 !important;}.with_frm_style.frm_login_form.frm_no_labels .login-username label,.with_frm_style.frm_login_form.frm_no_labels .login-password label{display:none;}.with_frm_style .frm-open-login{float:left;margin-right:15px;}.with_frm_style .frm-open-login a{text-decoration:none;border:none;outline:none;}.with_frm_style.frm_slide.frm_login_form form{display:none;}.with_frm_style .chosen-container{font-size:14px;position:relative;display:inline-block;zoom:1;vertical-align:middle;-webkit-user-select:none;-moz-user-select:none;user-select:none;*display:inline;}.with_frm_style .chosen-container .chosen-drop{background:#fff;border:1px solid #aaa;border-top:0;position:absolute;top:100%;left:-9999px;box-shadow:0 4px 5px rgba(0,0,0,.15);z-index:1010;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;}.with_frm_style .chosen-container.chosen-with-drop .chosen-drop{left:0;}.with_frm_style .chosen-container a{cursor:pointer;}.with_frm_style .chosen-container-single .chosen-single{position:relative;display:block;overflow:hidden;padding:0 0 0 8px;height:25px;background:-webkit-gradient(linear, 50% 0%, 50% 100%, color-stop(20%, #ffffff), color-stop(50%, #f6f6f6), color-stop(52%, #eeeeee), color-stop(100%, #f4f4f4));background:-webkit-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-moz-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:-o-linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background:linear-gradient(top, #ffffff 20%, #f6f6f6 50%, #eeeeee 52%, #f4f4f4 100%);background-clip:padding-box;box-shadow:0 0 3px white inset, 0 1px 1px rgba(0, 0, 0, 0.1);text-decoration:none;white-space:nowrap;line-height:24px;}.with_frm_style .chosen-container-single .chosen-single span{margin-right:26px;display:block;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}.with_frm_style .chosen-container-single .chosen-single-with-deselect span{margin-right:38px;}.with_frm_style .chosen-container-single .chosen-single abbr{display:block;position:absolute;right:26px;top:6px;width:12px;height:12px;font-size:1px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') -42px 1px no-repeat;}.with_frm_style .chosen-container-single .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single.chosen-disabled .chosen-single abbr:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-single .chosen-single div{position:absolute;right:0;top:0;display:block;height:100%;width:18px;}.with_frm_style .chosen-container-single .chosen-single div b{background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat 0px 2px;display:block;width:100%;height:100%;}.with_frm_style .chosen-container-single .chosen-search{padding:3px 4px;position:relative;margin:0;white-space:nowrap;z-index:1010;}.with_frm_style .chosen-container-single .chosen-search input[type="text"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;width:100%;height:auto;background:white url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat 100% -20px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat 100% -20px;font-size:1em;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-single .chosen-drop{margin-top:-1px;border-radius:0 0 4px 4px;background-clip:padding-box;}.with_frm_style .chosen-container-single.chosen-container-single-nosearch .chosen-search{position:absolute;left:-9999px;}.with_frm_style .chosen-container .chosen-results{cursor:text;overflow-x:hidden;overflow-y:auto;position:relative;margin:0 4px 4px 0;padding:0 0 0 4px;max-height:240px;word-wrap:break-word;-webkit-overflow-scrolling:touch;}.with_frm_style .chosen-container .chosen-results li:before{background:none;}.with_frm_style .chosen-container .chosen-results li{display:none;margin:0;padding:5px 6px;list-style:none;line-height:15px;-webkit-touch-callout:none;}.with_frm_style .chosen-container .chosen-results li.active-result{display:list-item;cursor:pointer;}.with_frm_style .chosen-container .chosen-results li.disabled-result{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container .chosen-results li.highlighted{background-color:#3875d7;color:#fff;}.with_frm_style .chosen-container .chosen-results li.no-results{display:list-item;background:#f4f4f4;}.with_frm_style .chosen-container .chosen-results li.group-result{display:list-item;font-weight:bold;cursor:default;}.with_frm_style .chosen-container .chosen-results li.group-option{padding-left:15px;}.with_frm_style .chosen-container .chosen-results li em{font-style:normal;text-decoration:underline;}.with_frm_style .chosen-container-multi .chosen-choices{position:relative;overflow:hidden;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;margin:0;padding:0 5px;width:100%;height:auto !important;height:1%;cursor:text;}.with_frm_style .chosen-container-multi .chosen-choices li{float:left;list-style:none;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field{margin:0;padding:0;white-space:nowrap;}.with_frm_style .chosen-container-multi .chosen-choices li.search-field input[type="text"]{margin:1px 0;padding:0;height:25px;outline:0;border:0 !important;background:transparent !important;box-shadow:none;color:#666;font-size:100%;font-family:sans-serif;line-height:normal;border-radius:0;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice{position:relative;margin:3px 5px 3px 0;padding:3px 20px 3px 5px;border:1px solid #aaa;max-width:100%;border-radius:3px;background-color:#eee;background-size:100% 19px;background-repeat:repeat-x;background-clip:padding-box;box-shadow:0 0 2px white inset, 0 1px 0 rgba(0, 0, 0, 0.05);color:#333;line-height:13px;cursor:default;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close{position:absolute;top:4px;right:3px;display:block;width:12px;height:12px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') -42px 1px no-repeat;font-size:1px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice .search-choice-close:hover{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-disabled{padding-right:5px;border:1px solid #ccc;background-color:#e4e4e4;color:#666;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus{background:#d4d4d4;}.with_frm_style .chosen-container-multi .chosen-choices li.search-choice-focus .search-choice-close{background-position:-42px -10px;}.with_frm_style .chosen-container-multi .chosen-results{margin:0;padding:0;}.with_frm_style .chosen-container-multi .chosen-drop .result-selected{display:list-item;color:#ccc;cursor:default;}.with_frm_style .chosen-container-active .chosen-single{border:1px solid #5897fb;box-shadow:0 0 5px rgba(0, 0, 0, 0.3);}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single{border:1px solid #aaa;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;box-shadow:0 1px 0 #fff inset;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div{border-left:none;background:transparent;}.with_frm_style .chosen-container-active.chosen-with-drop .chosen-single div b{background-position:-18px 2px;}.with_frm_style .chosen-container-active .chosen-choices li.search-field input[type="text"]{color:#111 !important;}.with_frm_style .chosen-disabled{opacity:0.5 !important;cursor:default;}.with_frm_style .chosen-disabled .chosen-single{cursor:default;}.with_frm_style .chosen-disabled .chosen-choices .search-choice .search-choice-close{cursor:default;}.with_frm_style .chosen-rtl{text-align:right;}.with_frm_style .chosen-rtl .chosen-single{overflow:visible;padding:0 8px 0 0;}.with_frm_style .chosen-rtl .chosen-single span{margin-right:0;margin-left:26px;direction:rtl;}.with_frm_style .chosen-rtl .chosen-single-with-deselect span{margin-left:38px;}.with_frm_style .chosen-rtl .chosen-single div{right:auto;left:3px;}.with_frm_style .chosen-rtl .chosen-single abbr{right:auto;left:26px;}.with_frm_style .chosen-rtl .chosen-choices li{float:right;}.with_frm_style .chosen-rtl .chosen-choices li.search-field input[type="text"]{direction:rtl;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice{margin:3px 5px 3px 0;padding:3px 5px 3px 19px;}.with_frm_style .chosen-rtl .chosen-choices li.search-choice .search-choice-close{right:auto;left:4px;}.with_frm_style .chosen-rtl.chosen-container-single-nosearch .chosen-search, .with_frm_style .chosen-rtl .chosen-drop{left:9999px;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-results{margin:0 0 4px 4px;padding:0 4px 0 0;}.with_frm_style .chosen-rtl .chosen-results li.group-option{padding-right:15px;padding-left:0;}.with_frm_style .chosen-rtl.chosen-container-active.chosen-with-drop .chosen-single div{border-right:none;}.with_frm_style .chosen-rtl .chosen-search input[type="text"]{padding:4px 5px 4px 20px;background:white url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat -30px -20px;background:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite.png'') no-repeat -30px -20px;direction:rtl;}.with_frm_style .chosen-rtl.chosen-container-single .chosen-single div b{background-position:6px 2px;}.with_frm_style .chosen-rtl.chosen-container-single.chosen-with-drop .chosen-single div b{background-position:-12px 2px;}@font-face {font-family:''s11-fp'';src:url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.eot'');src:local(''☺''), url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.woff'') format(''woff''), url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.ttf'') format(''truetype''), url(''//asiacentre.co.th/wp-content/plugins/formidable/fonts/s11-fp.svg'') format(''svg'');font-weight:normal;font-style:normal;}.frm_icon_font,.frm_dashicon_font{text-decoration:none;text-shadow: none;font-weight:normal;}i.frm_icon_font{font-style:normal;}.frm_icon_font:before,select.frm_icon_font{font-family: ''s11-fp'' !important;font-size:16px;speak: none;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;-moz-transition: all .1s ease-in-out;-webkit-transition: all .1s ease-in-out;transition: all .1s ease-in-out;}.frm_icon_font,a.frm_icon_font.frm_icon_font:hover,a.frm_icon_font:hover{text-decoration:none !important;}.frm_icon_font:focus,.frm_dashicon_font:focus{box-shadow:none;-webkit-box-shadow:none;}.frm_duplicate_icon:active,.frm_move_icon:active,.frm_delete_icon:active{outline:none;}.ab-icon.frm_dashicon_font:before{content: "\\f324";}.frm_logo_icon:before {content: "\\e601";}.frm_required_icon:before {content: "\\e612";}.frm_delete_icon:before {content: "\\e610" !important;}.frm_move_icon:before {content: "\\e61a";}.frm_clear_icon:before {content: "\\e60a";}.frm_noclear_icon:before {content: "\\e60b";}.frm_duplicate_icon:before {content: "\\e61b";}.frm_new_icon:before {content: "\\e614";}.frm_tooltip_icon:before {content: "\\e611";}.frm_forbid_icon:before {content: "\\e636";}.frm_check_icon:before {content: "\\e605";}.frm_check1_icon:before {content: "\\e606";}.frm_plus_icon:before {content: "\\e62f";}.frm_plus1_icon:before {content: "\\e602";}.frm_plus2_icon:before {content: "\\e603";}.frm_plus3_icon:before {content: "\\e632";}.frm_plus4_icon:before {content: "\\e60f";}.frm_minus_icon:before {content: "\\e62e";}.frm_minus1_icon:before {content: "\\e600";}.frm_minus2_icon:before {content: "\\e604";}.frm_minus3_icon:before {content: "\\e633";}.frm_minus4_icon:before {content: "\\e613";}.frm_cancel_icon:before {content: "\\e607";}.frm_cancel1_icon:before {content: "\\e608";}.frm_arrowup_icon:before {content: "\\e60d";}.frm_arrowup1_icon:before {content: "\\e60e";}.frm_arrowup2_icon:before {content: "\\e630";}.frm_arrowup3_icon:before {content: "\\e62b";}.frm_arrowup4_icon:before {content: "\\e62c";}.frm_arrowup5_icon:before {content: "\\e635";}.frm_arrowup6_icon:before {content: "\\e62d";}.frm_arrowdown_icon:before {content: "\\e609";}.frm_arrowdown1_icon:before {content: "\\e60c";}.frm_arrowdown2_icon:before {content: "\\e631";}.frm_arrowdown3_icon:before {content: "\\e628";}.frm_arrowdown4_icon:before {content: "\\e629";}.frm_arrowdown5_icon:before {content: "\\e634";}.frm_arrowdown6_icon:before {content: "\\e62a";}.frm_download_icon:before {content: "\\e615";}.frm_upload_icon:before {content: "\\e616";}.frm_menu_icon:before {content: "\\e618";}.frm_twitter_icon:before {content: "\\e619";}.frm_sms_icon:before {content: "\\e61c";}.frm_pencil_icon:before {content: "\\e61d";}.frm_pencil1_icon:before {content: "\\e61e";}.frm_paypal_icon:before {content: "\\e61f";}.frm_twilio_icon:before {content: "\\e620";}.frm_googleplus_icon:before {content: "\\e621";}.frm_mailchimp_icon:before {content: "\\e622";}.frm_pdf_icon:before {content: "\\e623";}.frm_highrise_icon:before {content: "\\e617";}.frm_feed_icon:before {content: "\\e624";}.frm_facebook_icon:before {content: "\\e625";}.frm_email_icon:before {content: "\\e626";}.frm_aweber_icon:before {content: "\\e627";}.frm_register_icon:before {content: "\\e637";}@media only screen and (-webkit-min-device-pixel-ratio: 2), only screen and (min-resolution: 144dpi){.with_frm_style .chosen-rtl .chosen-search input[type="text"],.with_frm_style .chosen-container-single .chosen-single abbr,.with_frm_style .chosen-container-single .chosen-single div b,.with_frm_style .chosen-container-single .chosen-search input[type="text"],.with_frm_style .chosen-container-multi .chosen-choices .search-choice .search-choice-close,.with_frm_style .chosen-container .chosen-results-scroll-down span,.with_frm_style .chosen-container .chosen-results-scroll-up span{background-image:url(''//asiacentre.co.th/wp-content/plugins/formidable/pro/images/chosen-sprite2x.png'') !important;background-size:52px 37px !important;background-repeat:no-repeat !important;}}@media only screen and (max-width: 900px) {.frm_form_field .frm_repeat_grid .frm_form_field.frm_sixth label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_seventh label.frm_primary_label,.frm_form_field .frm_repeat_grid .frm_form_field.frm_eighth label.frm_primary_label{display: block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_seventh label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 600px) {.frm_form_field.frm_half,.frm_submit.frm_half,.frm_form_field.frm_left_half,.frm_form_field.frm_right_half,.frm_form_field.frm_first_half,.frm_form_field.frm_last_half,.frm_form_field.frm_first_third,.frm_form_field.frm_third,.frm_submit.frm_third,.frm_form_field.frm_last_third,.frm_form_field.frm_first_two_thirds,.frm_form_field.frm_last_two_thirds,.frm_form_field.frm_two_thirds,.frm_form_field.frm_left_fourth,.frm_form_field.frm_fourth,.frm_submit.frm_fourth,.frm_form_field.frm_right_fourth,.frm_form_field.frm_first_fourth,.frm_form_field.frm_last_fourth,.frm_form_field.frm_three_fourths,.frm_form_field.frm_fifth,.frm_submit.frm_fifth,.frm_form_field.frm_two_fifths,.frm_form_field.frm_three_fifths,.frm_form_field.frm_four_fifths,.frm_form_field.frm_sixth,.frm_submit.frm_sixth,.frm_form_field.frm_seventh,.frm_submit.frm_seventh,.frm_form_field.frm_eighth,.frm_submit.frm_eighth,.frm_form_field.frm_first_inline,.frm_form_field.frm_inline,.frm_submit.frm_inline,.frm_form_field.frm_last_inline{width:100%;margin-left:0;margin-right:0;clear:both;float:none;}.frm_form_field.frm_four_col .frm_radio,.frm_form_field.frm_four_col .frm_checkbox{width:48%;margin-right:4%;}.frm_form_field.frm_four_col .frm_radio:nth-child(2n+2),.frm_form_field.frm_four_col .frm_checkbox:nth-child(2n+2){margin-right:0;}.frm_form_field .frm_repeat_grid.frm_first_repeat .frm_form_field.frm_repeat_buttons:not(.frm_fourth):not(.frm_sixth):not(.frm_eighth) label.frm_primary_label{display:none !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_fifth label.frm_primary_label{display:block !important;}.frm_form_field .frm_repeat_grid .frm_form_field.frm_repeat_buttons.frm_fifth label.frm_primary_label{display:none !important;}}@media only screen and (max-width: 500px) {.frm_form_field.frm_two_col .frm_radio,.frm_form_field.frm_two_col .frm_checkbox,.frm_form_field.frm_three_col .frm_radio,.frm_form_field.frm_three_col .frm_checkbox{width: auto;margin-right: 0;float: none;display:block;}.frm_form_field input[type=file] {max-width:220px;}.with_frm_style.frm_login_form.frm_inline_login p{clear:both;float:none;}.with_frm_style.frm_login_form.frm_inline_login form{position:static;}.with_frm_style.frm_login_form.frm_inline_login .login-remember{position:static;}.with_frm_style .g-recaptcha > div > div{width:inherit !important;display:block;overflow:hidden;max-width:302px;border-right:1px solid #d3d3d3;border-radius:4px;box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);-moz-box-shadow:2px 0px 4px -1px rgba(0,0,0,.08);}.with_frm_style .g-recaptcha iframe{width:100%;}}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(4776, 'wpseo_dismiss_recalculate', '1', 'yes'),
(4782, 'wpseo_taxonomy_meta', 'a:2:{s:6:"events";a:5:{i:225;a:2:{s:15:"wpseo_canonical";s:18:"http://Conferences";s:13:"wpseo_focuskw";s:11:"conferences";}i:228;a:1:{s:13:"wpseo_focuskw";s:8:"Seminars";}i:229;a:1:{s:13:"wpseo_focuskw";s:9:"workshops";}i:235;a:17:{s:11:"wpseo_title";s:0:"";s:10:"wpseo_desc";s:0:"";s:13:"wpseo_metakey";s:0:"";s:15:"wpseo_canonical";s:0:"";s:13:"wpseo_bctitle";s:0:"";s:13:"wpseo_noindex";s:7:"default";s:21:"wpseo_sitemap_include";s:1:"-";s:13:"wpseo_focuskw";s:0:"";s:21:"wpseo_opengraph-title";s:0:"";s:27:"wpseo_opengraph-description";s:0:"";s:21:"wpseo_opengraph-image";s:0:"";s:19:"wpseo_twitter-title";s:0:"";s:25:"wpseo_twitter-description";s:0:"";s:19:"wpseo_twitter-image";s:0:"";s:23:"wpseo_google-plus-title";s:0:"";s:29:"wpseo_google-plus-description";s:0:"";s:23:"wpseo_google-plus-image";s:0:"";}i:211;a:17:{s:11:"wpseo_title";s:0:"";s:10:"wpseo_desc";s:0:"";s:13:"wpseo_metakey";s:0:"";s:15:"wpseo_canonical";s:0:"";s:13:"wpseo_bctitle";s:0:"";s:13:"wpseo_noindex";s:7:"default";s:21:"wpseo_sitemap_include";s:1:"-";s:13:"wpseo_focuskw";s:0:"";s:21:"wpseo_opengraph-title";s:0:"";s:27:"wpseo_opengraph-description";s:0:"";s:21:"wpseo_opengraph-image";s:0:"";s:19:"wpseo_twitter-title";s:0:"";s:25:"wpseo_twitter-description";s:0:"";s:19:"wpseo_twitter-image";s:0:"";s:23:"wpseo_google-plus-title";s:0:"";s:29:"wpseo_google-plus-description";s:0:"";s:23:"wpseo_google-plus-image";s:0:"";}}s:8:"category";a:3:{i:239;a:17:{s:11:"wpseo_title";s:0:"";s:10:"wpseo_desc";s:0:"";s:13:"wpseo_metakey";s:0:"";s:15:"wpseo_canonical";s:0:"";s:13:"wpseo_bctitle";s:0:"";s:13:"wpseo_noindex";s:7:"default";s:21:"wpseo_sitemap_include";s:1:"-";s:13:"wpseo_focuskw";s:0:"";s:21:"wpseo_opengraph-title";s:0:"";s:27:"wpseo_opengraph-description";s:0:"";s:21:"wpseo_opengraph-image";s:0:"";s:19:"wpseo_twitter-title";s:0:"";s:25:"wpseo_twitter-description";s:0:"";s:19:"wpseo_twitter-image";s:0:"";s:23:"wpseo_google-plus-title";s:0:"";s:29:"wpseo_google-plus-description";s:0:"";s:23:"wpseo_google-plus-image";s:0:"";}i:257;a:17:{s:11:"wpseo_title";s:0:"";s:10:"wpseo_desc";s:0:"";s:13:"wpseo_metakey";s:0:"";s:15:"wpseo_canonical";s:0:"";s:13:"wpseo_bctitle";s:0:"";s:13:"wpseo_noindex";s:7:"default";s:21:"wpseo_sitemap_include";s:1:"-";s:13:"wpseo_focuskw";s:0:"";s:21:"wpseo_opengraph-title";s:0:"";s:27:"wpseo_opengraph-description";s:0:"";s:21:"wpseo_opengraph-image";s:0:"";s:19:"wpseo_twitter-title";s:0:"";s:25:"wpseo_twitter-description";s:0:"";s:19:"wpseo_twitter-image";s:0:"";s:23:"wpseo_google-plus-title";s:0:"";s:29:"wpseo_google-plus-description";s:0:"";s:23:"wpseo_google-plus-image";s:0:"";}i:256;a:17:{s:11:"wpseo_title";s:0:"";s:10:"wpseo_desc";s:0:"";s:13:"wpseo_metakey";s:0:"";s:15:"wpseo_canonical";s:0:"";s:13:"wpseo_bctitle";s:0:"";s:13:"wpseo_noindex";s:7:"default";s:21:"wpseo_sitemap_include";s:1:"-";s:13:"wpseo_focuskw";s:0:"";s:21:"wpseo_opengraph-title";s:0:"";s:27:"wpseo_opengraph-description";s:0:"";s:21:"wpseo_opengraph-image";s:0:"";s:19:"wpseo_twitter-title";s:0:"";s:25:"wpseo_twitter-description";s:0:"";s:19:"wpseo_twitter-image";s:0:"";s:23:"wpseo_google-plus-title";s:0:"";s:29:"wpseo_google-plus-description";s:0:"";s:23:"wpseo_google-plus-image";s:0:"";}}}', 'yes'),
(5788, 'updraft_azure', 'a:0:{}', 'yes'),
(5789, 'updraft_googlecloud', '', 'yes'),
(5876, 'updraft_last_scheduled_fd', '1485244703', 'yes'),
(6808, 'updraftplus-addons_siteid', '58ac91ec95b4dfa983d90686830bee5c', 'yes'),
(7116, 'updraft_last_scheduled_d', '1454913871', 'yes'),
(7370, 'wp_smtp_options', 'a:9:{s:4:"from";s:21:"info@asiacentre.co.th";s:8:"fromname";s:21:"info@asiacentre.co.th";s:4:"host";s:14:"smtp.gmail.com";s:10:"smtpsecure";s:3:"ssl";s:4:"port";s:3:"465";s:8:"smtpauth";s:2:"no";s:8:"username";s:21:"info@asiacentre.co.th";s:8:"password";s:8:"UD=PqC56";s:10:"deactivate";s:0:"";}', 'yes'),
(7580, 'mail_from', 'infoasiacentre@gmail.com', 'yes'),
(7581, 'mail_from_name', 'infoasiacentre@gmail.com', 'yes'),
(7582, 'mailer', 'smtp', 'yes'),
(7583, 'mail_set_return_path', '', 'yes'),
(7584, 'smtp_host', 'smtp.gmail.com', 'yes'),
(7585, 'smtp_port', '465', 'yes'),
(7586, 'smtp_ssl', 'ssl', 'yes'),
(7587, 'smtp_auth', 'true', 'yes'),
(7588, 'smtp_user', 'infoasiacentre@gmail.com', 'yes'),
(7589, 'smtp_pass', '21July_2015', 'yes'),
(9077, 'wpseo-gsc-refresh_token', '1/FYJaxyxSYoQjbLUmZ7RHzGZ9sheRQvoRBjjOcJiWO24MEudVrK5jSpoR30zcRFq6', 'yes'),
(9078, 'wpseo-gsc-access_token', 'a:5:{s:13:"refresh_token";s:66:"1/FYJaxyxSYoQjbLUmZ7RHzGZ9sheRQvoRBjjOcJiWO24MEudVrK5jSpoR30zcRFq6";s:12:"access_token";s:71:"ya29.nwKmfBIHJpPdX-dTDBOthwTExsPINEYEFcMeKhIqlewa7I2Sv0u0Jxw0s8xktds0KQ";s:7:"expires";i:1457432487;s:10:"expires_in";i:3600;s:7:"created";i:1457428887;}', 'yes'),
(9083, 'wpgmza_stats', 'a:1:{s:15:"list_maps_basic";a:3:{s:5:"views";i:4;s:13:"last_accessed";s:19:"2016-12-27 08:23:15";s:14:"first_accessed";s:19:"2016-03-08 09:36:18";}}', 'yes'),
(9085, 'wpseo-gsc', 'a:1:{s:7:"profile";s:24:"http://asiacentre.co.th/";}', 'yes'),
(9088, 'wpseo_gsc_issues_counts', 'a:0:{}', 'yes'),
(16154, 'updraft_remotesites', '', 'yes'),
(16155, 'updraft_migrator_localkeys', '', 'yes'),
(17367, 'can_compress_scripts', '0', 'no'),
(17440, '_site_transient_timeout_browser_3761e5c4733742374ba4795bb2ae7f72', '1472969710', 'no'),
(17441, '_site_transient_browser_3761e5c4733742374ba4795bb2ae7f72', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:4:"47.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'),
(17813, '_site_transient_timeout_browser_055919ca7988015d051630a4a0ea2b7a', '1473652434', 'no'),
(17814, '_site_transient_browser_055919ca7988015d051630a4a0ea2b7a', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Safari";s:7:"version";s:5:"9.1.1";s:10:"update_url";s:28:"http://www.apple.com/safari/";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/safari.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/safari.png";s:15:"current_version";s:1:"5";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'no'),
(17862, '_site_transient_timeout_browser_beef5b45b94c7d3e4dc5d8e6679fad16', '1473736004', 'no'),
(17863, '_site_transient_browser_beef5b45b94c7d3e4dc5d8e6679fad16', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"52.0.2743.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;}', 'no'),
(18097, '_site_transient_timeout_browser_ebee2cb07f407535234173ddc900149d', '1474614283', 'no'),
(18098, '_site_transient_browser_ebee2cb07f407535234173ddc900149d', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:13:"52.0.2743.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;}', 'no'),
(19523, '_site_transient_timeout_browser_d7ebeddeee1c10c06a3c4cf170141814', '1479102803', 'no'),
(19524, '_site_transient_browser_d7ebeddeee1c10c06a3c4cf170141814', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:7:"Firefox";s:7:"version";s:4:"49.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'),
(20087, '_transient_timeout_frm_form_fields_5includeinclude', '1480504072', 'no'),
(20088, '_transient_frm_form_fields_5includeinclude', 'a:3:{i:0;O:8:"stdClass":13:{s:2:"id";s:2:"18";s:9:"field_key";s:7:"qh4icy3";s:4:"name";s:4:"Name";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:14:"frm_first_half";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2015-09-14 09:13:13";s:9:"form_name";s:27:"Internship Application Form";}i:1;O:8:"stdClass":13:{s:2:"id";s:2:"20";s:9:"field_key";s:7:"29yf4d3";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:8:"frm_full";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2015-09-14 09:13:13";s:9:"form_name";s:27:"Internship Application Form";}i:2;O:8:"stdClass":13:{s:2:"id";s:2:"24";s:9:"field_key";s:7:"62n6q33";s:4:"name";s:7:"Captcha";s:11:"description";s:0:"";s:4:"type";s:7:"captcha";s:13:"default_value";s:1:"1";s:7:"options";s:0:"";s:11:"field_order";s:1:"7";s:8:"required";s:1:"0";s:13:"field_options";a:11:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:4:"size";s:0:"";s:3:"max";s:0:"";s:7:"invalid";s:39:"The reCAPTCHA was not entered correctly";s:7:"classes";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2015-09-14 09:13:13";s:9:"form_name";s:27:"Internship Application Form";}}', 'no'),
(20089, '_transient_timeout_frm_form_fields_5excludeinclude', '1480504073', 'no'),
(20090, '_transient_frm_form_fields_5excludeinclude', 'a:3:{i:0;O:8:"stdClass":13:{s:2:"id";s:2:"18";s:9:"field_key";s:7:"qh4icy3";s:4:"name";s:4:"Name";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:14:"frm_first_half";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2015-09-14 09:13:13";s:9:"form_name";s:27:"Internship Application Form";}i:1;O:8:"stdClass":13:{s:2:"id";s:2:"20";s:9:"field_key";s:7:"29yf4d3";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:9:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:8:"frm_full";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2015-09-14 09:13:13";s:9:"form_name";s:27:"Internship Application Form";}i:2;O:8:"stdClass":13:{s:2:"id";s:2:"24";s:9:"field_key";s:7:"62n6q33";s:4:"name";s:7:"Captcha";s:11:"description";s:0:"";s:4:"type";s:7:"captcha";s:13:"default_value";s:1:"1";s:7:"options";s:0:"";s:11:"field_order";s:1:"7";s:8:"required";s:1:"0";s:13:"field_options";a:11:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:4:"size";s:0:"";s:3:"max";s:0:"";s:7:"invalid";s:39:"The reCAPTCHA was not entered correctly";s:7:"classes";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";}s:7:"form_id";s:1:"5";s:10:"created_at";s:19:"2015-09-14 09:13:13";s:9:"form_name";s:27:"Internship Application Form";}}', 'no'),
(20091, '_transient_timeout_frm_api_addons', '1480914499', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(20092, '_transient_frm_api_addons', 'a:2:{s:8:"products";a:33:{i:0;a:3:{s:4:"info";a:12:{s:2:"id";i:458113;s:4:"slug";s:22:"car-payment-calculator";s:5:"title";s:22:"Car Payment Calculator";s:11:"create_date";s:19:"2016-09-29 19:11:33";s:13:"modified_date";s:19:"2016-09-29 19:24:04";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=458113";s:7:"content";s:723:"Let us build your car payment calculator for you. Instantly download this form to calculate the monthly payment for auto loans. Calculate loan amounts based on taxes, dealer fees, and a trade-in value. Just download, import, and you''re done.\r\n\r\nUse this car payment calculator to estimate monthly payments for new or used auto loans. Enter the loan amount, term, and interest rate to calculate monthly auto loan payments. Add dealer fees, incentives, trade-in value, and a down payment for a spot-on result. Help your site visitors determine how much car they can afford.\r\n\r\nInstall the <a href="/downloads/bootstrap/">Bootstrap plugin</a> if you would like the symbols before and after the fields shown in the screenshots.";s:7:"excerpt";s:168:"Let us build your car payment calculator for you. Calculate the loan amount based on taxes, dealer fees, and a trade-in value. Simply download, import, and you''re done.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10802;s:4:"name";s:14:"Form Templates";s:4:"slug";s:14:"form-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10818;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"20.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:1;a:3:{s:4:"info";a:12:{s:2:"id";i:326042;s:4:"slug";s:13:"autoresponder";s:5:"title";s:13:"Autoresponder";s:11:"create_date";s:19:"2016-09-21 11:26:58";s:13:"modified_date";s:19:"2016-11-03 15:58:39";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=326042";s:7:"content";s:1738:"Power up your form actions with powerful automation. Each entry can have its very own set of scheduled form actions. \r\n\r\n<ul><li>Schedule email notifications based on time passed since the entry was created or updated.</li>\r\n<li>Use one of the fields on your form to schedule the email</li>\r\n<li>Schedule emails to go out again after a specified amount of time</li>\r\n<li>Limit the number of times an email will be sent out</li>\r\n<li>Use the existing Conditional Logic settings included in Formidable Pro to further augment the logic behind when to send out the email</li>\r\n<li>Schedule emails that include content from views.</li>\r\n<li>Combine with the <a href="/downloads/twilio">Twilio</a> addon to schedule your SMS text messages as well.</li></ul>\r\n\r\n<h3>Form action automation for you</h3>\r\nStill not sure what form action automation can do for you? How about a few examples?\r\n<ul>\r\n<li>Send weekly digest emails with help from a view inside your email message.</li>\r\n<li>Automate your invoice reminders until it''s marked as paid.</li>\r\n<li>Trigger a reminder text for an upcoming appointment.</li>\r\n<li>Set deadlines on tasks, and get reminders when they are due.</li>\r\n<li>Send yearly birthday texts</li>\r\n</ul>\r\n\r\n<h3>Pick the best tool for the job</h3>\r\nIf you''d like to send newsletters to a list of subscribers with static content, this isn''t the best option. <a href="/downloads/mailchimp">Mailchimp</a> may be a better option for you. \r\n\r\nDisclaimer: Sending emails is not reliable using the PHP mail that web hosts use by default. An SMTP plugin or integrating with an email service is encouraged for more reliable email receipt. <a href="/knowledgebase/why-isnt-my-form-sending-emails/">Click here</a> for more information.";s:7:"excerpt";s:60:"Schedule email notifications, SMS messages, and API actions.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10799;s:4:"name";s:9:"Marketing";s:4:"slug";s:9:"marketing";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10815;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:2;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"29.00";s:7:"15sites";s:5:"49.00";s:14:"unlimitedsites";s:5:"69.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.04";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:2;a:3:{s:4:"info";a:12:{s:2:"id";i:337527;s:4:"slug";s:17:"authorize-net-aim";s:5:"title";s:17:"Authorize.net AIM";s:11:"create_date";s:19:"2016-04-29 17:44:33";s:13:"modified_date";s:19:"2016-11-09 15:28:00";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=337527";s:7:"content";s:1298:"Accept one-time payments directly on your site using Authorize.net AIM. Allow your customers the option of paying with a credit card, or with an eCheck.\r\n\r\nThe AIM version of the Authorize.net Payment Gateway add-on allows you to keep the customer on your site for the checkout process, giving you maximum control over checkout. SSL is required for PCI compliance due to the direct checkout to ensure that your customers'' credit card information is secure. If you don''t have SSL on your site, ask your host about free SLL through <a href="https://letsencrypt.org/">LetsEncrypt</a>.\r\n\r\n<ul><li>Accept Credit Card or eChecks without sending people away from your site.</li>\r\n<li>Easily refund payments directing from your admin area</li>\r\n<li>Show a payment receipt using the shortcode [frm_payment_receipt id=25 layout=right]. In a view, use [frm_payment_receipt id=[id]].</li>\r\n<li>Use Formidable Pro calculations to charge different amounts based on selections in the form.</li>\r\n<li>Make automatic changes to your entry after a payment is completed, refunded, or failed. This allows you to only publish posts and entries that have been paid for.</li>\r\n<li>After the payment is received, trigger other form actions including email notifications, add to MailChimp lists, and Twilio SMS.</li>\r\n</ul>";s:7:"excerpt";s:72:"Accept one-time payments directly on your site, using Authorize.net AIM.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10798;s:4:"name";s:9:"Ecommerce";s:4:"slug";s:9:"ecommerce";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10814;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:5;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"49.00";s:7:"15sites";s:5:"69.00";s:14:"unlimitedsites";s:5:"99.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:3:"1.0";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:3;a:3:{s:4:"info";a:12:{s:2:"id";i:310430;s:4:"slug";s:6:"stripe";s:5:"title";s:6:"Stripe";s:11:"create_date";s:19:"2016-04-26 11:59:06";s:13:"modified_date";s:19:"2016-10-28 16:34:28";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=310430";s:7:"content";s:1092:"Any Formidable forms on your site can accept one-time or recurring credit card payments without users ever leaving your site. Use conditional logic on your Stripe settings to allow your users to choose how they want to pay.\r\n\r\n<ul><li>Collect payments without sending people away from your site.</li>\r\n<li>Setup one-time payments or recurring subscriptions.</li>\r\n<li>Use the frm-subscriptions shortcode to show a logged-in user their list of subscriptions and allow easy cancelations.</li>\r\n<li>Use Formidable Pro calculations to charge different amounts based on selections in the form.</li>\r\n<li>Refund charges and cancel subscriptions directly from your site.</li>\r\n<li>When a charge is refunded in Stripe, it will automatically be marked as refunded on your site.</li>\r\n<li>Make automatic changes to your entry after a payment is completed, refunded, or failed. This allows you to only publish posts and entries that have been paid for.</li>\r\n<li>After the payment is received, trigger other form actions including email notifications, add to MailChimp lists, and Twilio SMS.</li>\r\n</ul>";s:7:"excerpt";s:103:"Any Formidable forms on your site can accept credit card payments without users ever leaving your site.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10798;s:4:"name";s:9:"Ecommerce";s:4:"slug";s:9:"ecommerce";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10814;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:5;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"49.00";s:7:"15sites";s:5:"69.00";s:14:"unlimitedsites";s:5:"99.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.10";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:4;a:3:{s:4:"info";a:12:{s:2:"id";i:310394;s:4:"slug";s:12:"sleek-smooth";s:5:"title";s:14:"Sleek & Smooth";s:11:"create_date";s:19:"2016-04-01 15:58:43";s:13:"modified_date";s:19:"2016-04-01 15:59:15";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=310394";s:7:"content";s:151:"<img src="https://formidablepro.com/wp-content/uploads/edd/2016/04/sleek-smooth.png" alt="sleek-smooth" width="1024" height="496" class="post-image" />";s:7:"excerpt";s:0:"";s:9:"thumbnail";s:73:"https://formidablepro.com/wp-content/uploads/edd/2016/04/sleek-smooth.png";s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10804;s:4:"name";s:15:"Style Templates";s:4:"slug";s:15:"style-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10820;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:4:"5.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:5;a:3:{s:4:"info";a:12:{s:2:"id";i:301694;s:4:"slug";s:17:"edit-user-profile";s:5:"title";s:17:"Edit User Profile";s:11:"create_date";s:19:"2016-03-24 09:10:15";s:13:"modified_date";s:19:"2016-03-24 09:15:17";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=301694";s:7:"content";s:477:"<em class="frm_paid_feature">* Requires the User Registration Add-on *</em>\r\n\r\nInstantly setup your user profile form. This form includes the basics from the regular back-end profile page including first and last name, password and email with confirmation, avatar, website, and bio.\r\n\r\nBe sure to install the <a href="/downloads/registration-lite/">User Registration plugin</a>. If you are not running Formidable Pro, you won''t be able to use the avatar or confirmation fields.";s:7:"excerpt";s:173:"Instantly setup your user profile form to replace the regular back-end profile page with first and last name, password and email with confirmation, avatar, website, and bio.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10802;s:4:"name";s:14:"Form Templates";s:4:"slug";s:14:"form-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10818;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"10.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:6;a:3:{s:4:"info";a:12:{s:2:"id";i:224036;s:4:"slug";s:10:"blackboard";s:5:"title";s:16:"Blackboard Style";s:11:"create_date";s:19:"2016-01-13 14:04:53";s:13:"modified_date";s:19:"2016-01-13 14:19:38";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=224036";s:7:"content";s:239:"Make your forms look like a blackboard. Perfect for sites with a dark background.\r\n\r\n<img src="https://formidablepro.com/wp-content/uploads/edd/2016/01/blackboard-style.png" alt="Blackboard style"  class="post-image" style="width:785px" />";s:7:"excerpt";s:0:"";s:9:"thumbnail";s:77:"https://formidablepro.com/wp-content/uploads/edd/2016/01/blackboard-style.png";s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10804;s:4:"name";s:15:"Style Templates";s:4:"slug";s:15:"style-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10820;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:4:"5.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:7;a:3:{s:4:"info";a:12:{s:2:"id";i:219627;s:4:"slug";s:14:"big-text-style";s:5:"title";s:14:"Big Text Style";s:11:"create_date";s:19:"2016-01-08 14:04:00";s:13:"modified_date";s:19:"2016-01-13 15:02:46";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=219627";s:7:"content";s:207:"Use a clean style with large fields and font sizes.\r\n\r\n<img src="https://formidablepro.com/wp-content/uploads/edd/2016/01/Big-Text-Style.png" alt="Big Text Style"  class="post-image" style="width:785px" />\r\n";s:7:"excerpt";s:0:"";s:9:"thumbnail";s:75:"https://formidablepro.com/wp-content/uploads/edd/2016/01/Big-Text-Style.png";s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10804;s:4:"name";s:15:"Style Templates";s:4:"slug";s:15:"style-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10820;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:4:"5.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:8;a:3:{s:4:"info";a:12:{s:2:"id";i:209561;s:4:"slug";s:8:"polylang";s:5:"title";s:8:"Polylang";s:11:"create_date";s:19:"2015-12-18 15:27:39";s:13:"modified_date";s:19:"2016-10-31 13:36:23";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=209561";s:7:"content";s:359:"Create bilingual or multilingual forms with help from <a href="https://wordpress.org/plugins/polylang/">Polylang</a>. Polylang is a free plugin for WordPress that many rave about.\r\n\r\nIt''s easy to use the same form in multiple languages, while keeping all your collected data in one place.\r\n\r\n<em>Please note: This add-on requires Polylang 1.9+ or higher.</em>";s:7:"excerpt";s:63:"Create bilingual or multilingual forms with help from Polylang.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"24.00";s:7:"15sites";s:5:"34.00";s:14:"unlimitedsites";s:5:"49.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.05";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:9;a:3:{s:4:"info";a:12:{s:2:"id";i:185013;s:4:"slug";s:15:"bootstrap-modal";s:5:"title";s:15:"Bootstrap Modal";s:11:"create_date";s:19:"2015-11-12 10:24:42";s:13:"modified_date";s:19:"2016-09-21 16:46:16";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=185013";s:7:"content";s:1072:"Open a view or form in a Bootstrap popup like the we use on this site. Go ahead, check it out. Click the login link at the top of the page. Not only can you insert a form or view in a modal, but you can use any shortcode you would like from any plugin that uses regular WordPress shortocodes.\r\n\r\nInserting the link to open the modal is a simple as inserting a shortcode on your page. Insert [frmmodal type="formidable" id=25 label="Click me" class="extra classes here"] for a form or [frmmodal type="view" id=25 label="Click me"] for a view.\r\n\r\nInsert the login form shortocode and any other shortcodes with [frmmodal label="Click me" type="frm-login" label_log_in="Log in"]. Replace "frm-login" with the name of your shortcode, and add any parameters you would like passed through. "label_log_in" is an example of using a parameter from the frm-login shortcode inside the frmmodal shortcode. Smooth sailing!\r\n\r\nAdditional shortcodes, such as the frm-field-value shortcode, can be inserted in a modal like this: [frmmodal type="frm-field-value" field_id="x" entry="12345"]";s:7:"excerpt";s:41:"Open a view or form in a Bootstrap popup.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"10.00";s:7:"15sites";s:5:"15.00";s:14:"unlimitedsites";s:5:"20.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.04";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:10;a:3:{s:4:"info";a:12:{s:2:"id";i:180495;s:4:"slug";s:8:"highrise";s:5:"title";s:8:"Highrise";s:11:"create_date";s:19:"2015-11-02 18:06:47";s:13:"modified_date";s:19:"2016-09-21 16:45:52";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=180495";s:7:"content";s:523:"Add your leads to your Highrise CRM account any time a Formidable form is submitted. This customer relationship management tool helps you create a page for every user to track their form submissions and entries. Please note, you must have a <a href="https://highrisehq.com/">Highrise</a> account in order to use the Highrise add-on.\r\n\r\nSetup your contacts with tags and any personal information you would like. You can then use those added contacts just the same as any other contact in Highrise from your Highrise account.";s:7:"excerpt";s:84:"Add your leads to your Highrise CRM account any time a Formidable form is submitted.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"19.00";s:7:"15sites";s:5:"29.00";s:14:"unlimitedsites";s:5:"49.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.06";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:11;a:3:{s:4:"info";a:12:{s:2:"id";i:179807;s:4:"slug";s:16:"advanced-add-ons";s:5:"title";s:16:"Advanced Add-ons";s:11:"create_date";s:19:"2015-10-30 12:02:52";s:13:"modified_date";s:19:"2015-11-06 12:27:25";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=179807";s:7:"content";s:259:"This bundle includes 9 add-ons:\r\n<ul><li>MailChimp</li>\r\n<li>Aweber</li>\r\n<li>Highrise</li>\r\n<li>Formidable API</li>\r\n<li>PayPal Standard</li>\r\n<li>Signature</li>\r\n<li>Twilio</li>\r\n<li>WP Multilingual</li>\r\n<li>Registration Lite</li>\r\n<li>Zapier</li></ul>\r\n\r\n";s:7:"excerpt";s:0:"";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:6:"145.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:0:"";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:12;a:3:{s:4:"info";a:12:{s:2:"id";i:174006;s:4:"slug";s:11:"woocommerce";s:5:"title";s:11:"WooCommerce";s:11:"create_date";s:19:"2015-10-21 16:32:14";s:13:"modified_date";s:19:"2016-11-04 15:26:04";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=174006";s:7:"content";s:682:"Use a Formidable form on your <a href="https://www.woothemes.com/woocommerce/">WooCommerce</a> product pages. Create your form however you would like, add a calculation to generate the total, and select your form in the sidebar box on the WooCommerce page. Now you can collect whatever information you would like before a product is added to the cart, and even include variable pricing based on the options chosen in the form.\r\n\r\nWooCommerce is an eCommerce plugin used on millions of WordPress sites. You can get download WooCommerce  free over at <a href="https://wordpress.org/plugins/woocommerce/">WordPress.org</a> and immediately start collecting payments from your customers.";s:7:"excerpt";s:56:"Use a Formidable form on your WooCommerce product pages.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10798;s:4:"name";s:9:"Ecommerce";s:4:"slug";s:9:"ecommerce";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10814;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:5;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"49.00";s:7:"15sites";s:5:"69.00";s:14:"unlimitedsites";s:5:"99.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.04";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:13;a:3:{s:4:"info";a:12:{s:2:"id";i:172715;s:4:"slug";s:31:"paypal-standard-single-payments";s:5:"title";s:12:"PayPal Basic";s:11:"create_date";s:19:"2015-10-21 12:20:35";s:13:"modified_date";s:19:"2016-01-25 14:14:02";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=172715";s:7:"content";s:366:"Collect payments on your site using your Formidable forms. Send your users and a total directly to PayPal after submitting a Formidable form. The total can come from a calculated field, or a set value in the settings.\r\n\r\nIf you''d like recurring payments and easy actions after successful payment, check out <a href="/downloads/paypal-standard/">PayPal Standard</a> .";s:7:"excerpt";s:0:"";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10798;s:4:"name";s:9:"Ecommerce";s:4:"slug";s:9:"ecommerce";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10814;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:5;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"19.00";s:7:"15sites";s:5:"29.00";s:8:"200sites";s:5:"39.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:7:"2.04.07";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:14;a:3:{s:4:"info";a:12:{s:2:"id";i:170655;s:4:"slug";s:9:"mailchimp";s:5:"title";s:9:"MailChimp";s:11:"create_date";s:19:"2015-10-19 16:28:03";s:13:"modified_date";s:19:"2016-11-09 09:45:58";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=170655";s:7:"content";s:3377:"Any time a form on your site is filled out, subscribe users to a <a href="http://eepurl.com/bk8tvr">MailChimp</a> mailing list. Sort your leads into your list groups based on the settings you choose. And even automatically update their information when the entry is updated.\r\n\r\nMaybe you haven''t heard that the return on investment (ROI) on email marketing is positively steep. In 2015 it was reported that for every $1 spent, email marketing generates $38 in ROI. For a marketing manager on a limited budget (as is the norm these days), spending money where the biggest bang for the buck resides is a no brainer.\r\n\r\nOne thing that''s not disputed either, is the benefit to adding automation into your email marketing plan. Automation gives you the power to say "welcome" to your subscribers the moment they opt-in to your list via a Formidable Pro form. And it gives you the power to create email communication workflows to send targeted emails to your subscribers based upon their interests and online behaviors. Automation gives you capability to connect immediately with customers, clients and prospects. \r\n\r\nAutomation can only happen if you are actively building your lists. That''s where Formidable Pro comes in to give you the power to create email opt-in forms that will give you a starting place for your lists. If you weren''t aware of the massive benefits of building and maintaining a solid email marketing list, we won''t hold that against you. But let''s agree to agree on the following 10 facts about email marketing:\r\n\r\n<strong>10. Email gives you the ability to connect with desktop and mobile customers directly.\r\n\r\n9. Email marketing is inexpensive\r\n\r\n8. Opt-in features keep your list healthy and ensures you are communicating with directly with the clients or customers who use your services or buy your products.\r\n\r\n7. Email communications done right lend credibility to your business \r\n\r\n6. Directly control where a customer lands from your email\r\n\r\n5. Generate leads\r\n\r\n4. Nurture relationships\r\n\r\n3. Email marketing can be coordinated with any marketing or advertising campaign to In crease ROI\r\n\r\n2. Give your customers and prospects something to share\r\n\r\n1. Get immediate results</strong>\r\n\r\nWe''ve finished our top ten and have a BONUS reason for you to add the MailChimp add-on to your suite of Formidable Pro tools now. That reason is <strong>conversion tracking</strong>. We mentioned it briefly above in number six, and it''s inherent in every reason above: that Email marketing allows the marketer to track conversions and engagement in the form of social media shares, clicks, opens, and forwards.\r\n\r\nThis ability to track conversions and engagement as well as the inexpensive and convenient nature of email marketing make it an obvious choice for the marketer at any skill level or stage of the game.\r\n\r\nDownload the MailChimp add-on for Formidable Pro now, sign up for a MailChimp account, add in your MailChimp API key to Formidable. Set up an email capture form to pop up on your home pages, landing pages, or reside on your "Contact Us" page of your website. Get on the path to more sales and leads today in just a matter of minutes. Now that you know these ten facts about email marketing, it''s up to you to make it happen. We here at Formidable Pro are rooting for you!\r\n\r\n[s11edd_download_beta plugin="mailchimp" beta_versions="2.0b1"]\r\n<br>";s:7:"excerpt";s:175:"Get on the path to more sales and leads in a matter of minutes. Add leads to a MailChimp mailing list when they submit forms and update their information along with the entry.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"29.00";s:7:"15sites";s:5:"49.00";s:14:"unlimitedsites";s:5:"69.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.06";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:15;a:3:{s:4:"info";a:12:{s:2:"id";i:170649;s:4:"slug";s:13:"user-tracking";s:5:"title";s:13:"User Tracking";s:11:"create_date";s:19:"2015-10-19 15:53:58";s:13:"modified_date";s:19:"2016-09-27 14:50:35";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=170649";s:7:"content";s:187:"Track which pages a user visits prior to submitting a form. This information can be viewed on the individual entry page in the admin and can be optionally included in email notifications.";s:7:"excerpt";s:59:"Track which pages a user visits prior to submitting a form.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:4:{s:5:"1site";s:5:"10.00";s:6:"3sites";s:5:"15.00";s:7:"15sites";s:5:"20.00";s:14:"unlimitedsites";s:5:"30.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:3:"1.0";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:16;a:3:{s:4:"info";a:12:{s:2:"id";i:170641;s:4:"slug";s:9:"locations";s:5:"title";s:9:"Locations";s:11:"create_date";s:19:"2015-10-19 15:13:55";s:13:"modified_date";s:19:"2016-05-10 13:24:28";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=170641";s:7:"content";s:358:"Use the Formidable Locations add-on to import Countries, States/Provinces, U.S. Counties, and U.S. Cities so you don''t have to add all the locations manually. After this data is imported, it can then be used in Lookup fields. Lookup fields allow your users to select a Country, for example, and then select from States/Provinces within that selected Country.";s:7:"excerpt";s:147:"Populate fields with Countries, States/Provinces, U.S. Counties, and U.S. Cities. This data can then be used in dependent Data from Entries fields.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"25.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"2.01";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:17;a:3:{s:4:"info";a:12:{s:2:"id";i:169998;s:4:"slug";s:15:"wp-multilingual";s:5:"title";s:15:"WP Multilingual";s:11:"create_date";s:19:"2015-10-17 17:52:14";s:13:"modified_date";s:19:"2016-11-04 15:27:05";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=169998";s:7:"content";s:170:"Integrate with the <a href="https://wpml.org/?aid=16095&amp;affiliate_key=Ysmulk9GO5LK">WordPress Multilingual Plugin</a> to translate your forms into multiple languages.";s:7:"excerpt";s:89:"Translate your forms into multiple languages using the Formidable-integrated WPML plugin.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"19.00";s:7:"15sites";s:5:"29.00";s:14:"unlimitedsites";s:5:"49.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.04";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:18;a:3:{s:4:"info";a:12:{s:2:"id";i:168485;s:4:"slug";s:20:"mortgage-calculators";s:5:"title";s:20:"Mortgage Calculators";s:11:"create_date";s:19:"2015-10-17 01:11:41";s:13:"modified_date";s:19:"2016-09-29 19:15:43";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=168485";s:7:"content";s:317:"This download includes two forms: one simple calculator with three fields and a monthly payment, and one more advanced including taxes, insurance, and PMI. Install the <a href="https://formidablepro.com/downloads/bootstrap/">Bootstrap plugin</a> if you would like the symbols before and after the fields in the forms.";s:7:"excerpt";s:152:"Get two forms in this package: one simple calculator with three fields and a monthly payment, and one more advanced including taxes, insurance, and PMI.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10802;s:4:"name";s:14:"Form Templates";s:4:"slug";s:14:"form-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10818;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"25.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:19;a:3:{s:4:"info";a:12:{s:2:"id";i:168479;s:4:"slug";s:18:"divi-theme-styling";s:5:"title";s:18:"Divi Theme Styling";s:11:"create_date";s:19:"2015-10-16 23:34:49";s:13:"modified_date";s:19:"2016-01-11 20:45:29";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=168479";s:7:"content";s:332:"Are you using the Divi Theme and want your forms to match? Wish granted. Here''s an example of how your forms will look with this style. Just import and set the new "Divi" style as default.\r\n\r\n<img src="https://formidablepro.com/wp-content/uploads/edd/2015/10/DiviTheme.png" alt="DiviTheme"  class="post-image" style="width:785px" />";s:7:"excerpt";s:0:"";s:9:"thumbnail";s:70:"https://formidablepro.com/wp-content/uploads/edd/2015/10/DiviTheme.png";s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10804;s:4:"name";s:15:"Style Templates";s:4:"slug";s:15:"style-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10820;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"10.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:20;a:3:{s:4:"info";a:12:{s:2:"id";i:168468;s:4:"slug";s:6:"aweber";s:5:"title";s:6:"AWeber";s:11:"create_date";s:19:"2015-10-16 17:56:29";s:13:"modified_date";s:19:"2016-11-04 15:25:23";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=168468";s:7:"content";s:146:"AWeber is a powerful email marketing service. You can subscribe users to an AWeber mailing list when they submit any Formidable form on your site.";s:7:"excerpt";s:112:"Subscribe users to an AWeber mailing list when they submit a form. AWeber is a powerful email marketing service.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10799;s:4:"name";s:9:"Marketing";s:4:"slug";s:9:"marketing";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10815;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:2;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"19.00";s:7:"15sites";s:5:"29.00";s:14:"unlimitedsites";s:5:"39.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"2.01";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:21;a:3:{s:4:"info";a:12:{s:2:"id";i:168463;s:4:"slug";s:9:"bootstrap";s:5:"title";s:9:"Bootstrap";s:11:"create_date";s:19:"2015-10-16 17:44:43";s:13:"modified_date";s:19:"2016-08-25 13:21:33";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=168463";s:7:"content";s:288:"Without any effort at all, you can instantly have Bootstrap styling on all your Formidable forms. You''ll also have extra options for each text and number field to allow you to prepend or append a label to your field. Take a look at the screenshots below to see the setting and the result.";s:7:"excerpt";s:61:"Instantly add Bootstrap styling to all your Formidable forms.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"10.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:7:"1.01.04";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:22;a:3:{s:4:"info";a:12:{s:2:"id";i:168460;s:4:"slug";s:6:"twilio";s:5:"title";s:6:"Twilio";s:11:"create_date";s:19:"2015-10-16 17:30:05";s:13:"modified_date";s:19:"2016-11-04 15:17:31";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=168460";s:7:"content";s:1856:"<h3>GUI-less Submissions</h3>\r\nWant to start your own community text voting? Easily allow anyone to text in votes to your Formidable Form. Or maybe you have a survey you''d like to use without requiring anyone to visit your site. Even send out texts to your phone list, and any responses will be saved directly into your form. Get rid of the UI completely, and communicate by SMS.\r\n\r\n<h3>Automated Conversations</h4>\r\nAfter an SMS message is sent to your Twilio number, you control the response. Send different responses based on the contents of the text.\r\n\r\n<h3>Send SMS</h3>\r\nSend SMS notifications conditionally when your entries are created or updated, or even when a PayPal payment is received when used with our <a href="/downloads/paypal-standard">PayPal plugin</a>. Add even more power with Twilio + <a href="/downloads/autoresponder/">Scheduled Autoresponders</a> for timed texts for appointment reminders or birthday wishes.\r\n\r\n<h3>Need some examples?</h3>\r\n<ul><li>Send your team individual texts when a game is canceled.</li>\r\n<li>Send blog subscribers a text when you publish a new post. Be sure to include a link to the goods.</li>\r\n<li>Host a contest and allow everyone to text their votes. Prevent those pesky double voters too.</li>\r\n<li>Run a survey and send a winning notice to submitter number 25.</li></ul>\r\n\r\n<h3>Schedule your Messages</h3>\r\nSupercharge the Twilio add-on alongside the <a href="/downloads/autoresponder/">Scheduled Autoresponders</a> add-on.\r\n<ul><li>Ask for feedback after a scheduled appointment, and respond with follow-up questions.</li>\r\n<li>Send holiday and birthday SMS messages to your clients.</li>\r\n<li>Someone didn''t make it to your gym this week. Maybe they need a little reminder.</li></ul>\r\n\r\nPlease note, you must have a <a href="http://twilio.com">Twilio</a> account in order to use this Twilio plugin.";s:7:"excerpt";s:135:"Allow users to text their votes for polls created by Formidable Forms, or send SMS notifications when entries are submitted or updated.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"25.00";s:7:"15sites";s:5:"35.00";s:14:"unlimitedsites";s:5:"45.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.07";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:23;a:3:{s:4:"info";a:12:{s:2:"id";i:168456;s:4:"slug";s:15:"upload-importer";s:5:"title";s:15:"Upload Importer";s:11:"create_date";s:19:"2015-10-16 17:05:47";s:13:"modified_date";s:19:"2016-06-20 14:26:44";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=168456";s:7:"content";s:379:"<strong>This add-on is no longer required, and it included in v2.02 of Formidable Pro</strong>\r\n\r\n* Requires Formidable Pro *\r\n\r\nAre you importing a CSV into Formidable that includes urls for the upload fields? This add-on will automatically link up those uploads if they are already in your Media Library, or it will fetch and import the files from the url included in your CSV.";s:7:"excerpt";s:0:"";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"10.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:6:"1.0.01";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:24;a:3:{s:4:"info";a:12:{s:2:"id";i:168072;s:4:"slug";s:14:"formidable-api";s:5:"title";s:14:"Formidable API";s:11:"create_date";s:19:"2015-10-14 16:29:08";s:13:"modified_date";s:19:"2016-11-09 07:28:38";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=168072";s:7:"content";s:1013:"<p>Add even more power to Formidable with a full API.</p>\r\n<ul>\r\n<li>Get view content and display it on a page with a simple shortcode.</li>\r\n<li>Insert a form on a page and accept submissions from another site.</li>\r\n<li>Trigger any webhooks after an entry is created, updated, or deleted. This will allow you to send data to any other site with a REST API.</li>\r\n<li>Fetch, create, update, and delete entries.</li>\r\n<li>Get, create, and delete fields.</li>\r\n<li>Get, create, and delete forms.</li>\r\n</ul>\r\n<p><em>Note</em> Requires the <a href="https://wordpress.org/plugins/rest-api/">WordPress REST API plugin</a> until the endpoints are included in WordPress core. The Formidable API is designed for developers, engineers, or anyone else who’s comfortable creating custom-coded solutions or integrating with RESTful APIs. If you think you may need some help integrating with the Formidable API, take a look at our <a href="/knowledgebase/developers/">list of developers</a> who may be able to help you.</p>";s:7:"excerpt";s:138:"Send entry results to any other site that has a Rest API. This includes the option of sending entries from one Formidable site to another.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"39.00";s:7:"15sites";s:5:"49.00";s:14:"unlimitedsites";s:5:"69.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:3:"1.0";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:25;a:3:{s:4:"info";a:12:{s:2:"id";i:163257;s:4:"slug";s:15:"paypal-standard";s:5:"title";s:15:"PayPal Standard";s:11:"create_date";s:19:"2015-10-12 14:09:20";s:13:"modified_date";s:19:"2016-11-28 11:08:22";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=163257";s:7:"content";s:1033:"The PayPal Add-On enables you to collect instant PayPal payments from your customers or subscribers after form submission. Users do NOT need to have a PayPal account in order to pay with PayPal. The "Submit" button on your PayPal Add-On Formidable Form triggers the customer and their respective purchase details to be sent to a PayPal payment page. Conditional logic can be used to conditionally send users to PayPal after form submission.\r\n\r\nOne time payments and recurring payments for the purpose of subscriptions, and automatically billed payments are all easily set up. With the PayPal Add-On, you can require a payment before publishing content on your site, such as a job posting or classified ad.\r\n\r\nThe Formidable Pro PayPal Add-On enables automatic changes to an entry when a payment is successful or when a recurring payment fails. \r\n\r\nThe PayPal Add-On for your WordPress Formidable form is very user friendly and easy to implement. <a href="/knowledgebase/formidable-paypal/ ">View detailed setup instructions here</a>.";s:7:"excerpt";s:198:"Automate your business by collecting instant payments from your clients. Collect information, calculate a total, and send them on to PayPal. Require a payment before publishing content on your site.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10798;s:4:"name";s:9:"Ecommerce";s:4:"slug";s:9:"ecommerce";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10814;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:5;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"39.00";s:7:"15sites";s:5:"49.00";s:14:"unlimitedsites";s:5:"69.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"3.05";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:26;a:3:{s:4:"info";a:12:{s:2:"id";i:163255;s:4:"slug";s:12:"math-captcha";s:5:"title";s:12:"Math Captcha";s:11:"create_date";s:19:"2015-10-12 14:00:35";s:13:"modified_date";s:19:"2016-10-31 13:33:19";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=163255";s:7:"content";s:279:"Prevent spam entries in your forms with a simple calculation. Your users will be required to correctly complete the math equation before the form can be submitted. This add-on requires and extends <a href="https://wordpress.org/plugins/captcha/">BestWebSoft''s Captcha</a> plugin.";s:7:"excerpt";s:137:"Require users to perform a simple calculation before submitting a form to prevent spam. This add-on extends BestWebSoft''s Captcha plugin.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10797;s:4:"name";s:12:"SPAM blocker";s:4:"slug";s:4:"spam";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10813;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:1;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"19.00";s:7:"15sites";s:5:"24.00";s:14:"unlimitedsites";s:5:"39.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.14";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:27;a:3:{s:4:"info";a:12:{s:2:"id";i:163248;s:4:"slug";s:9:"signature";s:5:"title";s:9:"Signature";s:11:"create_date";s:19:"2015-10-12 13:40:07";s:13:"modified_date";s:19:"2016-09-21 16:05:59";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=163248";s:7:"content";s:292:"Offer your clients the ability to sign their forms on the spot, eliminating the need for any more paper forms. Simply add a signature field to your form and sign forms and contracts online.\r\n\r\nAfter the signature is submitted, an image is created and stored in your Formidable uploads folder.";s:7:"excerpt";s:109:"Add a signature field to your form. The user may write their signature with a trackpad/mouse or just type it.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"19.00";s:7:"15sites";s:5:"29.00";s:14:"unlimitedsites";s:5:"39.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.09";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:28;a:3:{s:4:"info";a:12:{s:2:"id";i:93150;s:4:"slug";s:13:"opening-hours";s:5:"title";s:13:"Opening Hours";s:11:"create_date";s:19:"2015-09-30 13:48:22";s:13:"modified_date";s:19:"2016-09-29 19:16:05";s:6:"status";s:7:"publish";s:4:"link";s:53:"https://formidablepro.com/?post_type=download&p=93150";s:7:"content";s:333:"Set your opening hours and show a message to let your users know whether you are currently open or not. This app includes a form to change your business hours, and two views: one shows all business hours, and the other shows whether you are currently open. You can insert one or both of those view shortcodes wherever you would like.";s:7:"excerpt";s:103:"Set your opening hours and show a message to let your users know whether you are currently open or not.";s:9:"thumbnail";b:0;s:8:"category";a:2:{i:0;a:11:{s:7:"term_id";i:10802;s:4:"name";s:14:"Form Templates";s:4:"slug";s:14:"form-templates";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10818;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:10807;s:5:"count";i:4;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}i:1;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:6:"amount";s:5:"20.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:29;a:3:{s:4:"info";a:12:{s:2:"id";i:170645;s:4:"slug";s:6:"zapier";s:5:"title";s:6:"Zapier";s:11:"create_date";s:19:"2014-06-04 15:35:06";s:13:"modified_date";s:19:"2016-11-05 12:31:54";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=170645";s:7:"content";s:169:"Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.";s:7:"excerpt";s:169:"Connect with hundreds of different applications through Zapier. Insert a new row in a Google docs spreadsheet, post on Twitter, or add a new Dropbox file with your form.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"29.00";s:7:"15sites";s:5:"49.00";s:14:"unlimitedsites";s:5:"69.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:4:"1.02";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:30;a:3:{s:4:"info";a:12:{s:2:"id";i:162949;s:4:"slug";s:16:"one-time-service";s:5:"title";s:16:"One-Time Service";s:11:"create_date";s:19:"2013-03-01 13:03:55";s:13:"modified_date";s:19:"2015-10-17 01:16:58";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=162949";s:7:"content";s:0:"";s:7:"excerpt";s:0:"";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:1:{s:0:"";s:6:"200.00";}s:9:"licensing";a:4:{s:7:"enabled";b:0;s:7:"version";s:0:"";s:8:"exp_unit";s:4:"days";s:10:"exp_length";s:0:"";}}i:31;a:3:{s:4:"info";a:12:{s:2:"id";i:173984;s:4:"slug";s:17:"registration-lite";s:5:"title";s:17:"User Registration";s:11:"create_date";s:19:"2011-12-21 13:54:24";s:13:"modified_date";s:19:"2016-11-21 13:52:09";s:6:"status";s:7:"publish";s:4:"link";s:54:"https://formidablepro.com/?post_type=download&p=173984";s:7:"content";s:2020:"Need to be able to allow users to register, edit their user profiles and sign in from the front end of your site? Want users to be able to change their passwords? Let them do it themselves on the front end with the User Registration Add-On. Build a customized registration form that gives new users sign-in access to your site immediately.\r\n\r\nBe the form builder customers love. When users have multiple forms to complete, reduce their headache by auto-populating their forms when they are logged in.\r\n\r\nThe User Registration Add-On is one of the top three Add-Ons to the Formidable Forms Pro suite of tools. It’s no wonder, because it is essential for the following types of websites:\r\n<ul><li>Membership-based sites (Including sites that have content restricted to members only)</li>\r\n<li>Subscriber-based sites (Including sites that have content restricted to subscribers only)</li>\r\n<li>Sites with forms that require users to be able to save drafts of their forms on the front end</li>\r\n<li>Sites that want to <a href="/simplify-the-guest-blog-post-process-by-creating-a-blog-posting-form/">allow guest bloggers</a> to be able to register and post content from the front end</li>\r\n<li>Sites needing to populate user meta</li></ul>\r\n\r\nCheck out these basic but powerful features that make this Add-On invaluable for virtually every type of website.\r\n\r\n<h2>User Registration Add-On Features</h2>\r\n<ul><li>Autopopulate forms with User Meta</li>\r\n<li>Allow users to be logged-in automatically after they submit the registration form</li>\r\n<li>Confirm email address option before user is registered</li>\r\n<li>Allow user to upload an avatar</li>\r\n<li>Allow user to update profile and change password on the front end</li>\r\n<li>Add a login form to a widget or any page on your site</li></ul>\r\n\r\n\r\nDownload the User Registration add-on now and you can have new users signing up on your site within minutes. If you aren''t running Formidable Pro yet, you may want to consider the <a href="/pricing/">Small Business</a> plan.";s:7:"excerpt";s:216:"Give new users access to your site as quickly and painlessly as possible. Allow users to register, edit and be able to login to their profiles on your site from the front end in a clean, customized registration form.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:3:{s:5:"1site";s:5:"29.00";s:7:"15sites";s:5:"49.00";s:14:"unlimitedsites";s:5:"69.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:7:"1.11.09";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}i:32;a:3:{s:4:"info";a:12:{s:2:"id";i:93790;s:4:"slug";s:14:"formidable-pro";s:5:"title";s:14:"Formidable Pro";s:11:"create_date";s:19:"2010-02-01 16:27:26";s:13:"modified_date";s:19:"2016-11-04 06:47:29";s:6:"status";s:7:"publish";s:4:"link";s:53:"https://formidablepro.com/?post_type=download&p=93790";s:7:"content";s:102:"<style>#edd_price_option_93790_individual, #edd_price_option_93790_individual-2{display:none;}</style>";s:7:"excerpt";s:147:"Enhance your basic Formidable forms with a plethora of Pro field types and features. Create advanced forms and data-driven applications in minutes.";s:9:"thumbnail";b:0;s:8:"category";a:1:{i:0;a:11:{s:7:"term_id";i:10806;s:4:"name";s:10:"Strategy11";s:4:"slug";s:10:"strategy11";s:10:"term_group";i:0;s:16:"term_taxonomy_id";i:10822;s:8:"taxonomy";s:17:"download_category";s:11:"description";s:0:"";s:6:"parent";i:0;s:5:"count";i:31;s:6:"filter";s:3:"raw";s:4:"meta";a:0:{}}}s:4:"tags";b:0;}s:7:"pricing";a:6:{s:7:"starter";s:5:"34.00";s:8:"personal";s:5:"49.00";s:10:"individual";s:5:"77.00";s:12:"professional";s:5:"99.00";s:13:"smallbusiness";s:6:"199.00";s:10:"enterprise";s:6:"399.00";}s:9:"licensing";a:4:{s:7:"enabled";b:1;s:7:"version";s:7:"2.02.10";s:8:"exp_unit";s:5:"years";s:10:"exp_length";s:1:"1";}}}s:13:"request_speed";d:0.054412126541138001;}', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(20481, '_site_transient_timeout_browser_6c892d4501d4469861f63942e905365a', '1481682309', 'no'),
(20482, '_site_transient_browser_6c892d4501d4469861f63942e905365a', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Safari";s:7:"version";s:5:"9.1.2";s:10:"update_url";s:28:"http://www.apple.com/safari/";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/safari.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/safari.png";s:15:"current_version";s:1:"5";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'no'),
(20722, '_site_transient_timeout_browser_bbe17f0a746d1d92d88f5944fc82bf7f', '1482232019', 'no'),
(20723, '_site_transient_browser_bbe17f0a746d1d92d88f5944fc82bf7f', 'a:9:{s:8:"platform";s:7:"Windows";s:4:"name";s:6:"Chrome";s:7:"version";s:12:"54.0.2840.99";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'),
(20798, '_transient_timeout_frm_form_fields_3includeinclude', '1481725621', 'no'),
(20799, '_transient_frm_form_fields_3includeinclude', 'a:10:{i:0;O:8:"stdClass":13:{s:2:"id";s:1:"8";s:9:"field_key";s:7:"qh4icy2";s:4:"name";s:4:"Name";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"0";s:8:"required";s:1:"1";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:19:"frm_half  frm_first";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}i:1;O:8:"stdClass":13:{s:2:"id";s:2:"30";s:9:"field_key";s:6:"esi12y";s:4:"name";s:20:"Organization/Company";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"0";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2016-01-20 10:48:38";s:9:"form_name";s:13:"Space Booking";}i:2;O:8:"stdClass":13:{s:2:"id";s:2:"28";s:9:"field_key";s:6:"cp5pfc";s:4:"name";s:9:"Telephone";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:19:"frm_half  frm_first";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2016-01-20 10:45:23";s:9:"form_name";s:13:"Space Booking";}i:3;O:8:"stdClass":13:{s:2:"id";s:2:"10";s:9:"field_key";s:7:"29yf4d2";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"4";s:8:"required";s:1:"1";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}i:4;O:8:"stdClass":13:{s:2:"id";s:2:"16";s:9:"field_key";s:6:"xzvb1y";s:4:"name";s:9:"Room Type";s:11:"description";s:0:"";s:4:"type";s:6:"select";s:13:"default_value";s:13:"Please Choose";s:7:"options";a:6:{i:0;s:13:"Please Choose";i:1;s:12:"Seminar Room";i:2;s:12:"Meeting Room";i:3;s:10:"Both Rooms";i:4;s:34:"Office Suite - Full Unit (2 desks)";i:5;s:33:"Office - Suite = Sharing (1 desk)";}s:11:"field_order";s:1:"5";s:8:"required";s:1:"1";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 08:00:12";s:9:"form_name";s:13:"Space Booking";}i:5;O:8:"stdClass":13:{s:2:"id";s:2:"25";s:9:"field_key";s:6:"d5yseo";s:4:"name";s:4:"Date";s:11:"description";s:0:"";s:4:"type";s:6:"select";s:13:"default_value";s:13:"Please Choose";s:7:"options";a:3:{i:0;s:13:"Please Choose";i:1;s:7:"Weekday";i:2;s:26:"Weekend and Public Holiday";}s:11:"field_order";s:1:"6";s:8:"required";s:1:"1";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:1;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2016-01-20 10:36:09";s:9:"form_name";s:13:"Space Booking";}i:6;O:8:"stdClass":13:{s:2:"id";s:2:"15";s:9:"field_key";s:6:"ynbpp9";s:4:"name";s:14:"Request a time";s:11:"description";s:0:"";s:4:"type";s:6:"select";s:13:"default_value";s:13:"Please Choose";s:7:"options";a:9:{i:0;s:13:"Please Choose";i:1;s:38:"Half day - 08.00-12.00 or  13.00-17.00";i:2;s:22:"Full Day - 08.00-17.00";i:3;s:21:"Evening - 17.00-21.00";i:4;s:30:"Full Day & Evening 08.00-21.00";i:5;s:32:"1 hour - Minimum 3 hours (8-5pm)";i:6;s:21:"Office Suite - Weekly";i:7;s:22:"Office Suite - Monthly";i:8;s:21:"Office Suite - Yearly";}s:11:"field_order";s:1:"7";s:8:"required";s:1:"1";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:17:"frm_half frm_last";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:57:30";s:9:"form_name";s:13:"Space Booking";}i:7;O:8:"stdClass":13:{s:2:"id";s:2:"17";s:9:"field_key";s:6:"jql3f6";s:4:"name";s:27:"Refreshments &amp; Catering";s:11:"description";s:0:"";s:4:"type";s:8:"checkbox";s:13:"default_value";s:0:"";s:7:"options";a:4:{i:0;s:6:"Coffee";i:1;s:5:"Lunch";i:2;s:10:"Sandwiches";i:6;s:24:"Sparking / Bottled Water";}s:11:"field_order";s:1:"8";s:8:"required";s:1:"0";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:433:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label  class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    <div class="frm_opt_container">[input]</div>\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 08:01:24";s:9:"form_name";s:13:"Space Booking";}i:8;O:8:"stdClass":13:{s:2:"id";s:2:"13";s:9:"field_key";s:7:"9jv0r12";s:4:"name";s:16:"Special requests";s:11:"description";s:0:"";s:4:"type";s:8:"textarea";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"9";s:8:"required";s:1:"0";s:13:"field_options";a:10:{s:3:"max";s:1:"2";s:5:"blank";s:27:"This field cannot be blank.";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}i:9;O:8:"stdClass":13:{s:2:"id";s:2:"14";s:9:"field_key";s:7:"62n6q32";s:4:"name";s:7:"Captcha";s:11:"description";s:0:"";s:4:"type";s:7:"captcha";s:13:"default_value";s:1:"1";s:7:"options";s:0:"";s:11:"field_order";s:2:"10";s:8:"required";s:1:"0";s:13:"field_options";a:12:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:4:"size";s:0:"";s:3:"max";s:0:"";s:7:"invalid";s:39:"The reCAPTCHA was not entered correctly";s:7:"classes";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:7:"default";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}}', 'no'),
(20977, '_site_transient_timeout_browser_f90f9d5b5a1bb1d6e2289490ecf74ebb', '1482819768', 'no'),
(20978, '_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'),
(21165, '_site_transient_timeout_browser_00cb6228a64f759a1bb585e143526e4f', '1483087100', 'no'),
(21166, '_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'),
(21226, 'widget_like_box_facbook', 'a:5:{i:2;a:8:{s:5:"title";s:0:"";s:10:"profile_id";s:0:"";s:11:"connections";s:4:"show";s:5:"width";s:3:"300";s:6:"height";s:3:"550";s:6:"header";s:5:"small";s:11:"cover_photo";s:4:"show";s:6:"locale";s:5:"en_US";}i:5;a:12:{s:5:"title";s:0:"";s:10:"profile_id";s:16:"asiacentre.co.th";s:6:"stream";s:4:"show";s:12:"border_color";s:7:"#686868";s:11:"show_border";s:4:"show";s:16:"animation_effect";s:6:"bounce";s:11:"connections";s:4:"show";s:5:"width";s:3:"350";s:6:"height";s:3:"500";s:6:"header";s:5:"small";s:11:"cover_photo";s:4:"show";s:6:"locale";s:5:"en_US";}i:6;a:12:{s:5:"title";s:0:"";s:10:"profile_id";s:16:"asiacentre.co.th";s:6:"stream";s:4:"show";s:12:"border_color";s:4:"#FFF";s:11:"show_border";s:4:"show";s:16:"animation_effect";s:4:"none";s:11:"connections";s:4:"show";s:5:"width";s:3:"300";s:6:"height";s:3:"500";s:6:"header";s:5:"small";s:11:"cover_photo";s:4:"show";s:6:"locale";s:5:"en_US";}i:7;a:12:{s:5:"title";s:0:"";s:10:"profile_id";s:16:"asiacentre.co.th";s:6:"stream";s:4:"show";s:12:"border_color";s:4:"#FFF";s:11:"show_border";s:4:"show";s:16:"animation_effect";s:4:"none";s:11:"connections";s:4:"show";s:5:"width";s:3:"300";s:6:"height";s:3:"550";s:6:"header";s:5:"small";s:11:"cover_photo";s:4:"show";s:6:"locale";s:5:"en_US";}s:12:"_multiwidget";i:1;}', 'yes'),
(21240, 'like_box_sidebar_slide_mode', 'yes', 'yes'),
(21241, 'like_box_open_sidebar_button_must_show_in', '{\\"home\\":true,\\"post\\":true,\\"page\\":true,\\"everywhere\\":true}', 'yes'),
(21242, 'like_box_sidebar_slide_position', 'left', 'yes'),
(21243, 'like_box_sidebar_slide_bg_color', '#3A5897', 'yes'),
(21244, 'like_box_sidebar_slide_border_bg_color', '#ffffff', 'yes'),
(21245, 'like_box_sidebar_slide_title_color', '#FFFFFF', 'yes'),
(21246, 'like_box_sidebar_slide_title', 'Facebook', 'yes'),
(21247, 'like_box_sidebar_slide_title_font_famely', 'Times New Roman,Times,Georgia,serif', 'yes'),
(21248, 'like_box_sidebar_slide_pntik_height', '100', 'yes'),
(21249, 'like_box_sidebar_slide_profile_id', 'asiacentre.co.th', 'yes'),
(21250, 'like_box_sidebar_slide_width', '360', 'yes'),
(21251, 'like_box_sidebar_slide_height', '450', 'yes'),
(21252, 'like_box_sidebar_slide_header', 'small', 'yes'),
(21253, 'like_box_sidebar_slide_cover_photo', 'show', 'yes'),
(21254, 'like_box_sidebar_slide_connections', 'show', 'yes'),
(21255, 'like_box_sidebar_slide_stream', 'show', 'yes'),
(21256, 'like_box_sidebar_slide_locale', 'en_US', 'yes'),
(21257, 'like_box_enable_like_box', 'no', 'yes'),
(21258, 'like_box_popup_must_show_in', '{\\"home\\":true,\\"post\\":true,\\"page\\":true,\\"everywhere\\":true}', 'yes'),
(21259, 'like_box_popup_show_quantity', 'onew_time', 'yes'),
(21260, 'like_box_secont_befor_show', '0', 'yes'),
(21261, 'like_box_popup_title', 'Facebook like box', 'yes'),
(21262, 'like_box_popup_title_color', '#000000', 'yes'),
(21263, 'like_box_popup_title_font_famely', 'Times New Roman,Times,Georgia,serif', 'yes'),
(21264, 'like_box_profile_id', 'asiacentre.co.th', 'yes'),
(21265, 'like_box_show_border', 'hide', 'yes'),
(21266, 'like_box_border_color', '#FFF', 'yes'),
(21267, 'like_box_width', '600', 'yes'),
(21268, 'like_box_height', '450', 'yes'),
(21269, 'like_box_cover_photo', 'show', 'yes'),
(21270, 'like_box_header', 'small', 'yes'),
(21271, 'like_box_connections', 'show', 'yes'),
(21272, 'like_box_stream', 'show', 'yes'),
(21273, 'like_box_locale', 'en_US', 'yes'),
(21282, 'galleries_children', 'a:0:{}', 'yes'),
(21328, '_transient_timeout_yoast_i18n_wordpress-seo_en_GB', '1482600587', 'no'),
(21329, '_transient_yoast_i18n_wordpress-seo_en_GB', 'O:8:"stdClass":12:{s:2:"id";s:3:"639";s:4:"name";s:12:"English (UK)";s:4:"slug";s:7:"default";s:10:"project_id";s:1:"1";s:6:"locale";s:5:"en-gb";s:13:"current_count";i:1044;s:18:"untranslated_count";i:0;s:13:"waiting_count";i:0;s:11:"fuzzy_count";i:0;s:18:"percent_translated";i:100;s:9:"wp_locale";s:5:"en_GB";s:13:"last_modified";s:19:"2016-12-07 00:20:43";}', 'no'),
(21344, 'widget_a2a_share_save_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(21345, 'widget_a2a_follow_widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(21346, 'addtoany_options', 'a:47:{s:8:"position";s:6:"bottom";s:30:"display_in_posts_on_front_page";s:2:"-1";s:33:"display_in_posts_on_archive_pages";s:2:"-1";s:19:"display_in_excerpts";s:2:"-1";s:16:"display_in_posts";s:2:"-1";s:16:"display_in_pages";s:2:"-1";s:22:"display_in_attachments";s:2:"-1";s:15:"display_in_feed";s:2:"-1";s:7:"onclick";s:2:"-1";s:9:"icon_size";s:2:"32";s:6:"button";s:10:"A2A_SVG_32";s:13:"button_custom";s:0:"";s:17:"button_show_count";s:2:"-1";s:6:"header";s:0:"";s:23:"additional_js_variables";s:0:"";s:14:"additional_css";s:0:"";s:12:"custom_icons";s:2:"-1";s:16:"custom_icons_url";s:1:"/";s:17:"custom_icons_type";s:3:"png";s:18:"custom_icons_width";s:0:"";s:19:"custom_icons_height";s:0:"";s:10:"inline_css";s:1:"1";s:5:"cache";s:2:"-1";s:23:"display_in_cpt_hom_page";s:2:"-1";s:20:"display_in_cpt_event";s:2:"-1";s:21:"display_in_cpt_course";s:2:"-1";s:22:"display_in_cpt_gallery";s:2:"-1";s:21:"display_in_cpt_slider";s:2:"-1";s:20:"display_in_cpt_chunk";s:2:"-1";s:11:"button_text";s:5:"Share";s:24:"special_facebook_options";a:1:{s:10:"show_count";s:2:"-1";}s:15:"active_services";a:3:{i:0;s:8:"facebook";i:1;s:7:"twitter";i:2;s:11:"google_plus";}s:29:"special_facebook_like_options";a:1:{s:4:"verb";s:4:"like";}s:29:"special_twitter_tweet_options";a:1:{s:10:"show_count";s:2:"-1";}s:30:"special_google_plusone_options";a:1:{s:10:"show_count";s:2:"-1";}s:33:"special_google_plus_share_options";a:1:{s:10:"show_count";s:2:"-1";}s:29:"special_pinterest_pin_options";a:1:{s:10:"show_count";s:2:"-1";}s:17:"floating_vertical";s:4:"none";s:19:"floating_horizontal";s:4:"none";s:26:"floating_vertical_position";s:3:"100";s:24:"floating_vertical_offset";s:1:"0";s:28:"floating_vertical_responsive";s:1:"1";s:38:"floating_vertical_responsive_max_width";s:3:"980";s:28:"floating_horizontal_position";s:1:"0";s:26:"floating_horizontal_offset";s:1:"0";s:30:"floating_horizontal_responsive";s:1:"1";s:40:"floating_horizontal_responsive_min_width";s:3:"981";}', 'yes'),
(21511, 'widget_ee-upcoming-events-widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(21513, '_transient_timeout_ee_active_theme_check', '1485418321', 'no'),
(21514, '_transient_ee_active_theme_check', '1', 'no'),
(21515, '_transient_timeout_ee4_event_info_check', '1484035921', 'no'),
(21516, '_transient_ee4_event_info_check', '1', 'no'),
(21527, 'espresso_event_categories_children', 'a:1:{i:248;a:2:{i:0;i:249;i:1;i:250;}}', 'yes'),
(21547, '_site_transient_timeout_popular_importers_ee7264e484b22e934c2419199bc0b83b', '1483004087', 'no'),
(21548, '_site_transient_popular_importers_ee7264e484b22e934c2419199bc0b83b', 'a:2:{s:9:"importers";a:8:{s:7:"blogger";a:4:{s:4:"name";s:7:"Blogger";s:11:"description";s:54:"Import posts, comments, and users from a Blogger blog.";s:11:"plugin-slug";s:16:"blogger-importer";s:11:"importer-id";s:7:"blogger";}s:9:"wpcat2tag";a:4:{s:4:"name";s:29:"Categories and Tags Converter";s:11:"description";s:71:"Convert existing categories to tags or tags to categories, selectively.";s:11:"plugin-slug";s:18:"wpcat2tag-importer";s:11:"importer-id";s:10:"wp-cat2tag";}s:11:"livejournal";a:4:{s:4:"name";s:11:"LiveJournal";s:11:"description";s:46:"Import posts from LiveJournal using their API.";s:11:"plugin-slug";s:20:"livejournal-importer";s:11:"importer-id";s:11:"livejournal";}s:11:"movabletype";a:4:{s:4:"name";s:24:"Movable Type and TypePad";s:11:"description";s:62:"Import posts and comments from a Movable Type or TypePad blog.";s:11:"plugin-slug";s:20:"movabletype-importer";s:11:"importer-id";s:2:"mt";}s:4:"opml";a:4:{s:4:"name";s:8:"Blogroll";s:11:"description";s:28:"Import links in OPML format.";s:11:"plugin-slug";s:13:"opml-importer";s:11:"importer-id";s:4:"opml";}s:3:"rss";a:4:{s:4:"name";s:3:"RSS";s:11:"description";s:30:"Import posts from an RSS feed.";s:11:"plugin-slug";s:12:"rss-importer";s:11:"importer-id";s:3:"rss";}s:6:"tumblr";a:4:{s:4:"name";s:6:"Tumblr";s:11:"description";s:53:"Import posts &amp; media from Tumblr using their API.";s:11:"plugin-slug";s:15:"tumblr-importer";s:11:"importer-id";s:6:"tumblr";}s:9:"wordpress";a:4:{s:4:"name";s:9:"WordPress";s:11:"description";s:96:"Import posts, pages, comments, custom fields, categories, and tags from a WordPress export file.";s:11:"plugin-slug";s:18:"wordpress-importer";s:11:"importer-id";s:9:"wordpress";}}s:10:"translated";b:0;}', 'no'),
(21585, 'ee_config', 'O:9:"EE_Config":11:{s:6:"addons";O:8:"stdClass":0:{}s:5:"admin";O:15:"EE_Admin_Config":12:{s:21:"use_personnel_manager";b:1;s:20:"use_dashboard_widget";b:1;s:19:"events_in_dashboard";i:30;s:19:"use_event_timezones";b:0;s:16:"use_full_logging";b:0;s:13:"log_file_name";N;s:15:"debug_file_name";N;s:18:"use_remote_logging";b:0;s:18:"remote_logging_url";N;s:15:"show_reg_footer";b:1;s:12:"affiliate_id";s:7:"default";s:20:"help_tour_activation";b:1;}s:4:"core";O:14:"EE_Core_Config":16:{s:15:"current_blog_id";i:1;s:13:"ee_ueip_optin";s:2:"no";s:20:"ee_ueip_has_notified";b:1;s:15:"post_shortcodes";a:4:{s:21:"registration-checkout";a:1:{s:17:"ESPRESSO_CHECKOUT";i:2104;}s:12:"transactions";a:1:{s:17:"ESPRESSO_TXN_PAGE";i:2105;}s:9:"thank-you";a:1:{s:18:"ESPRESSO_THANK_YOU";i:2106;}s:22:"registration-cancelled";a:1:{s:18:"ESPRESSO_CANCELLED";i:2107;}}s:16:"module_route_map";a:0:{}s:18:"module_forward_map";a:0:{}s:15:"module_view_map";a:0:{}s:11:"reg_page_id";i:2104;s:11:"txn_page_id";i:2105;s:17:"thank_you_page_id";i:2106;s:14:"cancel_page_id";i:2107;s:12:"reg_page_url";s:0:"";s:12:"txn_page_url";s:0:"";s:18:"thank_you_page_url";s:0:"";s:15:"cancel_page_url";s:0:"";s:14:"event_cpt_slug";s:6:"events";}s:8:"currency";O:18:"EE_Currency_Config":8:{s:4:"code";s:3:"USD";s:4:"name";s:6:"Dollar";s:6:"plural";s:6:"Dollas";s:4:"sign";s:1:"$";s:7:"sign_b4";b:1;s:7:"dec_plc";i:2;s:7:"dec_mrk";s:1:".";s:6:"thsnds";s:1:",";}s:12:"organization";O:22:"EE_Organization_Config":17:{s:4:"name";s:11:"ASIA CENTRE";s:9:"address_1";s:37:"128/183, Phayathai Plaza, 17st Floor,";s:9:"address_2";s:30:"Phayathai Rd., Thung Phayathai";s:4:"city";s:20:"Ratchathewi, Bangkok";s:6:"STA_ID";i:0;s:7:"CNT_ISO";s:2:"TH";s:3:"zip";s:5:"10400";s:5:"email";s:21:"info@asiacentre.co.th";s:5:"phone";s:9:"021293773";s:3:"vat";s:13:"0105558119135";s:8:"logo_url";s:70:"http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-logo.png";s:8:"facebook";s:42:"https://www.facebook.com/asiacentre.co.th/";s:7:"twitter";s:0:"";s:8:"linkedin";s:0:"";s:9:"pinterest";s:0:"";s:6:"google";s:0:"";s:9:"instagram";s:0:"";}s:12:"registration";O:22:"EE_Registration_Config":12:{s:14:"default_STS_ID";s:3:"RPP";s:28:"show_pending_payment_options";s:1:"1";s:21:"skip_reg_confirmation";b:0;s:9:"reg_steps";a:0:{}s:21:"reg_confirmation_last";b:0;s:11:"use_captcha";b:0;s:15:"recaptcha_theme";s:5:"light";s:14:"recaptcha_type";s:5:"image";s:18:"recaptcha_language";s:2:"en";s:19:"recaptcha_publickey";N;s:20:"recaptcha_privatekey";N;s:15:"recaptcha_width";i:500;}s:17:"template_settings";O:18:"EE_Template_Config":7:{s:20:"enable_default_style";b:1;s:18:"custom_style_sheet";N;s:26:"display_address_in_regform";b:1;s:37:"display_description_on_multi_reg_page";b:0;s:20:"use_custom_templates";b:0;s:22:"current_espresso_theme";s:21:"Espresso_Arabica_2014";s:19:"EED_Ticket_Selector";O:25:"EE_Ticket_Selector_Config":3:{s:24:"show_ticket_sale_columns";i:1;s:19:"show_ticket_details";i:1;s:20:"show_expired_tickets";i:1;}}s:11:"environment";O:21:"EE_Environment_Config":1:{s:3:"php";O:8:"stdClass":2:{s:14:"max_input_vars";s:4:"1000";s:7:"version";s:6:"5.4.45";}}s:12:"map_settings";O:13:"EE_Map_Config":15:{s:15:"use_google_maps";b:1;s:23:"event_details_map_width";i:585;s:24:"event_details_map_height";i:362;s:22:"event_details_map_zoom";i:14;s:25:"event_details_display_nav";b:1;s:22:"event_details_nav_size";b:0;s:26:"event_details_control_type";s:7:"default";s:23:"event_details_map_align";s:6:"center";s:20:"event_list_map_width";i:300;s:21:"event_list_map_height";i:185;s:19:"event_list_map_zoom";i:12;s:22:"event_list_display_nav";b:0;s:19:"event_list_nav_size";b:1;s:23:"event_list_control_type";s:8:"dropdown";s:20:"event_list_map_align";s:6:"center";}s:7:"gateway";O:17:"EE_Gateway_Config":2:{s:16:"payment_settings";a:0:{}s:15:"active_gateways";a:1:{s:7:"Invoice";b:0;}}s:31:"\0EE_Config\0_config_option_names";a:0:{}}', 'yes'),
(21586, 'ee_flush_rewrite_rules', '', 'yes'),
(21587, 'ee_notices', '', 'yes'),
(21588, 'ee_data_migration_current_db_state', 'a:1:{s:4:"Core";s:12:"4.7.12.decaf";}', 'yes'),
(21591, 'ee_ueip_optin', 'no', 'yes'),
(21592, '_transient_timeout_ee_extra_data', '1483439026', 'no'),
(21593, '_transient_ee_extra_data', 'a:4:{s:12:"active_theme";s:16:"Asia Centre 2015";s:13:"all_tkt_count";s:1:"1";s:14:"free_tkt_count";s:1:"1";s:10:"phpversion";s:6:"5.4.45";}', 'no'),
(21594, 'external_updates-event-espresso-core-decaf', 'O:8:"stdClass":3:{s:9:"lastCheck";i:1482911038;s:14:"checkedVersion";s:12:"4.7.12.decaf";s:6:"update";O:19:"PluginUpdateUtility":7:{s:2:"id";s:6:"116825";s:4:"slug";s:25:"event-espresso-core-decaf";s:7:"version";s:12:"4.8.42.decaf";s:8:"homepage";s:45:"https://eventespresso.com/pricing/?ee_ver=ee4";s:12:"download_url";s:178:"https://eventespresso.com?pu_request_plugin=event-espresso-core-decaf&pu_get_download=1&pue_active_version=4.7.12.decaf&site_domain=asiacentre.co.th&pu_plugin_api&new_pue_check=1";s:8:"sections";O:8:"stdClass":3:{s:11:"description";s:110:"Manage your events from your WordPress dashboard. Reduce your admin, reduce your costs, make your life easier!";s:12:"installation";s:0:"";s:9:"changelog";s:0:"";}s:14:"upgrade_notice";s:0:"";}}', 'no'),
(21642, 'events_children', 'a:1:{i:211;a:3:{i:0;i:225;i:1;i:228;i:2;i:229;}}', 'yes'),
(21656, 'tribe_events_calendar_options', 'a:5:{s:14:"schema-version";s:3:"3.9";s:27:"recurring_events_are_hidden";s:6:"hidden";s:21:"previous_ecp_versions";a:1:{i:0;s:1:"0";}s:18:"latest_ecp_version";s:5:"4.3.5";s:39:"last-update-message-the-events-calendar";s:5:"4.3.5";}', 'yes'),
(21657, 'widget_tribe-events-list-widget', 'a:1:{s:12:"_multiwidget";i:1;}', 'yes'),
(21658, 'tribe_last_save_post', '1482897425', 'yes'),
(21660, '_transient_timeout_feed_0d102f2a1f4d6bc90eb8c6ffe18e56ed', '1482940065', 'no'),
(21661, '_transient_timeout_feed_mod_0d102f2a1f4d6bc90eb8c6ffe18e56ed', '1482940065', 'no'),
(21662, '_transient_feed_mod_0d102f2a1f4d6bc90eb8c6ffe18e56ed', '1482896865', 'no'),
(21667, 'tribe_events_cat_children', 'a:1:{i:251;a:2:{i:0;i:252;i:1;i:253;}}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(21669, 'rewrite_rules', 'a:282:{s:19:"sitemap_index\\.xml$";s:19:"index.php?sitemap=1";s:31:"([^/]+?)-sitemap([0-9]+)?\\.xml$";s:51:"index.php?sitemap=$matches[1]&sitemap_n=$matches[2]";s:24:"([a-z]+)?-?sitemap\\.xsl$";s:25:"index.php?xsl=$matches[1]";s:11:"^wp-json/?$";s:22:"index.php?rest_route=/";s:14:"^wp-json/(.*)?";s:33:"index.php?rest_route=/$matches[1]";s:7:"home/?$";s:28:"index.php?post_type=hom_page";s:37:"home/feed/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?post_type=hom_page&feed=$matches[1]";s:32:"home/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?post_type=hom_page&feed=$matches[1]";s:24:"home/page/([0-9]{1,})/?$";s:46:"index.php?post_type=hom_page&paged=$matches[1]";s:8:"event/?$";s:25:"index.php?post_type=event";s:38:"event/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?post_type=event&feed=$matches[1]";s:33:"event/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?post_type=event&feed=$matches[1]";s:25:"event/page/([0-9]{1,})/?$";s:43:"index.php?post_type=event&paged=$matches[1]";s:9:"course/?$";s:26:"index.php?post_type=course";s:39:"course/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?post_type=course&feed=$matches[1]";s:34:"course/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?post_type=course&feed=$matches[1]";s:26:"course/page/([0-9]{1,})/?$";s:44:"index.php?post_type=course&paged=$matches[1]";s:10:"gallery/?$";s:27:"index.php?post_type=gallery";s:40:"gallery/feed/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?post_type=gallery&feed=$matches[1]";s:35:"gallery/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?post_type=gallery&feed=$matches[1]";s:27:"gallery/page/([0-9]{1,})/?$";s:45:"index.php?post_type=gallery&paged=$matches[1]";s:9:"slider/?$";s:26:"index.php?post_type=slider";s:39:"slider/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?post_type=slider&feed=$matches[1]";s:34:"slider/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?post_type=slider&feed=$matches[1]";s:26:"slider/page/([0-9]{1,})/?$";s:44:"index.php?post_type=slider&paged=$matches[1]";s:8:"chunk/?$";s:25:"index.php?post_type=chunk";s:38:"chunk/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?post_type=chunk&feed=$matches[1]";s:33:"chunk/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?post_type=chunk&feed=$matches[1]";s:25:"chunk/page/([0-9]{1,})/?$";s:43:"index.php?post_type=chunk&paged=$matches[1]";s:47:"category/(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:42:"category/(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:23:"category/(.+?)/embed/?$";s:46:"index.php?category_name=$matches[1]&embed=true";s:35:"category/(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:17:"category/(.+?)/?$";s:35:"index.php?category_name=$matches[1]";s:44:"tag/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:39:"tag/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:42:"index.php?tag=$matches[1]&feed=$matches[2]";s:20:"tag/([^/]+)/embed/?$";s:36:"index.php?tag=$matches[1]&embed=true";s:32:"tag/([^/]+)/page/?([0-9]{1,})/?$";s:43:"index.php?tag=$matches[1]&paged=$matches[2]";s:14:"tag/([^/]+)/?$";s:25:"index.php?tag=$matches[1]";s:45:"type/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:40:"type/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?post_format=$matches[1]&feed=$matches[2]";s:21:"type/([^/]+)/embed/?$";s:44:"index.php?post_format=$matches[1]&embed=true";s:33:"type/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?post_format=$matches[1]&paged=$matches[2]";s:15:"type/([^/]+)/?$";s:33:"index.php?post_format=$matches[1]";s:38:"frm_styles/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:48:"frm_styles/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:68:"frm_styles/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"frm_styles/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:63:"frm_styles/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:44:"frm_styles/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:27:"frm_styles/([^/]+)/embed/?$";s:43:"index.php?frm_styles=$matches[1]&embed=true";s:31:"frm_styles/([^/]+)/trackback/?$";s:37:"index.php?frm_styles=$matches[1]&tb=1";s:39:"frm_styles/([^/]+)/page/?([0-9]{1,})/?$";s:50:"index.php?frm_styles=$matches[1]&paged=$matches[2]";s:46:"frm_styles/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?frm_styles=$matches[1]&cpage=$matches[2]";s:35:"frm_styles/([^/]+)(?:/([0-9]+))?/?$";s:49:"index.php?frm_styles=$matches[1]&page=$matches[2]";s:27:"frm_styles/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:"frm_styles/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:"frm_styles/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"frm_styles/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:"frm_styles/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:"frm_styles/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:44:"frm_form_actions/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:54:"frm_form_actions/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:74:"frm_form_actions/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:69:"frm_form_actions/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:69:"frm_form_actions/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:50:"frm_form_actions/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:33:"frm_form_actions/([^/]+)/embed/?$";s:49:"index.php?frm_form_actions=$matches[1]&embed=true";s:37:"frm_form_actions/([^/]+)/trackback/?$";s:43:"index.php?frm_form_actions=$matches[1]&tb=1";s:45:"frm_form_actions/([^/]+)/page/?([0-9]{1,})/?$";s:56:"index.php?frm_form_actions=$matches[1]&paged=$matches[2]";s:52:"frm_form_actions/([^/]+)/comment-page-([0-9]{1,})/?$";s:56:"index.php?frm_form_actions=$matches[1]&cpage=$matches[2]";s:41:"frm_form_actions/([^/]+)(?:/([0-9]+))?/?$";s:55:"index.php?frm_form_actions=$matches[1]&page=$matches[2]";s:33:"frm_form_actions/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:43:"frm_form_actions/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:63:"frm_form_actions/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"frm_form_actions/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"frm_form_actions/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:39:"frm_form_actions/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:32:"home/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:42:"home/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:62:"home/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"home/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:57:"home/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:38:"home/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:21:"home/([^/]+)/embed/?$";s:41:"index.php?hom_page=$matches[1]&embed=true";s:25:"home/([^/]+)/trackback/?$";s:35:"index.php?hom_page=$matches[1]&tb=1";s:45:"home/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?hom_page=$matches[1]&feed=$matches[2]";s:40:"home/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?hom_page=$matches[1]&feed=$matches[2]";s:33:"home/([^/]+)/page/?([0-9]{1,})/?$";s:48:"index.php?hom_page=$matches[1]&paged=$matches[2]";s:40:"home/([^/]+)/comment-page-([0-9]{1,})/?$";s:48:"index.php?hom_page=$matches[1]&cpage=$matches[2]";s:29:"home/([^/]+)(?:/([0-9]+))?/?$";s:47:"index.php?hom_page=$matches[1]&page=$matches[2]";s:21:"home/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:31:"home/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:51:"home/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:46:"home/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:46:"home/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:27:"home/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:33:"event/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:43:"event/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:63:"event/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"event/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"event/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:39:"event/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:22:"event/([^/]+)/embed/?$";s:38:"index.php?event=$matches[1]&embed=true";s:26:"event/([^/]+)/trackback/?$";s:32:"index.php?event=$matches[1]&tb=1";s:46:"event/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?event=$matches[1]&feed=$matches[2]";s:41:"event/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?event=$matches[1]&feed=$matches[2]";s:34:"event/([^/]+)/page/?([0-9]{1,})/?$";s:45:"index.php?event=$matches[1]&paged=$matches[2]";s:41:"event/([^/]+)/comment-page-([0-9]{1,})/?$";s:45:"index.php?event=$matches[1]&cpage=$matches[2]";s:30:"event/([^/]+)(?:/([0-9]+))?/?$";s:44:"index.php?event=$matches[1]&page=$matches[2]";s:22:"event/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:32:"event/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:52:"event/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:47:"event/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:47:"event/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:28:"event/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:47:"events/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?events=$matches[1]&feed=$matches[2]";s:42:"events/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?events=$matches[1]&feed=$matches[2]";s:23:"events/([^/]+)/embed/?$";s:39:"index.php?events=$matches[1]&embed=true";s:35:"events/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?events=$matches[1]&paged=$matches[2]";s:17:"events/([^/]+)/?$";s:28:"index.php?events=$matches[1]";s:34:"course/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:44:"course/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:64:"course/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"course/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"course/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:40:"course/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:23:"course/([^/]+)/embed/?$";s:39:"index.php?course=$matches[1]&embed=true";s:27:"course/([^/]+)/trackback/?$";s:33:"index.php?course=$matches[1]&tb=1";s:47:"course/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?course=$matches[1]&feed=$matches[2]";s:42:"course/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?course=$matches[1]&feed=$matches[2]";s:35:"course/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?course=$matches[1]&paged=$matches[2]";s:42:"course/([^/]+)/comment-page-([0-9]{1,})/?$";s:46:"index.php?course=$matches[1]&cpage=$matches[2]";s:31:"course/([^/]+)(?:/([0-9]+))?/?$";s:45:"index.php?course=$matches[1]&page=$matches[2]";s:23:"course/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:33:"course/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:53:"course/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"course/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"course/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:29:"course/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:48:"courses/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?courses=$matches[1]&feed=$matches[2]";s:43:"courses/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?courses=$matches[1]&feed=$matches[2]";s:24:"courses/([^/]+)/embed/?$";s:40:"index.php?courses=$matches[1]&embed=true";s:36:"courses/([^/]+)/page/?([0-9]{1,})/?$";s:47:"index.php?courses=$matches[1]&paged=$matches[2]";s:18:"courses/([^/]+)/?$";s:29:"index.php?courses=$matches[1]";s:35:"gallery/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:45:"gallery/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:65:"gallery/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"gallery/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:60:"gallery/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:41:"gallery/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:24:"gallery/([^/]+)/embed/?$";s:40:"index.php?gallery=$matches[1]&embed=true";s:28:"gallery/([^/]+)/trackback/?$";s:34:"index.php?gallery=$matches[1]&tb=1";s:48:"gallery/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?gallery=$matches[1]&feed=$matches[2]";s:43:"gallery/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:46:"index.php?gallery=$matches[1]&feed=$matches[2]";s:36:"gallery/([^/]+)/page/?([0-9]{1,})/?$";s:47:"index.php?gallery=$matches[1]&paged=$matches[2]";s:43:"gallery/([^/]+)/comment-page-([0-9]{1,})/?$";s:47:"index.php?gallery=$matches[1]&cpage=$matches[2]";s:32:"gallery/([^/]+)(?:/([0-9]+))?/?$";s:46:"index.php?gallery=$matches[1]&page=$matches[2]";s:24:"gallery/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:34:"gallery/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:54:"gallery/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"gallery/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:49:"gallery/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:30:"gallery/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:50:"galleries/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:48:"index.php?galleries=$matches[1]&feed=$matches[2]";s:45:"galleries/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:48:"index.php?galleries=$matches[1]&feed=$matches[2]";s:26:"galleries/([^/]+)/embed/?$";s:42:"index.php?galleries=$matches[1]&embed=true";s:38:"galleries/([^/]+)/page/?([0-9]{1,})/?$";s:49:"index.php?galleries=$matches[1]&paged=$matches[2]";s:20:"galleries/([^/]+)/?$";s:31:"index.php?galleries=$matches[1]";s:34:"slider/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:44:"slider/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:64:"slider/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"slider/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:59:"slider/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:40:"slider/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:23:"slider/([^/]+)/embed/?$";s:39:"index.php?slider=$matches[1]&embed=true";s:27:"slider/([^/]+)/trackback/?$";s:33:"index.php?slider=$matches[1]&tb=1";s:47:"slider/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?slider=$matches[1]&feed=$matches[2]";s:42:"slider/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:45:"index.php?slider=$matches[1]&feed=$matches[2]";s:35:"slider/([^/]+)/page/?([0-9]{1,})/?$";s:46:"index.php?slider=$matches[1]&paged=$matches[2]";s:42:"slider/([^/]+)/comment-page-([0-9]{1,})/?$";s:46:"index.php?slider=$matches[1]&cpage=$matches[2]";s:31:"slider/([^/]+)(?:/([0-9]+))?/?$";s:45:"index.php?slider=$matches[1]&page=$matches[2]";s:23:"slider/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:33:"slider/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:53:"slider/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"slider/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:48:"slider/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:29:"slider/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:33:"chunk/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:43:"chunk/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:63:"chunk/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"chunk/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:58:"chunk/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:39:"chunk/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:22:"chunk/([^/]+)/embed/?$";s:38:"index.php?chunk=$matches[1]&embed=true";s:26:"chunk/([^/]+)/trackback/?$";s:32:"index.php?chunk=$matches[1]&tb=1";s:46:"chunk/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?chunk=$matches[1]&feed=$matches[2]";s:41:"chunk/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:44:"index.php?chunk=$matches[1]&feed=$matches[2]";s:34:"chunk/([^/]+)/page/?([0-9]{1,})/?$";s:45:"index.php?chunk=$matches[1]&paged=$matches[2]";s:41:"chunk/([^/]+)/comment-page-([0-9]{1,})/?$";s:45:"index.php?chunk=$matches[1]&cpage=$matches[2]";s:30:"chunk/([^/]+)(?:/([0-9]+))?/?$";s:44:"index.php?chunk=$matches[1]&page=$matches[2]";s:22:"chunk/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:32:"chunk/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:52:"chunk/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:47:"chunk/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:47:"chunk/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:28:"chunk/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:12:"robots\\.txt$";s:18:"index.php?robots=1";s:48:".*wp-(atom|rdf|rss|rss2|feed|commentsrss2)\\.php$";s:18:"index.php?feed=old";s:20:".*wp-app\\.php(/.*)?$";s:19:"index.php?error=403";s:18:".*wp-register.php$";s:23:"index.php?register=true";s:32:"feed/(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:27:"(feed|rdf|rss|rss2|atom)/?$";s:27:"index.php?&feed=$matches[1]";s:8:"embed/?$";s:21:"index.php?&embed=true";s:20:"page/?([0-9]{1,})/?$";s:28:"index.php?&paged=$matches[1]";s:27:"comment-page-([0-9]{1,})/?$";s:40:"index.php?&page_id=316&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:47:"author/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:42:"author/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:50:"index.php?author_name=$matches[1]&feed=$matches[2]";s:23:"author/([^/]+)/embed/?$";s:44:"index.php?author_name=$matches[1]&embed=true";s:35:"author/([^/]+)/page/?([0-9]{1,})/?$";s:51:"index.php?author_name=$matches[1]&paged=$matches[2]";s:17:"author/([^/]+)/?$";s:33:"index.php?author_name=$matches[1]";s:69:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:64:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:80:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&feed=$matches[4]";s:45:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/embed/?$";s:74:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&embed=true";s:57:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:81:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]&paged=$matches[4]";s:39:"([0-9]{4})/([0-9]{1,2})/([0-9]{1,2})/?$";s:63:"index.php?year=$matches[1]&monthnum=$matches[2]&day=$matches[3]";s:56:"([0-9]{4})/([0-9]{1,2})/feed/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:51:"([0-9]{4})/([0-9]{1,2})/(feed|rdf|rss|rss2|atom)/?$";s:64:"index.php?year=$matches[1]&monthnum=$matches[2]&feed=$matches[3]";s:32:"([0-9]{4})/([0-9]{1,2})/embed/?$";s:58:"index.php?year=$matches[1]&monthnum=$matches[2]&embed=true";s:44:"([0-9]{4})/([0-9]{1,2})/page/?([0-9]{1,})/?$";s:65:"index.php?year=$matches[1]&monthnum=$matches[2]&paged=$matches[3]";s:26:"([0-9]{4})/([0-9]{1,2})/?$";s:47:"index.php?year=$matches[1]&monthnum=$matches[2]";s:43:"([0-9]{4})/feed/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:38:"([0-9]{4})/(feed|rdf|rss|rss2|atom)/?$";s:43:"index.php?year=$matches[1]&feed=$matches[2]";s:19:"([0-9]{4})/embed/?$";s:37:"index.php?year=$matches[1]&embed=true";s:31:"([0-9]{4})/page/?([0-9]{1,})/?$";s:44:"index.php?year=$matches[1]&paged=$matches[2]";s:13:"([0-9]{4})/?$";s:26:"index.php?year=$matches[1]";s:27:".?.+?/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:37:".?.+?/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:57:".?.+?/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:52:".?.+?/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:33:".?.+?/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:16:"(.?.+?)/embed/?$";s:41:"index.php?pagename=$matches[1]&embed=true";s:20:"(.?.+?)/trackback/?$";s:35:"index.php?pagename=$matches[1]&tb=1";s:40:"(.?.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:35:"(.?.+?)/(feed|rdf|rss|rss2|atom)/?$";s:47:"index.php?pagename=$matches[1]&feed=$matches[2]";s:28:"(.?.+?)/page/?([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&paged=$matches[2]";s:35:"(.?.+?)/comment-page-([0-9]{1,})/?$";s:48:"index.php?pagename=$matches[1]&cpage=$matches[2]";s:24:"(.?.+?)(?:/([0-9]+))?/?$";s:47:"index.php?pagename=$matches[1]&page=$matches[2]";s:31:".+?/[^/]+/attachment/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:41:".+?/[^/]+/attachment/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:61:".+?/[^/]+/attachment/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:".+?/[^/]+/attachment/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:56:".+?/[^/]+/attachment/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:37:".+?/[^/]+/attachment/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:22:"(.+?)/([^/]+)/embed/?$";s:63:"index.php?category_name=$matches[1]&name=$matches[2]&embed=true";s:26:"(.+?)/([^/]+)/trackback/?$";s:57:"index.php?category_name=$matches[1]&name=$matches[2]&tb=1";s:46:"(.+?)/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]";s:41:"(.+?)/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&feed=$matches[3]";s:34:"(.+?)/([^/]+)/page/?([0-9]{1,})/?$";s:70:"index.php?category_name=$matches[1]&name=$matches[2]&paged=$matches[3]";s:41:"(.+?)/([^/]+)/comment-page-([0-9]{1,})/?$";s:70:"index.php?category_name=$matches[1]&name=$matches[2]&cpage=$matches[3]";s:30:"(.+?)/([^/]+)(?:/([0-9]+))?/?$";s:69:"index.php?category_name=$matches[1]&name=$matches[2]&page=$matches[3]";s:20:".+?/[^/]+/([^/]+)/?$";s:32:"index.php?attachment=$matches[1]";s:30:".+?/[^/]+/([^/]+)/trackback/?$";s:37:"index.php?attachment=$matches[1]&tb=1";s:50:".+?/[^/]+/([^/]+)/feed/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:45:".+?/[^/]+/([^/]+)/(feed|rdf|rss|rss2|atom)/?$";s:49:"index.php?attachment=$matches[1]&feed=$matches[2]";s:45:".+?/[^/]+/([^/]+)/comment-page-([0-9]{1,})/?$";s:50:"index.php?attachment=$matches[1]&cpage=$matches[2]";s:26:".+?/[^/]+/([^/]+)/embed/?$";s:43:"index.php?attachment=$matches[1]&embed=true";s:38:"(.+?)/feed/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:33:"(.+?)/(feed|rdf|rss|rss2|atom)/?$";s:52:"index.php?category_name=$matches[1]&feed=$matches[2]";s:14:"(.+?)/embed/?$";s:46:"index.php?category_name=$matches[1]&embed=true";s:26:"(.+?)/page/?([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&paged=$matches[2]";s:33:"(.+?)/comment-page-([0-9]{1,})/?$";s:53:"index.php?category_name=$matches[1]&cpage=$matches[2]";s:8:"(.+?)/?$";s:35:"index.php?category_name=$matches[1]";}', 'yes');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(21673, 'ee_active_messengers', 'a:3:{s:3:"pdf";a:1:{s:3:"obj";O:16:"EE_Pdf_messenger":22:{s:11:"\0*\0_content";N;s:11:"\0*\0_subject";N;s:25:"\0*\0_default_message_types";a:0:{}s:23:"\0*\0_valid_message_types";a:0:{}s:20:"\0*\0_validator_config";a:6:{s:7:"subject";a:1:{s:10:"shortcodes";a:13:{i:0;s:17:"recipient_details";i:1;s:12:"organization";i:2;s:5:"event";i:3;s:6:"ticket";i:4;s:5:"venue";i:5;s:28:"primary_registration_details";i:6;s:12:"event_author";i:7;s:5:"email";i:8;s:10:"event_meta";i:9;s:14:"recipient_list";i:10;s:11:"transaction";i:11;s:13:"datetime_list";i:12;s:8:"datetime";}}s:7:"content";a:1:{s:10:"shortcodes";a:13:{i:0;s:17:"recipient_details";i:1;s:12:"organization";i:2;s:5:"event";i:3;s:6:"ticket";i:4;s:5:"venue";i:5;s:28:"primary_registration_details";i:6;s:12:"event_author";i:7;s:5:"email";i:8;s:10:"event_meta";i:9;s:14:"recipient_list";i:10;s:11:"transaction";i:11;s:13:"datetime_list";i:12;s:8:"datetime";}}s:13:"attendee_list";a:2:{s:10:"shortcodes";a:3:{i:0;s:8:"attendee";i:1;s:10:"event_list";i:2;s:11:"ticket_list";}s:8:"required";a:1:{i:0;s:15:"[ATTENDEE_LIST]";}}s:10:"event_list";a:2:{s:10:"shortcodes";a:11:{i:0;s:5:"event";i:1;s:13:"attendee_list";i:2;s:11:"ticket_list";i:3;s:5:"venue";i:4;s:13:"datetime_list";i:5;s:8:"attendee";i:6;s:28:"primary_registration_details";i:7;s:25:"primary_registration_list";i:8;s:12:"event_author";i:9;s:17:"recipient_details";i:10;s:14:"recipient_list";}s:8:"required";a:1:{i:0;s:12:"[EVENT_LIST]";}}s:11:"ticket_list";a:2:{s:10:"shortcodes";a:6:{i:0;s:10:"event_list";i:1;s:13:"attendee_list";i:2;s:6:"ticket";i:3;s:13:"datetime_list";i:4;s:28:"primary_registration_details";i:5;s:17:"recipient_details";}s:8:"required";a:1:{i:0;s:13:"[TICKET_LIST]";}}s:13:"datetime_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:8:"datetime";}s:8:"required";a:1:{i:0;s:15:"[DATETIME_LIST]";}}}s:12:"\0*\0_EEM_data";O:26:"EEM_Message_Template_Group":34:{s:50:"\0EEM_Base\0_values_already_prepared_by_model_object";i:0;s:16:"\0*\0singular_item";s:22:"Message Template Group";s:14:"\0*\0plural_item";s:23:"Message Template Groups";s:10:"\0*\0_tables";a:1:{s:22:"Message_Template_Group";O:16:"EE_Primary_Table":3:{s:11:"_table_name";s:29:"wp_esp_message_template_group";s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"\0*\0_pk_column";s:6:"GRP_ID";}}s:10:"\0*\0_fields";a:1:{s:22:"Message_Template_Group";a:10:{s:6:"GRP_ID";O:24:"EE_Primary_Key_Int_Field":9:{s:25:"\0*\0_model_name_pointed_to";s:22:"Message_Template_Group";s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:6:"GRP_ID";s:5:"_name";s:6:"GRP_ID";s:9:"_nicename";s:25:"Message Template Group ID";s:9:"_nullable";b:0;s:14:"_default_value";i:0;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:8:"MTP_name";O:19:"EE_Plain_Text_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:8:"MTP_name";s:5:"_name";s:8:"MTP_name";s:9:"_nicename";s:30:"The name of the temlpate group";s:9:"_nullable";b:0;s:14:"_default_value";s:0:"";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:15:"MTP_description";O:20:"EE_Simple_HTML_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:15:"MTP_description";s:5:"_name";s:15:"MTP_description";s:9:"_nicename";s:40:"A brief description about this template.";s:9:"_nullable";b:0;s:14:"_default_value";s:0:"";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:11:"MTP_user_id";O:16:"EE_WP_User_Field":9:{s:25:"\0*\0_model_name_pointed_to";s:7:"WP_User";s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:11:"MTP_user_id";s:5:"_name";s:11:"MTP_user_id";s:9:"_nicename";s:19:"Template Creator ID";s:9:"_nullable";b:0;s:14:"_default_value";N;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:13:"MTP_messenger";O:19:"EE_Plain_Text_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:13:"MTP_messenger";s:5:"_name";s:13:"MTP_messenger";s:9:"_nicename";s:27:"Messenger Used for Template";s:9:"_nullable";b:0;s:14:"_default_value";s:5:"email";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:16:"MTP_message_type";O:19:"EE_Plain_Text_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:16:"MTP_message_type";s:5:"_name";s:16:"MTP_message_type";s:9:"_nicename";s:12:"Message Type";s:9:"_nullable";b:0;s:14:"_default_value";s:12:"registration";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:13:"MTP_is_global";O:16:"EE_Boolean_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:13:"MTP_is_global";s:5:"_name";s:13:"MTP_is_global";s:9:"_nicename";s:43:"Flag indicating if Template Group is Global";s:9:"_nullable";b:0;s:14:"_default_value";b:1;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:15:"MTP_is_override";O:16:"EE_Boolean_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:15:"MTP_is_override";s:5:"_name";s:15:"MTP_is_override";s:9:"_nicename";s:105:"Flag indicating if Template Group overrides any other Templates for the messenger/messagetype combination";s:9:"_nullable";b:0;s:14:"_default_value";b:0;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:11:"MTP_deleted";O:21:"EE_Trashed_Flag_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:11:"MTP_deleted";s:5:"_name";s:11:"MTP_deleted";s:9:"_nicename";s:45:"Flag indicating whether this has been trashed";s:9:"_nullable";b:0;s:14:"_default_value";b:0;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:13:"MTP_is_active";O:16:"EE_Boolean_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:13:"MTP_is_active";s:5:"_name";s:13:"MTP_is_active";s:9:"_nicename";s:48:"Flag indicating whether template group is active";s:9:"_nullable";b:0;s:14:"_default_value";b:1;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}}}s:19:"\0*\0_model_relations";a:5:{s:16:"Message_Template";O:20:"EE_Has_Many_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:16:"Message_Template";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:1;}s:5:"Event";O:17:"EE_HABTM_Relation":7:{s:38:"\0EE_HABTM_Relation\0_joining_model_name";s:22:"Event_Message_Template";s:54:"\0EE_HABTM_Relation\0_model_relation_chain_to_join_model";N;s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:5:"Event";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";s:0:"";s:19:"\0*\0_blocking_delete";b:1;}s:7:"WP_User";O:22:"EE_Belongs_To_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:7:"WP_User";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:0;}s:10:"Extra_Meta";O:24:"EE_Has_Many_Any_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:10:"Extra_Meta";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:0;}s:10:"Change_Log";O:24:"EE_Has_Many_Any_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:10:"Change_Log";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:0;}}s:11:"\0*\0_indexes";a:0:{}s:37:"\0*\0_default_where_conditions_strategy";O:31:"EE_Soft_Delete_Where_Conditions":2:{s:9:"\0*\0_model";r:76;s:29:"\0*\0_where_conditions_provided";a:0:{}}s:26:"\0*\0_model_chain_to_wp_user";s:0:"";s:25:"\0*\0_ignore_where_strategy";b:1;s:13:"\0*\0_caps_slug";s:8:"messages";s:20:"\0*\0_cap_restrictions";a:4:{s:4:"read";a:0:{}s:10:"read_admin";a:0:{}s:4:"edit";a:0:{}s:6:"delete";a:0:{}}s:30:"\0*\0_cap_restriction_generators";a:4:{s:4:"read";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:76;s:10:"\0*\0_action";s:4:"read";}s:10:"read_admin";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:76;s:10:"\0*\0_action";s:4:"read";}s:4:"edit";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:76;s:10:"\0*\0_action";s:4:"edit";}s:6:"delete";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:76;s:10:"\0*\0_action";s:6:"delete";}}s:34:"\0*\0_cap_contexts_to_cap_action_map";a:4:{s:4:"read";s:4:"read";s:10:"read_admin";s:4:"read";s:4:"edit";s:4:"edit";s:6:"delete";s:6:"delete";}s:12:"\0*\0_timezone";N;s:38:"\0EEM_Base\0_cache_foreign_key_to_fields";a:0:{}s:24:"\0EEM_Base\0_cached_fields";a:10:{s:6:"GRP_ID";r:87;s:8:"MTP_name";r:97;s:15:"MTP_description";r:106;s:11:"MTP_user_id";r:115;s:13:"MTP_messenger";r:125;s:16:"MTP_message_type";r:134;s:13:"MTP_is_global";r:143;s:15:"MTP_is_override";r:152;s:11:"MTP_deleted";r:161;s:13:"MTP_is_active";r:170;}s:36:"\0EEM_Base\0_cached_fields_non_db_only";a:10:{s:6:"GRP_ID";r:87;s:8:"MTP_name";r:97;s:15:"MTP_description";r:106;s:11:"MTP_user_id";r:115;s:13:"MTP_messenger";r:125;s:16:"MTP_message_type";r:134;s:13:"MTP_is_global";r:143;s:15:"MTP_is_override";r:152;s:11:"MTP_deleted";r:161;s:13:"MTP_is_active";r:170;}s:28:"\0EEM_Base\0_primary_key_field";r:87;s:25:"\0*\0_has_primary_key_field";b:1;s:17:"\0*\0_wp_core_model";b:0;s:19:"\0*\0_valid_operators";a:28:{s:1:"=";s:1:"=";s:2:"<=";s:2:"<=";s:1:"<";s:1:"<";s:2:">=";s:2:">=";s:1:">";s:1:">";s:2:"!=";s:2:"!=";s:4:"LIKE";s:4:"LIKE";s:4:"like";s:4:"LIKE";s:8:"NOT_LIKE";s:8:"NOT LIKE";s:8:"not_like";s:8:"NOT LIKE";s:8:"NOT LIKE";s:8:"NOT LIKE";s:8:"not like";s:8:"NOT LIKE";s:2:"IN";s:2:"IN";s:2:"in";s:2:"IN";s:6:"NOT_IN";s:6:"NOT IN";s:6:"not_in";s:6:"NOT IN";s:6:"NOT IN";s:6:"NOT IN";s:6:"not in";s:6:"NOT IN";s:7:"between";s:7:"BETWEEN";s:7:"BETWEEN";s:7:"BETWEEN";s:11:"IS_NOT_NULL";s:11:"IS NOT NULL";s:11:"is_not_null";s:11:"IS NOT NULL";s:11:"IS NOT NULL";s:11:"IS NOT NULL";s:11:"is not null";s:11:"IS NOT NULL";s:7:"IS_NULL";s:7:"IS NULL";s:7:"is_null";s:7:"IS NULL";s:7:"IS NULL";s:7:"IS NULL";s:7:"is null";s:7:"IS NULL";}s:22:"\0*\0_in_style_operators";a:2:{i:0;s:2:"IN";i:1;s:6:"NOT IN";}s:27:"\0*\0_between_style_operators";a:1:{i:0;s:7:"BETWEEN";}s:24:"\0*\0_null_style_operators";a:2:{i:0;s:11:"IS NOT NULL";i:1;s:7:"IS NULL";}s:24:"\0*\0_allowed_order_values";a:4:{i:0;s:3:"asc";i:1;s:4:"desc";i:2;s:3:"ASC";i:3;s:4:"DESC";}s:33:"\0EEM_Base\0_logic_query_param_keys";a:6:{i:0;s:3:"not";i:1;s:3:"and";i:2;s:2:"or";i:3;s:3:"NOT";i:4;s:3:"AND";i:5;s:2:"OR";}s:31:"\0EEM_Base\0_allowed_query_params";a:10:{i:0;i:0;i:1;s:5:"limit";i:2;s:8:"order_by";i:3;s:8:"group_by";i:4;s:6:"having";i:5;s:10:"force_join";i:6;s:5:"order";i:7;s:13:"on_join_limit";i:8;s:24:"default_where_conditions";i:9;s:4:"caps";}s:32:"\0EEM_Base\0_valid_wpdb_data_types";a:3:{i:0;s:2:"%d";i:1;s:2:"%s";i:2;s:2:"%f";}s:5:"\0*\0EE";N;s:26:"\0*\0_show_next_x_db_queries";i:0;s:21:"\0*\0_custom_selections";a:0:{}s:14:"\0*\0_entity_map";N;s:40:"\0EEM_Base\0_model_fields_sorted_by_db_col";N;}s:19:"\0*\0_template_fields";a:3:{s:7:"subject";a:7:{s:5:"input";s:4:"text";s:5:"label";s:10:"Page Title";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:9:"css_class";s:10:"large-text";s:6:"format";s:2:"%s";}s:7:"content";s:0:"";s:5:"extra";a:1:{s:7:"content";a:5:{s:4:"main";a:7:{s:5:"input";s:9:"wp_editor";s:5:"label";s:12:"Main Content";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:4:"rows";s:2:"15";}s:10:"event_list";a:8:{s:5:"input";s:9:"wp_editor";s:5:"label";s:12:"[EVENT_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:4:"rows";s:2:"15";s:19:"shortcodes_required";a:1:{i:0;s:12:"[EVENT_LIST]";}}s:13:"attendee_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:15:"[ATTENDEE_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:15:"[ATTENDEE_LIST]";}}s:11:"ticket_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:13:"[TICKET_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:2:"10";s:19:"shortcodes_required";a:1:{i:0;s:13:"[TICKET_LIST]";}}s:13:"datetime_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:15:"[DATETIME_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:2:"10";s:19:"shortcodes_required";a:1:{i:0;s:15:"[DATETIME_LIST]";}}}}}s:17:"\0*\0_template_args";a:0:{}s:24:"\0*\0_test_settings_fields";a:0:{}s:12:"\0*\0_tmp_pack";N;s:13:"\0*\0_variation";N;s:19:"\0*\0_supports_labels";O:8:"stdClass":4:{s:13:"template_pack";s:18:"Template Structure";s:18:"template_variation";s:14:"Template Style";s:25:"template_pack_description";s:72:"Template Structure options are bundled structural changes for templates.";s:30:"template_variation_description";s:207:"These are different styles to choose from for the selected template structure.  Usually these affect things like font style, color, borders etc.  In some cases the styles will also make minor layout changes.";}s:25:"\0*\0_incoming_message_type";N;s:19:"activate_on_install";b:1;s:4:"name";s:3:"pdf";s:11:"description";s:67:"This messenger is used for generating a pdf version of the message.";s:22:"\0*\0_messages_item_type";s:9:"messenger";s:5:"label";a:2:{s:8:"singular";s:3:"PDF";s:6:"plural";s:4:"PDFs";}s:22:"admin_registered_pages";a:1:{s:11:"events_edit";b:0;}s:25:"\0*\0_admin_settings_fields";a:0:{}s:27:"\0*\0_existing_admin_settings";N;s:20:"\0*\0_valid_shortcodes";a:0:{}}}s:4:"html";a:2:{s:3:"obj";O:17:"EE_Html_messenger":22:{s:11:"\0*\0_content";N;s:11:"\0*\0_subject";N;s:25:"\0*\0_default_message_types";a:2:{i:0;s:7:"receipt";i:1;s:7:"invoice";}s:23:"\0*\0_valid_message_types";a:2:{i:0;s:7:"receipt";i:1;s:7:"invoice";}s:20:"\0*\0_validator_config";a:12:{s:7:"subject";a:1:{s:10:"shortcodes";a:4:{i:0;s:12:"organization";i:1;s:28:"primary_registration_details";i:2;s:5:"email";i:3;s:11:"transaction";}}s:7:"content";a:1:{s:10:"shortcodes";a:11:{i:0;s:12:"organization";i:1;s:25:"primary_registration_list";i:2;s:28:"primary_registration_details";i:3;s:5:"email";i:4;s:11:"transaction";i:5;s:10:"event_list";i:6;s:12:"payment_list";i:7;s:5:"venue";i:8;s:14:"line_item_list";i:9;s:9:"messenger";i:10;s:11:"ticket_list";}}s:10:"event_list";a:2:{s:10:"shortcodes";a:6:{i:0;s:5:"event";i:1;s:11:"ticket_list";i:2;s:5:"venue";i:3;s:28:"primary_registration_details";i:4;s:25:"primary_registration_list";i:5;s:12:"event_author";}s:8:"required";a:1:{i:0;s:12:"[EVENT_LIST]";}}s:11:"ticket_list";a:2:{s:10:"shortcodes";a:6:{i:0;s:13:"attendee_list";i:1;s:6:"ticket";i:2;s:13:"datetime_list";i:3;s:28:"primary_registration_details";i:4;s:14:"line_item_list";i:5;s:5:"venue";}s:8:"required";a:1:{i:0;s:13:"[TICKET_LIST]";}}s:23:"ticket_line_item_no_pms";a:2:{s:10:"shortcodes";a:2:{i:0;s:9:"line_item";i:1;s:6:"ticket";}s:8:"required";a:1:{i:0;s:23:"[TICKET_LINE_ITEM_LIST]";}}s:20:"ticket_line_item_pms";a:2:{s:10:"shortcodes";a:3:{i:0;s:9:"line_item";i:1;s:6:"ticket";i:2;s:14:"line_item_list";}s:8:"required";a:1:{i:0;s:23:"[TICKET_LINE_ITEM_LIST]";}}s:29:"price_modifier_line_item_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:9:"line_item";}s:8:"required";a:1:{i:0;s:31:"[PRICE_MODIFIER_LINE_ITEM_LIST]";}}s:13:"datetime_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:8:"datetime";}s:8:"required";a:1:{i:0;s:15:"[DATETIME_LIST]";}}s:13:"attendee_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:8:"attendee";}s:8:"required";a:1:{i:0;s:15:"[ATTENDEE_LIST]";}}s:18:"tax_line_item_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:9:"line_item";}s:8:"required";a:1:{i:0;s:20:"[TAX_LINE_ITEM_LIST]";}}s:25:"additional_line_item_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:9:"line_item";}s:8:"required";a:1:{i:0;s:27:"[ADDITIONAL_LINE_ITEM_LIST]";}}s:12:"payment_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:7:"payment";}s:8:"required";a:1:{i:0;s:16:"[PAYMENT_LIST_*]";}}}s:12:"\0*\0_EEM_data";O:26:"EEM_Message_Template_Group":34:{s:50:"\0EEM_Base\0_values_already_prepared_by_model_object";i:0;s:16:"\0*\0singular_item";s:22:"Message Template Group";s:14:"\0*\0plural_item";s:23:"Message Template Groups";s:10:"\0*\0_tables";a:1:{s:22:"Message_Template_Group";O:16:"EE_Primary_Table":3:{s:11:"_table_name";s:29:"wp_esp_message_template_group";s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"\0*\0_pk_column";s:6:"GRP_ID";}}s:10:"\0*\0_fields";a:1:{s:22:"Message_Template_Group";a:10:{s:6:"GRP_ID";O:24:"EE_Primary_Key_Int_Field":9:{s:25:"\0*\0_model_name_pointed_to";s:22:"Message_Template_Group";s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:6:"GRP_ID";s:5:"_name";s:6:"GRP_ID";s:9:"_nicename";s:25:"Message Template Group ID";s:9:"_nullable";b:0;s:14:"_default_value";i:0;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:8:"MTP_name";O:19:"EE_Plain_Text_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:8:"MTP_name";s:5:"_name";s:8:"MTP_name";s:9:"_nicename";s:30:"The name of the temlpate group";s:9:"_nullable";b:0;s:14:"_default_value";s:0:"";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:15:"MTP_description";O:20:"EE_Simple_HTML_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:15:"MTP_description";s:5:"_name";s:15:"MTP_description";s:9:"_nicename";s:40:"A brief description about this template.";s:9:"_nullable";b:0;s:14:"_default_value";s:0:"";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:11:"MTP_user_id";O:16:"EE_WP_User_Field":9:{s:25:"\0*\0_model_name_pointed_to";s:7:"WP_User";s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:11:"MTP_user_id";s:5:"_name";s:11:"MTP_user_id";s:9:"_nicename";s:19:"Template Creator ID";s:9:"_nullable";b:0;s:14:"_default_value";N;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:13:"MTP_messenger";O:19:"EE_Plain_Text_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:13:"MTP_messenger";s:5:"_name";s:13:"MTP_messenger";s:9:"_nicename";s:27:"Messenger Used for Template";s:9:"_nullable";b:0;s:14:"_default_value";s:5:"email";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:16:"MTP_message_type";O:19:"EE_Plain_Text_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:16:"MTP_message_type";s:5:"_name";s:16:"MTP_message_type";s:9:"_nicename";s:12:"Message Type";s:9:"_nullable";b:0;s:14:"_default_value";s:12:"registration";s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:13:"MTP_is_global";O:16:"EE_Boolean_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:13:"MTP_is_global";s:5:"_name";s:13:"MTP_is_global";s:9:"_nicename";s:43:"Flag indicating if Template Group is Global";s:9:"_nullable";b:0;s:14:"_default_value";b:1;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:15:"MTP_is_override";O:16:"EE_Boolean_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:15:"MTP_is_override";s:5:"_name";s:15:"MTP_is_override";s:9:"_nicename";s:105:"Flag indicating if Template Group overrides any other Templates for the messenger/messagetype combination";s:9:"_nullable";b:0;s:14:"_default_value";b:0;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:11:"MTP_deleted";O:21:"EE_Trashed_Flag_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:11:"MTP_deleted";s:5:"_name";s:11:"MTP_deleted";s:9:"_nicename";s:45:"Flag indicating whether this has been trashed";s:9:"_nullable";b:0;s:14:"_default_value";b:0;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}s:13:"MTP_is_active";O:16:"EE_Boolean_Field":8:{s:12:"_table_alias";s:22:"Message_Template_Group";s:13:"_table_column";s:13:"MTP_is_active";s:5:"_name";s:13:"MTP_is_active";s:9:"_nicename";s:48:"Flag indicating whether template group is active";s:9:"_nullable";b:0;s:14:"_default_value";b:1;s:13:"_other_config";N;s:14:"\0*\0_model_name";s:22:"Message_Template_Group";}}}s:19:"\0*\0_model_relations";a:5:{s:16:"Message_Template";O:20:"EE_Has_Many_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:16:"Message_Template";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:1;}s:5:"Event";O:17:"EE_HABTM_Relation":7:{s:38:"\0EE_HABTM_Relation\0_joining_model_name";s:22:"Event_Message_Template";s:54:"\0EE_HABTM_Relation\0_model_relation_chain_to_join_model";N;s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:5:"Event";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";s:0:"";s:19:"\0*\0_blocking_delete";b:1;}s:7:"WP_User";O:22:"EE_Belongs_To_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:7:"WP_User";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:0;}s:10:"Extra_Meta";O:24:"EE_Has_Many_Any_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:10:"Extra_Meta";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:0;}s:10:"Change_Log";O:24:"EE_Has_Many_Any_Relation":5:{s:40:"\0EE_Model_Relation_Base\0_this_model_name";s:22:"Message_Template_Group";s:41:"\0EE_Model_Relation_Base\0_other_model_name";s:10:"Change_Log";s:12:"\0*\0_timezone";N;s:33:"\0*\0_blocking_delete_error_message";N;s:19:"\0*\0_blocking_delete";b:0;}}s:11:"\0*\0_indexes";a:0:{}s:37:"\0*\0_default_where_conditions_strategy";O:31:"EE_Soft_Delete_Where_Conditions":2:{s:9:"\0*\0_model";r:524;s:29:"\0*\0_where_conditions_provided";a:0:{}}s:26:"\0*\0_model_chain_to_wp_user";s:0:"";s:25:"\0*\0_ignore_where_strategy";b:1;s:13:"\0*\0_caps_slug";s:8:"messages";s:20:"\0*\0_cap_restrictions";a:4:{s:4:"read";a:0:{}s:10:"read_admin";a:0:{}s:4:"edit";a:0:{}s:6:"delete";a:0:{}}s:30:"\0*\0_cap_restriction_generators";a:4:{s:4:"read";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:524;s:10:"\0*\0_action";s:4:"read";}s:10:"read_admin";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:524;s:10:"\0*\0_action";s:4:"read";}s:4:"edit";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:524;s:10:"\0*\0_action";s:4:"edit";}s:6:"delete";O:31:"EE_Restriction_Generator_Global":4:{s:21:"\0*\0_global_field_name";s:13:"MTP_is_global";s:30:"\0*\0_cap_restrictions_generated";b:0;s:9:"\0*\0_model";r:524;s:10:"\0*\0_action";s:6:"delete";}}s:34:"\0*\0_cap_contexts_to_cap_action_map";a:4:{s:4:"read";s:4:"read";s:10:"read_admin";s:4:"read";s:4:"edit";s:4:"edit";s:6:"delete";s:6:"delete";}s:12:"\0*\0_timezone";N;s:38:"\0EEM_Base\0_cache_foreign_key_to_fields";a:0:{}s:24:"\0EEM_Base\0_cached_fields";a:10:{s:6:"GRP_ID";r:535;s:8:"MTP_name";r:545;s:15:"MTP_description";r:554;s:11:"MTP_user_id";r:563;s:13:"MTP_messenger";r:573;s:16:"MTP_message_type";r:582;s:13:"MTP_is_global";r:591;s:15:"MTP_is_override";r:600;s:11:"MTP_deleted";r:609;s:13:"MTP_is_active";r:618;}s:36:"\0EEM_Base\0_cached_fields_non_db_only";a:10:{s:6:"GRP_ID";r:535;s:8:"MTP_name";r:545;s:15:"MTP_description";r:554;s:11:"MTP_user_id";r:563;s:13:"MTP_messenger";r:573;s:16:"MTP_message_type";r:582;s:13:"MTP_is_global";r:591;s:15:"MTP_is_override";r:600;s:11:"MTP_deleted";r:609;s:13:"MTP_is_active";r:618;}s:28:"\0EEM_Base\0_primary_key_field";r:535;s:25:"\0*\0_has_primary_key_field";b:1;s:17:"\0*\0_wp_core_model";b:0;s:19:"\0*\0_valid_operators";a:28:{s:1:"=";s:1:"=";s:2:"<=";s:2:"<=";s:1:"<";s:1:"<";s:2:">=";s:2:">=";s:1:">";s:1:">";s:2:"!=";s:2:"!=";s:4:"LIKE";s:4:"LIKE";s:4:"like";s:4:"LIKE";s:8:"NOT_LIKE";s:8:"NOT LIKE";s:8:"not_like";s:8:"NOT LIKE";s:8:"NOT LIKE";s:8:"NOT LIKE";s:8:"not like";s:8:"NOT LIKE";s:2:"IN";s:2:"IN";s:2:"in";s:2:"IN";s:6:"NOT_IN";s:6:"NOT IN";s:6:"not_in";s:6:"NOT IN";s:6:"NOT IN";s:6:"NOT IN";s:6:"not in";s:6:"NOT IN";s:7:"between";s:7:"BETWEEN";s:7:"BETWEEN";s:7:"BETWEEN";s:11:"IS_NOT_NULL";s:11:"IS NOT NULL";s:11:"is_not_null";s:11:"IS NOT NULL";s:11:"IS NOT NULL";s:11:"IS NOT NULL";s:11:"is not null";s:11:"IS NOT NULL";s:7:"IS_NULL";s:7:"IS NULL";s:7:"is_null";s:7:"IS NULL";s:7:"IS NULL";s:7:"IS NULL";s:7:"is null";s:7:"IS NULL";}s:22:"\0*\0_in_style_operators";a:2:{i:0;s:2:"IN";i:1;s:6:"NOT IN";}s:27:"\0*\0_between_style_operators";a:1:{i:0;s:7:"BETWEEN";}s:24:"\0*\0_null_style_operators";a:2:{i:0;s:11:"IS NOT NULL";i:1;s:7:"IS NULL";}s:24:"\0*\0_allowed_order_values";a:4:{i:0;s:3:"asc";i:1;s:4:"desc";i:2;s:3:"ASC";i:3;s:4:"DESC";}s:33:"\0EEM_Base\0_logic_query_param_keys";a:6:{i:0;s:3:"not";i:1;s:3:"and";i:2;s:2:"or";i:3;s:3:"NOT";i:4;s:3:"AND";i:5;s:2:"OR";}s:31:"\0EEM_Base\0_allowed_query_params";a:10:{i:0;i:0;i:1;s:5:"limit";i:2;s:8:"order_by";i:3;s:8:"group_by";i:4;s:6:"having";i:5;s:10:"force_join";i:6;s:5:"order";i:7;s:13:"on_join_limit";i:8;s:24:"default_where_conditions";i:9;s:4:"caps";}s:32:"\0EEM_Base\0_valid_wpdb_data_types";a:3:{i:0;s:2:"%d";i:1;s:2:"%s";i:2;s:2:"%f";}s:5:"\0*\0EE";N;s:26:"\0*\0_show_next_x_db_queries";i:0;s:21:"\0*\0_custom_selections";a:0:{}s:14:"\0*\0_entity_map";N;s:40:"\0EEM_Base\0_model_fields_sorted_by_db_col";N;}s:19:"\0*\0_template_fields";a:3:{s:7:"subject";a:7:{s:5:"input";s:4:"text";s:5:"label";s:10:"Page Title";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:9:"css_class";s:10:"large-text";s:6:"format";s:2:"%s";}s:7:"content";s:0:"";s:5:"extra";a:1:{s:7:"content";a:11:{s:4:"main";a:7:{s:5:"input";s:9:"wp_editor";s:5:"label";s:12:"Main Content";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:4:"rows";s:2:"15";}s:10:"event_list";a:8:{s:5:"input";s:9:"wp_editor";s:5:"label";s:12:"[EVENT_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:4:"rows";s:2:"15";s:19:"shortcodes_required";a:1:{i:0;s:12:"[EVENT_LIST]";}}s:11:"ticket_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:13:"[TICKET_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:2:"10";s:19:"shortcodes_required";a:1:{i:0;s:13:"[TICKET_LIST]";}}s:23:"ticket_line_item_no_pms";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:73:"[TICKET_LINE_ITEM_LIST] <br>Ticket Line Item List with no Price Modifiers";s:4:"type";s:6:"string";s:8:"required";b:0;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:23:"[TICKET_LINE_ITEM_LIST]";}}s:20:"ticket_line_item_pms";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:70:"[TICKET_LINE_ITEM_LIST] <br>Ticket Line Item List with Price Modifiers";s:4:"type";s:6:"string";s:8:"required";b:0;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:23:"[TICKET_LINE_ITEM_LIST]";}}s:29:"price_modifier_line_item_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:31:"[PRICE_MODIFIER_LINE_ITEM_LIST]";s:4:"type";s:6:"string";s:8:"required";b:0;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:31:"[PRICE_MODIFIER_LINE_ITEM_LIST]";}}s:13:"datetime_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:15:"[DATETIME_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:15:"[DATETIME_LIST]";}}s:13:"attendee_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:15:"[ATTENDEE_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:15:"[ATTENDEE_LIST]";}}s:18:"tax_line_item_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:20:"[TAX_LINE_ITEM_LIST]";s:4:"type";s:6:"string";s:8:"required";b:0;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:20:"[TAX_LINE_ITEM_LIST]";}}s:25:"additional_line_item_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:27:"[ADDITIONAL_LINE_ITEM_LIST]";s:4:"type";s:6:"string";s:8:"required";b:0;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:27:"[ADDITIONAL_LINE_ITEM_LIST]";}}s:12:"payment_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:14:"[PAYMENT_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:16:"[PAYMENT_LIST_*]";}}}}}s:17:"\0*\0_template_args";a:0:{}s:24:"\0*\0_test_settings_fields";a:0:{}s:12:"\0*\0_tmp_pack";N;s:13:"\0*\0_variation";N;s:19:"\0*\0_supports_labels";O:8:"stdClass":4:{s:13:"template_pack";s:18:"Template Structure";s:18:"template_variation";s:14:"Template Style";s:25:"template_pack_description";s:72:"Template Structure options are bundled structural changes for templates.";s:30:"template_variation_description";s:207:"These are different styles to choose from for the selected template structure.  Usually these affect things like font style, color, borders etc.  In some cases the styles will also make minor layout changes.";}s:25:"\0*\0_incoming_message_type";N;s:19:"activate_on_install";b:1;s:4:"name";s:4:"html";s:11:"description";s:58:"This messenger outputs a message to a browser for display.";s:22:"\0*\0_messages_item_type";s:9:"messenger";s:5:"label";a:2:{s:8:"singular";s:4:"html";s:6:"plural";s:4:"html";}s:22:"admin_registered_pages";a:1:{s:11:"events_edit";b:1;}s:25:"\0*\0_admin_settings_fields";a:0:{}s:27:"\0*\0_existing_admin_settings";a:1:{s:18:"html-message_types";a:2:{s:7:"receipt";a:1:{s:8:"settings";a:0:{}}s:7:"invoice";a:1:{s:8:"settings";a:0:{}}}}s:20:"\0*\0_valid_shortcodes";a:0:{}}s:8:"settings";a:1:{s:18:"html-message_types";a:2:{s:7:"receipt";a:1:{s:8:"settings";a:0:{}}s:7:"invoice";a:1:{s:8:"settings";a:0:{}}}}}s:5:"email";a:2:{s:3:"obj";O:18:"EE_Email_messenger":24:{s:6:"\0*\0_to";N;s:8:"\0*\0_from";N;s:11:"\0*\0_subject";N;s:11:"\0*\0_content";N;s:25:"\0*\0_default_message_types";a:5:{i:0;s:7:"payment";i:1;s:14:"payment_refund";i:2;s:12:"registration";i:3;s:25:"not_approved_registration";i:4;s:16:"pending_approval";}s:23:"\0*\0_valid_message_types";a:10:{i:0;s:7:"payment";i:1;s:12:"registration";i:2;s:25:"not_approved_registration";i:3;s:21:"declined_registration";i:4;s:22:"cancelled_registration";i:5;s:16:"pending_approval";i:6;s:20:"registration_summary";i:7;s:16:"payment_reminder";i:8;s:16:"payment_declined";i:9;s:14:"payment_refund";}s:20:"\0*\0_validator_config";a:8:{s:2:"to";a:2:{s:10:"shortcodes";a:4:{i:0;s:5:"email";i:1;s:12:"event_author";i:2;s:28:"primary_registration_details";i:3;s:17:"recipient_details";}s:4:"type";s:5:"email";}s:4:"from";a:2:{s:10:"shortcodes";a:4:{i:0;s:5:"email";i:1;s:12:"event_author";i:2;s:28:"primary_registration_details";i:3;s:17:"recipient_details";}s:4:"type";s:5:"email";}s:7:"subject";a:1:{s:10:"shortcodes";a:5:{i:0;s:12:"organization";i:1;s:28:"primary_registration_details";i:2;s:12:"event_author";i:3;s:28:"primary_registration_details";i:4;s:17:"recipient_details";}}s:7:"content";a:1:{s:10:"shortcodes";a:11:{i:0;s:10:"event_list";i:1;s:13:"attendee_list";i:2;s:11:"ticket_list";i:3;s:12:"organization";i:4;s:28:"primary_registration_details";i:5;s:25:"primary_registration_list";i:6;s:12:"event_author";i:7;s:17:"recipient_details";i:8;s:14:"recipient_list";i:9;s:11:"transaction";i:10;s:9:"messenger";}}s:13:"attendee_list";a:2:{s:10:"shortcodes";a:3:{i:0;s:8:"attendee";i:1;s:10:"event_list";i:2;s:11:"ticket_list";}s:8:"required";a:1:{i:0;s:15:"[ATTENDEE_LIST]";}}s:10:"event_list";a:2:{s:10:"shortcodes";a:11:{i:0;s:5:"event";i:1;s:13:"attendee_list";i:2;s:11:"ticket_list";i:3;s:5:"venue";i:4;s:13:"datetime_list";i:5;s:8:"attendee";i:6;s:28:"primary_registration_details";i:7;s:25:"primary_registration_list";i:8;s:12:"event_author";i:9;s:17:"recipient_details";i:10;s:14:"recipient_list";}s:8:"required";a:1:{i:0;s:12:"[EVENT_LIST]";}}s:11:"ticket_list";a:2:{s:10:"shortcodes";a:6:{i:0;s:10:"event_list";i:1;s:13:"attendee_list";i:2;s:6:"ticket";i:3;s:13:"datetime_list";i:4;s:28:"primary_registration_details";i:5;s:17:"recipient_details";}s:8:"required";a:1:{i:0;s:13:"[TICKET_LIST]";}}s:13:"datetime_list";a:2:{s:10:"shortcodes";a:1:{i:0;s:8:"datetime";}s:8:"required";a:1:{i:0;s:15:"[DATETIME_LIST]";}}}s:12:"\0*\0_EEM_data";r:76;s:19:"\0*\0_template_fields";a:5:{s:2:"to";a:7:{s:5:"input";s:4:"text";s:5:"label";s:2:"To";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:9:"css_class";s:10:"large-text";s:6:"format";s:2:"%s";}s:4:"from";a:7:{s:5:"input";s:4:"text";s:5:"label";s:4:"From";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:9:"css_class";s:10:"large-text";s:6:"format";s:2:"%s";}s:7:"subject";a:7:{s:5:"input";s:4:"text";s:5:"label";s:7:"Subject";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:9:"css_class";s:10:"large-text";s:6:"format";s:2:"%s";}s:7:"content";s:0:"";s:5:"extra";a:1:{s:7:"content";a:5:{s:4:"main";a:7:{s:5:"input";s:9:"wp_editor";s:5:"label";s:12:"Main Content";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:4:"rows";s:2:"15";}s:10:"event_list";a:8:{s:5:"input";s:9:"wp_editor";s:5:"label";s:12:"[EVENT_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:4:"rows";s:2:"15";s:19:"shortcodes_required";a:1:{i:0;s:12:"[EVENT_LIST]";}}s:13:"attendee_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:15:"[ATTENDEE_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:1:"5";s:19:"shortcodes_required";a:1:{i:0;s:15:"[ATTENDEE_LIST]";}}s:11:"ticket_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:13:"[TICKET_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:2:"10";s:19:"shortcodes_required";a:1:{i:0;s:13:"[TICKET_LIST]";}}s:13:"datetime_list";a:9:{s:5:"input";s:8:"textarea";s:5:"label";s:15:"[DATETIME_LIST]";s:4:"type";s:6:"string";s:8:"required";b:1;s:10:"validation";b:1;s:6:"format";s:2:"%s";s:9:"css_class";s:10:"large-text";s:4:"rows";s:2:"10";s:19:"shortcodes_required";a:1:{i:0;s:15:"[DATETIME_LIST]";}}}}}s:17:"\0*\0_template_args";a:0:{}s:24:"\0*\0_test_settings_fields";a:2:{s:2:"to";a:8:{s:5:"input";s:4:"text";s:5:"label";s:2:"To";s:4:"type";s:5:"email";s:8:"required";b:1;s:10:"validation";b:1;s:9:"css_class";s:10:"large-text";s:6:"format";s:2:"%s";s:7:"default";s:21:"info@asiacentre.co.th";}s:7:"subject";a:9:{s:5:"input";s:6:"hidden";s:5:"label";s:0:"";s:4:"type";s:6:"string";s:8:"required";b:0;s:10:"validation";b:0;s:6:"format";s:2:"%s";s:5:"value";s:32:"Test email sent from ASIA CENTRE";s:7:"default";s:0:"";s:9:"css_class";s:0:"";}}s:12:"\0*\0_tmp_pack";N;s:13:"\0*\0_variation";N;s:19:"\0*\0_supports_labels";O:8:"stdClass":4:{s:13:"template_pack";s:18:"Template Structure";s:18:"template_variation";s:14:"Template Style";s:25:"template_pack_description";s:72:"Template Structure options are bundled structural changes for templates.";s:30:"template_variation_description";s:207:"These are different styles to choose from for the selected template structure.  Usually these affect things like font style, color, borders etc.  In some cases the styles will also make minor layout changes.";}s:25:"\0*\0_incoming_message_type";N;s:19:"activate_on_install";b:1;s:4:"name";s:5:"email";s:11:"description";s:115:"This messenger delivers messages via email using the built-in <code>wp_mail</code> function included with WordPress";s:22:"\0*\0_messages_item_type";s:9:"messenger";s:5:"label";a:2:{s:8:"singular";s:5:"email";s:6:"plural";s:6:"emails";}s:22:"admin_registered_pages";a:1:{s:11:"events_edit";b:1;}s:25:"\0*\0_admin_settings_fields";a:0:{}s:27:"\0*\0_existing_admin_settings";N;s:20:"\0*\0_valid_shortcodes";a:2:{s:2:"to";a:4:{i:0;s:5:"email";i:1;s:12:"event_author";i:2;s:28:"primary_registration_details";i:3;s:17:"recipient_details";}s:4:"from";a:4:{i:0;s:5:"email";i:1;s:12:"event_author";i:2;s:28:"primary_registration_details";i:3;s:17:"recipient_details";}}}s:8:"settings";a:1:{s:19:"email-message_types";a:5:{s:7:"payment";a:1:{s:8:"settings";a:0:{}}s:14:"payment_refund";a:1:{s:8:"settings";a:0:{}}s:12:"registration";a:1:{s:8:"settings";a:0:{}}s:25:"not_approved_registration";a:1:{s:8:"settings";a:0:{}}s:16:"pending_approval";a:1:{s:8:"settings";a:0:{}}}}}}', 'yes'),
(21674, 'ee_has_activated_messenger', 'a:2:{s:4:"html";a:2:{i:0;s:7:"receipt";i:1;s:7:"invoice";}s:5:"email";a:5:{i:0;s:7:"payment";i:1;s:14:"payment_refund";i:2;s:12:"registration";i:3;s:25:"not_approved_registration";i:4;s:16:"pending_approval";}}', 'yes'),
(21675, 'ee_no_ticket_prices', 'a:0:{}', 'no'),
(21684, 'duplicate_post_copytitle', '1', 'yes'),
(21685, 'duplicate_post_copydate', '', 'yes'),
(21686, 'duplicate_post_copystatus', '', 'yes'),
(21687, 'duplicate_post_copyslug', '1', 'yes'),
(21688, 'duplicate_post_copyexcerpt', '1', 'yes'),
(21689, 'duplicate_post_copycontent', '1', 'yes'),
(21690, 'duplicate_post_copythumbnail', '1', 'yes'),
(21691, 'duplicate_post_copytemplate', '1', 'yes'),
(21692, 'duplicate_post_copyformat', '1', 'yes'),
(21693, 'duplicate_post_copyauthor', '', 'yes'),
(21694, 'duplicate_post_copypassword', '', 'yes'),
(21695, 'duplicate_post_copyattachments', '', 'yes'),
(21696, 'duplicate_post_copychildren', '', 'yes'),
(21697, 'duplicate_post_copycomments', '', 'yes'),
(21698, 'duplicate_post_copymenuorder', '1', 'yes'),
(21699, 'duplicate_post_taxonomies_blacklist', '', 'yes'),
(21700, 'duplicate_post_blacklist', '', 'yes'),
(21701, 'duplicate_post_types_enabled', 'a:7:{i:0;s:4:"post";i:1;s:4:"page";i:2;s:8:"hom_page";i:3;s:5:"event";i:4;s:7:"gallery";i:5;s:6:"slider";i:6;s:5:"chunk";}', 'yes'),
(21702, 'duplicate_post_show_row', '1', 'yes'),
(21703, 'duplicate_post_show_adminbar', '1', 'yes'),
(21704, 'duplicate_post_show_submitbox', '1', 'yes'),
(21705, 'duplicate_post_show_bulkactions', '', 'yes'),
(21706, 'duplicate_post_version', '3.1.2', 'no'),
(21707, 'duplicate_post_show_notice', '', 'no'),
(21708, 'duplicate_post_title_prefix', '', 'yes'),
(21709, 'duplicate_post_title_suffix', '', 'yes'),
(21710, 'duplicate_post_increase_menu_order_by', '', 'yes'),
(21711, 'duplicate_post_roles', 'a:2:{i:0;s:13:"administrator";i:1;s:6:"editor";}', 'yes'),
(21716, '_transient_timeout_feed_dcef1f8abdbc2ff3e2274fce36e6f763', '1482941691', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(21717, '_transient_feed_dcef1f8abdbc2ff3e2274fce36e6f763', '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:34:"\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:81:"Event Espresso – WordPress Event Registration Calendar Ticketing Manager 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:25:"https://eventespresso.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:11:"description";a:1:{i:0;a:5:{s:4:"data";s:30:"An Event Manager 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:13:"lastBuildDate";a:1:{i:0;a:5:{s:4:"data";s:31:"Wed, 28 Dec 2016 03:49: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: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:28:"https://wordpress.org/?v=4.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:"item";a:5:{i:0;a:6:{s:4:"data";s:45:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:35:"Attendee Mover Add-on 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:"link";a:1:{i:0;a:5:{s:4:"data";s:116:"http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/FVrul1ft-LY/";s: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:"comments";a:1:{i:0;a:5:{s:4:"data";s:78:"https://eventespresso.com/2016/10/attendee-mover-add-on-now-available/#respond";s: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, 11 Oct 2016 11: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:8:"category";a:4:{i:0;a:5:{s:4:"data";s:6:"Addons";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:"EE4";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:20:"Ticketing Management";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:5:{s:4:"data";s:19:"Attendee Management";s: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:"https://eventespresso.com/?p=219368";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:345:"We&#8217;re happy to present you with the Attendee Mover add-on for Event Espresso 4. With this add-on, you can easily shaving a few minutes off the current attendee reassignment process! Mistakes happen and sometimes you may have people register for the wrong event&#8230;or if there are multiple tickets for the event, they may purchase the...";s: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:"Seth Shoultes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:75:"https://eventespresso.com/2016/10/attendee-mover-add-on-now-available/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:70:"https://eventespresso.com/2016/10/attendee-mover-add-on-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:"";}}}}}i:1;a:6:{s:4:"data";s:51:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:32:"Website Weekend Los Angeles 2016";s: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:116:"http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/fCqjdNOagj8/";s: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:"comments";a:1:{i:0;a:5:{s:4:"data";s:75:"https://eventespresso.com/2016/10/website-weekend-los-angeles-2016/#respond";s: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, 03 Oct 2016 16:11: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:8:"category";a:6:{i:0;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:1;a:5:{s:4:"data";s:9:"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:"";}i:2;a:5:{s:4:"data";s:10:"non-profit";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:5:{s:4:"data";s:11:"Sponsorship";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:5:{s:4:"data";s:9:"nonprofit";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:5:{s:4:"data";s:7:"sponsor";s: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:"https://eventespresso.com/?p=218594";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:349:"During Connect Week 2016, Website Weekend LA will bring in non-profits and organizations doing great work in the local Los Angeles, California community and pair them up with teams of digital professionals. Then over the course of a weekend, these teams will collaborate and build something amazing for their organization that will help them grow...";s: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:"Seth Shoultes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:72:"https://eventespresso.com/2016/10/website-weekend-los-angeles-2016/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:67:"https://eventespresso.com/2016/10/website-weekend-los-angeles-2016/";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:48:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:30:"WordCamp Phoenix, Arizona 2016";s: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:116:"http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/beIOet5SbzM/";s: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:"comments";a:1:{i:0;a:5:{s:4:"data";s:64:"https://eventespresso.com/2016/09/wordcamp-phoenix-2016/#respond";s: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 Sep 2016 18:23:37 +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:5:{i:0;a:5:{s:4:"data";s:9:"Home Page";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:"";}i:3;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:"";}i:4;a:5:{s:4:"data";s:7:"phoenix";s: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:"https://eventespresso.com/?p=218246";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:304:"Hey Event Espresso users in Arizona! If you want to learn more about WordPress, meet great new people, and have a great time while doing so, then WordCamp Phoenix is the place to be. You might even get to meet some of the biggest names in the WordPress community, such as Aaron Campbell, Alex Vasquez,...";s: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:"Seth Shoultes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:61:"https://eventespresso.com/2016/09/wordcamp-phoenix-2016/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:56:"https://eventespresso.com/2016/09/wordcamp-phoenix-2016/";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:45:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:28:"WordCamp Salt Lake City 2016";s: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:116:"http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/2AgWNJ-_MPY/";s: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:"comments";a:1:{i:0;a:5:{s:4:"data";s:71:"https://eventespresso.com/2016/09/wordcamp-salt-lake-city-2016/#respond";s: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 Sep 2016 18:09: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:4:{i:0;a:5:{s:4:"data";s:9:"Home Page";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:"";}i:3;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:35:"https://eventespresso.com/?p=216238";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:290:"Hey Event Espresso users in Utah! WordCamp Salt Lake City is happening this weekend. If you want to learn more about WordPress, meet new people, and have a great time while doing so, then WordCamp Salt Lake City is the place to be. You might even get to meet some of the biggest names in...";s: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:"Seth Shoultes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:68:"https://eventespresso.com/2016/09/wordcamp-salt-lake-city-2016/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:63:"https://eventespresso.com/2016/09/wordcamp-salt-lake-city-2016/";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:54:"\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:5:{s:0:"";a:7:{s:5:"title";a:1:{i:0;a:5:{s:4:"data";s:44:"Event App Customization Add-on 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:"link";a:1:{i:0;a:5:{s:4:"data";s:116:"http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/7e-Vw77AERk/";s: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:"comments";a:1:{i:0;a:5:{s:4:"data";s:66:"https://eventespresso.com/2016/08/event-app-customization/#respond";s: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, 29 Aug 2016 12:00:40 +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:7:{i:0;a:5:{s:4:"data";s:6:"Addons";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:"EE4";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:6:"mobile";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:5:{s:4:"data";s:3:"app";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:5:{s:4:"data";s:9:"Event App";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:5:{s:4:"data";s:11:"mobile apps";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:5:{s:4:"data";s:9:"event app";s: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:"https://eventespresso.com/?p=213569";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:"We&#8217;re excited to share with you new details on a powerful new add-on that has emerged as one of this year’s coolest features – Event App Customization – Only $69.95, for a limited time! This is great news for event managers wanting to show their own logo in the Event Espresso event app. With our...";s: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:"Seth Shoultes";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:36:"http://wellformedweb.org/CommentAPI/";a:1:{s:10:"commentRss";a:1:{i:0;a:5:{s:4:"data";s:63:"https://eventespresso.com/2016/08/event-app-customization/feed/";s:7:"attribs";a:0:{}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:38:"http://purl.org/rss/1.0/modules/slash/";a:1:{s:8:"comments";a:1:{i:0;a:5:{s:4:"data";s:1:"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:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:8:"origLink";a:1:{i:0;a:5:{s:4:"data";s:58:"https://eventespresso.com/2016/08/event-app-customization/";s:7:"attribs";a:0:{}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:6:"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: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:27:"http://www.w3.org/2005/Atom";a:1:{s:4:"link";a:2:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:3:{s:3:"rel";s:4:"self";s:4:"type";s:19:"application/rss+xml";s:4:"href";s:97:"http://feeds.feedburner.com/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin";}}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:0:"";s:7:"attribs";a:1:{s:0:"";a:2:{s:3:"rel";s:3:"hub";s:4:"href";s:32:"http://pubsubhubbub.appspot.com/";}}s:8:"xml_base";s:0:"";s:17:"xml_base_explicit";b:0;s:8:"xml_lang";s:0:"";}}}s:42:"http://rssnamespace.org/feedburner/ext/1.0";a:1:{s:4:"info";a:1:{i:0;a:5:{s:4:"data";s:0:"";s:7:"attribs";a:1:{s:0:"";a:1:{s:3:"uri";s:69:"eventespressowordpresseventregistrationcalendarticketingmanagerplugin";}}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:10:{s:12:"content-type";s:23:"text/xml; charset=UTF-8";s:4:"etag";s:27:"Bp+JjYkpeqQICQg8p+5udJ+/Ys4";s:13:"last-modified";s:29:"Wed, 28 Dec 2016 04:10:33 GMT";s:16:"content-encoding";s:4:"gzip";s:4:"date";s:29:"Wed, 28 Dec 2016 04:14:51 GMT";s:7:"expires";s:29:"Wed, 28 Dec 2016 04:14:51 GMT";s:13:"cache-control";s:18:"private, max-age=0";s:22:"x-content-type-options";s:7:"nosniff";s:16:"x-xss-protection";s:13:"1; mode=block";s:6:"server";s:3:"GSE";}}s:5:"build";s:14:"20161004041229";}', 'no'),
(21718, '_transient_timeout_feed_mod_dcef1f8abdbc2ff3e2274fce36e6f763', '1482941691', 'no'),
(21719, '_transient_feed_mod_dcef1f8abdbc2ff3e2274fce36e6f763', '1482898491', 'no'),
(21720, '_transient_timeout_ee_rss_6666652f89319de9c3e3115ecb3329fb', '1482941691', 'no'),
(21721, '_transient_ee_rss_6666652f89319de9c3e3115ecb3329fb', '<ul><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/FVrul1ft-LY/''>Attendee Mover Add-on Now Available</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/fCqjdNOagj8/''>Website Weekend Los Angeles 2016</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/beIOet5SbzM/''>WordCamp Phoenix, Arizona 2016</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/2AgWNJ-_MPY/''>WordCamp Salt Lake City 2016</a></li><li><a class=''rsswidget'' href=''http://feedproxy.google.com/~r/EventEspressoWordpressEventRegistrationCalendarTicketingManagerPlugin/~3/7e-Vw77AERk/''>Event App Customization Add-on Now Available</a></li></ul>', 'no'),
(21722, 'ee_ueip_has_notified', '1', 'yes'),
(21733, '_transient_timeout_ee_ssn_e3e1684ec35712cc1863883cbcbc380b', '1482918985', 'no'),
(21734, '_transient_ee_ssn_e3e1684ec35712cc1863883cbcbc380b', 's:9200:"a:11:{s:2:"id";s:32:"e3e1684ec35712cc1863883cbcbc380b";s:7:"user_id";i:6;s:10:"ip_address";s:14:"124.122.85.222";s:10:"user_agent";s:113:"Mozilla/5.0 (Windows NT 6.1; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36";s:11:"init_access";i:1482902023;s:11:"last_access";i:1482915384;s:10:"expiration";i:1482917714;s:13:"pages_visited";a:10:{i:0;s:61:"http://asiacentre.co.th/events/media-communications-workshop/";i:1;s:31:"http://asiacentre.co.th/events/";i:2;s:90:"http://asiacentre.co.th/events/benedict-anderson-1st-anniversary-memorial-roundtable-test/";i:3;s:31:"http://asiacentre.co.th/events/";i:4;s:75:"http://asiacentre.co.th/events/spark-sessions-alternative-networking-event/";i:5;s:31:"http://asiacentre.co.th/events/";i:6;s:50:"http://asiacentre.co.th/event-category/past-event/";i:7;s:31:"http://asiacentre.co.th/events/";i:8;s:31:"http://asiacentre.co.th/events/";i:9;s:31:"http://asiacentre.co.th/events/";}s:4:"cart";O:7:"EE_Cart":1:{s:21:"\0EE_Cart\0_grand_total";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:2:{s:7:"tickets";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:7:"tickets";s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_type";s:9:"sub-total";}s:12:"\0*\0_timezone";s:14:"Africa/Abidjan";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:1:{s:8:"LIN_type";a:1:{s:8:"standard";s:9:"sub-total";}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:22;s:8:"LIN_code";s:7:"tickets";s:6:"TXN_ID";i:7;s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:21;s:8:"LIN_type";s:9:"sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}s:5:"taxes";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:5:"taxes";s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_type";s:13:"tax-sub-total";}s:12:"\0*\0_timezone";s:14:"Africa/Abidjan";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:13:"tax-sub-total";}s:9:"LIN_total";a:1:{s:8:"standard";d:0;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:23;s:8:"LIN_code";s:5:"taxes";s:6:"TXN_ID";i:7;s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:21;s:8:"LIN_type";s:13:"tax-sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}}s:42:"\0*\0_props_n_values_provided_in_constructor";a:4:{s:8:"LIN_code";s:5:"total";s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_type";s:5:"total";s:8:"OBJ_type";s:11:"Transaction";}s:12:"\0*\0_timezone";s:0:"";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:5:"total";}s:6:"TXN_ID";a:1:{s:8:"standard";i:7;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:21;s:8:"LIN_code";s:5:"total";s:6:"TXN_ID";i:7;s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_desc";s:0:"";s:14:"LIN_unit_price";d:0;s:11:"LIN_percent";d:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";i:0;s:10:"LIN_parent";i:0;s:8:"LIN_type";s:5:"total";s:6:"OBJ_ID";i:0;s:8:"OBJ_type";s:11:"Transaction";}}}s:8:"checkout";O:11:"EE_Checkout":35:{s:13:"admin_request";b:0;s:7:"revisit";b:0;s:15:"primary_revisit";b:0;s:12:"continue_reg";b:1;s:8:"redirect";b:0;s:17:"generate_reg_form";b:1;s:23:"process_form_submission";b:0;s:18:"txn_status_updated";b:0;s:12:"\0*\0exit_spco";b:0;s:21:"\0*\0reg_status_updated";a:0:{}s:18:"total_ticket_count";i:0;s:12:"amount_owing";d:0;s:4:"step";s:20:"attendee_information";s:9:"edit_step";s:0:"";s:6:"action";s:21:"display_spco_reg_step";s:12:"reg_url_link";s:0:"";s:26:"selected_method_of_payment";s:0:"";s:17:"reg_page_base_url";s:46:"http://asiacentre.co.th/registration-checkout/";s:15:"cancel_page_url";s:47:"http://asiacentre.co.th/registration-cancelled/";s:18:"thank_you_page_url";s:34:"http://asiacentre.co.th/thank-you/";s:12:"redirect_url";s:0:"";s:13:"redirect_form";s:0:"";s:22:"reg_cache_where_params";a:1:{s:8:"order_by";a:1:{s:9:"REG_count";s:3:"ASC";}}s:13:"json_response";O:21:"EE_SPCO_JSON_Response":11:{s:10:"\0*\0_errors";s:0:"";s:13:"\0*\0_attention";s:0:"";s:11:"\0*\0_success";s:0:"";s:32:"\0*\0_plz_select_method_of_payment";s:0:"";s:16:"\0*\0_redirect_url";s:0:"";s:27:"\0*\0_registration_time_limit";s:0:"";s:17:"\0*\0_redirect_form";s:0:"";s:17:"\0*\0_reg_step_html";s:0:"";s:21:"\0*\0_method_of_payment";s:0:"";s:15:"\0*\0_return_data";a:0:{}s:20:"\0*\0_validation_rules";a:0:{}}s:9:"next_step";O:38:"EE_SPCO_Reg_Step_Finalize_Registration":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:0;s:9:"\0*\0_order";i:999;s:8:"\0*\0_slug";s:21:"finalize_registration";s:8:"\0*\0_name";s:21:"Finalize Registration";s:22:"\0*\0_submit_button_text";s:21:"Finalize Registration";s:12:"\0*\0_template";s:0:"";s:17:"\0*\0_reg_form_name";N;s:19:"\0*\0_success_message";N;s:16:"\0*\0_instructions";N;s:14:"\0*\0_valid_data";a:0:{}}s:12:"current_step";O:37:"EE_SPCO_Reg_Step_Attendee_Information":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:1;s:9:"\0*\0_order";i:10;s:8:"\0*\0_slug";s:20:"attendee_information";s:8:"\0*\0_name";s:20:"Attendee Information";s:22:"\0*\0_submit_button_text";s:32:"Proceed to Finalize Registration";s:12:"\0*\0_template";s:173:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/attendee_information/attendee_info_main.template.php";s:17:"\0*\0_reg_form_name";s:42:"ee-spco-attendee_information-reg-step-form";s:19:"\0*\0_success_message";s:0:"";s:16:"\0*\0_instructions";s:69:"Please answer the following registration questions before proceeding.";s:14:"\0*\0_valid_data";a:0:{}}s:4:"cart";r:20;s:11:"transaction";O:14:"EE_Transaction":7:{s:42:"\0*\0_props_n_values_provided_in_constructor";a:5:{s:13:"TXN_timestamp";i:1482903110;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";b:0;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}s:9:"TXN_total";d:0;s:8:"TXN_paid";i:0;s:6:"STS_ID";s:3:"TFL";}s:12:"\0*\0_timezone";s:14:"Africa/Abidjan";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"TXN_paid";a:1:{s:8:"standard";d:0;}s:13:"TXN_reg_steps";a:1:{s:8:"standard";a:3:{s:20:"attendee_information";i:1482903110;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}}}s:19:"\0*\0_model_relations";a:7:{s:12:"Registration";N;s:7:"Payment";N;s:6:"Status";N;s:9:"Line_Item";N;s:14:"Payment_Method";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:9:{s:6:"TXN_ID";i:7;s:13:"TXN_timestamp";s:10:"1482903060";s:9:"TXN_total";d:0;s:8:"TXN_paid";d:0;s:6:"STS_ID";s:3:"TFL";s:16:"TXN_session_data";s:0:"";s:13:"TXN_hash_salt";s:0:"";s:6:"PMD_ID";i:0;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";i:1482903110;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}}}s:20:"primary_attendee_obj";N;s:14:"payment_method";N;s:7:"payment";N;s:12:"billing_form";N;s:17:"registration_form";O:22:"EE_Form_Section_Proper":15:{s:15:"\0*\0_subsections";a:0:{}s:19:"\0*\0_layout_strategy";O:18:"EE_Template_Layout":7:{s:24:"\0*\0_layout_template_file";s:159:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/registration_page_wrapper.template.php";s:30:"\0*\0_layout_begin_template_file";N;s:23:"\0*\0_input_template_file";N;s:28:"\0*\0_subsection_template_file";N;s:28:"\0*\0_layout_end_template_file";N;s:17:"\0*\0_template_args";a:8:{s:10:"empty_cart";b:1;s:7:"revisit";b:0;s:9:"reg_steps";a:2:{s:20:"attendee_information";r:178;s:21:"finalize_registration";r:166;}s:9:"next_step";s:21:"finalize_registration";s:9:"empty_msg";s:167:"You need to <a href="http://asiacentre.co.th/events/" title="Return to Events list">select at least one event</a> before you can proceed with the registration process.";s:19:"cookies_not_set_msg";s:0:"";s:23:"registration_time_limit";s:5:"55:04";s:18:"session_expiration";s:21:"Dec 28, 2016 16:35:14";}s:16:"\0*\0_form_section";r:237;}s:23:"\0*\0_received_submission";b:0;s:35:"\0*\0_form_submission_success_message";s:0:"";s:33:"\0*\0_form_submission_error_message";s:0:"";s:21:"\0*\0_validation_errors";a:0:{}s:10:"\0*\0_action";N;s:10:"\0*\0_method";N;s:8:"\0*\0_name";s:20:"single-page-checkout";s:11:"\0*\0_html_id";s:26:"ee-single-page-checkout-dv";s:14:"\0*\0_html_class";N;s:14:"\0*\0_html_style";N;s:25:"\0*\0_other_html_attributes";N;s:18:"\0*\0_parent_section";N;s:26:"\0*\0_construction_finalized";b:1;}s:9:"reg_steps";a:2:{s:20:"attendee_information";r:178;s:21:"finalize_registration";r:166;}s:25:"available_payment_methods";a:0:{}}s:11:"transaction";N;}";', 'no'),
(21840, 'pue_special_notices_4.7.12.decaf', 'a:0:{}', 'yes'),
(21855, '_transient_timeout_ee_ssn_72e89a512cf2d4477a76483819326da8', '1482916210', 'no'),
(21856, '_transient_ee_ssn_72e89a512cf2d4477a76483819326da8', 's:8791:"a:10:{s:2:"id";s:32:"72e89a512cf2d4477a76483819326da8";s:7:"user_id";i:0;s:10:"ip_address";s:14:"188.143.232.15";s:10:"user_agent";s:55:"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)";s:11:"init_access";i:1482912593;s:11:"last_access";i:1482912608;s:10:"expiration";i:1482916194;s:13:"pages_visited";a:4:{i:0;s:50:"http://asiacentre.co.th/event-category/past-event/";i:1;s:50:"http://asiacentre.co.th/event-category/past-event/";i:2;s:50:"http://asiacentre.co.th/category/news/latest-news/";i:3;s:49:"http://asiacentre.co.th/category/news/commentary/";}s:8:"checkout";O:11:"EE_Checkout":35:{s:13:"admin_request";b:0;s:7:"revisit";b:0;s:15:"primary_revisit";b:0;s:12:"continue_reg";b:1;s:8:"redirect";b:0;s:17:"generate_reg_form";b:1;s:23:"process_form_submission";b:0;s:18:"txn_status_updated";b:0;s:12:"\0*\0exit_spco";b:0;s:21:"\0*\0reg_status_updated";a:0:{}s:18:"total_ticket_count";i:0;s:12:"amount_owing";d:0;s:4:"step";s:20:"attendee_information";s:9:"edit_step";s:0:"";s:6:"action";s:21:"display_spco_reg_step";s:12:"reg_url_link";s:0:"";s:26:"selected_method_of_payment";s:0:"";s:17:"reg_page_base_url";s:46:"http://asiacentre.co.th/registration-checkout/";s:15:"cancel_page_url";s:47:"http://asiacentre.co.th/registration-cancelled/";s:18:"thank_you_page_url";s:34:"http://asiacentre.co.th/thank-you/";s:12:"redirect_url";s:0:"";s:13:"redirect_form";s:0:"";s:22:"reg_cache_where_params";a:1:{s:8:"order_by";a:1:{s:9:"REG_count";s:3:"ASC";}}s:13:"json_response";O:21:"EE_SPCO_JSON_Response":11:{s:10:"\0*\0_errors";s:0:"";s:13:"\0*\0_attention";s:0:"";s:11:"\0*\0_success";s:0:"";s:32:"\0*\0_plz_select_method_of_payment";s:0:"";s:16:"\0*\0_redirect_url";s:0:"";s:27:"\0*\0_registration_time_limit";s:0:"";s:17:"\0*\0_redirect_form";s:0:"";s:17:"\0*\0_reg_step_html";s:0:"";s:21:"\0*\0_method_of_payment";s:0:"";s:15:"\0*\0_return_data";a:0:{}s:20:"\0*\0_validation_rules";a:0:{}}s:9:"next_step";O:38:"EE_SPCO_Reg_Step_Finalize_Registration":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:0;s:9:"\0*\0_order";i:999;s:8:"\0*\0_slug";s:21:"finalize_registration";s:8:"\0*\0_name";s:21:"Finalize Registration";s:22:"\0*\0_submit_button_text";s:21:"Finalize Registration";s:12:"\0*\0_template";s:0:"";s:17:"\0*\0_reg_form_name";N;s:19:"\0*\0_success_message";N;s:16:"\0*\0_instructions";N;s:14:"\0*\0_valid_data";a:0:{}}s:12:"current_step";O:37:"EE_SPCO_Reg_Step_Attendee_Information":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:1;s:9:"\0*\0_order";i:10;s:8:"\0*\0_slug";s:20:"attendee_information";s:8:"\0*\0_name";s:20:"Attendee Information";s:22:"\0*\0_submit_button_text";s:32:"Proceed to Finalize Registration";s:12:"\0*\0_template";s:173:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/attendee_information/attendee_info_main.template.php";s:17:"\0*\0_reg_form_name";s:42:"ee-spco-attendee_information-reg-step-form";s:19:"\0*\0_success_message";s:0:"";s:16:"\0*\0_instructions";s:69:"Please answer the following registration questions before proceeding.";s:14:"\0*\0_valid_data";a:0:{}}s:4:"cart";O:7:"EE_Cart":1:{s:21:"\0EE_Cart\0_grand_total";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:2:{s:7:"tickets";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:7:"tickets";s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_type";s:9:"sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:1:{s:8:"LIN_type";a:1:{s:8:"standard";s:9:"sub-total";}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:49;s:8:"LIN_code";s:7:"tickets";s:6:"TXN_ID";i:16;s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:48;s:8:"LIN_type";s:9:"sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}s:5:"taxes";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:5:"taxes";s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_type";s:13:"tax-sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:13:"tax-sub-total";}s:9:"LIN_total";a:1:{s:8:"standard";d:0;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:50;s:8:"LIN_code";s:5:"taxes";s:6:"TXN_ID";i:16;s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:48;s:8:"LIN_type";s:13:"tax-sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}}s:42:"\0*\0_props_n_values_provided_in_constructor";a:4:{s:8:"LIN_code";s:5:"total";s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_type";s:5:"total";s:8:"OBJ_type";s:11:"Transaction";}s:12:"\0*\0_timezone";s:0:"";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:5:"total";}s:6:"TXN_ID";a:1:{s:8:"standard";i:16;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:48;s:8:"LIN_code";s:5:"total";s:6:"TXN_ID";i:16;s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_desc";s:0:"";s:14:"LIN_unit_price";d:0;s:11:"LIN_percent";d:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";i:0;s:10:"LIN_parent";i:0;s:8:"LIN_type";s:5:"total";s:6:"OBJ_ID";i:0;s:8:"OBJ_type";s:11:"Transaction";}}}s:11:"transaction";O:14:"EE_Transaction":7:{s:42:"\0*\0_props_n_values_provided_in_constructor";a:5:{s:13:"TXN_timestamp";i:1482937796;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";b:0;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}s:9:"TXN_total";d:0;s:8:"TXN_paid";i:0;s:6:"STS_ID";s:3:"TFL";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"TXN_paid";a:1:{s:8:"standard";d:0;}s:13:"TXN_reg_steps";a:1:{s:8:"standard";a:3:{s:20:"attendee_information";i:1482937796;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}}}s:19:"\0*\0_model_relations";a:7:{s:12:"Registration";N;s:7:"Payment";N;s:6:"Status";N;s:9:"Line_Item";N;s:14:"Payment_Method";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:9:{s:6:"TXN_ID";i:16;s:13:"TXN_timestamp";s:10:"1482912540";s:9:"TXN_total";d:0;s:8:"TXN_paid";d:0;s:6:"STS_ID";s:3:"TFL";s:16:"TXN_session_data";s:0:"";s:13:"TXN_hash_salt";s:0:"";s:6:"PMD_ID";i:0;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";i:1482937796;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}}}s:20:"primary_attendee_obj";N;s:14:"payment_method";N;s:7:"payment";N;s:12:"billing_form";N;s:17:"registration_form";O:22:"EE_Form_Section_Proper":15:{s:15:"\0*\0_subsections";a:0:{}s:19:"\0*\0_layout_strategy";O:18:"EE_Template_Layout":7:{s:24:"\0*\0_layout_template_file";s:159:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/registration_page_wrapper.template.php";s:30:"\0*\0_layout_begin_template_file";N;s:23:"\0*\0_input_template_file";N;s:28:"\0*\0_subsection_template_file";N;s:28:"\0*\0_layout_end_template_file";N;s:17:"\0*\0_template_args";a:8:{s:10:"empty_cart";b:1;s:7:"revisit";b:0;s:9:"reg_steps";a:2:{s:20:"attendee_information";r:64;s:21:"finalize_registration";r:52;}s:9:"next_step";s:21:"finalize_registration";s:9:"empty_msg";s:167:"You need to <a href="http://asiacentre.co.th/events/" title="Return to Events list">select at least one event</a> before you can proceed with the registration process.";s:19:"cookies_not_set_msg";s:0:"";s:23:"registration_time_limit";s:5:"59:45";s:18:"session_expiration";s:21:"Dec 28, 2016 16:09:54";}s:16:"\0*\0_form_section";r:230;}s:23:"\0*\0_received_submission";b:0;s:35:"\0*\0_form_submission_success_message";s:0:"";s:33:"\0*\0_form_submission_error_message";s:0:"";s:21:"\0*\0_validation_errors";a:0:{}s:10:"\0*\0_action";N;s:10:"\0*\0_method";N;s:8:"\0*\0_name";s:20:"single-page-checkout";s:11:"\0*\0_html_id";s:26:"ee-single-page-checkout-dv";s:14:"\0*\0_html_class";N;s:14:"\0*\0_html_style";N;s:25:"\0*\0_other_html_attributes";N;s:18:"\0*\0_parent_section";N;s:26:"\0*\0_construction_finalized";b:1;}s:9:"reg_steps";a:2:{s:20:"attendee_information";r:64;s:21:"finalize_registration";r:52;}s:25:"available_payment_methods";a:0:{}}s:4:"cart";r:76;}";', 'no'),
(21857, '_transient_timeout_ee_ssn_3350660412fd523529412b1ceb8c8bfa', '1482916373', 'no'),
(21858, '_transient_ee_ssn_3350660412fd523529412b1ceb8c8bfa', 's:440:"a:8:{s:2:"id";s:32:"3350660412fd523529412b1ceb8c8bfa";s:7:"user_id";i:0;s:10:"ip_address";s:14:"188.143.232.21";s:10:"user_agent";s:55:"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1)";s:11:"init_access";i:1482912772;s:11:"last_access";i:1482912772;s:10:"expiration";i:1482916373;s:13:"pages_visited";a:2:{i:0;s:50:"http://asiacentre.co.th/event-category/past-event/";i:1;s:50:"http://asiacentre.co.th/event-category/past-event/";}}";', 'no'),
(21862, '_transient_timeout_ee_ssn_84865239e12c932de1d869dc5f3801a0', '1482917866', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(21863, '_transient_ee_ssn_84865239e12c932de1d869dc5f3801a0', 's:9038:"a:10:{s:2:"id";s:32:"84865239e12c932de1d869dc5f3801a0";s:7:"user_id";i:0;s:10:"ip_address";s:13:"66.147.244.85";s:10:"user_agent";s:75:"WordPress/4.4.5; http://www.acjps.org; verifying pingback from 27.254.209.9";s:11:"init_access";i:1482914264;s:11:"last_access";i:1482914264;s:10:"expiration";i:1482917865;s:13:"pages_visited";a:2:{i:0;s:137:"http://asiacentre.co.th/news/commentary/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups/";i:1;s:137:"http://asiacentre.co.th/news/commentary/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups/";}s:8:"checkout";O:11:"EE_Checkout":35:{s:13:"admin_request";b:0;s:7:"revisit";b:0;s:15:"primary_revisit";b:0;s:12:"continue_reg";b:1;s:8:"redirect";b:0;s:17:"generate_reg_form";b:1;s:23:"process_form_submission";b:0;s:18:"txn_status_updated";b:0;s:12:"\0*\0exit_spco";b:0;s:21:"\0*\0reg_status_updated";a:0:{}s:18:"total_ticket_count";i:0;s:12:"amount_owing";d:0;s:4:"step";s:20:"attendee_information";s:9:"edit_step";s:0:"";s:6:"action";s:21:"display_spco_reg_step";s:12:"reg_url_link";s:0:"";s:26:"selected_method_of_payment";s:0:"";s:17:"reg_page_base_url";s:46:"http://asiacentre.co.th/registration-checkout/";s:15:"cancel_page_url";s:47:"http://asiacentre.co.th/registration-cancelled/";s:18:"thank_you_page_url";s:34:"http://asiacentre.co.th/thank-you/";s:12:"redirect_url";s:0:"";s:13:"redirect_form";s:0:"";s:22:"reg_cache_where_params";a:1:{s:8:"order_by";a:1:{s:9:"REG_count";s:3:"ASC";}}s:13:"json_response";O:21:"EE_SPCO_JSON_Response":11:{s:10:"\0*\0_errors";s:0:"";s:13:"\0*\0_attention";s:0:"";s:11:"\0*\0_success";s:0:"";s:32:"\0*\0_plz_select_method_of_payment";s:0:"";s:16:"\0*\0_redirect_url";s:0:"";s:27:"\0*\0_registration_time_limit";s:0:"";s:17:"\0*\0_redirect_form";s:0:"";s:17:"\0*\0_reg_step_html";s:0:"";s:21:"\0*\0_method_of_payment";s:0:"";s:15:"\0*\0_return_data";a:0:{}s:20:"\0*\0_validation_rules";a:0:{}}s:9:"next_step";O:38:"EE_SPCO_Reg_Step_Finalize_Registration":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:0;s:9:"\0*\0_order";i:999;s:8:"\0*\0_slug";s:21:"finalize_registration";s:8:"\0*\0_name";s:21:"Finalize Registration";s:22:"\0*\0_submit_button_text";s:21:"Finalize Registration";s:12:"\0*\0_template";s:0:"";s:17:"\0*\0_reg_form_name";N;s:19:"\0*\0_success_message";N;s:16:"\0*\0_instructions";N;s:14:"\0*\0_valid_data";a:0:{}}s:12:"current_step";O:37:"EE_SPCO_Reg_Step_Attendee_Information":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:1;s:9:"\0*\0_order";i:10;s:8:"\0*\0_slug";s:20:"attendee_information";s:8:"\0*\0_name";s:20:"Attendee Information";s:22:"\0*\0_submit_button_text";s:32:"Proceed to Finalize Registration";s:12:"\0*\0_template";s:173:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/attendee_information/attendee_info_main.template.php";s:17:"\0*\0_reg_form_name";s:42:"ee-spco-attendee_information-reg-step-form";s:19:"\0*\0_success_message";s:0:"";s:16:"\0*\0_instructions";s:69:"Please answer the following registration questions before proceeding.";s:14:"\0*\0_valid_data";a:0:{}}s:4:"cart";O:7:"EE_Cart":1:{s:21:"\0EE_Cart\0_grand_total";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:2:{s:7:"tickets";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:7:"tickets";s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_type";s:9:"sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:1:{s:8:"LIN_type";a:1:{s:8:"standard";s:9:"sub-total";}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:52;s:8:"LIN_code";s:7:"tickets";s:6:"TXN_ID";i:17;s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:51;s:8:"LIN_type";s:9:"sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}s:5:"taxes";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:5:"taxes";s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_type";s:13:"tax-sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:13:"tax-sub-total";}s:9:"LIN_total";a:1:{s:8:"standard";d:0;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:53;s:8:"LIN_code";s:5:"taxes";s:6:"TXN_ID";i:17;s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:51;s:8:"LIN_type";s:13:"tax-sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}}s:42:"\0*\0_props_n_values_provided_in_constructor";a:4:{s:8:"LIN_code";s:5:"total";s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_type";s:5:"total";s:8:"OBJ_type";s:11:"Transaction";}s:12:"\0*\0_timezone";s:0:"";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:5:"total";}s:6:"TXN_ID";a:1:{s:8:"standard";i:17;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:51;s:8:"LIN_code";s:5:"total";s:6:"TXN_ID";i:17;s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_desc";s:0:"";s:14:"LIN_unit_price";d:0;s:11:"LIN_percent";d:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";i:0;s:10:"LIN_parent";i:0;s:8:"LIN_type";s:5:"total";s:6:"OBJ_ID";i:0;s:8:"OBJ_type";s:11:"Transaction";}}}s:11:"transaction";O:14:"EE_Transaction":7:{s:42:"\0*\0_props_n_values_provided_in_constructor";a:5:{s:13:"TXN_timestamp";i:1482939464;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";b:0;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}s:9:"TXN_total";d:0;s:8:"TXN_paid";i:0;s:6:"STS_ID";s:3:"TFL";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:0:{}s:19:"\0*\0_model_relations";a:7:{s:12:"Registration";N;s:7:"Payment";N;s:6:"Status";N;s:9:"Line_Item";N;s:14:"Payment_Method";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:9:{s:6:"TXN_ID";i:17;s:13:"TXN_timestamp";s:10:"1482914220";s:9:"TXN_total";d:0;s:8:"TXN_paid";d:0;s:6:"STS_ID";s:3:"TFL";s:16:"TXN_session_data";s:0:"";s:13:"TXN_hash_salt";s:0:"";s:6:"PMD_ID";i:0;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";i:1482939464;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}}}s:20:"primary_attendee_obj";N;s:14:"payment_method";N;s:7:"payment";N;s:12:"billing_form";N;s:17:"registration_form";O:22:"EE_Form_Section_Proper":15:{s:15:"\0*\0_subsections";a:0:{}s:19:"\0*\0_layout_strategy";O:18:"EE_Template_Layout":7:{s:24:"\0*\0_layout_template_file";s:159:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/registration_page_wrapper.template.php";s:30:"\0*\0_layout_begin_template_file";N;s:23:"\0*\0_input_template_file";N;s:28:"\0*\0_subsection_template_file";N;s:28:"\0*\0_layout_end_template_file";N;s:17:"\0*\0_template_args";a:8:{s:10:"empty_cart";b:1;s:7:"revisit";b:0;s:9:"reg_steps";a:2:{s:20:"attendee_information";r:62;s:21:"finalize_registration";r:50;}s:9:"next_step";s:21:"finalize_registration";s:9:"empty_msg";s:167:"You need to <a href="http://asiacentre.co.th/events/" title="Return to Events list">select at least one event</a> before you can proceed with the registration process.";s:19:"cookies_not_set_msg";s:359:"<div class="ee-attention"><h6 class="important-notice">It appears your browser is not currently set to accept Cookies</h6><p>In order to register for events, you need to enable cookies.<br />If you require assistance, then click the following link to learn how to <a href="http://www.whatarecookies.com/enable.asp" target="_blank">enable cookies</a></p></div>";s:23:"registration_time_limit";s:8:"01:00:01";s:18:"session_expiration";s:21:"Dec 28, 2016 16:37:45";}s:16:"\0*\0_form_section";r:221;}s:23:"\0*\0_received_submission";b:0;s:35:"\0*\0_form_submission_success_message";s:0:"";s:33:"\0*\0_form_submission_error_message";s:0:"";s:21:"\0*\0_validation_errors";a:0:{}s:10:"\0*\0_action";N;s:10:"\0*\0_method";N;s:8:"\0*\0_name";s:20:"single-page-checkout";s:11:"\0*\0_html_id";s:26:"ee-single-page-checkout-dv";s:14:"\0*\0_html_class";N;s:14:"\0*\0_html_style";N;s:25:"\0*\0_other_html_attributes";N;s:18:"\0*\0_parent_section";N;s:26:"\0*\0_construction_finalized";b:1;}s:9:"reg_steps";a:2:{s:20:"attendee_information";r:62;s:21:"finalize_registration";r:50;}s:25:"available_payment_methods";a:0:{}}s:4:"cart";r:74;}";', 'no'),
(21864, '_transient_timeout_ee_ssn_d76f7d03a2fe9221c987892292d6bd05', '1482917869', 'no'),
(21865, '_transient_ee_ssn_d76f7d03a2fe9221c987892292d6bd05', 's:9056:"a:10:{s:2:"id";s:32:"d76f7d03a2fe9221c987892292d6bd05";s:7:"user_id";i:0;s:10:"ip_address";s:13:"78.153.214.53";s:10:"user_agent";s:93:"WordPress/4.6.1; http://www.edmundriceinternational.org; verifying pingback from 27.254.209.9";s:11:"init_access";i:1482914268;s:11:"last_access";i:1482914268;s:10:"expiration";i:1482917869;s:13:"pages_visited";a:2:{i:0;s:137:"http://asiacentre.co.th/news/commentary/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups/";i:1;s:137:"http://asiacentre.co.th/news/commentary/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups/";}s:8:"checkout";O:11:"EE_Checkout":35:{s:13:"admin_request";b:0;s:7:"revisit";b:0;s:15:"primary_revisit";b:0;s:12:"continue_reg";b:1;s:8:"redirect";b:0;s:17:"generate_reg_form";b:1;s:23:"process_form_submission";b:0;s:18:"txn_status_updated";b:0;s:12:"\0*\0exit_spco";b:0;s:21:"\0*\0reg_status_updated";a:0:{}s:18:"total_ticket_count";i:0;s:12:"amount_owing";d:0;s:4:"step";s:20:"attendee_information";s:9:"edit_step";s:0:"";s:6:"action";s:21:"display_spco_reg_step";s:12:"reg_url_link";s:0:"";s:26:"selected_method_of_payment";s:0:"";s:17:"reg_page_base_url";s:46:"http://asiacentre.co.th/registration-checkout/";s:15:"cancel_page_url";s:47:"http://asiacentre.co.th/registration-cancelled/";s:18:"thank_you_page_url";s:34:"http://asiacentre.co.th/thank-you/";s:12:"redirect_url";s:0:"";s:13:"redirect_form";s:0:"";s:22:"reg_cache_where_params";a:1:{s:8:"order_by";a:1:{s:9:"REG_count";s:3:"ASC";}}s:13:"json_response";O:21:"EE_SPCO_JSON_Response":11:{s:10:"\0*\0_errors";s:0:"";s:13:"\0*\0_attention";s:0:"";s:11:"\0*\0_success";s:0:"";s:32:"\0*\0_plz_select_method_of_payment";s:0:"";s:16:"\0*\0_redirect_url";s:0:"";s:27:"\0*\0_registration_time_limit";s:0:"";s:17:"\0*\0_redirect_form";s:0:"";s:17:"\0*\0_reg_step_html";s:0:"";s:21:"\0*\0_method_of_payment";s:0:"";s:15:"\0*\0_return_data";a:0:{}s:20:"\0*\0_validation_rules";a:0:{}}s:9:"next_step";O:38:"EE_SPCO_Reg_Step_Finalize_Registration":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:0;s:9:"\0*\0_order";i:999;s:8:"\0*\0_slug";s:21:"finalize_registration";s:8:"\0*\0_name";s:21:"Finalize Registration";s:22:"\0*\0_submit_button_text";s:21:"Finalize Registration";s:12:"\0*\0_template";s:0:"";s:17:"\0*\0_reg_form_name";N;s:19:"\0*\0_success_message";N;s:16:"\0*\0_instructions";N;s:14:"\0*\0_valid_data";a:0:{}}s:12:"current_step";O:37:"EE_SPCO_Reg_Step_Attendee_Information":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:1;s:9:"\0*\0_order";i:10;s:8:"\0*\0_slug";s:20:"attendee_information";s:8:"\0*\0_name";s:20:"Attendee Information";s:22:"\0*\0_submit_button_text";s:32:"Proceed to Finalize Registration";s:12:"\0*\0_template";s:173:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/attendee_information/attendee_info_main.template.php";s:17:"\0*\0_reg_form_name";s:42:"ee-spco-attendee_information-reg-step-form";s:19:"\0*\0_success_message";s:0:"";s:16:"\0*\0_instructions";s:69:"Please answer the following registration questions before proceeding.";s:14:"\0*\0_valid_data";a:0:{}}s:4:"cart";O:7:"EE_Cart":1:{s:21:"\0EE_Cart\0_grand_total";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:2:{s:7:"tickets";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:7:"tickets";s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_type";s:9:"sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:1:{s:8:"LIN_type";a:1:{s:8:"standard";s:9:"sub-total";}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:55;s:8:"LIN_code";s:7:"tickets";s:6:"TXN_ID";i:18;s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:54;s:8:"LIN_type";s:9:"sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}s:5:"taxes";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:5:"taxes";s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_type";s:13:"tax-sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:13:"tax-sub-total";}s:9:"LIN_total";a:1:{s:8:"standard";d:0;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:56;s:8:"LIN_code";s:5:"taxes";s:6:"TXN_ID";i:18;s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:54;s:8:"LIN_type";s:13:"tax-sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}}s:42:"\0*\0_props_n_values_provided_in_constructor";a:4:{s:8:"LIN_code";s:5:"total";s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_type";s:5:"total";s:8:"OBJ_type";s:11:"Transaction";}s:12:"\0*\0_timezone";s:0:"";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:5:"total";}s:6:"TXN_ID";a:1:{s:8:"standard";i:18;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:54;s:8:"LIN_code";s:5:"total";s:6:"TXN_ID";i:18;s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_desc";s:0:"";s:14:"LIN_unit_price";d:0;s:11:"LIN_percent";d:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";i:0;s:10:"LIN_parent";i:0;s:8:"LIN_type";s:5:"total";s:6:"OBJ_ID";i:0;s:8:"OBJ_type";s:11:"Transaction";}}}s:11:"transaction";O:14:"EE_Transaction":7:{s:42:"\0*\0_props_n_values_provided_in_constructor";a:5:{s:13:"TXN_timestamp";i:1482939468;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";b:0;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}s:9:"TXN_total";d:0;s:8:"TXN_paid";i:0;s:6:"STS_ID";s:3:"TFL";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:0:{}s:19:"\0*\0_model_relations";a:7:{s:12:"Registration";N;s:7:"Payment";N;s:6:"Status";N;s:9:"Line_Item";N;s:14:"Payment_Method";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:9:{s:6:"TXN_ID";i:18;s:13:"TXN_timestamp";s:10:"1482914220";s:9:"TXN_total";d:0;s:8:"TXN_paid";d:0;s:6:"STS_ID";s:3:"TFL";s:16:"TXN_session_data";s:0:"";s:13:"TXN_hash_salt";s:0:"";s:6:"PMD_ID";i:0;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";i:1482939468;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}}}s:20:"primary_attendee_obj";N;s:14:"payment_method";N;s:7:"payment";N;s:12:"billing_form";N;s:17:"registration_form";O:22:"EE_Form_Section_Proper":15:{s:15:"\0*\0_subsections";a:0:{}s:19:"\0*\0_layout_strategy";O:18:"EE_Template_Layout":7:{s:24:"\0*\0_layout_template_file";s:159:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/registration_page_wrapper.template.php";s:30:"\0*\0_layout_begin_template_file";N;s:23:"\0*\0_input_template_file";N;s:28:"\0*\0_subsection_template_file";N;s:28:"\0*\0_layout_end_template_file";N;s:17:"\0*\0_template_args";a:8:{s:10:"empty_cart";b:1;s:7:"revisit";b:0;s:9:"reg_steps";a:2:{s:20:"attendee_information";r:62;s:21:"finalize_registration";r:50;}s:9:"next_step";s:21:"finalize_registration";s:9:"empty_msg";s:167:"You need to <a href="http://asiacentre.co.th/events/" title="Return to Events list">select at least one event</a> before you can proceed with the registration process.";s:19:"cookies_not_set_msg";s:359:"<div class="ee-attention"><h6 class="important-notice">It appears your browser is not currently set to accept Cookies</h6><p>In order to register for events, you need to enable cookies.<br />If you require assistance, then click the following link to learn how to <a href="http://www.whatarecookies.com/enable.asp" target="_blank">enable cookies</a></p></div>";s:23:"registration_time_limit";s:8:"01:00:01";s:18:"session_expiration";s:21:"Dec 28, 2016 16:37:49";}s:16:"\0*\0_form_section";r:221;}s:23:"\0*\0_received_submission";b:0;s:35:"\0*\0_form_submission_success_message";s:0:"";s:33:"\0*\0_form_submission_error_message";s:0:"";s:21:"\0*\0_validation_errors";a:0:{}s:10:"\0*\0_action";N;s:10:"\0*\0_method";N;s:8:"\0*\0_name";s:20:"single-page-checkout";s:11:"\0*\0_html_id";s:26:"ee-single-page-checkout-dv";s:14:"\0*\0_html_class";N;s:14:"\0*\0_html_style";N;s:25:"\0*\0_other_html_attributes";N;s:18:"\0*\0_parent_section";N;s:26:"\0*\0_construction_finalized";b:1;}s:9:"reg_steps";a:2:{s:20:"attendee_information";r:62;s:21:"finalize_registration";r:50;}s:25:"available_payment_methods";a:0:{}}s:4:"cart";r:74;}";', 'no'),
(21866, '_transient_timeout_ee_ssn_c079452590d6b0df38b8dd52cbc85254', '1482918054', 'no'),
(21867, '_transient_ee_ssn_c079452590d6b0df38b8dd52cbc85254', 's:8853:"a:10:{s:2:"id";s:32:"c079452590d6b0df38b8dd52cbc85254";s:7:"user_id";i:0;s:10:"ip_address";s:12:"66.249.77.10";s:10:"user_agent";s:72:"Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html)";s:11:"init_access";i:1482914452;s:11:"last_access";i:1482914452;s:10:"expiration";i:1482918053;s:13:"pages_visited";a:2:{i:0;s:49:"http://asiacentre.co.th/category/news/commentary/";i:1;s:49:"http://asiacentre.co.th/category/news/commentary/";}s:8:"checkout";O:11:"EE_Checkout":35:{s:13:"admin_request";b:0;s:7:"revisit";b:0;s:15:"primary_revisit";b:0;s:12:"continue_reg";b:1;s:8:"redirect";b:0;s:17:"generate_reg_form";b:1;s:23:"process_form_submission";b:0;s:18:"txn_status_updated";b:0;s:12:"\0*\0exit_spco";b:0;s:21:"\0*\0reg_status_updated";a:0:{}s:18:"total_ticket_count";i:0;s:12:"amount_owing";d:0;s:4:"step";s:20:"attendee_information";s:9:"edit_step";s:0:"";s:6:"action";s:21:"display_spco_reg_step";s:12:"reg_url_link";s:0:"";s:26:"selected_method_of_payment";s:0:"";s:17:"reg_page_base_url";s:46:"http://asiacentre.co.th/registration-checkout/";s:15:"cancel_page_url";s:47:"http://asiacentre.co.th/registration-cancelled/";s:18:"thank_you_page_url";s:34:"http://asiacentre.co.th/thank-you/";s:12:"redirect_url";s:0:"";s:13:"redirect_form";s:0:"";s:22:"reg_cache_where_params";a:1:{s:8:"order_by";a:1:{s:9:"REG_count";s:3:"ASC";}}s:13:"json_response";O:21:"EE_SPCO_JSON_Response":11:{s:10:"\0*\0_errors";s:0:"";s:13:"\0*\0_attention";s:0:"";s:11:"\0*\0_success";s:0:"";s:32:"\0*\0_plz_select_method_of_payment";s:0:"";s:16:"\0*\0_redirect_url";s:0:"";s:27:"\0*\0_registration_time_limit";s:0:"";s:17:"\0*\0_redirect_form";s:0:"";s:17:"\0*\0_reg_step_html";s:0:"";s:21:"\0*\0_method_of_payment";s:0:"";s:15:"\0*\0_return_data";a:0:{}s:20:"\0*\0_validation_rules";a:0:{}}s:9:"next_step";O:38:"EE_SPCO_Reg_Step_Finalize_Registration":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:0;s:9:"\0*\0_order";i:999;s:8:"\0*\0_slug";s:21:"finalize_registration";s:8:"\0*\0_name";s:21:"Finalize Registration";s:22:"\0*\0_submit_button_text";s:21:"Finalize Registration";s:12:"\0*\0_template";s:0:"";s:17:"\0*\0_reg_form_name";N;s:19:"\0*\0_success_message";N;s:16:"\0*\0_instructions";N;s:14:"\0*\0_valid_data";a:0:{}}s:12:"current_step";O:37:"EE_SPCO_Reg_Step_Attendee_Information":11:{s:13:"\0*\0_completed";b:0;s:19:"\0*\0_is_current_step";b:1;s:9:"\0*\0_order";i:10;s:8:"\0*\0_slug";s:20:"attendee_information";s:8:"\0*\0_name";s:20:"Attendee Information";s:22:"\0*\0_submit_button_text";s:32:"Proceed to Finalize Registration";s:12:"\0*\0_template";s:173:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/attendee_information/attendee_info_main.template.php";s:17:"\0*\0_reg_form_name";s:42:"ee-spco-attendee_information-reg-step-form";s:19:"\0*\0_success_message";s:0:"";s:16:"\0*\0_instructions";s:69:"Please answer the following registration questions before proceeding.";s:14:"\0*\0_valid_data";a:0:{}}s:4:"cart";O:7:"EE_Cart":1:{s:21:"\0EE_Cart\0_grand_total";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:2:{s:7:"tickets";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:7:"tickets";s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_type";s:9:"sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:1:{s:8:"LIN_type";a:1:{s:8:"standard";s:9:"sub-total";}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:58;s:8:"LIN_code";s:7:"tickets";s:6:"TXN_ID";i:19;s:8:"LIN_name";s:7:"Tickets";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:57;s:8:"LIN_type";s:9:"sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}s:5:"taxes";O:12:"EE_Line_Item":8:{s:13:"\0*\0_Line_Item";a:0:{}s:42:"\0*\0_props_n_values_provided_in_constructor";a:3:{s:8:"LIN_code";s:5:"taxes";s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_type";s:13:"tax-sub-total";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:13:"tax-sub-total";}s:9:"LIN_total";a:1:{s:8:"standard";d:0;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";a:0:{}s:10:"Change_Log";a:0:{}}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:59;s:8:"LIN_code";s:5:"taxes";s:6:"TXN_ID";i:19;s:8:"LIN_name";s:5:"Taxes";s:8:"LIN_desc";N;s:14:"LIN_unit_price";i:0;s:11:"LIN_percent";i:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";N;s:10:"LIN_parent";i:57;s:8:"LIN_type";s:13:"tax-sub-total";s:6:"OBJ_ID";N;s:8:"OBJ_type";N;}}}s:42:"\0*\0_props_n_values_provided_in_constructor";a:4:{s:8:"LIN_code";s:5:"total";s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_type";s:5:"total";s:8:"OBJ_type";s:11:"Transaction";}s:12:"\0*\0_timezone";s:0:"";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:2:{s:8:"LIN_type";a:1:{s:8:"standard";s:5:"total";}s:6:"TXN_ID";a:1:{s:8:"standard";i:19;}}s:19:"\0*\0_model_relations";a:5:{s:11:"Transaction";N;s:6:"Ticket";N;s:5:"Price";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:15:{s:6:"LIN_ID";i:57;s:8:"LIN_code";s:5:"total";s:6:"TXN_ID";i:19;s:8:"LIN_name";s:11:"Grand Total";s:8:"LIN_desc";s:0:"";s:14:"LIN_unit_price";d:0;s:11:"LIN_percent";d:0;s:14:"LIN_is_taxable";b:0;s:9:"LIN_order";i:1;s:9:"LIN_total";d:0;s:12:"LIN_quantity";i:0;s:10:"LIN_parent";i:0;s:8:"LIN_type";s:5:"total";s:6:"OBJ_ID";i:0;s:8:"OBJ_type";s:11:"Transaction";}}}s:11:"transaction";O:14:"EE_Transaction":7:{s:42:"\0*\0_props_n_values_provided_in_constructor";a:5:{s:13:"TXN_timestamp";i:1482939652;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";b:0;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}s:9:"TXN_total";d:0;s:8:"TXN_paid";i:0;s:6:"STS_ID";s:3:"TFL";}s:12:"\0*\0_timezone";s:16:"Indian/Christmas";s:11:"\0*\0_dt_frmt";s:6:"F j, Y";s:11:"\0*\0_tm_frmt";s:5:"g:i a";s:21:"\0*\0_cached_properties";a:0:{}s:19:"\0*\0_model_relations";a:7:{s:12:"Registration";N;s:7:"Payment";N;s:6:"Status";N;s:9:"Line_Item";N;s:14:"Payment_Method";N;s:10:"Extra_Meta";N;s:10:"Change_Log";N;}s:10:"\0*\0_fields";a:9:{s:6:"TXN_ID";i:19;s:13:"TXN_timestamp";s:10:"1482914400";s:9:"TXN_total";d:0;s:8:"TXN_paid";d:0;s:6:"STS_ID";s:3:"TFL";s:16:"TXN_session_data";s:0:"";s:13:"TXN_hash_salt";s:0:"";s:6:"PMD_ID";i:0;s:13:"TXN_reg_steps";a:3:{s:20:"attendee_information";i:1482939652;s:15:"payment_options";b:0;s:21:"finalize_registration";b:0;}}}s:20:"primary_attendee_obj";N;s:14:"payment_method";N;s:7:"payment";N;s:12:"billing_form";N;s:17:"registration_form";O:22:"EE_Form_Section_Proper":15:{s:15:"\0*\0_subsections";a:0:{}s:19:"\0*\0_layout_strategy";O:18:"EE_Template_Layout":7:{s:24:"\0*\0_layout_template_file";s:159:"/var/www/vhosts/asiacentre.co.th/httpdocs/wp-content/plugins/event-espresso-decaf/modules/single_page_checkout/templates/registration_page_wrapper.template.php";s:30:"\0*\0_layout_begin_template_file";N;s:23:"\0*\0_input_template_file";N;s:28:"\0*\0_subsection_template_file";N;s:28:"\0*\0_layout_end_template_file";N;s:17:"\0*\0_template_args";a:8:{s:10:"empty_cart";b:1;s:7:"revisit";b:0;s:9:"reg_steps";a:2:{s:20:"attendee_information";r:62;s:21:"finalize_registration";r:50;}s:9:"next_step";s:21:"finalize_registration";s:9:"empty_msg";s:167:"You need to <a href="http://asiacentre.co.th/events/" title="Return to Events list">select at least one event</a> before you can proceed with the registration process.";s:19:"cookies_not_set_msg";s:359:"<div class="ee-attention"><h6 class="important-notice">It appears your browser is not currently set to accept Cookies</h6><p>In order to register for events, you need to enable cookies.<br />If you require assistance, then click the following link to learn how to <a href="http://www.whatarecookies.com/enable.asp" target="_blank">enable cookies</a></p></div>";s:23:"registration_time_limit";s:5:"00:00";s:18:"session_expiration";s:21:"Dec 28, 2016 16:40:53";}s:16:"\0*\0_form_section";r:221;}s:23:"\0*\0_received_submission";b:0;s:35:"\0*\0_form_submission_success_message";s:0:"";s:33:"\0*\0_form_submission_error_message";s:0:"";s:21:"\0*\0_validation_errors";a:0:{}s:10:"\0*\0_action";N;s:10:"\0*\0_method";N;s:8:"\0*\0_name";s:20:"single-page-checkout";s:11:"\0*\0_html_id";s:26:"ee-single-page-checkout-dv";s:14:"\0*\0_html_class";N;s:14:"\0*\0_html_style";N;s:25:"\0*\0_other_html_attributes";N;s:18:"\0*\0_parent_section";N;s:26:"\0*\0_construction_finalized";b:1;}s:9:"reg_steps";a:2:{s:20:"attendee_information";r:62;s:21:"finalize_registration";r:50;}s:25:"available_payment_methods";a:0:{}}s:4:"cart";r:74;}";', 'no'),
(21953, '_site_transient_timeout_poptags_40cd750bba9870f18aada2478b24840a', '1482994446', 'no'),
(21954, '_site_transient_poptags_40cd750bba9870f18aada2478b24840a', 'a:100:{s:6:"widget";a:3:{s:4:"name";s:6:"widget";s:4:"slug";s:6:"widget";s:5:"count";s:4:"6130";}s:6:"plugin";a:3:{s:4:"name";s:6:"plugin";s:4:"slug";s:6:"plugin";s:5:"count";s:4:"3761";}s:4:"post";a:3:{s:4:"name";s:4:"Post";s:4:"slug";s:4:"post";s:5:"count";s:4:"3755";}s:5:"admin";a:3:{s:4:"name";s:5:"admin";s:4:"slug";s:5:"admin";s:5:"count";s:4:"3274";}s:5:"posts";a:3:{s:4:"name";s:5:"posts";s:4:"slug";s:5:"posts";s:5:"count";s:4:"2870";}s:9:"shortcode";a:3:{s:4:"name";s:9:"shortcode";s:4:"slug";s:9:"shortcode";s:5:"count";s:4:"2562";}s:7:"sidebar";a:3:{s:4:"name";s:7:"sidebar";s:4:"slug";s:7:"sidebar";s:5:"count";s:4:"2237";}s:6:"google";a:3:{s:4:"name";s:6:"google";s:4:"slug";s:6:"google";s:5:"count";s:4:"2158";}s:4:"page";a:3:{s:4:"name";s:4:"page";s:4:"slug";s:4:"page";s:5:"count";s:4:"2113";}s:11:"woocommerce";a:3:{s:4:"name";s:11:"woocommerce";s:4:"slug";s:11:"woocommerce";s:5:"count";s:4:"2107";}s:7:"twitter";a:3:{s:4:"name";s:7:"twitter";s:4:"slug";s:7:"twitter";s:5:"count";s:4:"2096";}s:6:"images";a:3:{s:4:"name";s:6:"images";s:4:"slug";s:6:"images";s:5:"count";s:4:"2056";}s:8:"comments";a:3:{s:4:"name";s:8:"comments";s:4:"slug";s:8:"comments";s:5:"count";s:4:"1987";}s:5:"image";a:3:{s:4:"name";s:5:"image";s:4:"slug";s:5:"image";s:5:"count";s:4:"1958";}s:8:"facebook";a:3:{s:4:"name";s:8:"Facebook";s:4:"slug";s:8:"facebook";s:5:"count";s:4:"1773";}s:3:"seo";a:3:{s:4:"name";s:3:"seo";s:4:"slug";s:3:"seo";s:5:"count";s:4:"1668";}s:9:"wordpress";a:3:{s:4:"name";s:9:"wordpress";s:4:"slug";s:9:"wordpress";s:5:"count";s:4:"1646";}s:6:"social";a:3:{s:4:"name";s:6:"social";s:4:"slug";s:6:"social";s:5:"count";s:4:"1473";}s:7:"gallery";a:3:{s:4:"name";s:7:"gallery";s:4:"slug";s:7:"gallery";s:5:"count";s:4:"1390";}s:5:"email";a:3:{s:4:"name";s:5:"email";s:4:"slug";s:5:"email";s:5:"count";s:4:"1304";}s:5:"links";a:3:{s:4:"name";s:5:"links";s:4:"slug";s:5:"links";s:5:"count";s:4:"1302";}s:7:"widgets";a:3:{s:4:"name";s:7:"widgets";s:4:"slug";s:7:"widgets";s:5:"count";s:4:"1158";}s:5:"pages";a:3:{s:4:"name";s:5:"pages";s:4:"slug";s:5:"pages";s:5:"count";s:4:"1141";}s:9:"ecommerce";a:3:{s:4:"name";s:9:"ecommerce";s:4:"slug";s:9:"ecommerce";s:5:"count";s:4:"1076";}s:5:"media";a:3:{s:4:"name";s:5:"media";s:4:"slug";s:5:"media";s:5:"count";s:4:"1029";}s:6:"jquery";a:3:{s:4:"name";s:6:"jquery";s:4:"slug";s:6:"jquery";s:5:"count";s:4:"1027";}s:5:"video";a:3:{s:4:"name";s:5:"video";s:4:"slug";s:5:"video";s:5:"count";s:3:"977";}s:7:"content";a:3:{s:4:"name";s:7:"content";s:4:"slug";s:7:"content";s:5:"count";s:3:"974";}s:5:"login";a:3:{s:4:"name";s:5:"login";s:4:"slug";s:5:"login";s:5:"count";s:3:"971";}s:10:"responsive";a:3:{s:4:"name";s:10:"responsive";s:4:"slug";s:10:"responsive";s:5:"count";s:3:"941";}s:4:"ajax";a:3:{s:4:"name";s:4:"AJAX";s:4:"slug";s:4:"ajax";s:5:"count";s:3:"935";}s:3:"rss";a:3:{s:4:"name";s:3:"rss";s:4:"slug";s:3:"rss";s:5:"count";s:3:"918";}s:10:"javascript";a:3:{s:4:"name";s:10:"javascript";s:4:"slug";s:10:"javascript";s:5:"count";s:3:"867";}s:8:"security";a:3:{s:4:"name";s:8:"security";s:4:"slug";s:8:"security";s:5:"count";s:3:"862";}s:10:"e-commerce";a:3:{s:4:"name";s:10:"e-commerce";s:4:"slug";s:10:"e-commerce";s:5:"count";s:3:"862";}s:10:"buddypress";a:3:{s:4:"name";s:10:"buddypress";s:4:"slug";s:10:"buddypress";s:5:"count";s:3:"829";}s:5:"photo";a:3:{s:4:"name";s:5:"photo";s:4:"slug";s:5:"photo";s:5:"count";s:3:"791";}s:5:"share";a:3:{s:4:"name";s:5:"Share";s:4:"slug";s:5:"share";s:5:"count";s:3:"790";}s:7:"youtube";a:3:{s:4:"name";s:7:"youtube";s:4:"slug";s:7:"youtube";s:5:"count";s:3:"790";}s:4:"spam";a:3:{s:4:"name";s:4:"spam";s:4:"slug";s:4:"spam";s:5:"count";s:3:"772";}s:4:"link";a:3:{s:4:"name";s:4:"link";s:4:"slug";s:4:"link";s:5:"count";s:3:"767";}s:6:"slider";a:3:{s:4:"name";s:6:"slider";s:4:"slug";s:6:"slider";s:5:"count";s:3:"761";}s:4:"feed";a:3:{s:4:"name";s:4:"feed";s:4:"slug";s:4:"feed";s:5:"count";s:3:"751";}s:9:"analytics";a:3:{s:4:"name";s:9:"analytics";s:4:"slug";s:9:"analytics";s:5:"count";s:3:"751";}s:3:"css";a:3:{s:4:"name";s:3:"CSS";s:4:"slug";s:3:"css";s:5:"count";s:3:"747";}s:4:"form";a:3:{s:4:"name";s:4:"form";s:4:"slug";s:4:"form";s:5:"count";s:3:"737";}s:8:"category";a:3:{s:4:"name";s:8:"category";s:4:"slug";s:8:"category";s:5:"count";s:3:"735";}s:6:"search";a:3:{s:4:"name";s:6:"search";s:4:"slug";s:6:"search";s:5:"count";s:3:"731";}s:5:"embed";a:3:{s:4:"name";s:5:"embed";s:4:"slug";s:5:"embed";s:5:"count";s:3:"724";}s:6:"photos";a:3:{s:4:"name";s:6:"photos";s:4:"slug";s:6:"photos";s:5:"count";s:3:"711";}s:6:"custom";a:3:{s:4:"name";s:6:"custom";s:4:"slug";s:6:"custom";s:5:"count";s:3:"711";}s:4:"menu";a:3:{s:4:"name";s:4:"menu";s:4:"slug";s:4:"menu";s:5:"count";s:3:"661";}s:9:"slideshow";a:3:{s:4:"name";s:9:"slideshow";s:4:"slug";s:9:"slideshow";s:5:"count";s:3:"656";}s:6:"button";a:3:{s:4:"name";s:6:"button";s:4:"slug";s:6:"button";s:5:"count";s:3:"650";}s:5:"stats";a:3:{s:4:"name";s:5:"stats";s:4:"slug";s:5:"stats";s:5:"count";s:3:"641";}s:5:"theme";a:3:{s:4:"name";s:5:"theme";s:4:"slug";s:5:"theme";s:5:"count";s:3:"638";}s:9:"dashboard";a:3:{s:4:"name";s:9:"dashboard";s:4:"slug";s:9:"dashboard";s:5:"count";s:3:"625";}s:7:"comment";a:3:{s:4:"name";s:7:"comment";s:4:"slug";s:7:"comment";s:5:"count";s:3:"620";}s:6:"mobile";a:3:{s:4:"name";s:6:"mobile";s:4:"slug";s:6:"mobile";s:5:"count";s:3:"620";}s:4:"tags";a:3:{s:4:"name";s:4:"tags";s:4:"slug";s:4:"tags";s:5:"count";s:3:"616";}s:10:"categories";a:3:{s:4:"name";s:10:"categories";s:4:"slug";s:10:"categories";s:5:"count";s:3:"603";}s:10:"statistics";a:3:{s:4:"name";s:10:"statistics";s:4:"slug";s:10:"statistics";s:5:"count";s:3:"593";}s:6:"editor";a:3:{s:4:"name";s:6:"editor";s:4:"slug";s:6:"editor";s:5:"count";s:3:"588";}s:3:"ads";a:3:{s:4:"name";s:3:"ads";s:4:"slug";s:3:"ads";s:5:"count";s:3:"586";}s:4:"user";a:3:{s:4:"name";s:4:"user";s:4:"slug";s:4:"user";s:5:"count";s:3:"585";}s:12:"social-media";a:3:{s:4:"name";s:12:"social media";s:4:"slug";s:12:"social-media";s:5:"count";s:3:"574";}s:4:"list";a:3:{s:4:"name";s:4:"list";s:4:"slug";s:4:"list";s:5:"count";s:3:"558";}s:5:"users";a:3:{s:4:"name";s:5:"users";s:4:"slug";s:5:"users";s:5:"count";s:3:"557";}s:12:"contact-form";a:3:{s:4:"name";s:12:"contact form";s:4:"slug";s:12:"contact-form";s:5:"count";s:3:"552";}s:9:"affiliate";a:3:{s:4:"name";s:9:"affiliate";s:4:"slug";s:9:"affiliate";s:5:"count";s:3:"549";}s:6:"simple";a:3:{s:4:"name";s:6:"simple";s:4:"slug";s:6:"simple";s:5:"count";s:3:"544";}s:7:"plugins";a:3:{s:4:"name";s:7:"plugins";s:4:"slug";s:7:"plugins";s:5:"count";s:3:"543";}s:9:"multisite";a:3:{s:4:"name";s:9:"multisite";s:4:"slug";s:9:"multisite";s:5:"count";s:3:"535";}s:4:"shop";a:3:{s:4:"name";s:4:"shop";s:4:"slug";s:4:"shop";s:5:"count";s:3:"525";}s:7:"picture";a:3:{s:4:"name";s:7:"picture";s:4:"slug";s:7:"picture";s:5:"count";s:3:"521";}s:9:"marketing";a:3:{s:4:"name";s:9:"marketing";s:4:"slug";s:9:"marketing";s:5:"count";s:3:"518";}s:3:"api";a:3:{s:4:"name";s:3:"api";s:4:"slug";s:3:"api";s:5:"count";s:3:"509";}s:7:"contact";a:3:{s:4:"name";s:7:"contact";s:4:"slug";s:7:"contact";s:5:"count";s:3:"502";}s:3:"url";a:3:{s:4:"name";s:3:"url";s:4:"slug";s:3:"url";s:5:"count";s:3:"488";}s:10:"newsletter";a:3:{s:4:"name";s:10:"newsletter";s:4:"slug";s:10:"newsletter";s:5:"count";s:3:"472";}s:10:"navigation";a:3:{s:4:"name";s:10:"navigation";s:4:"slug";s:10:"navigation";s:5:"count";s:3:"472";}s:8:"pictures";a:3:{s:4:"name";s:8:"pictures";s:4:"slug";s:8:"pictures";s:5:"count";s:3:"468";}s:6:"events";a:3:{s:4:"name";s:6:"events";s:4:"slug";s:6:"events";s:5:"count";s:3:"467";}s:4:"html";a:3:{s:4:"name";s:4:"html";s:4:"slug";s:4:"html";s:5:"count";s:3:"464";}s:8:"tracking";a:3:{s:4:"name";s:8:"tracking";s:4:"slug";s:8:"tracking";s:5:"count";s:3:"452";}s:10:"shortcodes";a:3:{s:4:"name";s:10:"shortcodes";s:4:"slug";s:10:"shortcodes";s:5:"count";s:3:"451";}s:8:"calendar";a:3:{s:4:"name";s:8:"calendar";s:4:"slug";s:8:"calendar";s:5:"count";s:3:"444";}s:8:"lightbox";a:3:{s:4:"name";s:8:"lightbox";s:4:"slug";s:8:"lightbox";s:5:"count";s:3:"437";}s:4:"meta";a:3:{s:4:"name";s:4:"meta";s:4:"slug";s:4:"meta";s:5:"count";s:3:"437";}s:3:"tag";a:3:{s:4:"name";s:3:"tag";s:4:"slug";s:3:"tag";s:5:"count";s:3:"435";}s:11:"advertising";a:3:{s:4:"name";s:11:"advertising";s:4:"slug";s:11:"advertising";s:5:"count";s:3:"434";}s:9:"thumbnail";a:3:{s:4:"name";s:9:"thumbnail";s:4:"slug";s:9:"thumbnail";s:5:"count";s:3:"428";}s:12:"notification";a:3:{s:4:"name";s:12:"notification";s:4:"slug";s:12:"notification";s:5:"count";s:3:"427";}s:6:"upload";a:3:{s:4:"name";s:6:"upload";s:4:"slug";s:6:"upload";s:5:"count";s:3:"424";}s:6:"paypal";a:3:{s:4:"name";s:6:"paypal";s:4:"slug";s:6:"paypal";s:5:"count";s:3:"424";}s:4:"news";a:3:{s:4:"name";s:4:"News";s:4:"slug";s:4:"news";s:5:"count";s:3:"423";}s:7:"sharing";a:3:{s:4:"name";s:7:"sharing";s:4:"slug";s:7:"sharing";s:5:"count";s:3:"423";}s:5:"flash";a:3:{s:4:"name";s:5:"flash";s:4:"slug";s:5:"flash";s:5:"count";s:3:"420";}s:16:"custom-post-type";a:3:{s:4:"name";s:16:"custom post type";s:4:"slug";s:16:"custom-post-type";s:5:"count";s:3:"418";}s:8:"linkedin";a:3:{s:4:"name";s:8:"linkedin";s:4:"slug";s:8:"linkedin";s:5:"count";s:3:"416";}}', 'no'),
(21965, 'wpfront-scroll-top-options', 'a:24:{s:7:"enabled";s:2:"on";s:13:"scroll_offset";s:3:"100";s:12:"button_width";s:1:"0";s:13:"button_height";s:1:"0";s:14:"button_opacity";s:2:"80";s:20:"button_fade_duration";s:3:"200";s:15:"scroll_duration";s:3:"400";s:15:"auto_hide_after";s:1:"2";s:18:"small_device_width";s:3:"640";s:18:"small_window_width";s:3:"640";s:12:"button_style";s:5:"image";s:9:"image_alt";s:0:"";s:16:"text_button_text";s:0:"";s:22:"text_button_text_color";s:7:"#ffffff";s:28:"text_button_background_color";s:7:"#000000";s:15:"text_button_css";s:0:"";s:8:"location";s:1:"1";s:7:"marginX";s:2:"20";s:7:"marginY";s:2:"20";s:13:"display_pages";s:1:"1";s:13:"include_pages";s:0:"";s:13:"exclude_pages";s:0:"";s:5:"image";s:6:"41.png";s:10:"custom_url";s:0:"";}', 'yes'),
(21991, '_site_transient_timeout_upaddons_remote', '1483009707', 'no'),
(21992, '_site_transient_upaddons_remote', 'a:22:{s:3:"all";a:6:{s:3:"key";s:3:"all";s:4:"name";s:10:"All addons";s:11:"description";s:75:"UpdraftPlus Premium : brings access to all UpdraftPlus add-ons and support.";s:7:"shopurl";s:26:"/shop/updraftplus-premium/";s:13:"latestversion";s:7:"2.12.30";s:12:"latestchange";s:7:"2.12.30";}s:9:"lockadmin";a:7:{s:3:"key";s:9:"lockadmin";s:4:"name";s:48:"Password-protect the UpdraftPlus Settings Screen";s:11:"description";s:69:"Provides the ability to lock the UpdraftPlus settings with a password";s:13:"latestversion";s:3:"1.2";s:7:"shopurl";s:16:"/shop/lockadmin/";s:12:"latestchange";s:7:"1.12.20";s:7:"include";s:0:"";}s:15:"dropbox-folders";a:7:{s:3:"key";s:15:"dropbox-folders";s:4:"name";s:15:"Dropbox folders";s:11:"description";s:92:"Allows Dropbox to use sub-folders - useful if you are backing up many sites into one Dropbox";s:13:"latestversion";s:3:"1.4";s:7:"shopurl";s:22:"/shop/dropbox-folders/";s:12:"latestchange";s:7:"1.12.22";s:7:"include";s:0:"";}s:19:"cloudfiles-enhanced";a:7:{s:3:"key";s:19:"cloudfiles-enhanced";s:4:"name";s:31:"Rackspace Cloud Files, enhanced";s:11:"description";s:58:"Adds enhanced capabilities for Rackspace Cloud Files users";s:13:"latestversion";s:3:"1.6";s:7:"shopurl";s:26:"/shop/cloudfiles-enhanced/";s:12:"latestchange";s:7:"1.12.18";s:7:"include";s:0:"";}s:8:"migrator";a:7:{s:3:"key";s:8:"migrator";s:4:"name";s:49:"Migrate a WordPress site to a different location.";s:11:"description";s:133:"Import a backup into a different site, including database search-and-replace. Ideal for development and testing and cloning of sites.";s:13:"latestversion";s:3:"3.5";s:7:"shopurl";s:15:"/shop/migrator/";s:12:"latestchange";s:7:"1.12.24";s:7:"include";s:0:"";}s:9:"reporting";a:7:{s:3:"key";s:9:"reporting";s:4:"name";s:31:"Sophisticated reporting options";s:11:"description";s:43:"Provides various new reporting capabilities";s:13:"latestversion";s:3:"2.2";s:7:"shopurl";s:16:"/shop/reporting/";s:12:"latestchange";s:7:"2.12.28";s:7:"include";s:0:"";}s:5:"azure";a:7:{s:3:"key";s:5:"azure";s:4:"name";s:23:"Microsoft Azure Support";s:11:"description";s:23:"Microsoft Azure Support";s:13:"latestversion";s:3:"1.3";s:7:"shopurl";s:12:"/shop/azure/";s:12:"latestchange";s:7:"1.11.28";s:7:"include";s:14:"includes/azure";}s:8:"importer";a:7:{s:3:"key";s:8:"importer";s:4:"name";s:55:"Import a WordPress backup made by another backup plugin";s:11:"description";s:112:"Import a backup made by other supported WordPress backup plugins (see shop page for a list of supported plugins)";s:13:"latestversion";s:3:"3.1";s:7:"shopurl";s:15:"/shop/importer/";s:12:"latestchange";s:7:"1.12.19";s:7:"include";s:0:"";}s:4:"sftp";a:7:{s:3:"key";s:4:"sftp";s:4:"name";s:27:"SFTP, SCP and FTPS Support\r";s:11:"description";s:69:"Allows UpdraftPlus to back up to SFTP, SSH and encrypted FTP servers\r";s:13:"latestversion";s:4:"2.6\r";s:7:"shopurl";s:12:"/shop/sftp/\r";s:12:"latestchange";s:8:"1.11.28\r";s:7:"include";s:0:"";}s:7:"copycom";a:7:{s:3:"key";s:7:"copycom";s:4:"name";s:16:"Copy.Com Support";s:11:"description";s:55:"Allows UpdraftPlus to back up to Copy.Com cloud storage";s:13:"latestversion";s:3:"1.4";s:7:"shopurl";s:14:"/shop/copycom/";s:12:"latestchange";s:6:"1.12.6";s:7:"include";s:0:"";}s:9:"morefiles";a:7:{s:3:"key";s:9:"morefiles";s:4:"name";s:44:"Back up more files, including WordPress core";s:11:"description";s:138:"Creates a backup of WordPress core (including everything in that directory WordPress is in), and any other file/directory you specify too.";s:13:"latestversion";s:3:"2.2";s:7:"shopurl";s:17:"/shop/more-files/";s:12:"latestchange";s:7:"1.11.28";s:7:"include";s:0:"";}s:6:"webdav";a:7:{s:3:"key";s:6:"webdav";s:4:"name";s:14:"WebDAV Support";s:11:"description";s:47:"Allows UpdraftPlus to back up to WebDAV servers";s:13:"latestversion";s:3:"2.1";s:7:"shopurl";s:13:"/shop/webdav/";s:12:"latestchange";s:7:"1.12.17";s:7:"include";s:13:"includes/PEAR";}s:9:"multisite";a:7:{s:3:"key";s:9:"multisite";s:4:"name";s:17:"Multisite/Network";s:11:"description";s:107:"Makes UpdraftPlus compatible with a WordPress Network (a.k.a. multi-site) and adds Network-related features";s:13:"latestversion";s:3:"3.3";s:7:"shopurl";s:24:"/shop/network-multisite/";s:12:"latestchange";s:7:"1.12.28";s:7:"include";s:0:"";}s:9:"noadverts";a:7:{s:3:"key";s:9:"noadverts";s:4:"name";s:10:"No Adverts";s:11:"description";s:64:"Removes all advertising from the UpdraftPlus settings and emails";s:13:"latestversion";s:3:"1.1";s:7:"shopurl";s:17:"/shop/no-adverts/";s:12:"latestchange";s:6:"1.9.19";s:7:"include";s:0:"";}s:10:"autobackup";a:7:{s:3:"key";s:10:"autobackup";s:4:"name";s:17:"Automatic Backups";s:11:"description";s:88:"Save time and worry by automatically create backups before updating WordPress components";s:13:"latestversion";s:3:"2.6";s:7:"shopurl";s:17:"/shop/autobackup/";s:12:"latestchange";s:7:"1.12.28";s:7:"include";s:0:"";}s:12:"moredatabase";a:7:{s:3:"key";s:12:"moredatabase";s:4:"name";s:32:"Multiple database backup options";s:11:"description";s:83:"Provides the ability to encrypt database backups, and to back up external databases";s:13:"latestversion";s:3:"1.2";s:7:"shopurl";s:19:"/shop/moredatabase/";s:12:"latestchange";s:7:"1.11.28";s:7:"include";s:0:"";}s:8:"onedrive";a:7:{s:3:"key";s:8:"onedrive";s:4:"name";s:27:"Microsoft OneDrive Support\r";s:11:"description";s:27:"Microsoft OneDrive Support\r";s:13:"latestversion";s:4:"1.6\r";s:7:"shopurl";s:16:"/shop/onedrive/\r";s:12:"latestchange";s:8:"1.12.19\r";s:7:"include";s:18:"includes/onedrive\r";}s:7:"fixtime";a:7:{s:3:"key";s:7:"fixtime";s:4:"name";s:19:"Time and Scheduling";s:11:"description";s:103:"Allows you to specify the exact time at which backups will run, and create more complex retention rules";s:13:"latestversion";s:3:"2.1";s:7:"shopurl";s:15:"/shop/fix-time/";s:12:"latestchange";s:6:"1.12.3";s:7:"include";s:0:"";}s:11:"morestorage";a:7:{s:3:"key";s:11:"morestorage";s:4:"name";s:24:"Multiple storage options";s:11:"description";s:83:"Provides the ability to back up to multiple remote storage facilities, not just one";s:13:"latestversion";s:3:"1.3";s:7:"shopurl";s:18:"/shop/morestorage/";s:12:"latestchange";s:7:"1.11.28";s:7:"include";s:0:"";}s:11:"s3-enhanced";a:7:{s:3:"key";s:11:"s3-enhanced";s:4:"name";s:19:"Amazon S3, enhanced";s:11:"description";s:46:"Adds enhanced capabilities for Amazon S3 users";s:13:"latestversion";s:3:"1.6";s:7:"shopurl";s:18:"/shop/s3-enhanced/";s:12:"latestchange";s:6:"1.12.6";s:7:"include";s:0:"";}s:11:"googlecloud";a:7:{s:3:"key";s:11:"googlecloud";s:4:"name";s:21:"Google Cloud Support\r";s:11:"description";s:21:"Google Cloud Support\r";s:13:"latestversion";s:4:"1.2\r";s:7:"shopurl";s:19:"/shop/googlecloud/\r";s:12:"latestchange";s:8:"1.12.10\r";s:7:"include";s:21:"includes/googlecloud\r";}s:15:"google-enhanced";a:7:{s:3:"key";s:15:"google-enhanced";s:4:"name";s:22:"Google Drive, enhanced";s:11:"description";s:49:"Adds enhanced capabilities for Google Drive users";s:13:"latestversion";s:3:"1.0";s:7:"shopurl";s:28:"/shop/google-drive-enhanced/";s:12:"latestchange";s:5:"1.9.1";s:7:"include";s:0:"";}}', 'no'),
(22491, '_transient_timeout_dash_5f25301ca0145abac6dfc3a0899dc43b', '1484069456', 'no'),
(22492, '_transient_dash_5f25301ca0145abac6dfc3a0899dc43b', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2016/12/vaughan/''>WordPress 4.7 “Vaughan”</a> <span class="rss-date">December 6, 2016</span><div class="rssSummary">Version 4.7 of WordPress, named “Vaughan” in honor of legendary jazz vocalist Sarah &quot;Sassy&quot; Vaughan, is available for download or update in your WordPress dashboard. New features in 4.7 help you get your site set up the way you want it.</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wptavern.com/how-laravel-forge-can-help-you-run-wordpress-in-the-cloud''>WPTavern: How Laravel Forge Can Help You Run WordPress in the Cloud</a></li><li><a class=''rsswidget'' href=''https://poststatus.com/contributing-to-twenty-seventeen-theme/''>Post Status: Contributing to Twenty Seventeen</a></li><li><a class=''rsswidget'' href=''https://wptavern.com/lets-encrypt-passes-20-million-active-certificates-in-2016''>WPTavern: Let’s Encrypt Passes 20 Million Active Certificates in 2016</a></li></ul></div><div class="rss-widget"><ul><li class="dashboard-news-plugin"><span>Popular Plugin:</span> Page Builder by SiteOrigin&nbsp;<a href="plugin-install.php?tab=plugin-information&amp;plugin=siteorigin-panels&amp;_wpnonce=4b487c947c&amp;TB_iframe=true&amp;width=600&amp;height=800" class="thickbox open-plugin-details-modal" aria-label="Install Page Builder by SiteOrigin">(Install)</a></li></ul></div>', 'no'),
(22554, 'category_children', 'a:2:{i:234;a:3:{i:0;i:194;i:1;i:233;i:2;i:246;}i:246;a:1:{i:0;i:239;}}', 'yes'),
(22742, '_transient_timeout_wpseo_sitemap_cache_gallery_1', '1484542149', 'no'),
(22743, '_transient_wpseo_sitemap_cache_gallery_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/gallery/</loc>\n		<lastmod>2016-12-29T12:53:16+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.8</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/gallery/meeting-spaces/</loc>\n		<lastmod>2016-10-12T15:59:30+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/08/Asia-Centre-Cover-Photo-1.jpg</image:loc>\n			<image:caption><![CDATA[Spaces Gallery]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/gallery/asiacentre-space-gallery/</loc>\n		<lastmod>2016-12-29T11:56:04+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/12/Ben1-asiacentre-event-space.jpeg</image:loc>\n			<image:caption><![CDATA[ASIA Centre Space Gallery]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/gallery/media-and-communications-workshop/</loc>\n		<lastmod>2016-12-23T20:32:41+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/12/14914826_10202859464004726_798943903_n.jpg</image:loc>\n			<image:caption><![CDATA[Media and Communications Workshop]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/gallery/upr/</loc>\n		<lastmod>2016-12-29T12:53:16+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/12/image7.jpeg</image:loc>\n			<image:caption><![CDATA[UPR Conference]]></image:caption>\n		</image:image>\n	</url>\n</urlset>', 'no'),
(22817, '_transient_timeout_wpseo_sitemap_cache_galleries_1', '1484682675', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(22818, '_transient_wpseo_sitemap_cache_galleries_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/galleries/course-galleries/</loc>\n		<lastmod>2016-12-23T20:32:41+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.2</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/galleries/galleries/</loc>\n		<lastmod>2016-12-29T12:53:16+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.4</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/galleries/gallery/</loc>\n		<lastmod>2016-12-29T12:53:16+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.2</priority>\n	</url>\n</urlset>', 'no'),
(22825, '_transient_timeout_wpseo_sitemap_cache_courses_1', '1484702052', 'no'),
(22826, '_transient_wpseo_sitemap_cache_courses_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/courses/course-2/</loc>\n		<lastmod>2014-06-23T19:16:43+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.4</priority>\n	</url>\n</urlset>', 'no'),
(22827, '_transient_timeout_wpseo_sitemap_cache_course_1', '1484703874', 'no'),
(22828, '_transient_wpseo_sitemap_cache_course_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/course/</loc>\n		<lastmod>2014-06-23T19:16:43+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.8</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/optimization-methods-in-management-science/</loc>\n		<lastmod>2014-06-09T22:36:42+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/basics-in-applied-quantitative-anlaysis/</loc>\n		<lastmod>2014-06-10T13:47:15+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/spirituality-religion-and-healing-in-counseling/</loc>\n		<lastmod>2014-06-10T13:50:38+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/independent-study-in-education/</loc>\n		<lastmod>2014-06-23T19:01:57+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/professional-writing-and-communications/</loc>\n		<lastmod>2014-06-23T19:05:34+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/field-experiences-in-american-higher-education/</loc>\n		<lastmod>2014-06-23T19:09:45+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/foundations-of-health-professions-education/</loc>\n		<lastmod>2014-06-23T19:12:49+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/course/advanced-quantitative-research-methods/</loc>\n		<lastmod>2014-06-23T19:16:43+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n</urlset>', 'no'),
(22836, '_site_transient_timeout_browser_43b50faf5836bf031591a7df0742e8c0', '1485227821', 'no'),
(22837, '_site_transient_browser_43b50faf5836bf031591a7df0742e8c0', 'a:9:{s:8:"platform";s:9:"Macintosh";s:4:"name";s:6:"Safari";s:7:"version";s:4:"10.0";s:10:"update_url";s:28:"http://www.apple.com/safari/";s:7:"img_src";s:49:"http://s.wordpress.org/images/browsers/safari.png";s:11:"img_src_ssl";s:48:"https://wordpress.org/images/browsers/safari.png";s:15:"current_version";s:1:"5";s:7:"upgrade";b:0;s:8:"insecure";b:0;}', 'no'),
(22918, '_site_transient_timeout_browser_844f7ae4d251b2e6e152fdd13ef479f6', '1485313873', 'no'),
(22919, '_site_transient_browser_844f7ae4d251b2e6e152fdd13ef479f6', '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'),
(22963, '_transient_timeout_wpseo_sitemap_cache_events_1', '1484840777', 'no'),
(22964, '_transient_wpseo_sitemap_cache_events_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://Conferences</loc>\n		<lastmod>2017-01-17T10:18:04+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.2</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/events/events/</loc>\n		<lastmod>2017-01-17T10:18:04+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.4</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/events/past-events/</loc>\n		<lastmod>2016-12-22T13:54:02+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.4</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/events/seminars/</loc>\n		<lastmod>2016-12-22T13:47:36+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.4</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/events/upcoming-events/</loc>\n		<lastmod>2017-01-17T10:18:04+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/events/workshops/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.4</priority>\n	</url>\n</urlset>', 'no'),
(23036, '_transient_timeout_wpseo_sitemap_cache_event_1', '1484920064', 'no'),
(23037, '_transient_wpseo_sitemap_cache_event_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/event/</loc>\n		<lastmod>2017-01-17T10:18:04+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.8</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/debating-imagined-communities-a-tribute-to-benedict-anderson/</loc>\n		<lastmod>2016-02-14T17:24:08+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2015/12/Screen-Shot-2015-12-18-at-11.43.39-am.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2015 12 18 at 11.43.39 am]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg</image:loc>\n			<image:caption><![CDATA[Anderson B]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/kachin/</loc>\n		<lastmod>2016-12-22T13:47:36+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/02/Social-Justice.jpg</image:loc>\n			<image:caption><![CDATA[Social Justice]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean.jpg</image:loc>\n			<image:caption><![CDATA[Karin Dean]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/universal-periodic-review-in-southeast-asia/</loc>\n		<lastmod>2016-12-22T13:47:36+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/02/upr.jpg</image:loc>\n			<image:caption><![CDATA[upr]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-1140x1612.jpg</image:loc>\n			<image:caption><![CDATA[Draft Programme]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-Day-2-1140x1612.jpg</image:loc>\n			<image:caption><![CDATA[Draft Programme Day 2]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/07/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614.jpg</image:loc>\n			<image:caption><![CDATA[UPR in Southeast Asia  Conference Call   Final Deadline]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/yasu-thesis/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/a-political-utopia-called-singapore/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/02/Singapore-Election-Ballot-Box.jpg</image:loc>\n			<image:caption><![CDATA[Singapore Election Ballot Box]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/02/Jeanette.png</image:loc>\n			<image:caption><![CDATA[Jeanette]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/2556/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/03/FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280670752.jpg</image:loc>\n			<image:caption><![CDATA[FMG Amnesty TCP Genital Mutilation Photo courtesy Of Layalk Via Flickr]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png</image:loc>\n			<image:caption><![CDATA[Alexandra Demetrianova]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/academic-writing-clinic/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/04/academic_writing.jpg</image:loc>\n			<image:caption><![CDATA[academic writing]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/cause-lawyering-in-conversation-with-regional-advocates/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/04/scales-1140x599.jpg</image:loc>\n			<image:caption><![CDATA[scales]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/malaysias-single%c2%ad-party-dominance-can-it-survive-the-imdb-financial-scandal/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/04/imdb-copy-e1461225880574.jpg</image:loc>\n			<image:caption><![CDATA[imdb copy]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/04/william-case.jpg</image:loc>\n			<image:caption><![CDATA[william case]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/working-with-people-centred-processes-art-education-cross-sector-collaboration/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/04/OAUB-2010.jpg</image:loc>\n			<image:caption><![CDATA[OAUB 2010]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/06/performance_payments.png</image:loc>\n			<image:caption><![CDATA[performance payments]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/academic-writing-clinic-2/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/06/rsch.jpg</image:loc>\n			<image:caption><![CDATA[rsch]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/confronting-elusiveness-demanding-accountability-in-southeast-asia/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/06/Map-of-SE-Asia_04.jpg</image:loc>\n			<image:caption><![CDATA[Map of SE Asia 04]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2016 06 09 at 4.06.02 PM]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/brexit-its-implications-an-asia-centre-roundtable/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/06/BREXIT-1140x697.jpg</image:loc>\n			<image:caption><![CDATA[BREXIT]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.36.29-PM-1.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2016 06 27 at 12.36.29 PM]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.16.26-PM.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2016 06 27 at 12.16.26 PM]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-07-14-at-4.06.21-PM.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2016 07 14 at 4.06.21 PM]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/2790/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/southeast-asia-the-upr-all-talk-no-action/</loc>\n		<lastmod>2016-12-22T13:47:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.26.28.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2016 08 25 at 16.26.28]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.16.40.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2016 08 25 at 16.16.40]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/the-2016-us-elections-change-at-last/</loc>\n		<lastmod>2016-12-22T13:48:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/09/Screen-Shot-2016-09-20-at-09.51.34.png</image:loc>\n			<image:caption><![CDATA[Screen Shot 2016 09 20 at 09.51.34]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/09/AAJA_Asia_Logo-1140x769.png</image:loc>\n			<image:caption><![CDATA[AAJA Asia Logo]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg</image:loc>\n			<image:caption><![CDATA[hbs logo separate2]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/focusonlife/</loc>\n		<lastmod>2016-12-22T13:48:41+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/10/Screen-Shot-2016-10-07-at-10.28.39.png</image:loc>\n			<image:caption><![CDATA[screen shot 2016 10 07 at 10 28 39]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/10/Press-con-7.jpg</image:loc>\n			<image:caption><![CDATA[press con 7]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/spark-sessions-an-alternative-networking-event/</loc>\n		<lastmod>2016-12-22T13:54:02+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o-600x460.jpg</image:loc>\n			<image:caption><![CDATA[14918847 1326888830663675 4103291665663509381 o]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920-600x338.png</image:loc>\n			<image:caption><![CDATA[facebook like share ss 1920]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286-600x128.png</image:loc>\n			<image:caption><![CDATA[register now button55286]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg</image:loc>\n			<image:caption><![CDATA[hbs logo separate2]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/nhriconference2017/</loc>\n		<lastmod>2017-01-17T10:18:04+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended-339x480.jpg</image:loc>\n			<image:caption><![CDATA[nhri conference call deadline extended]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/visa-mastercard-paypal-600x116.png</image:loc>\n			<image:caption><![CDATA[visa mastercard paypal]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/media-communications-workshop/</loc>\n		<lastmod>2016-12-22T13:47:34+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/Professional-skills.png</image:loc>\n			<image:caption><![CDATA[professional skills]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/15146880_10157669480405307_331213641_o-600x450.jpg</image:loc>\n			<image:caption><![CDATA[15146880 10157669480405307 331213641 o]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg</image:loc>\n			<image:caption><![CDATA[14500703 10210243375978781 116785850124513616 o]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg</image:loc>\n			<image:caption><![CDATA[14352502 1286411821378043 4165059938118413393 o]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-1--600x251.jpg</image:loc>\n			<image:caption><![CDATA[programme week 1]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-2-600x245.jpg</image:loc>\n			<image:caption><![CDATA[programme week 2]]></image:caption>\n		</image:image>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/event/benedict-anderson-1st-anniversary-memorial-roundtable/</loc>\n		<lastmod>2016-12-28T16:06:25+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster-e1480055488282-600x370.jpg</image:loc>\n			<image:caption><![CDATA[fb poster]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png</image:loc>\n			<image:caption><![CDATA[screen shot 2016 11 03 at 16 26 44]]></image:caption>\n		</image:image>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png</image:loc>\n			<image:caption><![CDATA[screen shot 2016 11 03 at 16 46 31]]></image:caption>\n		</image:image>\n	</url>\n</urlset>', 'no'),
(23074, '_site_transient_timeout_available_translations', '1484893367', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(23075, '_site_transient_available_translations', 'a:88:{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.5";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.5/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.6";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.6/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&#230;t";}}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: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: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_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_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_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_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_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_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_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: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_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_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: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_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: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: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:5:"4.5.5";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.5/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.14";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.14/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:"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: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.14";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.14/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:"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:"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:"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: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.5";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.5/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'),
(23083, 'wpseo_gsc_last_fetch', '1484882863', 'no'),
(23110, '_site_transient_update_core', 'O:8:"stdClass":4:{s:7:"updates";a:3:{i:0;O:8:"stdClass":10:{s:8:"response";s:7:"upgrade";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-4.7.1.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.7.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.7.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.7.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.7.1";s:7:"version";s:5:"4.7.1";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":12:{s:8:"response";s:10:"autoupdate";s:8:"download";s:59:"https://downloads.wordpress.org/release/wordpress-4.7.1.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.7.1.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.7.1-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.7.1-new-bundled.zip";s:7:"partial";b:0;s:8:"rollback";b:0;}s:7:"current";s:5:"4.7.1";s:7:"version";s:5:"4.7.1";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:12:"notify_email";s:1:"1";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.6.2.zip";s:6:"locale";s:5:"en_US";s:8:"packages";O:8:"stdClass":5:{s:4:"full";s:59:"https://downloads.wordpress.org/release/wordpress-4.6.2.zip";s:10:"no_content";s:70:"https://downloads.wordpress.org/release/wordpress-4.6.2-no-content.zip";s:11:"new_bundled";s:71:"https://downloads.wordpress.org/release/wordpress-4.6.2-new-bundled.zip";s:7:"partial";s:69:"https://downloads.wordpress.org/release/wordpress-4.6.2-partial-1.zip";s:8:"rollback";s:70:"https://downloads.wordpress.org/release/wordpress-4.6.2-rollback-1.zip";}s:7:"current";s:5:"4.6.2";s:7:"version";s:5:"4.6.2";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:1485276158;s:15:"version_checked";s:5:"4.6.1";s:12:"translations";a:0:{}}', 'no'),
(23111, '_site_transient_update_plugins', 'O:8:"stdClass":4:{s:12:"last_checked";i:1485276158;s:8:"response";a:18:{s:25:"add-to-any/add-to-any.php";O:8:"stdClass":8:{s:2:"id";s:3:"429";s:4:"slug";s:10:"add-to-any";s:6:"plugin";s:25:"add-to-any/add-to-any.php";s:11:"new_version";s:5:"1.7.7";s:3:"url";s:41:"https://wordpress.org/plugins/add-to-any/";s:7:"package";s:59:"https://downloads.wordpress.org/plugin/add-to-any.1.7.7.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":2:{s:5:"4.6.1";O:8:"stdClass":3:{s:7:"percent";i:100;s:5:"votes";i:1;s:11:"total_votes";i:1;}s:5:"4.7.1";O:8:"stdClass":3:{s:7:"percent";i:100;s:5:"votes";i:4;s:11:"total_votes";i:4;}}}s:37:"breadcrumb-navxt/breadcrumb-navxt.php";O:8:"stdClass":9:{s:2:"id";s:4:"1283";s:4:"slug";s:16:"breadcrumb-navxt";s:6:"plugin";s:37:"breadcrumb-navxt/breadcrumb-navxt.php";s:11:"new_version";s:5:"5.6.0";s:3:"url";s:47:"https://wordpress.org/plugins/breadcrumb-navxt/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/breadcrumb-navxt.5.6.0.zip";s:14:"upgrade_notice";s:177:"This version requires PHP5.3 or newer. This version introduces a new 4th optional parameter to bcn_display() and bcn_display_list() that bypasses the internal caching mechanism.";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:61:"comments-disable-accesspress/comments-disable-accesspress.php";O:8:"stdClass":8:{s:2:"id";s:5:"59560";s:4:"slug";s:28:"comments-disable-accesspress";s:6:"plugin";s:61:"comments-disable-accesspress/comments-disable-accesspress.php";s:11:"new_version";s:5:"1.0.4";s:3:"url";s:59:"https://wordpress.org/plugins/comments-disable-accesspress/";s:7:"package";s:77:"https://downloads.wordpress.org/plugin/comments-disable-accesspress.1.0.4.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:36:"contact-form-7/wp-contact-form-7.php";O:8:"stdClass":8:{s:2:"id";s:3:"790";s:4:"slug";s:14:"contact-form-7";s:6:"plugin";s:36:"contact-form-7/wp-contact-form-7.php";s:11:"new_version";s:5:"4.6.1";s:3:"url";s:45:"https://wordpress.org/plugins/contact-form-7/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/contact-form-7.4.6.1.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:34:"custom-sidebars/customsidebars.php";O:8:"stdClass":8:{s:2:"id";s:5:"17018";s:4:"slug";s:15:"custom-sidebars";s:6:"plugin";s:34:"custom-sidebars/customsidebars.php";s:11:"new_version";s:7:"2.1.1.9";s:3:"url";s:46:"https://wordpress.org/plugins/custom-sidebars/";s:7:"package";s:66:"https://downloads.wordpress.org/plugin/custom-sidebars.2.1.1.9.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:45:"enable-media-replace/enable-media-replace.php";O:8:"stdClass":8:{s:2:"id";s:4:"8351";s:4:"slug";s:20:"enable-media-replace";s:6:"plugin";s:45:"enable-media-replace/enable-media-replace.php";s:11:"new_version";s:5:"3.0.5";s:3:"url";s:51:"https://wordpress.org/plugins/enable-media-replace/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/enable-media-replace.zip";s:6:"tested";s:5:"4.6.2";s:13:"compatibility";O:8:"stdClass":1:{s:5:"4.6.1";O:8:"stdClass":3:{s:7:"percent";i:100;s:5:"votes";i:2;s:11:"total_votes";i:2;}}}s:33:"event-espresso-decaf/espresso.php";O:8:"stdClass":8:{s:2:"id";s:5:"53616";s:4:"slug";s:20:"event-espresso-decaf";s:6:"plugin";s:33:"event-espresso-decaf/espresso.php";s:11:"new_version";s:12:"4.9.26.decaf";s:3:"url";s:51:"https://wordpress.org/plugins/event-espresso-decaf/";s:7:"package";s:76:"https://downloads.wordpress.org/plugin/event-espresso-decaf.4.9.26.decaf.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:21:"like-box/like-box.php";O:8:"stdClass":8:{s:2:"id";s:5:"54504";s:4:"slug";s:8:"like-box";s:6:"plugin";s:21:"like-box/like-box.php";s:11:"new_version";s:6:"0.7.50";s:3:"url";s:39:"https://wordpress.org/plugins/like-box/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/like-box.0.7.50.zip";s:6:"tested";s:5:"4.7.0";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:25:"formidable/formidable.php";O:8:"stdClass":8:{s:2:"id";s:5:"11762";s:4:"slug";s:10:"formidable";s:6:"plugin";s:25:"formidable/formidable.php";s:11:"new_version";s:4:"2.03";s:3:"url";s:41:"https://wordpress.org/plugins/formidable/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/formidable.2.03.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:27:"maintenance/maintenance.php";O:8:"stdClass":8:{s:2:"id";s:5:"31968";s:4:"slug";s:11:"maintenance";s:6:"plugin";s:27:"maintenance/maintenance.php";s:11:"new_version";s:3:"3.3";s:3:"url";s:42:"https://wordpress.org/plugins/maintenance/";s:7:"package";s:58:"https://downloads.wordpress.org/plugin/maintenance.3.3.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:45:"reorder-entry-images/reorder-entry-images.php";O:8:"stdClass":8:{s:2:"id";s:5:"42324";s:4:"slug";s:20:"reorder-entry-images";s:6:"plugin";s:45:"reorder-entry-images/reorder-entry-images.php";s:11:"new_version";s:5:"1.0.6";s:3:"url";s:51:"https://wordpress.org/plugins/reorder-entry-images/";s:7:"package";s:69:"https://downloads.wordpress.org/plugin/reorder-entry-images.1.0.6.zip";s:6:"tested";s:5:"4.4.6";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:43:"the-events-calendar/the-events-calendar.php";O:8:"stdClass":8:{s:2:"id";s:5:"11861";s:4:"slug";s:19:"the-events-calendar";s:6:"plugin";s:43:"the-events-calendar/the-events-calendar.php";s:11:"new_version";s:7:"4.4.0.1";s:3:"url";s:50:"https://wordpress.org/plugins/the-events-calendar/";s:7:"package";s:70:"https://downloads.wordpress.org/plugin/the-events-calendar.4.4.0.1.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:5:"4.7.1";O:8:"stdClass":3:{s:7:"percent";i:75;s:5:"votes";i:6;s:11:"total_votes";i:8;}}}s:53:"widget-importer-exporter/widget-importer-exporter.php";O:8:"stdClass":8:{s:2:"id";s:5:"42405";s:4:"slug";s:24:"widget-importer-exporter";s:6:"plugin";s:53:"widget-importer-exporter/widget-importer-exporter.php";s:11:"new_version";s:5:"1.4.2";s:3:"url";s:55:"https://wordpress.org/plugins/widget-importer-exporter/";s:7:"package";s:73:"https://downloads.wordpress.org/plugin/widget-importer-exporter.1.4.2.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:29:"wp-mail-smtp/wp_mail_smtp.php";O:8:"stdClass":9:{s:2:"id";s:3:"951";s:4:"slug";s:12:"wp-mail-smtp";s:6:"plugin";s:29:"wp-mail-smtp/wp_mail_smtp.php";s:11:"new_version";s:6:"0.10.1";s:3:"url";s:43:"https://wordpress.org/plugins/wp-mail-smtp/";s:7:"package";s:62:"https://downloads.wordpress.org/plugin/wp-mail-smtp.0.10.1.zip";s:14:"upgrade_notice";s:47:"Addition of Pepipost and cleanup of admin page.";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:5:"4.6.1";O:8:"stdClass":3:{s:7:"percent";i:100;s:5:"votes";i:1;s:11:"total_votes";i:1;}}}s:27:"wp-pagenavi/wp-pagenavi.php";O:8:"stdClass":8:{s:2:"id";s:3:"363";s:4:"slug";s:11:"wp-pagenavi";s:6:"plugin";s:27:"wp-pagenavi/wp-pagenavi.php";s:11:"new_version";s:4:"2.91";s:3:"url";s:42:"https://wordpress.org/plugins/wp-pagenavi/";s:7:"package";s:59:"https://downloads.wordpress.org/plugin/wp-pagenavi.2.91.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:5:"4.6.1";O:8:"stdClass":3:{s:7:"percent";i:100;s:5:"votes";i:3;s:11:"total_votes";i:3;}}}s:31:"wp-google-maps/wpGoogleMaps.php";O:8:"stdClass":8:{s:2:"id";s:5:"28725";s:4:"slug";s:14:"wp-google-maps";s:6:"plugin";s:31:"wp-google-maps/wpGoogleMaps.php";s:11:"new_version";s:6:"6.4.02";s:3:"url";s:45:"https://wordpress.org/plugins/wp-google-maps/";s:7:"package";s:57:"https://downloads.wordpress.org/plugin/wp-google-maps.zip";s:6:"tested";s:5:"4.6.2";s:13:"compatibility";O:8:"stdClass":1:{s:5:"4.7.1";O:8:"stdClass":3:{s:7:"percent";i:100;s:5:"votes";i:1;s:11:"total_votes";i:1;}}}s:51:"wp-limit-login-attempts/wp-limit-login-attempts.php";O:8:"stdClass":8:{s:2:"id";s:5:"63413";s:4:"slug";s:23:"wp-limit-login-attempts";s:6:"plugin";s:51:"wp-limit-login-attempts/wp-limit-login-attempts.php";s:11:"new_version";s:3:"2.6";s:3:"url";s:54:"https://wordpress.org/plugins/wp-limit-login-attempts/";s:7:"package";s:70:"https://downloads.wordpress.org/plugin/wp-limit-login-attempts.2.6.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}s:24:"wordpress-seo/wp-seo.php";O:8:"stdClass":8:{s:2:"id";s:4:"5899";s:4:"slug";s:13:"wordpress-seo";s:6:"plugin";s:24:"wordpress-seo/wp-seo.php";s:11:"new_version";s:3:"4.1";s:3:"url";s:44:"https://wordpress.org/plugins/wordpress-seo/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/wordpress-seo.4.1.zip";s:6:"tested";s:5:"4.7.1";s:13:"compatibility";O:8:"stdClass":1:{s:6:"scalar";O:8:"stdClass":1:{s:6:"scalar";b:0;}}}}s:12:"translations";a:2:{i:0;a:7:{s:4:"type";s:6:"plugin";s:4:"slug";s:7:"akismet";s:8:"language";s:5:"pt_PT";s:7:"version";s:3:"3.2";s:7:"updated";s:19:"2017-01-20 08:35:07";s:7:"package";s:72:"https://downloads.wordpress.org/translation/plugin/akismet/3.2/pt_PT.zip";s:10:"autoupdate";b:1;}i:1;a:7:{s:4:"type";s:6:"plugin";s:4:"slug";s:21:"regenerate-thumbnails";s:8:"language";s:5:"pt_PT";s:7:"version";s:5:"2.2.6";s:7:"updated";s:19:"2017-01-20 08:36:15";s:7:"package";s:88:"https://downloads.wordpress.org/translation/plugin/regenerate-thumbnails/2.2.6/pt_PT.zip";s:10:"autoupdate";b:1;}}s:9:"no_update";a:9:{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:43:"attach-and-unattach/attach-and-unattach.php";O:8:"stdClass":6:{s:2:"id";s:5:"52878";s:4:"slug";s:19:"attach-and-unattach";s:6:"plugin";s:43:"attach-and-unattach/attach-and-unattach.php";s:11:"new_version";s:3:"0.4";s:3:"url";s:50:"https://wordpress.org/plugins/attach-and-unattach/";s:7:"package";s:62:"https://downloads.wordpress.org/plugin/attach-and-unattach.zip";}s:33:"duplicate-post/duplicate-post.php";O:8:"stdClass":7:{s:2:"id";s:4:"1295";s:4:"slug";s:14:"duplicate-post";s:6:"plugin";s:33:"duplicate-post/duplicate-post.php";s:11:"new_version";s:5:"3.1.2";s:3:"url";s:45:"https://wordpress.org/plugins/duplicate-post/";s:7:"package";s:63:"https://downloads.wordpress.org/plugin/duplicate-post.3.1.2.zip";s:14:"upgrade_notice";s:36:"Fixes the problem with custom fields";}s:37:"login-page-styler/loginPageStyler.php";O:8:"stdClass":6:{s:2:"id";s:5:"57999";s:4:"slug";s:17:"login-page-styler";s:6:"plugin";s:37:"login-page-styler/loginPageStyler.php";s:11:"new_version";s:5:"3.1.5";s:3:"url";s:48:"https://wordpress.org/plugins/login-page-styler/";s:7:"package";s:66:"https://downloads.wordpress.org/plugin/login-page-styler.3.1.5.zip";}s:47:"regenerate-thumbnails/regenerate-thumbnails.php";O:8:"stdClass":6:{s:2:"id";s:4:"4437";s:4:"slug";s:21:"regenerate-thumbnails";s:6:"plugin";s:47:"regenerate-thumbnails/regenerate-thumbnails.php";s:11:"new_version";s:5:"2.2.6";s:3:"url";s:52:"https://wordpress.org/plugins/regenerate-thumbnails/";s:7:"package";s:64:"https://downloads.wordpress.org/plugin/regenerate-thumbnails.zip";}s:31:"show-template/show-template.php";O:8:"stdClass":7:{s:2:"id";s:4:"8026";s:4:"slug";s:13:"show-template";s:6:"plugin";s:31:"show-template/show-template.php";s:11:"new_version";s:3:"1.1";s:3:"url";s:44:"https://wordpress.org/plugins/show-template/";s:7:"package";s:60:"https://downloads.wordpress.org/plugin/show-template.1.1.zip";s:14:"upgrade_notice";s:146:"Update to use new template loader features in WordPress 3.0 and add beter detection for when a plugin or theme has intercepted the template loader";}s:27:"updraftplus/updraftplus.php";O:8:"stdClass":6:{s:2:"id";s:5:"31679";s:4:"slug";s:11:"updraftplus";s:6:"plugin";s:27:"updraftplus/updraftplus.php";s:11:"new_version";s:7:"1.12.30";s:3:"url";s:42:"https://wordpress.org/plugins/updraftplus/";s:7:"package";s:62:"https://downloads.wordpress.org/plugin/updraftplus.1.12.30.zip";}s:51:"verify-google-webmaster-tools/verify-webmasters.php";O:8:"stdClass":7:{s:2:"id";s:5:"41302";s:4:"slug";s:29:"verify-google-webmaster-tools";s:6:"plugin";s:51:"verify-google-webmaster-tools/verify-webmasters.php";s:11:"new_version";s:3:"1.3";s:3:"url";s:60:"https://wordpress.org/plugins/verify-google-webmaster-tools/";s:7:"package";s:76:"https://downloads.wordpress.org/plugin/verify-google-webmaster-tools.1.3.zip";s:14:"upgrade_notice";s:21:"Documentation update.";}s:41:"wpfront-scroll-top/wpfront-scroll-top.php";O:8:"stdClass":7:{s:2:"id";s:5:"46608";s:4:"slug";s:18:"wpfront-scroll-top";s:6:"plugin";s:41:"wpfront-scroll-top/wpfront-scroll-top.php";s:11:"new_version";s:3:"1.5";s:3:"url";s:49:"https://wordpress.org/plugins/wpfront-scroll-top/";s:7:"package";s:65:"https://downloads.wordpress.org/plugin/wpfront-scroll-top.1.5.zip";s:14:"upgrade_notice";s:25:"Performance improvements.";}}}', 'no'),
(23114, '_site_transient_update_themes', 'O:8:"stdClass":4:{s:12:"last_checked";i:1485276161;s:7:"checked";a:3:{s:16:"Buntington-child";s:5:"1.0.0";s:10:"Buntington";s:5:"1.0.0";s:13:"twentysixteen";s:3:"1.3";}s:8:"response";a:0:{}s:12:"translations";a:0:{}}', 'no'),
(23139, '_transient_timeout_wpseo_sitemap_cache_slider_1', '1485016480', 'no'),
(23140, '_transient_wpseo_sitemap_cache_slider_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/slider/</loc>\n		<lastmod>2017-01-20T12:50:09+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.8</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/slider/home-slider/</loc>\n		<lastmod>2017-01-20T12:50:09+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n		<image:image>\n			<image:loc>http://asiacentre.co.th/wp-content/uploads/2016/12/Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report.png</image:loc>\n			<image:caption><![CDATA[HOME SLIDER]]></image:caption>\n		</image:image>\n	</url>\n</urlset>', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(23218, '_transient_timeout_wpseo_sitemap_cache_hom_page_1', '1485186130', 'no'),
(23219, '_transient_wpseo_sitemap_cache_hom_page_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/home/</loc>\n		<lastmod>2017-01-20T15:35:17+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.8</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/home/home-page/</loc>\n		<lastmod>2017-01-20T15:35:17+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>1</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/home/home-page-03/</loc>\n		<lastmod>2014-06-22T16:39:16+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/home/home-page-04/</loc>\n		<lastmod>2014-06-24T13:41:14+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/home/home-page-05/</loc>\n		<lastmod>2014-06-24T17:36:16+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n</urlset>', 'no'),
(23247, '_transient_timeout_feed_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1485197009', 'no'),
(23248, '_transient_timeout_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1485197010', 'no'),
(23249, '_transient_feed_mod_ac0b00fe65abe10e0c5b588f3ed8c7ca', '1485153810', 'no'),
(23250, '_transient_timeout_feed_d117b5738fbd35bd8c0391cda1f2b5d9', '1485197011', 'no'),
(23251, '_transient_timeout_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1485197011', 'no'),
(23252, '_transient_feed_mod_d117b5738fbd35bd8c0391cda1f2b5d9', '1485153811', 'no'),
(23253, '_transient_timeout_feed_b9388c83948825c1edaef0d856b7b109', '1485197013', 'no'),
(23254, '_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:"Mon, 23 Jan 2017 06:14: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: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: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:34:"132@https://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: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: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:36:"29860@https://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: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: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:35:"8321@https://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: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:"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:35:"6743@https://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: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: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:36:"51888@https://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: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: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:36:"12073@https://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) &#38; 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: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: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:35:"2082@https://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: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: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:36:"23862@https://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: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: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:36:"18101@https://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: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: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:34:"753@https://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:83:"The original SEO plugin for WordPress, downloaded over 30,000,000 times since 2007.";s: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: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: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:34:"363@https://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: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: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:36:"29832@https://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 &#38; 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: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: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:35:"2646@https://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: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: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:35:"2141@https://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: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: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:36:"25254@https://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: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: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:35:"9542@https://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: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: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:36:"38058@https://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: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: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:36:"47509@https://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: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: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:35:"2316@https://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: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: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:35:"2572@https://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: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: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:35:"1169@https://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: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: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:35:"5790@https://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: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: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:33:"15@https://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: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:36:"50539@https://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:36:"26907@https://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: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:36:"26607@https://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: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: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:36:"28395@https://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: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:36:"31973@https://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:36:"21738@https://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:36:"67824@https://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&#039;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:12:{s:6:"server";s:5:"nginx";s:4:"date";s:29:"Mon, 23 Jan 2017 06:43:33 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:7:"expires";s:29:"Mon, 23 Jan 2017 06:49:52 GMT";s:13:"cache-control";s:0:"";s:6:"pragma";s:0:"";s:13:"last-modified";s:31:"Mon, 23 Jan 2017 06:14:52 +0000";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:"20161004041229";}', 'no'),
(23255, '_transient_timeout_feed_mod_b9388c83948825c1edaef0d856b7b109', '1485197013', 'no'),
(23256, '_transient_feed_mod_b9388c83948825c1edaef0d856b7b109', '1485153813', 'no'),
(23257, '_transient_timeout_plugin_slugs', '1485240213', 'no'),
(23258, '_transient_plugin_slugs', 'a:28:{i:0;s:25:"add-to-any/add-to-any.php";i:1;s:19:"akismet/akismet.php";i:2;s:43:"attach-and-unattach/attach-and-unattach.php";i:3;s:37:"breadcrumb-navxt/breadcrumb-navxt.php";i:4;s:61:"comments-disable-accesspress/comments-disable-accesspress.php";i:5;s:36:"contact-form-7/wp-contact-form-7.php";i:6;s:34:"custom-sidebars/customsidebars.php";i:7;s:33:"duplicate-post/duplicate-post.php";i:8;s:45:"enable-media-replace/enable-media-replace.php";i:9;s:33:"event-espresso-decaf/espresso.php";i:10;s:21:"like-box/like-box.php";i:11;s:25:"like-box-pro/like-box.php";i:12;s:25:"formidable/formidable.php";i:13;s:37:"login-page-styler/loginPageStyler.php";i:14;s:27:"maintenance/maintenance.php";i:15;s:47:"regenerate-thumbnails/regenerate-thumbnails.php";i:16;s:45:"reorder-entry-images/reorder-entry-images.php";i:17;s:31:"show-template/show-template.php";i:18;s:43:"the-events-calendar/the-events-calendar.php";i:19;s:27:"updraftplus/updraftplus.php";i:20;s:51:"verify-google-webmaster-tools/verify-webmasters.php";i:21;s:53:"widget-importer-exporter/widget-importer-exporter.php";i:22;s:29:"wp-mail-smtp/wp_mail_smtp.php";i:23;s:27:"wp-pagenavi/wp-pagenavi.php";i:24;s:41:"wpfront-scroll-top/wpfront-scroll-top.php";i:25;s:31:"wp-google-maps/wpGoogleMaps.php";i:26;s:51:"wp-limit-login-attempts/wp-limit-login-attempts.php";i:27;s:24:"wordpress-seo/wp-seo.php";}', 'no'),
(23259, '_transient_timeout_dash_88ae138922fe95674369b1cb3d215a2b', '1485197013', 'no'),
(23260, '_transient_dash_88ae138922fe95674369b1cb3d215a2b', '<div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wordpress.org/news/2017/01/wordpress-4-7-1-security-and-maintenance-release/''>WordPress 4.7.1 Security and Maintenance Release</a> <span class="rss-date">January 11, 2017</span><div class="rssSummary">WordPress 4.7 has been downloaded over 10 million times since its release on December 6, 2016 and we are pleased to announce the immediate availability of WordPress 4.7.1. This is a security release for all previous versions and we strongly encourage you to update your sites immediately. WordPress versions 4.7 and earlier are affected by eight security issues: [&hellip;]</div></li></ul></div><div class="rss-widget"><ul><li><a class=''rsswidget'' href=''https://wptavern.com/state-of-the-word-2016-mullenweg-pushes-calypso-as-future-of-wordpress-interface-proposes-major-changes-to-release-cycle''>WPTavern: State of the Word 2016: Mullenweg Pushes Calypso as Future of WordPress’ Interface, Proposes Major Changes to Release Cycle</a></li><li><a class=''rsswidget'' href=''https://poststatus.com/matt-mullenweg-state-word-2016/''>Post Status: Matt Mullenweg State of the Word, 2016</a></li><li><a class=''rsswidget'' href=''https://ma.tt/2016/12/wordcamp-live-stream/''>Matt: WordCamp Live Stream</a></li></ul></div><div class="rss-widget"><ul><li class="dashboard-news-plugin"><span>Popular Plugin:</span> SiteOrigin Widgets Bundle&nbsp;<a href="plugin-install.php?tab=plugin-information&amp;plugin=so-widgets-bundle&amp;_wpnonce=81afbda227&amp;TB_iframe=true&amp;width=600&amp;height=800" class="thickbox open-plugin-details-modal" aria-label="Install SiteOrigin Widgets Bundle">(Install)</a></li></ul></div>', 'no'),
(23261, '_transient_timeout_vp_fontawesome_icons', '1485240219', 'no');
INSERT INTO `wp_options` (`option_id`, `option_name`, `option_value`, `autoload`) VALUES
(23262, '_transient_vp_fontawesome_icons', 'a:370:{i:0;a:2:{s:5:"value";s:8:"fa-glass";s:5:"label";s:8:"fa-glass";}i:1;a:2:{s:5:"value";s:8:"fa-music";s:5:"label";s:8:"fa-music";}i:2;a:2:{s:5:"value";s:9:"fa-search";s:5:"label";s:9:"fa-search";}i:3;a:2:{s:5:"value";s:13:"fa-envelope-o";s:5:"label";s:13:"fa-envelope-o";}i:4;a:2:{s:5:"value";s:8:"fa-heart";s:5:"label";s:8:"fa-heart";}i:5;a:2:{s:5:"value";s:7:"fa-star";s:5:"label";s:7:"fa-star";}i:6;a:2:{s:5:"value";s:9:"fa-star-o";s:5:"label";s:9:"fa-star-o";}i:7;a:2:{s:5:"value";s:7:"fa-user";s:5:"label";s:7:"fa-user";}i:8;a:2:{s:5:"value";s:7:"fa-film";s:5:"label";s:7:"fa-film";}i:9;a:2:{s:5:"value";s:11:"fa-th-large";s:5:"label";s:11:"fa-th-large";}i:10;a:2:{s:5:"value";s:5:"fa-th";s:5:"label";s:5:"fa-th";}i:11;a:2:{s:5:"value";s:10:"fa-th-list";s:5:"label";s:10:"fa-th-list";}i:12;a:2:{s:5:"value";s:8:"fa-check";s:5:"label";s:8:"fa-check";}i:13;a:2:{s:5:"value";s:8:"fa-times";s:5:"label";s:8:"fa-times";}i:14;a:2:{s:5:"value";s:14:"fa-search-plus";s:5:"label";s:14:"fa-search-plus";}i:15;a:2:{s:5:"value";s:15:"fa-search-minus";s:5:"label";s:15:"fa-search-minus";}i:16;a:2:{s:5:"value";s:12:"fa-power-off";s:5:"label";s:12:"fa-power-off";}i:17;a:2:{s:5:"value";s:9:"fa-signal";s:5:"label";s:9:"fa-signal";}i:18;a:2:{s:5:"value";s:6:"fa-cog";s:5:"label";s:6:"fa-cog";}i:19;a:2:{s:5:"value";s:10:"fa-trash-o";s:5:"label";s:10:"fa-trash-o";}i:20;a:2:{s:5:"value";s:7:"fa-home";s:5:"label";s:7:"fa-home";}i:21;a:2:{s:5:"value";s:9:"fa-file-o";s:5:"label";s:9:"fa-file-o";}i:22;a:2:{s:5:"value";s:10:"fa-clock-o";s:5:"label";s:10:"fa-clock-o";}i:23;a:2:{s:5:"value";s:7:"fa-road";s:5:"label";s:7:"fa-road";}i:24;a:2:{s:5:"value";s:11:"fa-download";s:5:"label";s:11:"fa-download";}i:25;a:2:{s:5:"value";s:22:"fa-arrow-circle-o-down";s:5:"label";s:22:"fa-arrow-circle-o-down";}i:26;a:2:{s:5:"value";s:20:"fa-arrow-circle-o-up";s:5:"label";s:20:"fa-arrow-circle-o-up";}i:27;a:2:{s:5:"value";s:8:"fa-inbox";s:5:"label";s:8:"fa-inbox";}i:28;a:2:{s:5:"value";s:16:"fa-play-circle-o";s:5:"label";s:16:"fa-play-circle-o";}i:29;a:2:{s:5:"value";s:9:"fa-repeat";s:5:"label";s:9:"fa-repeat";}i:30;a:2:{s:5:"value";s:10:"fa-refresh";s:5:"label";s:10:"fa-refresh";}i:31;a:2:{s:5:"value";s:11:"fa-list-alt";s:5:"label";s:11:"fa-list-alt";}i:32;a:2:{s:5:"value";s:7:"fa-lock";s:5:"label";s:7:"fa-lock";}i:33;a:2:{s:5:"value";s:7:"fa-flag";s:5:"label";s:7:"fa-flag";}i:34;a:2:{s:5:"value";s:13:"fa-headphones";s:5:"label";s:13:"fa-headphones";}i:35;a:2:{s:5:"value";s:13:"fa-volume-off";s:5:"label";s:13:"fa-volume-off";}i:36;a:2:{s:5:"value";s:14:"fa-volume-down";s:5:"label";s:14:"fa-volume-down";}i:37;a:2:{s:5:"value";s:12:"fa-volume-up";s:5:"label";s:12:"fa-volume-up";}i:38;a:2:{s:5:"value";s:9:"fa-qrcode";s:5:"label";s:9:"fa-qrcode";}i:39;a:2:{s:5:"value";s:10:"fa-barcode";s:5:"label";s:10:"fa-barcode";}i:40;a:2:{s:5:"value";s:6:"fa-tag";s:5:"label";s:6:"fa-tag";}i:41;a:2:{s:5:"value";s:7:"fa-tags";s:5:"label";s:7:"fa-tags";}i:42;a:2:{s:5:"value";s:7:"fa-book";s:5:"label";s:7:"fa-book";}i:43;a:2:{s:5:"value";s:11:"fa-bookmark";s:5:"label";s:11:"fa-bookmark";}i:44;a:2:{s:5:"value";s:8:"fa-print";s:5:"label";s:8:"fa-print";}i:45;a:2:{s:5:"value";s:9:"fa-camera";s:5:"label";s:9:"fa-camera";}i:46;a:2:{s:5:"value";s:7:"fa-font";s:5:"label";s:7:"fa-font";}i:47;a:2:{s:5:"value";s:7:"fa-bold";s:5:"label";s:7:"fa-bold";}i:48;a:2:{s:5:"value";s:9:"fa-italic";s:5:"label";s:9:"fa-italic";}i:49;a:2:{s:5:"value";s:14:"fa-text-height";s:5:"label";s:14:"fa-text-height";}i:50;a:2:{s:5:"value";s:13:"fa-text-width";s:5:"label";s:13:"fa-text-width";}i:51;a:2:{s:5:"value";s:13:"fa-align-left";s:5:"label";s:13:"fa-align-left";}i:52;a:2:{s:5:"value";s:15:"fa-align-center";s:5:"label";s:15:"fa-align-center";}i:53;a:2:{s:5:"value";s:14:"fa-align-right";s:5:"label";s:14:"fa-align-right";}i:54;a:2:{s:5:"value";s:16:"fa-align-justify";s:5:"label";s:16:"fa-align-justify";}i:55;a:2:{s:5:"value";s:7:"fa-list";s:5:"label";s:7:"fa-list";}i:56;a:2:{s:5:"value";s:10:"fa-outdent";s:5:"label";s:10:"fa-outdent";}i:57;a:2:{s:5:"value";s:9:"fa-indent";s:5:"label";s:9:"fa-indent";}i:58;a:2:{s:5:"value";s:15:"fa-video-camera";s:5:"label";s:15:"fa-video-camera";}i:59;a:2:{s:5:"value";s:12:"fa-picture-o";s:5:"label";s:12:"fa-picture-o";}i:60;a:2:{s:5:"value";s:9:"fa-pencil";s:5:"label";s:9:"fa-pencil";}i:61;a:2:{s:5:"value";s:13:"fa-map-marker";s:5:"label";s:13:"fa-map-marker";}i:62;a:2:{s:5:"value";s:9:"fa-adjust";s:5:"label";s:9:"fa-adjust";}i:63;a:2:{s:5:"value";s:7:"fa-tint";s:5:"label";s:7:"fa-tint";}i:64;a:2:{s:5:"value";s:18:"fa-pencil-square-o";s:5:"label";s:18:"fa-pencil-square-o";}i:65;a:2:{s:5:"value";s:17:"fa-share-square-o";s:5:"label";s:17:"fa-share-square-o";}i:66;a:2:{s:5:"value";s:17:"fa-check-square-o";s:5:"label";s:17:"fa-check-square-o";}i:67;a:2:{s:5:"value";s:7:"fa-move";s:5:"label";s:7:"fa-move";}i:68;a:2:{s:5:"value";s:16:"fa-step-backward";s:5:"label";s:16:"fa-step-backward";}i:69;a:2:{s:5:"value";s:16:"fa-fast-backward";s:5:"label";s:16:"fa-fast-backward";}i:70;a:2:{s:5:"value";s:11:"fa-backward";s:5:"label";s:11:"fa-backward";}i:71;a:2:{s:5:"value";s:7:"fa-play";s:5:"label";s:7:"fa-play";}i:72;a:2:{s:5:"value";s:8:"fa-pause";s:5:"label";s:8:"fa-pause";}i:73;a:2:{s:5:"value";s:7:"fa-stop";s:5:"label";s:7:"fa-stop";}i:74;a:2:{s:5:"value";s:10:"fa-forward";s:5:"label";s:10:"fa-forward";}i:75;a:2:{s:5:"value";s:15:"fa-fast-forward";s:5:"label";s:15:"fa-fast-forward";}i:76;a:2:{s:5:"value";s:15:"fa-step-forward";s:5:"label";s:15:"fa-step-forward";}i:77;a:2:{s:5:"value";s:8:"fa-eject";s:5:"label";s:8:"fa-eject";}i:78;a:2:{s:5:"value";s:15:"fa-chevron-left";s:5:"label";s:15:"fa-chevron-left";}i:79;a:2:{s:5:"value";s:16:"fa-chevron-right";s:5:"label";s:16:"fa-chevron-right";}i:80;a:2:{s:5:"value";s:14:"fa-plus-circle";s:5:"label";s:14:"fa-plus-circle";}i:81;a:2:{s:5:"value";s:15:"fa-minus-circle";s:5:"label";s:15:"fa-minus-circle";}i:82;a:2:{s:5:"value";s:15:"fa-times-circle";s:5:"label";s:15:"fa-times-circle";}i:83;a:2:{s:5:"value";s:15:"fa-check-circle";s:5:"label";s:15:"fa-check-circle";}i:84;a:2:{s:5:"value";s:18:"fa-question-circle";s:5:"label";s:18:"fa-question-circle";}i:85;a:2:{s:5:"value";s:14:"fa-info-circle";s:5:"label";s:14:"fa-info-circle";}i:86;a:2:{s:5:"value";s:13:"fa-crosshairs";s:5:"label";s:13:"fa-crosshairs";}i:87;a:2:{s:5:"value";s:17:"fa-times-circle-o";s:5:"label";s:17:"fa-times-circle-o";}i:88;a:2:{s:5:"value";s:17:"fa-check-circle-o";s:5:"label";s:17:"fa-check-circle-o";}i:89;a:2:{s:5:"value";s:6:"fa-ban";s:5:"label";s:6:"fa-ban";}i:90;a:2:{s:5:"value";s:13:"fa-arrow-left";s:5:"label";s:13:"fa-arrow-left";}i:91;a:2:{s:5:"value";s:14:"fa-arrow-right";s:5:"label";s:14:"fa-arrow-right";}i:92;a:2:{s:5:"value";s:11:"fa-arrow-up";s:5:"label";s:11:"fa-arrow-up";}i:93;a:2:{s:5:"value";s:13:"fa-arrow-down";s:5:"label";s:13:"fa-arrow-down";}i:94;a:2:{s:5:"value";s:8:"fa-share";s:5:"label";s:8:"fa-share";}i:95;a:2:{s:5:"value";s:14:"fa-resize-full";s:5:"label";s:14:"fa-resize-full";}i:96;a:2:{s:5:"value";s:15:"fa-resize-small";s:5:"label";s:15:"fa-resize-small";}i:97;a:2:{s:5:"value";s:7:"fa-plus";s:5:"label";s:7:"fa-plus";}i:98;a:2:{s:5:"value";s:8:"fa-minus";s:5:"label";s:8:"fa-minus";}i:99;a:2:{s:5:"value";s:11:"fa-asterisk";s:5:"label";s:11:"fa-asterisk";}i:100;a:2:{s:5:"value";s:21:"fa-exclamation-circle";s:5:"label";s:21:"fa-exclamation-circle";}i:101;a:2:{s:5:"value";s:7:"fa-gift";s:5:"label";s:7:"fa-gift";}i:102;a:2:{s:5:"value";s:7:"fa-leaf";s:5:"label";s:7:"fa-leaf";}i:103;a:2:{s:5:"value";s:7:"fa-fire";s:5:"label";s:7:"fa-fire";}i:104;a:2:{s:5:"value";s:6:"fa-eye";s:5:"label";s:6:"fa-eye";}i:105;a:2:{s:5:"value";s:12:"fa-eye-slash";s:5:"label";s:12:"fa-eye-slash";}i:106;a:2:{s:5:"value";s:23:"fa-exclamation-triangle";s:5:"label";s:23:"fa-exclamation-triangle";}i:107;a:2:{s:5:"value";s:8:"fa-plane";s:5:"label";s:8:"fa-plane";}i:108;a:2:{s:5:"value";s:11:"fa-calendar";s:5:"label";s:11:"fa-calendar";}i:109;a:2:{s:5:"value";s:9:"fa-random";s:5:"label";s:9:"fa-random";}i:110;a:2:{s:5:"value";s:10:"fa-comment";s:5:"label";s:10:"fa-comment";}i:111;a:2:{s:5:"value";s:9:"fa-magnet";s:5:"label";s:9:"fa-magnet";}i:112;a:2:{s:5:"value";s:13:"fa-chevron-up";s:5:"label";s:13:"fa-chevron-up";}i:113;a:2:{s:5:"value";s:15:"fa-chevron-down";s:5:"label";s:15:"fa-chevron-down";}i:114;a:2:{s:5:"value";s:10:"fa-retweet";s:5:"label";s:10:"fa-retweet";}i:115;a:2:{s:5:"value";s:16:"fa-shopping-cart";s:5:"label";s:16:"fa-shopping-cart";}i:116;a:2:{s:5:"value";s:9:"fa-folder";s:5:"label";s:9:"fa-folder";}i:117;a:2:{s:5:"value";s:14:"fa-folder-open";s:5:"label";s:14:"fa-folder-open";}i:118;a:2:{s:5:"value";s:18:"fa-resize-vertical";s:5:"label";s:18:"fa-resize-vertical";}i:119;a:2:{s:5:"value";s:20:"fa-resize-horizontal";s:5:"label";s:20:"fa-resize-horizontal";}i:120;a:2:{s:5:"value";s:14:"fa-bar-chart-o";s:5:"label";s:14:"fa-bar-chart-o";}i:121;a:2:{s:5:"value";s:17:"fa-twitter-square";s:5:"label";s:17:"fa-twitter-square";}i:122;a:2:{s:5:"value";s:18:"fa-facebook-square";s:5:"label";s:18:"fa-facebook-square";}i:123;a:2:{s:5:"value";s:15:"fa-camera-retro";s:5:"label";s:15:"fa-camera-retro";}i:124;a:2:{s:5:"value";s:6:"fa-key";s:5:"label";s:6:"fa-key";}i:125;a:2:{s:5:"value";s:7:"fa-cogs";s:5:"label";s:7:"fa-cogs";}i:126;a:2:{s:5:"value";s:11:"fa-comments";s:5:"label";s:11:"fa-comments";}i:127;a:2:{s:5:"value";s:14:"fa-thumbs-o-up";s:5:"label";s:14:"fa-thumbs-o-up";}i:128;a:2:{s:5:"value";s:16:"fa-thumbs-o-down";s:5:"label";s:16:"fa-thumbs-o-down";}i:129;a:2:{s:5:"value";s:12:"fa-star-half";s:5:"label";s:12:"fa-star-half";}i:130;a:2:{s:5:"value";s:10:"fa-heart-o";s:5:"label";s:10:"fa-heart-o";}i:131;a:2:{s:5:"value";s:11:"fa-sign-out";s:5:"label";s:11:"fa-sign-out";}i:132;a:2:{s:5:"value";s:18:"fa-linkedin-square";s:5:"label";s:18:"fa-linkedin-square";}i:133;a:2:{s:5:"value";s:13:"fa-thumb-tack";s:5:"label";s:13:"fa-thumb-tack";}i:134;a:2:{s:5:"value";s:16:"fa-external-link";s:5:"label";s:16:"fa-external-link";}i:135;a:2:{s:5:"value";s:10:"fa-sign-in";s:5:"label";s:10:"fa-sign-in";}i:136;a:2:{s:5:"value";s:9:"fa-trophy";s:5:"label";s:9:"fa-trophy";}i:137;a:2:{s:5:"value";s:16:"fa-github-square";s:5:"label";s:16:"fa-github-square";}i:138;a:2:{s:5:"value";s:9:"fa-upload";s:5:"label";s:9:"fa-upload";}i:139;a:2:{s:5:"value";s:10:"fa-lemon-o";s:5:"label";s:10:"fa-lemon-o";}i:140;a:2:{s:5:"value";s:8:"fa-phone";s:5:"label";s:8:"fa-phone";}i:141;a:2:{s:5:"value";s:11:"fa-square-o";s:5:"label";s:11:"fa-square-o";}i:142;a:2:{s:5:"value";s:13:"fa-bookmark-o";s:5:"label";s:13:"fa-bookmark-o";}i:143;a:2:{s:5:"value";s:15:"fa-phone-square";s:5:"label";s:15:"fa-phone-square";}i:144;a:2:{s:5:"value";s:10:"fa-twitter";s:5:"label";s:10:"fa-twitter";}i:145;a:2:{s:5:"value";s:11:"fa-facebook";s:5:"label";s:11:"fa-facebook";}i:146;a:2:{s:5:"value";s:9:"fa-github";s:5:"label";s:9:"fa-github";}i:147;a:2:{s:5:"value";s:9:"fa-unlock";s:5:"label";s:9:"fa-unlock";}i:148;a:2:{s:5:"value";s:14:"fa-credit-card";s:5:"label";s:14:"fa-credit-card";}i:149;a:2:{s:5:"value";s:6:"fa-rss";s:5:"label";s:6:"fa-rss";}i:150;a:2:{s:5:"value";s:8:"fa-hdd-o";s:5:"label";s:8:"fa-hdd-o";}i:151;a:2:{s:5:"value";s:11:"fa-bullhorn";s:5:"label";s:11:"fa-bullhorn";}i:152;a:2:{s:5:"value";s:7:"fa-bell";s:5:"label";s:7:"fa-bell";}i:153;a:2:{s:5:"value";s:14:"fa-certificate";s:5:"label";s:14:"fa-certificate";}i:154;a:2:{s:5:"value";s:15:"fa-hand-o-right";s:5:"label";s:15:"fa-hand-o-right";}i:155;a:2:{s:5:"value";s:14:"fa-hand-o-left";s:5:"label";s:14:"fa-hand-o-left";}i:156;a:2:{s:5:"value";s:12:"fa-hand-o-up";s:5:"label";s:12:"fa-hand-o-up";}i:157;a:2:{s:5:"value";s:14:"fa-hand-o-down";s:5:"label";s:14:"fa-hand-o-down";}i:158;a:2:{s:5:"value";s:20:"fa-arrow-circle-left";s:5:"label";s:20:"fa-arrow-circle-left";}i:159;a:2:{s:5:"value";s:21:"fa-arrow-circle-right";s:5:"label";s:21:"fa-arrow-circle-right";}i:160;a:2:{s:5:"value";s:18:"fa-arrow-circle-up";s:5:"label";s:18:"fa-arrow-circle-up";}i:161;a:2:{s:5:"value";s:20:"fa-arrow-circle-down";s:5:"label";s:20:"fa-arrow-circle-down";}i:162;a:2:{s:5:"value";s:8:"fa-globe";s:5:"label";s:8:"fa-globe";}i:163;a:2:{s:5:"value";s:9:"fa-wrench";s:5:"label";s:9:"fa-wrench";}i:164;a:2:{s:5:"value";s:8:"fa-tasks";s:5:"label";s:8:"fa-tasks";}i:165;a:2:{s:5:"value";s:9:"fa-filter";s:5:"label";s:9:"fa-filter";}i:166;a:2:{s:5:"value";s:12:"fa-briefcase";s:5:"label";s:12:"fa-briefcase";}i:167;a:2:{s:5:"value";s:13:"fa-fullscreen";s:5:"label";s:13:"fa-fullscreen";}i:168;a:2:{s:5:"value";s:8:"fa-group";s:5:"label";s:8:"fa-group";}i:169;a:2:{s:5:"value";s:7:"fa-link";s:5:"label";s:7:"fa-link";}i:170;a:2:{s:5:"value";s:8:"fa-cloud";s:5:"label";s:8:"fa-cloud";}i:171;a:2:{s:5:"value";s:8:"fa-flask";s:5:"label";s:8:"fa-flask";}i:172;a:2:{s:5:"value";s:11:"fa-scissors";s:5:"label";s:11:"fa-scissors";}i:173;a:2:{s:5:"value";s:10:"fa-files-o";s:5:"label";s:10:"fa-files-o";}i:174;a:2:{s:5:"value";s:12:"fa-paperclip";s:5:"label";s:12:"fa-paperclip";}i:175;a:2:{s:5:"value";s:11:"fa-floppy-o";s:5:"label";s:11:"fa-floppy-o";}i:176;a:2:{s:5:"value";s:9:"fa-square";s:5:"label";s:9:"fa-square";}i:177;a:2:{s:5:"value";s:10:"fa-reorder";s:5:"label";s:10:"fa-reorder";}i:178;a:2:{s:5:"value";s:10:"fa-list-ul";s:5:"label";s:10:"fa-list-ul";}i:179;a:2:{s:5:"value";s:10:"fa-list-ol";s:5:"label";s:10:"fa-list-ol";}i:180;a:2:{s:5:"value";s:16:"fa-strikethrough";s:5:"label";s:16:"fa-strikethrough";}i:181;a:2:{s:5:"value";s:12:"fa-underline";s:5:"label";s:12:"fa-underline";}i:182;a:2:{s:5:"value";s:8:"fa-table";s:5:"label";s:8:"fa-table";}i:183;a:2:{s:5:"value";s:8:"fa-magic";s:5:"label";s:8:"fa-magic";}i:184;a:2:{s:5:"value";s:8:"fa-truck";s:5:"label";s:8:"fa-truck";}i:185;a:2:{s:5:"value";s:12:"fa-pinterest";s:5:"label";s:12:"fa-pinterest";}i:186;a:2:{s:5:"value";s:19:"fa-pinterest-square";s:5:"label";s:19:"fa-pinterest-square";}i:187;a:2:{s:5:"value";s:21:"fa-google-plus-square";s:5:"label";s:21:"fa-google-plus-square";}i:188;a:2:{s:5:"value";s:14:"fa-google-plus";s:5:"label";s:14:"fa-google-plus";}i:189;a:2:{s:5:"value";s:8:"fa-money";s:5:"label";s:8:"fa-money";}i:190;a:2:{s:5:"value";s:13:"fa-caret-down";s:5:"label";s:13:"fa-caret-down";}i:191;a:2:{s:5:"value";s:11:"fa-caret-up";s:5:"label";s:11:"fa-caret-up";}i:192;a:2:{s:5:"value";s:13:"fa-caret-left";s:5:"label";s:13:"fa-caret-left";}i:193;a:2:{s:5:"value";s:14:"fa-caret-right";s:5:"label";s:14:"fa-caret-right";}i:194;a:2:{s:5:"value";s:10:"fa-columns";s:5:"label";s:10:"fa-columns";}i:195;a:2:{s:5:"value";s:7:"fa-sort";s:5:"label";s:7:"fa-sort";}i:196;a:2:{s:5:"value";s:11:"fa-sort-asc";s:5:"label";s:11:"fa-sort-asc";}i:197;a:2:{s:5:"value";s:12:"fa-sort-desc";s:5:"label";s:12:"fa-sort-desc";}i:198;a:2:{s:5:"value";s:11:"fa-envelope";s:5:"label";s:11:"fa-envelope";}i:199;a:2:{s:5:"value";s:11:"fa-linkedin";s:5:"label";s:11:"fa-linkedin";}i:200;a:2:{s:5:"value";s:7:"fa-undo";s:5:"label";s:7:"fa-undo";}i:201;a:2:{s:5:"value";s:8:"fa-gavel";s:5:"label";s:8:"fa-gavel";}i:202;a:2:{s:5:"value";s:13:"fa-tachometer";s:5:"label";s:13:"fa-tachometer";}i:203;a:2:{s:5:"value";s:12:"fa-comment-o";s:5:"label";s:12:"fa-comment-o";}i:204;a:2:{s:5:"value";s:13:"fa-comments-o";s:5:"label";s:13:"fa-comments-o";}i:205;a:2:{s:5:"value";s:7:"fa-bolt";s:5:"label";s:7:"fa-bolt";}i:206;a:2:{s:5:"value";s:10:"fa-sitemap";s:5:"label";s:10:"fa-sitemap";}i:207;a:2:{s:5:"value";s:11:"fa-umbrella";s:5:"label";s:11:"fa-umbrella";}i:208;a:2:{s:5:"value";s:12:"fa-clipboard";s:5:"label";s:12:"fa-clipboard";}i:209;a:2:{s:5:"value";s:14:"fa-lightbulb-o";s:5:"label";s:14:"fa-lightbulb-o";}i:210;a:2:{s:5:"value";s:11:"fa-exchange";s:5:"label";s:11:"fa-exchange";}i:211;a:2:{s:5:"value";s:17:"fa-cloud-download";s:5:"label";s:17:"fa-cloud-download";}i:212;a:2:{s:5:"value";s:15:"fa-cloud-upload";s:5:"label";s:15:"fa-cloud-upload";}i:213;a:2:{s:5:"value";s:10:"fa-user-md";s:5:"label";s:10:"fa-user-md";}i:214;a:2:{s:5:"value";s:14:"fa-stethoscope";s:5:"label";s:14:"fa-stethoscope";}i:215;a:2:{s:5:"value";s:11:"fa-suitcase";s:5:"label";s:11:"fa-suitcase";}i:216;a:2:{s:5:"value";s:9:"fa-bell-o";s:5:"label";s:9:"fa-bell-o";}i:217;a:2:{s:5:"value";s:9:"fa-coffee";s:5:"label";s:9:"fa-coffee";}i:218;a:2:{s:5:"value";s:10:"fa-cutlery";s:5:"label";s:10:"fa-cutlery";}i:219;a:2:{s:5:"value";s:14:"fa-file-text-o";s:5:"label";s:14:"fa-file-text-o";}i:220;a:2:{s:5:"value";s:11:"fa-building";s:5:"label";s:11:"fa-building";}i:221;a:2:{s:5:"value";s:11:"fa-hospital";s:5:"label";s:11:"fa-hospital";}i:222;a:2:{s:5:"value";s:12:"fa-ambulance";s:5:"label";s:12:"fa-ambulance";}i:223;a:2:{s:5:"value";s:9:"fa-medkit";s:5:"label";s:9:"fa-medkit";}i:224;a:2:{s:5:"value";s:14:"fa-fighter-jet";s:5:"label";s:14:"fa-fighter-jet";}i:225;a:2:{s:5:"value";s:7:"fa-beer";s:5:"label";s:7:"fa-beer";}i:226;a:2:{s:5:"value";s:11:"fa-h-square";s:5:"label";s:11:"fa-h-square";}i:227;a:2:{s:5:"value";s:14:"fa-plus-square";s:5:"label";s:14:"fa-plus-square";}i:228;a:2:{s:5:"value";s:20:"fa-angle-double-left";s:5:"label";s:20:"fa-angle-double-left";}i:229;a:2:{s:5:"value";s:21:"fa-angle-double-right";s:5:"label";s:21:"fa-angle-double-right";}i:230;a:2:{s:5:"value";s:18:"fa-angle-double-up";s:5:"label";s:18:"fa-angle-double-up";}i:231;a:2:{s:5:"value";s:20:"fa-angle-double-down";s:5:"label";s:20:"fa-angle-double-down";}i:232;a:2:{s:5:"value";s:13:"fa-angle-left";s:5:"label";s:13:"fa-angle-left";}i:233;a:2:{s:5:"value";s:14:"fa-angle-right";s:5:"label";s:14:"fa-angle-right";}i:234;a:2:{s:5:"value";s:11:"fa-angle-up";s:5:"label";s:11:"fa-angle-up";}i:235;a:2:{s:5:"value";s:13:"fa-angle-down";s:5:"label";s:13:"fa-angle-down";}i:236;a:2:{s:5:"value";s:10:"fa-desktop";s:5:"label";s:10:"fa-desktop";}i:237;a:2:{s:5:"value";s:9:"fa-laptop";s:5:"label";s:9:"fa-laptop";}i:238;a:2:{s:5:"value";s:9:"fa-tablet";s:5:"label";s:9:"fa-tablet";}i:239;a:2:{s:5:"value";s:9:"fa-mobile";s:5:"label";s:9:"fa-mobile";}i:240;a:2:{s:5:"value";s:11:"fa-circle-o";s:5:"label";s:11:"fa-circle-o";}i:241;a:2:{s:5:"value";s:13:"fa-quote-left";s:5:"label";s:13:"fa-quote-left";}i:242;a:2:{s:5:"value";s:14:"fa-quote-right";s:5:"label";s:14:"fa-quote-right";}i:243;a:2:{s:5:"value";s:10:"fa-spinner";s:5:"label";s:10:"fa-spinner";}i:244;a:2:{s:5:"value";s:9:"fa-circle";s:5:"label";s:9:"fa-circle";}i:245;a:2:{s:5:"value";s:8:"fa-reply";s:5:"label";s:8:"fa-reply";}i:246;a:2:{s:5:"value";s:13:"fa-github-alt";s:5:"label";s:13:"fa-github-alt";}i:247;a:2:{s:5:"value";s:11:"fa-folder-o";s:5:"label";s:11:"fa-folder-o";}i:248;a:2:{s:5:"value";s:16:"fa-folder-open-o";s:5:"label";s:16:"fa-folder-open-o";}i:249;a:2:{s:5:"value";s:11:"fa-expand-o";s:5:"label";s:11:"fa-expand-o";}i:250;a:2:{s:5:"value";s:13:"fa-collapse-o";s:5:"label";s:13:"fa-collapse-o";}i:251;a:2:{s:5:"value";s:10:"fa-smile-o";s:5:"label";s:10:"fa-smile-o";}i:252;a:2:{s:5:"value";s:10:"fa-frown-o";s:5:"label";s:10:"fa-frown-o";}i:253;a:2:{s:5:"value";s:8:"fa-meh-o";s:5:"label";s:8:"fa-meh-o";}i:254;a:2:{s:5:"value";s:10:"fa-gamepad";s:5:"label";s:10:"fa-gamepad";}i:255;a:2:{s:5:"value";s:13:"fa-keyboard-o";s:5:"label";s:13:"fa-keyboard-o";}i:256;a:2:{s:5:"value";s:9:"fa-flag-o";s:5:"label";s:9:"fa-flag-o";}i:257;a:2:{s:5:"value";s:17:"fa-flag-checkered";s:5:"label";s:17:"fa-flag-checkered";}i:258;a:2:{s:5:"value";s:11:"fa-terminal";s:5:"label";s:11:"fa-terminal";}i:259;a:2:{s:5:"value";s:7:"fa-code";s:5:"label";s:7:"fa-code";}i:260;a:2:{s:5:"value";s:12:"fa-reply-all";s:5:"label";s:12:"fa-reply-all";}i:261;a:2:{s:5:"value";s:17:"fa-mail-reply-all";s:5:"label";s:17:"fa-mail-reply-all";}i:262;a:2:{s:5:"value";s:14:"fa-star-half-o";s:5:"label";s:14:"fa-star-half-o";}i:263;a:2:{s:5:"value";s:17:"fa-location-arrow";s:5:"label";s:17:"fa-location-arrow";}i:264;a:2:{s:5:"value";s:7:"fa-crop";s:5:"label";s:7:"fa-crop";}i:265;a:2:{s:5:"value";s:12:"fa-code-fork";s:5:"label";s:12:"fa-code-fork";}i:266;a:2:{s:5:"value";s:15:"fa-chain-broken";s:5:"label";s:15:"fa-chain-broken";}i:267;a:2:{s:5:"value";s:11:"fa-question";s:5:"label";s:11:"fa-question";}i:268;a:2:{s:5:"value";s:7:"fa-info";s:5:"label";s:7:"fa-info";}i:269;a:2:{s:5:"value";s:14:"fa-exclamation";s:5:"label";s:14:"fa-exclamation";}i:270;a:2:{s:5:"value";s:14:"fa-superscript";s:5:"label";s:14:"fa-superscript";}i:271;a:2:{s:5:"value";s:12:"fa-subscript";s:5:"label";s:12:"fa-subscript";}i:272;a:2:{s:5:"value";s:9:"fa-eraser";s:5:"label";s:9:"fa-eraser";}i:273;a:2:{s:5:"value";s:15:"fa-puzzle-piece";s:5:"label";s:15:"fa-puzzle-piece";}i:274;a:2:{s:5:"value";s:13:"fa-microphone";s:5:"label";s:13:"fa-microphone";}i:275;a:2:{s:5:"value";s:19:"fa-microphone-slash";s:5:"label";s:19:"fa-microphone-slash";}i:276;a:2:{s:5:"value";s:9:"fa-shield";s:5:"label";s:9:"fa-shield";}i:277;a:2:{s:5:"value";s:13:"fa-calendar-o";s:5:"label";s:13:"fa-calendar-o";}i:278;a:2:{s:5:"value";s:20:"fa-fire-extinguisher";s:5:"label";s:20:"fa-fire-extinguisher";}i:279;a:2:{s:5:"value";s:9:"fa-rocket";s:5:"label";s:9:"fa-rocket";}i:280;a:2:{s:5:"value";s:9:"fa-maxcdn";s:5:"label";s:9:"fa-maxcdn";}i:281;a:2:{s:5:"value";s:22:"fa-chevron-circle-left";s:5:"label";s:22:"fa-chevron-circle-left";}i:282;a:2:{s:5:"value";s:23:"fa-chevron-circle-right";s:5:"label";s:23:"fa-chevron-circle-right";}i:283;a:2:{s:5:"value";s:20:"fa-chevron-circle-up";s:5:"label";s:20:"fa-chevron-circle-up";}i:284;a:2:{s:5:"value";s:22:"fa-chevron-circle-down";s:5:"label";s:22:"fa-chevron-circle-down";}i:285;a:2:{s:5:"value";s:8:"fa-html5";s:5:"label";s:8:"fa-html5";}i:286;a:2:{s:5:"value";s:7:"fa-css3";s:5:"label";s:7:"fa-css3";}i:287;a:2:{s:5:"value";s:9:"fa-anchor";s:5:"label";s:9:"fa-anchor";}i:288;a:2:{s:5:"value";s:11:"fa-unlock-o";s:5:"label";s:11:"fa-unlock-o";}i:289;a:2:{s:5:"value";s:11:"fa-bullseye";s:5:"label";s:11:"fa-bullseye";}i:290;a:2:{s:5:"value";s:22:"fa-ellipsis-horizontal";s:5:"label";s:22:"fa-ellipsis-horizontal";}i:291;a:2:{s:5:"value";s:20:"fa-ellipsis-vertical";s:5:"label";s:20:"fa-ellipsis-vertical";}i:292;a:2:{s:5:"value";s:13:"fa-rss-square";s:5:"label";s:13:"fa-rss-square";}i:293;a:2:{s:5:"value";s:14:"fa-play-circle";s:5:"label";s:14:"fa-play-circle";}i:294;a:2:{s:5:"value";s:9:"fa-ticket";s:5:"label";s:9:"fa-ticket";}i:295;a:2:{s:5:"value";s:15:"fa-minus-square";s:5:"label";s:15:"fa-minus-square";}i:296;a:2:{s:5:"value";s:17:"fa-minus-square-o";s:5:"label";s:17:"fa-minus-square-o";}i:297;a:2:{s:5:"value";s:11:"fa-level-up";s:5:"label";s:11:"fa-level-up";}i:298;a:2:{s:5:"value";s:13:"fa-level-down";s:5:"label";s:13:"fa-level-down";}i:299;a:2:{s:5:"value";s:15:"fa-check-square";s:5:"label";s:15:"fa-check-square";}i:300;a:2:{s:5:"value";s:16:"fa-pencil-square";s:5:"label";s:16:"fa-pencil-square";}i:301;a:2:{s:5:"value";s:23:"fa-external-link-square";s:5:"label";s:23:"fa-external-link-square";}i:302;a:2:{s:5:"value";s:15:"fa-share-square";s:5:"label";s:15:"fa-share-square";}i:303;a:2:{s:5:"value";s:10:"fa-compass";s:5:"label";s:10:"fa-compass";}i:304;a:2:{s:5:"value";s:22:"fa-caret-square-o-down";s:5:"label";s:22:"fa-caret-square-o-down";}i:305;a:2:{s:5:"value";s:20:"fa-caret-square-o-up";s:5:"label";s:20:"fa-caret-square-o-up";}i:306;a:2:{s:5:"value";s:23:"fa-caret-square-o-right";s:5:"label";s:23:"fa-caret-square-o-right";}i:307;a:2:{s:5:"value";s:6:"fa-eur";s:5:"label";s:6:"fa-eur";}i:308;a:2:{s:5:"value";s:6:"fa-gbp";s:5:"label";s:6:"fa-gbp";}i:309;a:2:{s:5:"value";s:6:"fa-usd";s:5:"label";s:6:"fa-usd";}i:310;a:2:{s:5:"value";s:6:"fa-inr";s:5:"label";s:6:"fa-inr";}i:311;a:2:{s:5:"value";s:6:"fa-jpy";s:5:"label";s:6:"fa-jpy";}i:312;a:2:{s:5:"value";s:6:"fa-rub";s:5:"label";s:6:"fa-rub";}i:313;a:2:{s:5:"value";s:6:"fa-krw";s:5:"label";s:6:"fa-krw";}i:314;a:2:{s:5:"value";s:6:"fa-btc";s:5:"label";s:6:"fa-btc";}i:315;a:2:{s:5:"value";s:7:"fa-file";s:5:"label";s:7:"fa-file";}i:316;a:2:{s:5:"value";s:12:"fa-file-text";s:5:"label";s:12:"fa-file-text";}i:317;a:2:{s:5:"value";s:17:"fa-sort-alpha-asc";s:5:"label";s:17:"fa-sort-alpha-asc";}i:318;a:2:{s:5:"value";s:18:"fa-sort-alpha-desc";s:5:"label";s:18:"fa-sort-alpha-desc";}i:319;a:2:{s:5:"value";s:18:"fa-sort-amount-asc";s:5:"label";s:18:"fa-sort-amount-asc";}i:320;a:2:{s:5:"value";s:19:"fa-sort-amount-desc";s:5:"label";s:19:"fa-sort-amount-desc";}i:321;a:2:{s:5:"value";s:19:"fa-sort-numeric-asc";s:5:"label";s:19:"fa-sort-numeric-asc";}i:322;a:2:{s:5:"value";s:20:"fa-sort-numeric-desc";s:5:"label";s:20:"fa-sort-numeric-desc";}i:323;a:2:{s:5:"value";s:12:"fa-thumbs-up";s:5:"label";s:12:"fa-thumbs-up";}i:324;a:2:{s:5:"value";s:14:"fa-thumbs-down";s:5:"label";s:14:"fa-thumbs-down";}i:325;a:2:{s:5:"value";s:17:"fa-youtube-square";s:5:"label";s:17:"fa-youtube-square";}i:326;a:2:{s:5:"value";s:10:"fa-youtube";s:5:"label";s:10:"fa-youtube";}i:327;a:2:{s:5:"value";s:7:"fa-xing";s:5:"label";s:7:"fa-xing";}i:328;a:2:{s:5:"value";s:14:"fa-xing-square";s:5:"label";s:14:"fa-xing-square";}i:329;a:2:{s:5:"value";s:15:"fa-youtube-play";s:5:"label";s:15:"fa-youtube-play";}i:330;a:2:{s:5:"value";s:10:"fa-dropbox";s:5:"label";s:10:"fa-dropbox";}i:331;a:2:{s:5:"value";s:17:"fa-stack-overflow";s:5:"label";s:17:"fa-stack-overflow";}i:332;a:2:{s:5:"value";s:12:"fa-instagram";s:5:"label";s:12:"fa-instagram";}i:333;a:2:{s:5:"value";s:9:"fa-flickr";s:5:"label";s:9:"fa-flickr";}i:334;a:2:{s:5:"value";s:6:"fa-adn";s:5:"label";s:6:"fa-adn";}i:335;a:2:{s:5:"value";s:12:"fa-bitbucket";s:5:"label";s:12:"fa-bitbucket";}i:336;a:2:{s:5:"value";s:19:"fa-bitbucket-square";s:5:"label";s:19:"fa-bitbucket-square";}i:337;a:2:{s:5:"value";s:9:"fa-tumblr";s:5:"label";s:9:"fa-tumblr";}i:338;a:2:{s:5:"value";s:16:"fa-tumblr-square";s:5:"label";s:16:"fa-tumblr-square";}i:339;a:2:{s:5:"value";s:18:"fa-long-arrow-down";s:5:"label";s:18:"fa-long-arrow-down";}i:340;a:2:{s:5:"value";s:16:"fa-long-arrow-up";s:5:"label";s:16:"fa-long-arrow-up";}i:341;a:2:{s:5:"value";s:18:"fa-long-arrow-left";s:5:"label";s:18:"fa-long-arrow-left";}i:342;a:2:{s:5:"value";s:19:"fa-long-arrow-right";s:5:"label";s:19:"fa-long-arrow-right";}i:343;a:2:{s:5:"value";s:8:"fa-apple";s:5:"label";s:8:"fa-apple";}i:344;a:2:{s:5:"value";s:10:"fa-windows";s:5:"label";s:10:"fa-windows";}i:345;a:2:{s:5:"value";s:10:"fa-android";s:5:"label";s:10:"fa-android";}i:346;a:2:{s:5:"value";s:8:"fa-linux";s:5:"label";s:8:"fa-linux";}i:347;a:2:{s:5:"value";s:11:"fa-dribbble";s:5:"label";s:11:"fa-dribbble";}i:348;a:2:{s:5:"value";s:8:"fa-skype";s:5:"label";s:8:"fa-skype";}i:349;a:2:{s:5:"value";s:13:"fa-foursquare";s:5:"label";s:13:"fa-foursquare";}i:350;a:2:{s:5:"value";s:9:"fa-trello";s:5:"label";s:9:"fa-trello";}i:351;a:2:{s:5:"value";s:9:"fa-female";s:5:"label";s:9:"fa-female";}i:352;a:2:{s:5:"value";s:7:"fa-male";s:5:"label";s:7:"fa-male";}i:353;a:2:{s:5:"value";s:9:"fa-gittip";s:5:"label";s:9:"fa-gittip";}i:354;a:2:{s:5:"value";s:8:"fa-sun-o";s:5:"label";s:8:"fa-sun-o";}i:355;a:2:{s:5:"value";s:9:"fa-moon-o";s:5:"label";s:9:"fa-moon-o";}i:356;a:2:{s:5:"value";s:10:"fa-archive";s:5:"label";s:10:"fa-archive";}i:357;a:2:{s:5:"value";s:6:"fa-bug";s:5:"label";s:6:"fa-bug";}i:358;a:2:{s:5:"value";s:5:"fa-vk";s:5:"label";s:5:"fa-vk";}i:359;a:2:{s:5:"value";s:8:"fa-weibo";s:5:"label";s:8:"fa-weibo";}i:360;a:2:{s:5:"value";s:9:"fa-renren";s:5:"label";s:9:"fa-renren";}i:361;a:2:{s:5:"value";s:12:"fa-pagelines";s:5:"label";s:12:"fa-pagelines";}i:362;a:2:{s:5:"value";s:17:"fa-stack-exchange";s:5:"label";s:17:"fa-stack-exchange";}i:363;a:2:{s:5:"value";s:23:"fa-arrow-circle-o-right";s:5:"label";s:23:"fa-arrow-circle-o-right";}i:364;a:2:{s:5:"value";s:22:"fa-arrow-circle-o-left";s:5:"label";s:22:"fa-arrow-circle-o-left";}i:365;a:2:{s:5:"value";s:22:"fa-caret-square-o-left";s:5:"label";s:22:"fa-caret-square-o-left";}i:366;a:2:{s:5:"value";s:15:"fa-dot-circle-o";s:5:"label";s:15:"fa-dot-circle-o";}i:367;a:2:{s:5:"value";s:13:"fa-wheelchair";s:5:"label";s:13:"fa-wheelchair";}i:368;a:2:{s:5:"value";s:15:"fa-vimeo-square";s:5:"label";s:15:"fa-vimeo-square";}i:369;a:2:{s:5:"value";s:6:"fa-try";s:5:"label";s:6:"fa-try";}}', 'no'),
(23266, '_transient_timeout_wpseo_sitemap_cache_1_1', '1485241357', 'no'),
(23267, '_transient_wpseo_sitemap_cache_1_1', '<sitemapindex xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n<sitemap>\n<loc>http://asiacentre.co.th/post-sitemap.xml</loc>\n<lastmod>2017-01-19T16:34:48+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/page-sitemap.xml</loc>\n<lastmod>2017-01-23T13:56:15+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/hom_page-sitemap.xml</loc>\n<lastmod>2017-01-20T15:35:17+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/event-sitemap.xml</loc>\n<lastmod>2017-01-17T10:18:04+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/course-sitemap.xml</loc>\n<lastmod>2014-06-23T19:16:43+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/gallery-sitemap.xml</loc>\n<lastmod>2016-12-29T12:53:16+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/slider-sitemap.xml</loc>\n<lastmod>2017-01-20T12:50:09+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/chunk-sitemap.xml</loc>\n<lastmod>2017-01-20T16:13:53+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/category-sitemap.xml</loc>\n<lastmod>2017-01-19T16:34:48+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/post_tag-sitemap.xml</loc>\n<lastmod>2017-01-19T16:34:48+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/events-sitemap.xml</loc>\n<lastmod>2017-01-17T10:18:04+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/courses-sitemap.xml</loc>\n<lastmod>2014-06-23T19:16:43+07:00</lastmod>\n</sitemap>\n<sitemap>\n<loc>http://asiacentre.co.th/galleries-sitemap.xml</loc>\n<lastmod>2016-12-29T12:53:16+07:00</lastmod>\n</sitemap>\n</sitemapindex>', 'no'),
(23289, '_transient_timeout_frm_form_fields_3excludeinclude', '1485233020', 'no'),
(23290, '_transient_frm_form_fields_3excludeinclude', 'a:10:{i:0;O:8:"stdClass":13:{s:2:"id";s:1:"8";s:9:"field_key";s:7:"qh4icy2";s:4:"name";s:4:"Name";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"0";s:8:"required";s:1:"1";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:19:"frm_half  frm_first";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}i:1;O:8:"stdClass":13:{s:2:"id";s:2:"30";s:9:"field_key";s:6:"esi12y";s:4:"name";s:20:"Organization/Company";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"1";s:8:"required";s:1:"0";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2016-01-20 10:48:38";s:9:"form_name";s:13:"Space Booking";}i:2;O:8:"stdClass":13:{s:2:"id";s:2:"28";s:9:"field_key";s:6:"cp5pfc";s:4:"name";s:9:"Telephone";s:11:"description";s:0:"";s:4:"type";s:4:"text";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"3";s:8:"required";s:1:"1";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:14:"separate_value";i:0;s:7:"classes";s:19:"frm_half  frm_first";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2016-01-20 10:45:23";s:9:"form_name";s:13:"Space Booking";}i:3;O:8:"stdClass":13:{s:2:"id";s:2:"10";s:9:"field_key";s:7:"29yf4d2";s:4:"name";s:5:"Email";s:11:"description";s:0:"";s:4:"type";s:5:"email";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"4";s:8:"required";s:1:"1";s:13:"field_options";a:10:{s:5:"blank";s:27:"This field cannot be blank.";s:7:"invalid";s:34:"Please enter a valid email address";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}i:4;O:8:"stdClass":13:{s:2:"id";s:2:"16";s:9:"field_key";s:6:"xzvb1y";s:4:"name";s:9:"Room Type";s:11:"description";s:0:"";s:4:"type";s:6:"select";s:13:"default_value";s:13:"Please Choose";s:7:"options";a:6:{i:0;s:13:"Please Choose";i:1;s:12:"Seminar Room";i:2;s:12:"Meeting Room";i:3;s:10:"Both Rooms";i:4;s:34:"Office Suite - Full Unit (2 desks)";i:5;s:33:"Office - Suite = Sharing (1 desk)";}s:11:"field_order";s:1:"5";s:8:"required";s:1:"1";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 08:00:12";s:9:"form_name";s:13:"Space Booking";}i:5;O:8:"stdClass":13:{s:2:"id";s:2:"25";s:9:"field_key";s:6:"d5yseo";s:4:"name";s:4:"Date";s:11:"description";s:0:"";s:4:"type";s:6:"select";s:13:"default_value";s:13:"Please Choose";s:7:"options";a:3:{i:0;s:13:"Please Choose";i:1;s:7:"Weekday";i:2;s:26:"Weekend and Public Holiday";}s:11:"field_order";s:1:"6";s:8:"required";s:1:"1";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:1;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2016-01-20 10:36:09";s:9:"form_name";s:13:"Space Booking";}i:6;O:8:"stdClass":13:{s:2:"id";s:2:"15";s:9:"field_key";s:6:"ynbpp9";s:4:"name";s:14:"Request a time";s:11:"description";s:0:"";s:4:"type";s:6:"select";s:13:"default_value";s:13:"Please Choose";s:7:"options";a:9:{i:0;s:13:"Please Choose";i:1;s:38:"Half day - 08.00-12.00 or  13.00-17.00";i:2;s:22:"Full Day - 08.00-17.00";i:3;s:21:"Evening - 17.00-21.00";i:4;s:30:"Full Day & Evening 08.00-21.00";i:5;s:32:"1 hour - Minimum 3 hours (8-5pm)";i:6;s:21:"Office Suite - Weekly";i:7;s:22:"Office Suite - Monthly";i:8;s:21:"Office Suite - Yearly";}s:11:"field_order";s:1:"7";s:8:"required";s:1:"1";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:17:"frm_half frm_last";s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:57:30";s:9:"form_name";s:13:"Space Booking";}i:7;O:8:"stdClass":13:{s:2:"id";s:2:"17";s:9:"field_key";s:6:"jql3f6";s:4:"name";s:27:"Refreshments &amp; Catering";s:11:"description";s:0:"";s:4:"type";s:8:"checkbox";s:13:"default_value";s:0:"";s:7:"options";a:4:{i:0;s:6:"Coffee";i:1;s:5:"Lunch";i:2;s:10:"Sandwiches";i:6;s:24:"Sparking / Bottled Water";}s:11:"field_order";s:1:"8";s:8:"required";s:1:"0";s:13:"field_options";a:12:{s:4:"size";s:0:"";s:3:"max";s:0:"";s:5:"label";s:0:"";s:5:"blank";s:27:"This field cannot be blank.";s:18:"required_indicator";s:1:"*";s:7:"invalid";s:0:"";s:14:"separate_value";i:0;s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:7:"classes";s:18:"frm_half frm_first";s:11:"custom_html";s:433:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label  class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    <div class="frm_opt_container">[input]</div>\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 08:01:24";s:9:"form_name";s:13:"Space Booking";}i:8;O:8:"stdClass":13:{s:2:"id";s:2:"13";s:9:"field_key";s:7:"9jv0r12";s:4:"name";s:16:"Special requests";s:11:"description";s:0:"";s:4:"type";s:8:"textarea";s:13:"default_value";s:0:"";s:7:"options";s:0:"";s:11:"field_order";s:1:"9";s:8:"required";s:1:"0";s:13:"field_options";a:10:{s:3:"max";s:1:"2";s:5:"blank";s:27:"This field cannot be blank.";s:7:"classes";s:17:"frm_half frm_last";s:4:"size";s:0:"";s:5:"label";s:0:"";s:7:"invalid";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:0:"";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}i:9;O:8:"stdClass":13:{s:2:"id";s:2:"14";s:9:"field_key";s:7:"62n6q32";s:4:"name";s:7:"Captcha";s:11:"description";s:0:"";s:4:"type";s:7:"captcha";s:13:"default_value";s:1:"1";s:7:"options";s:0:"";s:11:"field_order";s:2:"10";s:8:"required";s:1:"0";s:13:"field_options";a:12:{s:5:"label";s:4:"none";s:5:"blank";s:0:"";s:14:"clear_on_focus";i:0;s:13:"default_blank";i:0;s:4:"size";s:0:"";s:3:"max";s:0:"";s:7:"invalid";s:39:"The reCAPTCHA was not entered correctly";s:7:"classes";s:0:"";s:18:"required_indicator";s:1:"*";s:14:"separate_value";i:0;s:11:"custom_html";s:413:"<div id="frm_field_[id]_container" class="frm_form_field form-field [required_class][error_class]">\r\n    <label for="field_[key]" class="frm_primary_label">[field_name]\r\n        <span class="frm_required">[required_label]</span>\r\n    </label>\r\n    [input]\r\n    [if description]<div class="frm_description">[description]</div>[/if description]\r\n    [if error]<div class="frm_error">[error]</div>[/if error]\r\n</div>";s:12:"captcha_size";s:7:"default";}s:7:"form_id";s:1:"3";s:10:"created_at";s:19:"2015-08-27 07:55:21";s:9:"form_name";s:13:"Space Booking";}}', 'no'),
(23298, '_transient_timeout_wpseo_sitemap_cache_chunk_1', '1485317583', 'no'),
(23299, '_transient_wpseo_sitemap_cache_chunk_1', '<urlset xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:image="http://www.google.com/schemas/sitemap-image/1.1" xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9 http://www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd" xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">\n	<url>\n		<loc>http://asiacentre.co.th/chunk/</loc>\n		<lastmod>2017-01-20T16:13:53+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.8</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/3-columns-for-home-page/</loc>\n		<lastmod>2017-01-20T16:13:53+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/student-talk-01/</loc>\n		<lastmod>2014-06-23T14:44:43+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/contact-details/</loc>\n		<lastmod>2016-12-22T17:57:00+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/home-04-content/</loc>\n		<lastmod>2014-06-24T13:33:41+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/home-05-layout/</loc>\n		<lastmod>2014-06-24T19:14:31+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/students-talk-02/</loc>\n		<lastmod>2014-06-24T19:23:18+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/fun-fact-01/</loc>\n		<lastmod>2014-06-24T19:44:35+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n	<url>\n		<loc>http://asiacentre.co.th/chunk/upcoming-events/</loc>\n		<lastmod>2016-12-28T13:51:23+07:00</lastmod>\n		<changefreq>weekly</changefreq>\n		<priority>0.6</priority>\n	</url>\n</urlset>', 'no'),
(23311, '_transient_timeout_AsiaCentre_BKK-tweets', '1485274595', 'no'),
(23312, '_transient_AsiaCentre_BKK-tweets', '', 'no'),
(23316, '_site_transient_timeout_theme_roots', '1485277960', 'no'),
(23317, '_site_transient_theme_roots', 'a:3:{s:16:"Buntington-child";s:7:"/themes";s:10:"Buntington";s:7:"/themes";s:13:"twentysixteen";s:7:"/themes";}', 'no');

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_postmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `post_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `post_id` (`post_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=6131 ;

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

INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(27, 701, '_wp_page_template', 'default'),
(28, 703, '_wp_page_template', 'default'),
(402, 1636, '_menu_item_type', 'custom'),
(403, 1636, '_menu_item_menu_item_parent', '0'),
(404, 1636, '_menu_item_object_id', '1636'),
(405, 1636, '_menu_item_object', 'custom'),
(406, 1636, '_menu_item_target', ''),
(407, 1636, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(408, 1636, '_menu_item_xfn', ''),
(409, 1636, '_menu_item_url', 'http://wpthemetestdata.wordpress.com/'),
(410, 1637, '_menu_item_type', 'post_type'),
(411, 1637, '_menu_item_menu_item_parent', '0'),
(412, 1637, '_menu_item_object_id', '703'),
(413, 1637, '_menu_item_object', 'page'),
(414, 1637, '_menu_item_target', ''),
(415, 1637, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(416, 1637, '_menu_item_xfn', ''),
(417, 1637, '_menu_item_url', ''),
(418, 1638, '_menu_item_type', 'post_type'),
(419, 1638, '_menu_item_menu_item_parent', '0'),
(420, 1638, '_menu_item_object_id', '701'),
(421, 1638, '_menu_item_object', 'page'),
(422, 1638, '_menu_item_target', ''),
(423, 1638, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(424, 1638, '_menu_item_xfn', ''),
(425, 1638, '_menu_item_url', ''),
(500, 358, '_wp_old_slug', ''),
(501, 358, '_wp_old_slug', 'post-format-standard-2'),
(502, 358, '_wp_old_slug', 'readability-test'),
(503, 358, '_wp_old_slug', 'markup-readability-test'),
(504, 555, '_wp_old_slug', 'post-format-gallery-2'),
(506, 555, '_wp_old_slug', 'post-format-test-gallery'),
(507, 559, '_wp_old_slug', 'post-format-aside-2'),
(508, 559, '_wp_old_slug', 'post-format-test-aside'),
(509, 562, '_wp_old_slug', 'post-format-test-chat'),
(510, 565, '_wp_old_slug', 'post-format-test-link'),
(511, 568, '_wp_old_slug', 'post-format-test-image'),
(512, 568, '_wp_old_slug', 'post-format-test-image-linked'),
(513, 575, '_wp_old_slug', 'post-format-test-quote'),
(514, 579, '_wp_old_slug', 'post-format-test-status'),
(515, 582, '_wp_old_slug', 'post-format-test-video'),
(516, 582, '_oembed_4321638fc1a6fee26443f7fe8a70a871', '<embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="500" height="281" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed>'),
(517, 582, '_oembed_29351fff85c1be1d1e9a965a0332a861', '<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="604" height="339" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>'),
(518, 582, '_oembed_9fcc86d7d9398ff736577f922307f64d', '<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="808" height="454" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>'),
(519, 582, '_oembed_366237792d32461d0052efb2edec37f5', '<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="584" height="328" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>'),
(520, 582, '_oembed_37fdfe862c13c46a93be2921279bf675', '<div class="embed-"><embed src="http://v.wordpress.com/hrPKeL5t" type="application/x-shockwave-flash" width="599" height="336" allowscriptaccess="always" allowfullscreen="true" wmode="transparent"></embed></div>'),
(521, 587, 'enclosure', 'http://asiacentre.brickisred.com/wp-content/uploads/2012/07/originaldixielandjazzbandwithalbernard-stlouisblues.mp3\n3043247\naudio/mpeg\n'),
(522, 587, '_wp_old_slug', 'post-format-test-audio'),
(529, 993, '_wp_old_slug', 'excerpt'),
(530, 993, '_wp_old_slug', 'template-excerpt'),
(531, 993, '_publicize_pending', '1'),
(532, 993, 'original_post_id', '993'),
(533, 993, '_wp_old_slug', '993'),
(534, 996, '_wp_old_slug', 'more-tag'),
(535, 996, '_publicize_pending', '1'),
(536, 996, 'original_post_id', '996'),
(537, 996, '_wp_old_slug', '996'),
(538, 1000, '_wp_old_slug', 'nested-and-mixed-lists'),
(539, 1000, '_wp_old_slug', 'html-nested-and-mixed-lists'),
(540, 1000, '_wp_old_slug', 'markup-nested-and-mixed-lists'),
(541, 1000, '_publicize_pending', '1'),
(542, 1000, 'original_post_id', '1000'),
(543, 1000, '_wp_old_slug', '1000'),
(544, 1005, '_publicize_pending', '1'),
(545, 1005, 'standard_seo_post_level_layout', ''),
(546, 1005, 'standard_link_url_field', ''),
(547, 1005, 'standard_seo_post_meta_description', ''),
(548, 1005, 'original_post_id', '1005'),
(549, 1005, '_wp_old_slug', '1005'),
(550, 1011, '_wp_old_slug', 'media-featured-image-horizontal'),
(551, 1011, '_wp_old_slug', 'featured-image-horizontal'),
(552, 1011, '_publicize_pending', '1'),
(553, 1011, '_wp_old_slug', 'featured-image'),
(555, 1011, 'standard_seo_post_level_layout', ''),
(556, 1011, 'standard_link_url_field', ''),
(557, 1011, 'standard_seo_post_meta_description', ''),
(558, 1011, 'original_post_id', '1011'),
(559, 1011, '_wp_old_slug', '1011'),
(560, 1016, '_wp_old_slug', 'media-featured-image-vertical'),
(561, 1016, '_wp_old_slug', 'featured-image-vertical'),
(562, 1016, '_publicize_pending', '1'),
(564, 1016, 'standard_seo_post_level_layout', ''),
(565, 1016, 'standard_link_url_field', ''),
(566, 1016, 'standard_seo_post_meta_description', ''),
(567, 1016, 'original_post_id', '1016'),
(568, 1016, '_wp_old_slug', '1016'),
(569, 1031, '_wp_old_slug', 'tiled-gallery'),
(570, 1031, '_wp_old_slug', 'media-tiled-gallery'),
(571, 1031, '_publicize_pending', '1'),
(572, 1031, 'standard_seo_post_level_layout', ''),
(573, 1031, 'standard_link_url_field', ''),
(574, 1031, 'standard_seo_post_meta_description', ''),
(575, 1031, 'original_post_id', '1031'),
(576, 1031, '_wp_old_slug', '1031'),
(586, 1148, '_publicize_pending', '1'),
(587, 1148, '_wp_old_slug', 'comment-test'),
(588, 1148, 'original_post_id', '149'),
(589, 1148, '_wp_old_slug', '149'),
(590, 1148, '_wp_old_slug', 'comments'),
(591, 1149, '_wp_old_slug', 'pingbacks-an-trackbacks'),
(592, 1149, '_publicize_pending', '1'),
(593, 1149, '_wp_old_slug', 'many-trackbacks'),
(594, 1149, 'original_post_id', '151'),
(595, 1149, '_wp_old_slug', '151'),
(596, 1150, '_publicize_pending', '1'),
(597, 1150, '_wp_old_slug', 'no-comments'),
(598, 1150, 'original_post_id', '152'),
(599, 1150, '_wp_old_slug', '152'),
(600, 1150, '_wp_old_slug', 'comments-disabled-2'),
(601, 1151, '_publicize_pending', '1'),
(602, 1151, 'original_post_id', '167'),
(603, 1151, '_wp_old_slug', '167'),
(604, 1151, '_wp_old_slug', 'many-tags-2'),
(605, 1152, '_wp_old_slug', 'many-categories-2'),
(606, 1152, '_publicize_pending', '1'),
(607, 1152, 'original_post_id', '168'),
(608, 1152, '_wp_old_slug', '168'),
(609, 1153, 'original_post_id', '418'),
(610, 1153, '_wp_old_slug', '418'),
(611, 1158, '_publicize_pending', '1'),
(612, 1158, '_wp_old_slug', 'post-format-test-image'),
(613, 1158, '_wp_old_slug', 'post-format-test-image-linked'),
(614, 1158, 'original_post_id', '568'),
(615, 1158, '_wp_old_slug', '568'),
(616, 1161, '_publicize_pending', '1'),
(617, 1161, '_wp_old_slug', 'post-format-test-video'),
(618, 1161, '_wp_old_slug', 'post-format-video'),
(619, 1161, 'original_post_id', '582'),
(620, 1161, '_wp_old_slug', '582'),
(621, 1163, '_publicize_pending', '1'),
(622, 1163, '_wp_old_slug', 'post-format-test-image-attached'),
(623, 1163, 'original_post_id', '674'),
(624, 1163, '_wp_old_slug', '674'),
(626, 1163, '_format_url', ''),
(627, 1163, '_format_link_url', ''),
(628, 1163, '_format_quote_source_url', ''),
(629, 1163, '_format_quote_source_name', ''),
(630, 1163, '_format_image', ''),
(631, 1163, '_format_audio_embed', ''),
(632, 1163, '_format_video_embed', ''),
(638, 1168, '_wp_old_slug', 'password-protected'),
(639, 1168, '_publicize_pending', '1'),
(640, 1168, '_wp_old_slug', 'test-with-secret-password'),
(641, 1168, 'original_post_id', '131'),
(642, 1168, '_wp_old_slug', '131'),
(643, 1169, '_publicize_pending', '1'),
(644, 1169, '_wp_old_slug', '14'),
(645, 1169, 'original_post_id', '133'),
(646, 1169, '_wp_old_slug', '133'),
(647, 1169, '_wp_old_slug', 'no-title-2'),
(648, 1170, '_publicize_pending', '1'),
(649, 1170, '_wp_old_slug', 'this-post-has-no-body'),
(650, 1170, 'original_post_id', '134'),
(651, 1170, '_wp_old_slug', '134'),
(652, 1170, '_wp_old_slug', 'no-content'),
(653, 1171, '_publicize_pending', '1'),
(654, 1171, '_wp_old_slug', 'layout-test'),
(655, 1171, 'original_post_id', '188'),
(656, 1171, '_wp_old_slug', '188'),
(657, 1171, '_wp_old_slug', 'paginated'),
(658, 1173, '_publicize_pending', '1'),
(659, 1173, 'original_post_id', '861'),
(660, 1173, '_wp_old_slug', '861'),
(661, 1173, '_wp_old_slug', 'title-with-markup'),
(662, 1174, '_publicize_pending', '1'),
(663, 1174, 'original_post_id', '867'),
(664, 1174, '_wp_old_slug', '867'),
(665, 1175, '_wp_old_slug', 'edge-case-non-breaking-text'),
(666, 1175, '_wp_old_slug', 'non-breaking-text'),
(667, 1175, '_publicize_pending', '1'),
(668, 1175, '_wp_old_slug', 'non-breaking-tex'),
(669, 1175, 'original_post_id', '877'),
(670, 1175, '_wp_old_slug', '877'),
(671, 1176, '_wp_old_slug', 'text-alignment'),
(672, 1176, '_publicize_pending', '1'),
(673, 1176, 'original_post_id', '895'),
(674, 1176, '_wp_old_slug', '895'),
(676, 1177, '_wp_old_slug', 'image-alignment'),
(677, 1177, '_publicize_pending', '1'),
(678, 1177, 'standard_seo_post_level_layout', ''),
(679, 1177, 'standard_link_url_field', ''),
(680, 1177, 'standard_seo_post_meta_description', ''),
(681, 1177, 'original_post_id', '903'),
(682, 1177, '_wp_old_slug', '903'),
(683, 1178, '_wp_old_slug', 'markup-and-formatting'),
(684, 1178, '_publicize_pending', '1'),
(685, 1178, 'standard_seo_post_level_layout', ''),
(686, 1178, 'standard_link_url_field', ''),
(687, 1178, 'standard_seo_post_meta_description', ''),
(688, 1178, 'original_post_id', '919'),
(689, 1178, '_wp_old_slug', '919'),
(690, 1179, '_publicize_pending', '1'),
(691, 1179, 'standard_seo_post_level_layout', ''),
(692, 1179, 'standard_link_url_field', ''),
(693, 1179, 'standard_seo_post_meta_description', ''),
(694, 1179, '_wp_old_slug', 'twitter-embeds'),
(695, 1179, 'original_post_id', '1027'),
(696, 1179, '_wp_old_slug', '1027'),
(697, 1241, '_publicize_pending', '1'),
(698, 1241, 'standard_seo_post_level_layout', ''),
(699, 1241, 'standard_link_url_field', ''),
(700, 1241, 'standard_seo_post_meta_description', ''),
(701, 1241, 'original_post_id', '1241'),
(702, 1241, '_wp_old_slug', '1241'),
(703, 1241, '_wp_old_slug', 'sticky'),
(704, 1446, '_publicize_pending', '1'),
(801, 701, '_edit_lock', '1482991424:6'),
(802, 701, '_edit_last', '5'),
(814, 1712, '_form', '<p>Your Name (required)<br />\n    [text* your-name] </p>\n\n<p>Your Email (required)<br />\n    [email* your-email] </p>\n\n<p>Subject<br />\n    [text your-subject] </p>\n\n<p>Your Message<br />\n    [textarea your-message] </p>\n\n<p>[submit "Send"]</p>'),
(815, 1712, '_mail', 'a:8:{s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:21:"info@asiacentre.co.th";s:4:"body";s:146:"From: [your-name] <[your-email]>\nSubject: [your-subject]\n\nMessage Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Asia Centre";s:9:"recipient";s:21:"info@asiacentre.co.th";s:18:"additional_headers";s:22:"Reply-To: [your-email]";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(816, 1712, '_mail_2', 'a:9:{s:6:"active";b:0;s:7:"subject";s:14:"[your-subject]";s:6:"sender";s:49:"Asia Centre <wordpress@asiacentre.brickisred.com>";s:4:"body";s:123:"Message Body:\n[your-message]\n\n--\nThis e-mail was sent from a contact form on Asia Centre (http://asiacentre.brickisred.com)";s:9:"recipient";s:12:"[your-email]";s:18:"additional_headers";s:32:"Reply-To: barry.gildea@gmail.com";s:11:"attachments";s:0:"";s:8:"use_html";b:0;s:13:"exclude_blank";b:0;}'),
(817, 1712, '_messages', 'a:23:{s:12:"mail_sent_ok";s:43:"Your message was sent successfully. Thanks.";s:12:"mail_sent_ng";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:16:"validation_error";s:74:"Validation errors occurred. Please confirm the fields and submit it again.";s:4:"spam";s:93:"Failed to send your message. Please try later or contact the administrator by another method.";s:12:"accept_terms";s:35:"Please accept the terms to proceed.";s:16:"invalid_required";s:34:"Please fill in the required field.";s:16:"invalid_too_long";s:23:"This input is too long.";s:17:"invalid_too_short";s:24:"This input is too short.";s:12:"invalid_date";s:26:"Date format seems invalid.";s:14:"date_too_early";s:23:"This date is too early.";s:13:"date_too_late";s:22:"This date is too late.";s:13:"upload_failed";s:22:"Failed to upload file.";s:24:"upload_file_type_invalid";s:30:"This file type is not allowed.";s:21:"upload_file_too_large";s:23:"This file is too large.";s:23:"upload_failed_php_error";s:38:"Failed to upload file. Error occurred.";s:14:"invalid_number";s:28:"Number format seems invalid.";s:16:"number_too_small";s:25:"This number is too small.";s:16:"number_too_large";s:25:"This number is too large.";s:23:"quiz_answer_not_correct";s:27:"Your answer is not correct.";s:17:"captcha_not_match";s:31:"Your entered code is incorrect.";s:13:"invalid_email";s:28:"Email address seems invalid.";s:11:"invalid_url";s:18:"URL seems invalid.";s:11:"invalid_tel";s:31:"Telephone number seems invalid.";}'),
(818, 1712, '_additional_settings', ''),
(908, 1751, '_menu_item_type', 'custom'),
(909, 1751, '_menu_item_menu_item_parent', '0'),
(910, 1751, '_menu_item_object_id', '1751'),
(911, 1751, '_menu_item_object', 'custom'),
(912, 1751, '_menu_item_target', ''),
(913, 1751, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(914, 1751, '_menu_item_xfn', ''),
(915, 1751, '_menu_item_url', 'https://www.facebook.com/asiacentre.co.th'),
(917, 1752, '_menu_item_type', 'custom'),
(918, 1752, '_menu_item_menu_item_parent', '0'),
(919, 1752, '_menu_item_object_id', '1752'),
(920, 1752, '_menu_item_object', 'custom'),
(921, 1752, '_menu_item_target', ''),
(922, 1752, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(923, 1752, '_menu_item_xfn', ''),
(924, 1752, '_menu_item_url', 'https://twitter.com'),
(926, 1178, '_edit_lock', '1455519227:3'),
(1026, 1153, '_edit_lock', '1455519094:3'),
(1028, 1153, '_edit_last', '1'),
(1030, 1148, '_edit_lock', '1433313509:1'),
(1032, 1148, '_edit_last', '1'),
(1035, 1176, '_edit_last', '1'),
(1038, 1176, '_edit_lock', '1484029529:6'),
(1052, 1178, '_edit_last', '1'),
(1057, 1177, '_edit_lock', '1455519417:3'),
(1061, 1177, '_edit_last', '1'),
(1083, 1779, '_wp_attached_file', '2015/06/asia-centre-logo-e1433317601593.png'),
(1084, 1779, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:150;s:6:"height";i:33;s:4:"file";s:43:"2015/06/asia-centre-logo-e1433317601593.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"asia-centre-logo-150x58.png";s:5:"width";i:150;s:6:"height";i:58;s:9:"mime-type";s:9:"image/png";}s:34:"glades-category-posts-widget-small";a:4:{s:4:"file";s:27:"asia-centre-logo-140x58.png";s:5:"width";i:140;s:6:"height";i:58;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;}}'),
(1085, 1779, '_edit_lock', '1433317705:1'),
(1086, 1779, '_wp_attachment_backup_sizes', 'a:1:{s:9:"full-orig";a:3:{s:5:"width";i:264;s:6:"height";i:58;s:4:"file";s:20:"asia-centre-logo.png";}}'),
(1087, 1779, '_edit_last', '1'),
(1098, 1174, '_edit_lock', '1433350871:1'),
(1102, 1174, '_edit_last', '1'),
(1105, 1173, '_edit_lock', '1433348860:1'),
(1109, 1173, '_edit_last', '1'),
(1112, 1175, '_edit_lock', '1433348977:1'),
(1129, 1011, '_edit_lock', '1433349483:1'),
(1133, 1011, '_edit_last', '1'),
(1144, 1178, '_wp_old_slug', 'markup-html-tags-and-formatting'),
(1242, 71, '_search', 'Optimization Methods in Management Science, '),
(1243, 71, '_edit_last', '1'),
(1244, 71, 'course', 'a:3:{s:9:"course_id";s:8:"4558AS13";s:15:"course_features";a:3:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:13:"Undergraduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:26:"prof. Jody Foster Jackling";}i:2;a:2:{s:13:"course_f_name";s:12:"As taught in";s:14:"course_f_value";s:23:"Fall 1986 - Spring 1992";}}s:16:"course_documents";a:4:{i:0;a:3:{s:10:"course_doc";s:67:"http://school.wpshow.me/wp-content/uploads/2014/06/document.txt.zip";s:16:"course_doc_title";s:16:"Course Materials";s:22:"course_doc_description";s:74:"This package contains the same content as the online version of the course";}i:1;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_2.txt.zip";s:16:"course_doc_title";s:11:"Assignments";s:22:"course_doc_description";s:72:"Documents containing various assignments and solutions for course takers";}i:2;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_3.txt.zip";s:16:"course_doc_title";s:21:"Road Maps, part 0 - 5";s:22:"course_doc_description";s:58:"Documents include tutorials with step-by-step instructions";}i:3;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_4.txt.zip";s:16:"course_doc_title";s:22:"Road Maps, part 6 - 12";s:22:"course_doc_description";s:64:"These documents include tutorials with step-by-step instructions";}}}'),
(1245, 71, '_search', 'Optimization Methods in Management Science, 4558AS13, Undergraduate, prof. Jody Foster Jackling, Fall 1986 - Spring 1992, , '),
(1246, 77, '_search', 'Basics in Applied Quantitative Anlaysis, '),
(1247, 77, '_edit_last', '1'),
(1248, 77, 'course', 'a:3:{s:9:"course_id";s:8:"911ABC76";s:15:"course_features";a:4:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:8:"Graduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:27:"prof. Anzillium Ahmabugatti";}i:2;a:2:{s:13:"course_f_name";s:12:"As taught in";s:14:"course_f_value";s:23:"Fall 1986 - Spring 1992";}i:3;a:2:{s:13:"course_f_name";s:7:"Credits";s:14:"course_f_value";s:3:"3.5";}}s:16:"course_documents";a:2:{i:0;a:3:{s:10:"course_doc";s:67:"http://school.wpshow.me/wp-content/uploads/2014/06/document.txt.zip";s:16:"course_doc_title";s:11:"Assignments";s:22:"course_doc_description";s:74:"This package contains the same content as the online version of the course";}i:1;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_3.txt.zip";s:16:"course_doc_title";s:15:"Road Maps 0 - 8";s:22:"course_doc_description";s:58:"Documents include tutorials with step-by-step instructions";}}}'),
(1249, 77, '_search', 'Basics in Applied Quantitative Anlaysis, 911ABC76, Graduate, prof. Anzillium Ahmabugatti, Fall 1986 - Spring 1992, 3.5, , '),
(1250, 78, '_search', 'Spirituality, Religion, and Healing in Counseling, '),
(1251, 78, '_edit_last', '1'),
(1252, 78, 'course', 'a:3:{s:9:"course_id";s:8:"CHUR6699";s:15:"course_features";a:4:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:13:"Undergraduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:23:"prof. Valdermort Potter";}i:2;a:2:{s:13:"course_f_name";s:12:"As taught in";s:14:"course_f_value";s:11:"Winter 2010";}i:3;a:2:{s:13:"course_f_name";s:7:"Credits";s:14:"course_f_value";s:1:"2";}}s:16:"course_documents";a:1:{i:0;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_3.txt.zip";s:16:"course_doc_title";s:11:"Assignments";s:22:"course_doc_description";s:74:"This package contains the same content as the online version of the course";}}}'),
(1253, 78, '_search', 'Spirituality, Religion, and Healing in Counseling, CHUR6699, Undergraduate, prof. Valdermort Potter, Winter 2010, 2, , '),
(1258, 320, '_search', '3 columns for home page, '),
(1259, 320, '_search', '3 columns for home page, '),
(1260, 320, '_edit_last', '6'),
(1261, 320, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:24:"[content_chunk id="320"]";}'),
(1262, 326, '_search', 'Student talk 01, '),
(1263, 326, '_search', 'Student talk 01, '),
(1264, 326, '_edit_last', '1'),
(1265, 326, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:24:"[content_chunk id="326"]";}'),
(1266, 328, '_search', 'Contact Details, '),
(1267, 328, '_search', 'Contact Details, '),
(1268, 328, '_edit_last', '6'),
(1269, 328, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:24:"[content_chunk id="328"]";}'),
(1270, 335, '_search', 'Independent Study in Education, '),
(1271, 335, '_search', 'Independent Study in Education, DR96Wa45, Graduate, prof. Marc Flessner, prof. Edit Piaf, Permission of instructor required, 3, , '),
(1272, 335, '_edit_last', '1'),
(1273, 335, 'course', 'a:3:{s:9:"course_id";s:8:"DR96Wa45";s:15:"course_features";a:4:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:8:"Graduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:36:"prof. Marc Flessner, prof. Edit Piaf";}i:2;a:2:{s:13:"course_f_name";s:12:"Restrictions";s:14:"course_f_value";s:33:"Permission of instructor required";}i:3;a:2:{s:13:"course_f_name";s:7:"Credits";s:14:"course_f_value";s:1:"3";}}s:16:"course_documents";a:2:{i:0;a:3:{s:10:"course_doc";s:67:"http://school.wpshow.me/wp-content/uploads/2014/06/document.txt.zip";s:16:"course_doc_title";s:23:"Criteria for evaluation";s:22:"course_doc_description";s:72:"Aenean viverra sodales metus at blandit. Vestibulum id consequat libero.";}i:1;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_2.txt.zip";s:16:"course_doc_title";s:29:"Readings and other activities";s:22:"course_doc_description";s:54:"Quisque elementum laoreet orci a placerat lorem ipsum.";}}}'),
(1274, 336, '_search', 'Professional Writing and Communications, '),
(1275, 336, '_search', 'Professional Writing and Communications, RR900D78, Undergraduate, prof. Goodey Smart, Every spring, None, 2, , '),
(1276, 336, '_edit_last', '1'),
(1277, 336, 'course', 'a:3:{s:9:"course_id";s:8:"RR900D78";s:15:"course_features";a:5:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:13:"Undergraduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:18:"prof. Goodey Smart";}i:2;a:2:{s:13:"course_f_name";s:7:"Offered";s:14:"course_f_value";s:12:"Every spring";}i:3;a:2:{s:13:"course_f_name";s:12:"Restrictions";s:14:"course_f_value";s:4:"None";}i:4;a:2:{s:13:"course_f_name";s:7:"Credits";s:14:"course_f_value";s:1:"2";}}s:16:"course_documents";a:1:{i:0;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_3.txt.zip";s:16:"course_doc_title";s:36:"Real-world experiences to the course";s:22:"course_doc_description";s:64:"Vivamus orci felis, tempus a posuere eget, scelerisque vel magna";}}}'),
(1278, 337, '_search', 'Field Experiences in American Higher Education, '),
(1279, 337, '_search', 'Field Experiences in American Higher Education, 6618GV43, Graduate, Jay Lang, prof. Chihuan Che Zong, None, Fall and Spring, , '),
(1280, 337, '_edit_last', '1'),
(1281, 337, 'course', 'a:3:{s:9:"course_id";s:8:"6618GV43";s:15:"course_features";a:4:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:8:"Graduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:32:"Jay Lang, prof. Chihuan Che Zong";}i:2;a:2:{s:13:"course_f_name";s:12:"Restrictions";s:14:"course_f_value";s:4:"None";}i:3;a:2:{s:13:"course_f_name";s:7:"Offered";s:14:"course_f_value";s:15:"Fall and Spring";}}s:16:"course_documents";a:3:{i:0;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_3.txt.zip";s:16:"course_doc_title";s:11:"Assignments";s:22:"course_doc_description";s:78:"Maecenas risus sapien, volutpat sit amet accumsan ac, condimentum sit amet leo";}i:1;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_4.txt.zip";s:16:"course_doc_title";s:29:"Readings and other activities";s:22:"course_doc_description";s:82:"Placerat volutpat, nisl elit elementum mauris, sit amet porta tortor ante a libero";}i:2;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_2.txt.zip";s:16:"course_doc_title";s:22:"Road Maps, part 0 - 12";s:22:"course_doc_description";s:74:"Nam ullamcorper, purus sed tincidunt tristique, sapien metus aliquet ipsum";}}}'),
(1282, 338, '_search', 'Foundations of Health Professions Education, '),
(1283, 338, '_search', 'Foundations of Health Professions Education, TF890001, Undergraduate, Lee Marvin, Vanessa Prize, Winter - Fall 1999, 3.5, None, , '),
(1284, 338, '_edit_last', '1'),
(1285, 338, 'course', 'a:3:{s:9:"course_id";s:8:"TF890001";s:15:"course_features";a:5:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:13:"Undergraduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:25:"Lee Marvin, Vanessa Prize";}i:2;a:2:{s:13:"course_f_name";s:12:"As taught in";s:14:"course_f_value";s:18:"Winter - Fall 1999";}i:3;a:2:{s:13:"course_f_name";s:7:"Credits";s:14:"course_f_value";s:3:"3.5";}i:4;a:2:{s:13:"course_f_name";s:12:"Restrictions";s:14:"course_f_value";s:4:"None";}}s:16:"course_documents";a:1:{i:0;a:3:{s:10:"course_doc";s:67:"http://school.wpshow.me/wp-content/uploads/2014/06/document.txt.zip";s:16:"course_doc_title";s:11:"Assignments";s:22:"course_doc_description";s:72:"Aenean viverra sodales metus at blandit. Vestibulum id consequat libero.";}}}'),
(1286, 339, '_search', 'Advanced Quantitative Research Methods, '),
(1287, 339, '_search', 'Advanced Quantitative Research Methods, Pkh1929D, Undergraduate, prof. Meryl Lynch, By permission of instructor, 4, Every Fall, , '),
(1288, 339, '_edit_last', '1'),
(1289, 339, 'course', 'a:3:{s:9:"course_id";s:8:"Pkh1929D";s:15:"course_features";a:5:{i:0;a:2:{s:13:"course_f_name";s:5:"Level";s:14:"course_f_value";s:13:"Undergraduate";}i:1;a:2:{s:13:"course_f_name";s:13:"Instructor(s)";s:14:"course_f_value";s:17:"prof. Meryl Lynch";}i:2;a:2:{s:13:"course_f_name";s:12:"Restrictions";s:14:"course_f_value";s:27:"By permission of instructor";}i:3;a:2:{s:13:"course_f_name";s:7:"Credits";s:14:"course_f_value";s:1:"4";}i:4;a:2:{s:13:"course_f_name";s:7:"Offered";s:14:"course_f_value";s:10:"Every Fall";}}s:16:"course_documents";a:4:{i:0;a:3:{s:10:"course_doc";s:67:"http://school.wpshow.me/wp-content/uploads/2014/06/document.txt.zip";s:16:"course_doc_title";s:11:"Assignments";s:22:"course_doc_description";s:74:"This package contains the same content as the online version of the course";}i:1;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_2.txt.zip";s:16:"course_doc_title";s:29:"Readings and other activities";s:22:"course_doc_description";s:72:"Documents containing various assignments and solutions for course takers";}i:2;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_3.txt.zip";s:16:"course_doc_title";s:21:"Road Maps, part 0 - 3";s:22:"course_doc_description";s:74:"Nam ullamcorper, purus sed tincidunt tristique, sapien metus aliquet ipsum";}i:3;a:3:{s:10:"course_doc";s:69:"http://school.wpshow.me/wp-content/uploads/2014/06/document_4.txt.zip";s:16:"course_doc_title";s:21:"Road Maps, part 4 - 8";s:22:"course_doc_description";s:64:"These documents include tutorials with step-by-step instructions";}}}'),
(1290, 347, '_search', 'Home 04 content, '),
(1291, 347, '_search', 'Home 04 content, '),
(1292, 347, '_edit_last', '1'),
(1293, 347, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:24:"[content_chunk id="347"]";}'),
(1294, 356, '_search', 'Home 05 layout, '),
(1295, 356, '_search', 'Home 05 layout, '),
(1296, 356, '_edit_last', '1'),
(1297, 356, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:24:"[content_chunk id="356"]";}'),
(1298, 357, '_search', 'Students talk 02, '),
(1299, 357, '_search', 'Students talk 02, '),
(1300, 357, '_edit_last', '1'),
(1301, 357, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:24:"[content_chunk id="357"]";}'),
(1302, 1800, '_search', 'Fun fact 01, '),
(1303, 1800, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:24:"[content_chunk id="358"]";}'),
(1304, 1800, '_search', 'Fun fact 01, '),
(1305, 1800, '_edit_last', '1'),
(1306, 1801, '_search', 'Home, '),
(1307, 1801, '_menu_item_type', 'custom'),
(1308, 1801, '_menu_item_menu_item_parent', '0'),
(1309, 1801, '_menu_item_object_id', '1801'),
(1310, 1801, '_menu_item_object', 'custom'),
(1311, 1801, '_menu_item_target', ''),
(1312, 1801, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1313, 1801, '_menu_item_xfn', ''),
(1314, 1801, '_menu_item_url', 'http://school.wpshow.me'),
(1334, 1803, '_search', 'Courses, '),
(1335, 1803, '_menu_item_type', 'taxonomy'),
(1336, 1803, '_menu_item_menu_item_parent', '0'),
(1337, 1803, '_menu_item_object_id', '210'),
(1338, 1803, '_menu_item_object', 'courses'),
(1339, 1803, '_menu_item_target', ''),
(1340, 1803, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1341, 1803, '_menu_item_xfn', ''),
(1342, 1803, '_menu_item_url', ''),
(1343, 85, '_search', 'Students moving around, '),
(1344, 85, '_search', 'Students moving around, '),
(1345, 85, '_edit_last', '1'),
(1346, 85, 'gallery', ''),
(1348, 1804, '_search', 'Galleries, '),
(1349, 1804, '_menu_item_type', 'taxonomy'),
(1350, 1804, '_menu_item_menu_item_parent', '0'),
(1351, 1804, '_menu_item_object_id', '212'),
(1352, 1804, '_menu_item_object', 'galleries'),
(1353, 1804, '_menu_item_target', ''),
(1354, 1804, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1355, 1804, '_menu_item_xfn', ''),
(1356, 1804, '_menu_item_url', ''),
(1357, 102, '_search', 'A little bit of everything, '),
(1358, 102, '_search', 'A little bit of everything, '),
(1359, 102, '_edit_last', '1'),
(1361, 111, '_search', 'Mix and Match school gallery, '),
(1362, 111, '_search', 'Mix and Match school gallery, '),
(1363, 111, '_edit_last', '1'),
(1365, 264, '_search', 'Home 01, '),
(1366, 264, 'hom_page_metabox', 'a:1:{s:11:"hom_section";a:2:{i:0;a:14:{s:12:"layout_style";s:1:"1";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"0";s:15:"stripe_odd_even";s:0:"";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"1";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:17:"[slider id="149"]";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}i:1;a:14:{s:12:"layout_style";s:1:"3";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:4:"even";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:0:"";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:2:{i:0;a:1:{s:6:"sc_3_1";s:94:"[recent_news section_title="Recent News" items_number="3" exclude_categories="" style="basic"]";}i:1;a:1:{s:6:"sc_3_1";s:68:"[featured_gallery section_title="Featured Gallery" gallery_id="111"]";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:66:"[upcoming_events section_title="Upcoming Events" items_number="3"]";}}s:7:"col_3_3";a:3:{i:0;a:1:{s:6:"sc_3_3";s:110:"[course_search section_title="Course Search" tagline="* Enter course ID, title or the course instructor name"]";}i:1;a:1:{s:6:"sc_3_3";s:493:"[super_button icon="fa-check-square-o" label="How to apply?" tagline="Join us whenever you feel it''s time." color="#5dca9d" link="http://google.com" link_opens="_self"]\n\n[super_button icon="fa-leaf" label="Campus Tour" tagline="Student''s life at the glance. Take a tour..." color="#c5cace" link="http://google.com" link_opens="_self"]\n\n[super_button icon="fa-leaf" label="Prospectus" tagline="We''ll mail you free School Prospectus." color="#f3cc0c" link="http://google.com" link_opens="_self"]";}i:2;a:1:{s:6:"sc_3_3";s:73:"[twitter_twitts twitter_user="envato" twitts_num="1" excl_replies="true"]";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}}}'),
(1367, 264, '_edit_last', '1'),
(1368, 264, '_search', 'Home 01, '),
(1369, 316, '_search', 'Home Page-4, '),
(1370, 316, '_search', 'Home Page-4, '),
(1371, 316, '_edit_last', '6'),
(1372, 316, 'hom_page_metabox', 'a:1:{s:11:"hom_section";a:2:{i:0;a:14:{s:12:"layout_style";s:7:"2_3-1_3";s:10:"merge_cols";s:1:"1";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:4:"even";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:0:"";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:17:"[slider id="318"]";}}s:7:"col_6_2";a:2:{i:0;a:1:{s:6:"sc_6_2";s:157:"[super_button label="Meeting Space" tagline="Book Now / Find out more..." color="#c96d14" link="http://asiacentre.co.th/meeting-spaces/" link_opens="_blank"]";}i:1;a:1:{s:6:"sc_6_2";s:36:"[featured_gallery gallery_id="2471"]";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}i:1;a:14:{s:12:"layout_style";s:1:"1";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:4:"even";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:41:"[content_chunk section_title="" id="320"]";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:57:"[featured_gallery section_title="Training" gallery_id=""]";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}}}'),
(1373, 316, '_wp_old_slug', 'home-02'),
(1374, 322, '_search', 'Home Page 03, '),
(1375, 322, 'hom_page_metabox', 'a:1:{s:11:"hom_section";a:3:{i:0;a:14:{s:12:"layout_style";s:1:"1";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"0";s:15:"stripe_odd_even";s:3:"odd";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"1";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:17:"[slider id="327"]";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}i:1;a:14:{s:12:"layout_style";s:1:"1";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:3:"odd";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:24:"[content_chunk id="320"]";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}i:2;a:14:{s:12:"layout_style";s:1:"3";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"0";s:15:"stripe_odd_even";s:3:"odd";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:0:"";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:94:"[recent_news section_title="Recent News" items_number="4" exclude_categories="" style="basic"]";}}s:7:"col_3_2";a:2:{i:0;a:1:{s:6:"sc_3_2";s:66:"[upcoming_events section_title="Upcoming Events" items_number="2"]";}i:1;a:1:{s:6:"sc_3_2";s:110:"[course_search section_title="Course Search" tagline="* Enter course ID, title or the course instructor name"]";}}s:7:"col_3_3";a:2:{i:0;a:1:{s:6:"sc_3_3";s:525:"[super_button section_title="Important links" icon="fa-check-square-o" label="How to apply?" tagline="Join us whenever you feel it''s time." color="#5dca9d" link="http://google.com" link_opens="_self"]\n\n[super_button icon="fa-leaf" label="Campus Tour" tagline="Student''s life at the glance. Take a tour..." color="#c5cace" link="http://google.com" link_opens="_self"]\n\n[super_button icon="fa-leaf" label="Prospectus" tagline="We''ll mail you free School Prospectus." color="#f3cc0c" link="http://google.com" link_opens="_self"]";}i:1;a:1:{s:6:"sc_3_3";s:54:"[content_chunk section_title="Students talk" id="326"]";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}}}'),
(1376, 322, '_edit_last', '1'),
(1377, 322, '_search', 'Home 03, '),
(1378, 322, '_wp_old_slug', 'home-03'),
(1379, 348, '_search', 'Home Page 04, '),
(1380, 348, '_search', 'Home Page 04, '),
(1381, 348, '_edit_last', '1'),
(1382, 348, 'hom_page_metabox', 'a:1:{s:11:"hom_section";a:2:{i:0;a:14:{s:12:"layout_style";s:1:"1";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:3:"odd";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"1";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:24:"[content_chunk id="347"]";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}i:1;a:14:{s:12:"layout_style";s:7:"2_3-1_3";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:4:"even";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:0:"";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:91:"[blog items_number="4" include_categories="1" exclude_posts="" clear_wrapper_margin="true"]";}}s:7:"col_6_2";a:3:{i:0;a:1:{s:6:"sc_6_2";s:110:"[course_search section_title="Course Search" tagline="* Enter course ID, title or the course instructor name"]";}i:1;a:1:{s:6:"sc_6_2";s:65:"[upcoming_events section_title="Upcoming Event" items_number="1"]";}i:2;a:1:{s:6:"sc_6_2";s:68:"[featured_gallery section_title="Featured Gallery" gallery_id="111"]";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}}}'),
(1383, 351, '_search', 'Home Page 05, '),
(1384, 351, '_search', 'Home Page 05, '),
(1385, 351, '_edit_last', '1'),
(1386, 351, 'hom_page_metabox', 'a:1:{s:11:"hom_section";a:2:{i:0;a:14:{s:12:"layout_style";s:1:"1";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:3:"odd";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:24:"[content_chunk id="356"]";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}i:1;a:14:{s:12:"layout_style";s:1:"3";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:4:"even";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:0:"";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:2:{i:0;a:1:{s:6:"sc_3_1";s:80:"[content_chunk section_title="Students talk" id="326"]\r\n[content_chunk id="357"]";}i:1;a:1:{s:6:"sc_3_1";s:365:"[super_button icon="fa-graduation-cap" label="How to apply?" tagline="Join us whenever you feel it''s time." color="#ea5644" link="http://school.lh/?page_id=18" link_opens="_self"]\r\n\r\n[super_button icon="fa-institution" label="Campus Tour" tagline="Student''s life at the glance. Take a tour..." color="#68b5e6" link="http://school.lh/?page_id=18" link_opens="_self"]";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:66:"[upcoming_events section_title="Upcoming Events" items_number="3"]";}}s:7:"col_3_3";a:2:{i:0;a:1:{s:6:"sc_3_3";s:50:"[content_chunk section_title="Fun Facts" id="358"]";}i:1;a:1:{s:6:"sc_3_3";s:110:"[course_search section_title="Course Search" tagline="* Enter course ID, title or the course instructor name"]";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}}}'),
(1387, 18, '_search', 'Asia Centre, '),
(1388, 18, '_edit_last', '6'),
(1390, 18, '_wp_page_template', 'default'),
(1391, 18, '_search', 'Asia Centre, '),
(1392, 1805, '_search', ', '),
(1393, 1805, '_menu_item_type', 'post_type'),
(1394, 1805, '_menu_item_menu_item_parent', '0'),
(1395, 1805, '_menu_item_object_id', '18'),
(1396, 1805, '_menu_item_object', 'page'),
(1397, 1805, '_menu_item_target', ''),
(1398, 1805, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1399, 1805, '_menu_item_xfn', ''),
(1400, 1805, '_menu_item_url', ''),
(1410, 1807, '_search', ', '),
(1411, 1807, '_menu_item_type', 'post_type'),
(1412, 1807, '_menu_item_menu_item_parent', '1801'),
(1413, 1807, '_menu_item_object_id', '316'),
(1414, 1807, '_menu_item_object', 'hom_page'),
(1415, 1807, '_menu_item_target', ''),
(1416, 1807, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1417, 1807, '_menu_item_xfn', ''),
(1418, 1807, '_menu_item_url', ''),
(1419, 1808, '_search', ', '),
(1420, 1808, '_menu_item_type', 'post_type'),
(1421, 1808, '_menu_item_menu_item_parent', '1801'),
(1422, 1808, '_menu_item_object_id', '322'),
(1423, 1808, '_menu_item_object', 'hom_page'),
(1424, 1808, '_menu_item_target', ''),
(1425, 1808, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1426, 1808, '_menu_item_xfn', ''),
(1427, 1808, '_menu_item_url', ''),
(1428, 1809, '_search', ', '),
(1429, 1809, '_menu_item_type', 'taxonomy'),
(1430, 1809, '_menu_item_menu_item_parent', '0');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(1431, 1809, '_menu_item_object_id', '194'),
(1432, 1809, '_menu_item_object', 'category'),
(1433, 1809, '_menu_item_target', ''),
(1434, 1809, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1435, 1809, '_menu_item_xfn', ''),
(1436, 1809, '_menu_item_url', ''),
(1437, 1810, '_search', 'Menu Test, '),
(1438, 1810, '_menu_item_type', 'custom'),
(1439, 1810, '_menu_item_menu_item_parent', '1820'),
(1440, 1810, '_menu_item_object_id', '1810'),
(1441, 1810, '_menu_item_object', 'custom'),
(1442, 1810, '_menu_item_target', ''),
(1443, 1810, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1444, 1810, '_menu_item_xfn', ''),
(1445, 1810, '_menu_item_url', '#'),
(1446, 1811, '_search', 'Level 3, item, '),
(1447, 1811, '_menu_item_type', 'custom'),
(1448, 1811, '_menu_item_menu_item_parent', '1810'),
(1449, 1811, '_menu_item_object_id', '1811'),
(1450, 1811, '_menu_item_object', 'custom'),
(1451, 1811, '_menu_item_target', ''),
(1452, 1811, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1453, 1811, '_menu_item_xfn', ''),
(1454, 1811, '_menu_item_url', '#'),
(1455, 1812, '_search', 'Another level 3 item, '),
(1456, 1812, '_menu_item_type', 'custom'),
(1457, 1812, '_menu_item_menu_item_parent', '1810'),
(1458, 1812, '_menu_item_object_id', '1812'),
(1459, 1812, '_menu_item_object', 'custom'),
(1460, 1812, '_menu_item_target', ''),
(1461, 1812, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1462, 1812, '_menu_item_xfn', ''),
(1463, 1812, '_menu_item_url', '#'),
(1464, 1813, '_search', 'Last item, '),
(1465, 1813, '_menu_item_type', 'custom'),
(1466, 1813, '_menu_item_menu_item_parent', '1810'),
(1467, 1813, '_menu_item_object_id', '1813'),
(1468, 1813, '_menu_item_object', 'custom'),
(1469, 1813, '_menu_item_target', ''),
(1470, 1813, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1471, 1813, '_menu_item_xfn', ''),
(1472, 1813, '_menu_item_url', '#'),
(1473, 1814, '_search', ', '),
(1474, 1814, '_menu_item_type', 'post_type'),
(1475, 1814, '_menu_item_menu_item_parent', '1801'),
(1476, 1814, '_menu_item_object_id', '348'),
(1477, 1814, '_menu_item_object', 'hom_page'),
(1478, 1814, '_menu_item_target', ''),
(1479, 1814, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1480, 1814, '_menu_item_xfn', ''),
(1481, 1814, '_menu_item_url', ''),
(1482, 1815, '_search', ', '),
(1483, 1815, '_menu_item_type', 'post_type'),
(1484, 1815, '_menu_item_menu_item_parent', '1801'),
(1485, 1815, '_menu_item_object_id', '351'),
(1486, 1815, '_menu_item_object', 'hom_page'),
(1487, 1815, '_menu_item_target', ''),
(1488, 1815, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1489, 1815, '_menu_item_xfn', ''),
(1490, 1815, '_menu_item_url', ''),
(1512, 39, '_search', 'Contact Us, '),
(1513, 39, '_edit_last', '1'),
(1514, 39, '_wp_page_template', 'contact.php'),
(1515, 42, '_search', 'Full Width Page, '),
(1516, 42, '_edit_last', '1'),
(1518, 42, '_wp_page_template', 'page-fullwidth.php'),
(1525, 170, '_search', 'Text formatting, '),
(1526, 170, '_search', 'Text formatting, '),
(1527, 170, '_edit_last', '1'),
(1528, 170, '_wp_page_template', 'page-fullwidth.php'),
(1529, 210, '_search', 'Components, '),
(1530, 210, '_search', 'Components, '),
(1531, 210, '_edit_last', '1'),
(1532, 210, '_wp_page_template', 'page-fullwidth.php'),
(1533, 210, '_oembed_e297ea6cc4ce28b3b3b3dfc8a9143757', '<iframe src="//player.vimeo.com/video/16520938" width="700" height="394" frameborder="0" title="Mini-Deadmau5" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>'),
(1534, 210, '_oembed_7ea0c344850d56dfff605a95bc04bfb8', '<iframe width="700" height="400" scrolling="no" frameborder="no" src="https://w.soundcloud.com/player/?visual=true&url=http%3A%2F%2Fapi.soundcloud.com%2Ftracks%2F36983756&show_artwork=true&maxwidth=700&maxheight=1000"></iframe>'),
(1535, 300, '_search', 'Management Team, '),
(1536, 300, '_search', 'Management Team, '),
(1537, 300, '_edit_last', '6'),
(1538, 300, '_wp_page_template', 'page-fullwidth.php'),
(1539, 318, '_search', 'Main Slider 2, '),
(1540, 318, '_search', 'Main Slider 2, '),
(1541, 318, '_edit_last', '6'),
(1543, 318, 'slider', 'a:5:{s:20:"slider_controls_type";s:6:"slided";s:11:"slider_mode";s:4:"auto";s:15:"slider_interval";s:4:"6000";s:14:"slider_margins";s:13:"clear-margins";s:13:"slider_slides";a:5:{i:0;a:8:{s:11:"slide_photo";s:115:"http://asiacentre.co.th/wp-content/uploads/2016/12/Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report.png";s:11:"slide_title";s:0:"";s:17:"slide_description";s:0:"";s:10:"slide_link";s:95:"http://asiacentre.co.th/news/latest-news/benedict-anderson-1st-anniversary-memorial-roundtable/";s:16:"caption_position";s:10:"pos-l-full";s:14:"caption_scheme";s:12:"scheme-light";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"1";}i:1;a:8:{s:11:"slide_photo";s:90:"http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-conference-NHRI-extended.png";s:11:"slide_title";s:0:"";s:17:"slide_description";s:0:"";s:10:"slide_link";s:49:"http://asiacentre.co.th/event/nhriconference2017/";s:16:"caption_position";s:10:"pos-l-full";s:14:"caption_scheme";s:12:"scheme-light";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"1";}i:2;a:8:{s:11:"slide_photo";s:96:"http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-media-communication-workshop-2.png";s:11:"slide_title";s:0:"";s:17:"slide_description";s:0:"";s:10:"slide_link";s:60:"http://asiacentre.co.th/event/media-communications-workshop/";s:16:"caption_position";s:10:"pos-l-full";s:14:"caption_scheme";s:11:"scheme-dark";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"1";}i:3;a:8:{s:11:"slide_photo";s:120:"http://asiacentre.co.th/wp-content/uploads/2016/12/job-oppornunities-hiring-digitalmarketing-communication-officer-1.png";s:11:"slide_title";s:0:"";s:17:"slide_description";s:0:"";s:10:"slide_link";s:42:"http://asiacentre.co.th/job-opportunities/";s:16:"caption_position";s:10:"pos-l-full";s:14:"caption_scheme";s:11:"scheme-dark";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"1";}i:4;a:8:{s:11:"slide_photo";s:78:"http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-internship-1.png";s:11:"slide_title";s:0:"";s:17:"slide_description";s:0:"";s:10:"slide_link";s:59:"http://asiacentre.co.th/opportunities/internship-programme/";s:16:"caption_position";s:10:"pos-l-full";s:14:"caption_scheme";s:11:"scheme-dark";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"1";}}}'),
(1544, 318, 'slider_shortcode', 'a:1:{s:21:"slider_auto_shortcode";s:17:"[slider id="318"]";}'),
(1545, 327, '_search', 'Spaces, '),
(1546, 327, '_search', 'Spaces, '),
(1547, 327, '_edit_last', '1'),
(1549, 327, 'slider', 'a:5:{s:20:"slider_controls_type";s:6:"slided";s:11:"slider_mode";s:4:"auto";s:15:"slider_interval";s:4:"4000";s:14:"slider_margins";s:13:"clear-margins";s:13:"slider_slides";a:3:{i:0;a:8:{s:11:"slide_photo";s:68:"http://asiacentre.co.th/wp-content/uploads/2015/09/training-room.jpg";s:11:"slide_title";s:23:"Seminar / Training Room";s:17:"slide_description";s:71:"Flexible room layouts (boardroom, classroom, conference, theatre style)";s:10:"slide_link";s:0:"";s:16:"caption_position";s:10:"pos-c-full";s:14:"caption_scheme";s:11:"scheme-dark";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"0";}i:1;a:8:{s:11:"slide_photo";s:69:"http://asiacentre.co.th/wp-content/uploads/2015/08/Seminar-room-5.jpg";s:11:"slide_title";s:23:"Seminar / Training Room";s:17:"slide_description";s:63:"High-speed internet access, skype video-conferencing, computers";s:10:"slide_link";s:0:"";s:16:"caption_position";s:10:"pos-c-full";s:14:"caption_scheme";s:11:"scheme-dark";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"0";}i:2;a:8:{s:11:"slide_photo";s:69:"http://asiacentre.co.th/wp-content/uploads/2015/08/Lounge-Area-1.jpeg";s:11:"slide_title";s:11:"Lounge Area";s:17:"slide_description";s:11:"Lounge Area";s:10:"slide_link";s:0:"";s:16:"caption_position";s:10:"pos-c-full";s:14:"caption_scheme";s:11:"scheme-dark";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"0";}}}'),
(1550, 327, 'slider_shortcode', 'a:1:{s:21:"slider_auto_shortcode";s:17:"[slider id="327"]";}'),
(1557, 364, '_search', 'Posts Page, '),
(1558, 364, '_search', 'Posts Page, '),
(1559, 364, '_edit_last', '1'),
(1560, 364, '_wp_page_template', 'page-posts.php'),
(1561, 1820, '_search', ', '),
(1562, 1820, '_menu_item_type', 'post_type'),
(1563, 1820, '_menu_item_menu_item_parent', '0'),
(1564, 1820, '_menu_item_object_id', '18'),
(1565, 1820, '_menu_item_object', 'page'),
(1566, 1820, '_menu_item_target', ''),
(1567, 1820, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1568, 1820, '_menu_item_xfn', ''),
(1569, 1820, '_menu_item_url', ''),
(1570, 1821, '_search', ', '),
(1571, 1821, '_menu_item_type', 'post_type'),
(1572, 1821, '_menu_item_menu_item_parent', '0'),
(1573, 1821, '_menu_item_object_id', '39'),
(1574, 1821, '_menu_item_object', 'page'),
(1575, 1821, '_menu_item_target', ''),
(1576, 1821, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1577, 1821, '_menu_item_xfn', ''),
(1578, 1821, '_menu_item_url', ''),
(1579, 1822, '_search', ', '),
(1580, 1822, '_menu_item_type', 'post_type'),
(1581, 1822, '_menu_item_menu_item_parent', '1820'),
(1582, 1822, '_menu_item_object_id', '42'),
(1583, 1822, '_menu_item_object', 'page'),
(1584, 1822, '_menu_item_target', ''),
(1585, 1822, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1586, 1822, '_menu_item_xfn', ''),
(1587, 1822, '_menu_item_url', ''),
(1588, 1823, '_search', ', '),
(1589, 1823, '_menu_item_type', 'post_type'),
(1590, 1823, '_menu_item_menu_item_parent', '1820'),
(1591, 1823, '_menu_item_object_id', '39'),
(1592, 1823, '_menu_item_object', 'page'),
(1593, 1823, '_menu_item_target', ''),
(1594, 1823, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1595, 1823, '_menu_item_xfn', ''),
(1596, 1823, '_menu_item_url', ''),
(1597, 1824, '_search', ', '),
(1598, 1824, '_menu_item_type', 'post_type'),
(1599, 1824, '_menu_item_menu_item_parent', '1820'),
(1600, 1824, '_menu_item_object_id', '170'),
(1601, 1824, '_menu_item_object', 'page'),
(1602, 1824, '_menu_item_target', ''),
(1603, 1824, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1604, 1824, '_menu_item_xfn', ''),
(1605, 1824, '_menu_item_url', ''),
(1606, 1825, '_search', ', '),
(1607, 1825, '_menu_item_type', 'post_type'),
(1608, 1825, '_menu_item_menu_item_parent', '1820'),
(1609, 1825, '_menu_item_object_id', '210'),
(1610, 1825, '_menu_item_object', 'page'),
(1611, 1825, '_menu_item_target', ''),
(1612, 1825, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1613, 1825, '_menu_item_xfn', ''),
(1614, 1825, '_menu_item_url', ''),
(1615, 1826, '_search', ', '),
(1616, 1826, '_menu_item_type', 'post_type'),
(1617, 1826, '_menu_item_menu_item_parent', '1820'),
(1618, 1826, '_menu_item_object_id', '300'),
(1619, 1826, '_menu_item_object', 'page'),
(1620, 1826, '_menu_item_target', ''),
(1621, 1826, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1622, 1826, '_menu_item_xfn', ''),
(1623, 1826, '_menu_item_url', ''),
(1624, 1827, '_search', ', '),
(1625, 1827, '_menu_item_type', 'post_type'),
(1626, 1827, '_menu_item_menu_item_parent', '0'),
(1627, 1827, '_menu_item_object_id', '210'),
(1628, 1827, '_menu_item_object', 'page'),
(1629, 1827, '_menu_item_target', ''),
(1630, 1827, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1631, 1827, '_menu_item_xfn', ''),
(1632, 1827, '_menu_item_url', ''),
(1633, 1828, '_search', ', '),
(1634, 1828, '_menu_item_type', 'post_type'),
(1635, 1828, '_menu_item_menu_item_parent', '0'),
(1636, 1828, '_menu_item_object_id', '39'),
(1637, 1828, '_menu_item_object', 'page'),
(1638, 1828, '_menu_item_target', ''),
(1639, 1828, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1640, 1828, '_menu_item_xfn', ''),
(1641, 1828, '_menu_item_url', ''),
(1642, 1829, '_search', ', '),
(1643, 1829, '_menu_item_type', 'post_type'),
(1644, 1829, '_menu_item_menu_item_parent', '0'),
(1645, 1829, '_menu_item_object_id', '42'),
(1646, 1829, '_menu_item_object', 'page'),
(1647, 1829, '_menu_item_target', ''),
(1648, 1829, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1649, 1829, '_menu_item_xfn', ''),
(1650, 1829, '_menu_item_url', ''),
(1651, 1830, '_search', ', '),
(1652, 1830, '_menu_item_type', 'post_type'),
(1653, 1830, '_menu_item_menu_item_parent', '0'),
(1654, 1830, '_menu_item_object_id', '300'),
(1655, 1830, '_menu_item_object', 'page'),
(1656, 1830, '_menu_item_target', ''),
(1657, 1830, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1658, 1830, '_menu_item_xfn', ''),
(1659, 1830, '_menu_item_url', ''),
(1660, 1831, '_search', ', '),
(1661, 1831, '_menu_item_type', 'post_type'),
(1662, 1831, '_menu_item_menu_item_parent', '0'),
(1663, 1831, '_menu_item_object_id', '170'),
(1664, 1831, '_menu_item_object', 'page'),
(1665, 1831, '_menu_item_target', ''),
(1666, 1831, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1667, 1831, '_menu_item_xfn', ''),
(1668, 1831, '_menu_item_url', ''),
(1678, 1833, '_search', ', '),
(1679, 1833, '_menu_item_type', 'post_type'),
(1680, 1833, '_menu_item_menu_item_parent', '1820'),
(1681, 1833, '_menu_item_object_id', '364'),
(1682, 1833, '_menu_item_object', 'page'),
(1683, 1833, '_menu_item_target', ''),
(1684, 1833, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(1685, 1833, '_menu_item_xfn', ''),
(1686, 1833, '_menu_item_url', ''),
(1687, 1834, '_wp_attached_file', '2015/06/Asia-Centre-Logo-Color.jpg'),
(1688, 1834, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:479;s:6:"height";i:153;s:4:"file";s:34:"2015/06/Asia-Centre-Logo-Color.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"Asia-Centre-Logo-Color-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(1689, 1835, '_wp_attached_file', '2015/06/aisa-centre-logo.png'),
(1690, 1835, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:70;s:4:"file";s:28:"2015/06/aisa-centre-logo.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"aisa-centre-logo-90x70.png";s:5:"width";i:90;s:6:"height";i:70;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;}}'),
(1691, 1835, '_wp_attachment_image_alt', 'aisa centre logo'),
(1692, 1836, '_wp_attached_file', '2015/06/aisa-centre-logo-square.png'),
(1693, 1836, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:116;s:4:"file";s:35:"2015/06/aisa-centre-logo-square.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"aisa-centre-logo-square-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(1694, 316, '_edit_lock', '1484901450:6'),
(1695, 318, '_edit_lock', '1484891438:6'),
(1696, 300, '_edit_lock', '1482917004:6'),
(1697, 1838, '_wp_attached_file', '2015/06/asicentre-logo-bg.jpg'),
(1698, 1838, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:166;s:6:"height";i:120;s:4:"file";s:29:"2015/06/asicentre-logo-bg.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"asicentre-logo-bg-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(1711, 1241, '_edit_lock', '1434610126:1'),
(1712, 1241, '_edit_last', '1'),
(1713, 102, '_edit_lock', '1441895420:1'),
(1714, 1846, '_wp_attached_file', '2015/06/asicentre-logo-trans.png'),
(1715, 1846, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:166;s:6:"height";i:120;s:4:"file";s:32:"2015/06/asicentre-logo-trans.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"asicentre-logo-trans-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(1716, 1846, '_wp_attachment_image_alt', 'asicentre logo'),
(2077, 1885, '_wp_attached_file', '2015/07/Asia-Centre-Logo-Horizontal.png'),
(2078, 1885, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:204;s:6:"height";i:52;s:4:"file";s:39:"2015/07/Asia-Centre-Logo-Horizontal.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"Asia-Centre-Logo-Horizontal-90x52.png";s:5:"width";i:90;s:6:"height";i:52;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;}}'),
(2081, 1887, '_wp_attached_file', '2015/07/Asia-Centre-Logo-banner1.png'),
(2082, 1887, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:961;s:6:"height";i:116;s:4:"file";s:36:"2015/07/Asia-Centre-Logo-banner1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Logo-banner1-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2089, 1891, '_wp_attached_file', '2015/07/Asia-Centre-Logo-banner2.png'),
(2090, 1891, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:961;s:6:"height";i:116;s:4:"file";s:36:"2015/07/Asia-Centre-Logo-banner2.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Logo-banner2-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2096, 39, '_edit_lock', '1482379936:6'),
(2097, 320, '_edit_lock', '1484904906:6'),
(2207, 347, '_edit_lock', '1440934221:1'),
(2208, 356, '_edit_lock', '1440934228:1'),
(2209, 1800, '_edit_lock', '1476170503:6'),
(2210, 1918, '_search', 'Meeting Spaces, '),
(2211, 1918, '_edit_lock', '1485166707:6'),
(2212, 1918, '_edit_last', '6'),
(2213, 1918, '_wp_page_template', 'default'),
(2214, 1920, '_search', ', '),
(2215, 1920, '_menu_item_type', 'post_type'),
(2216, 1920, '_menu_item_menu_item_parent', '0'),
(2217, 1920, '_menu_item_object_id', '1918'),
(2218, 1920, '_menu_item_object', 'page'),
(2219, 1920, '_menu_item_target', ''),
(2220, 1920, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2221, 1920, '_menu_item_xfn', ''),
(2222, 1920, '_menu_item_url', ''),
(2224, 328, '_edit_lock', '1482404206:6'),
(2226, 1925, '_search', 'Formidable Style, '),
(2227, 1926, '_search', 'Email Notification, '),
(2229, 1928, '_search', 'Email Notification, '),
(2230, 1928, '_wp_old_slug', '1_email_1-2'),
(2231, 1933, '_search', 'Opportunities, '),
(2232, 1933, '_edit_last', '6'),
(2233, 1933, '_wp_page_template', 'default'),
(2234, 1933, '_edit_lock', '1476080412:6'),
(2245, 111, '_edit_lock', '1482511292:6'),
(2246, 111, '_wp_old_slug', 'mix-and-match-school-gallery'),
(2247, 1936, '_search', 'Home, '),
(2248, 1936, '_menu_item_type', 'custom'),
(2249, 1936, '_menu_item_menu_item_parent', '0'),
(2250, 1936, '_menu_item_object_id', '1936'),
(2251, 1936, '_menu_item_object', 'custom'),
(2252, 1936, '_menu_item_target', ''),
(2253, 1936, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2254, 1936, '_menu_item_xfn', ''),
(2255, 1936, '_menu_item_url', '/'),
(2257, 318, '_wp_old_slug', 'main-slider-2'),
(2258, 1937, '_search', 'Services, '),
(2259, 1937, '_edit_last', '6'),
(2260, 1937, '_wp_page_template', 'default'),
(2261, 1937, '_edit_lock', '1484110174:6'),
(2262, 1939, '_search', 'Learning, '),
(2263, 1939, '_edit_last', '6'),
(2264, 1939, '_wp_page_template', 'default'),
(2265, 1939, '_edit_lock', '1482913467:6'),
(2277, 18, '_edit_lock', '1484909061:6'),
(2318, 1951, '_search', 'Mission, '),
(2319, 1951, '_edit_last', '1'),
(2320, 1951, '_wp_page_template', 'default'),
(2321, 1951, '_edit_lock', '1482917422:6'),
(2332, 1955, '_search', 'Job Opportunities, '),
(2333, 1955, '_edit_last', '5'),
(2334, 1955, '_wp_page_template', 'default'),
(2335, 1955, '_edit_lock', '1484818745:5'),
(2346, 316, '_wp_old_slug', 'home-page-02'),
(2349, 328, '_wp_old_slug', 'important-contacts'),
(2350, 1962, '_wp_attached_file', '2015/08/asia-centre-logo.png'),
(2351, 1962, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:245;s:6:"height";i:71;s:4:"file";s:28:"2015/08/asia-centre-logo.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"asia-centre-logo-90x71.png";s:5:"width";i:90;s:6:"height";i:71;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;}}'),
(2352, 1962, '_wp_attachment_image_alt', 'asia-centre-logo'),
(2353, 1963, '_wp_attached_file', '2015/08/asia-centre-logo1.png'),
(2354, 1963, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:245;s:6:"height";i:75;s:4:"file";s:29:"2015/08/asia-centre-logo1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"asia-centre-logo1-90x75.png";s:5:"width";i:90;s:6:"height";i:75;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;}}'),
(2358, 1967, '_search', 'Spaces, '),
(2359, 1967, '_edit_lock', '1482510843:6'),
(2360, 1967, '_edit_last', '6'),
(2391, 1178, '_search', 'South East Asia 2015, '),
(2392, 1177, '_search', 'Publications, '),
(2393, 1176, '_search', 'Scheduled events, '),
(2394, 1174, '_search', 'Singapore Conference Update, '),
(2395, 1173, '_search', 'International Asian Story, '),
(2396, 1011, '_search', 'Template: Featured Image (Horizontal), '),
(2397, 1016, '_edit_lock', '1484041115:6'),
(2398, 1016, '_edit_last', '1'),
(2399, 996, '_edit_lock', '1440925865:1'),
(2400, 996, '_edit_last', '1'),
(2401, 993, '_edit_lock', '1440925863:1'),
(2402, 993, '_edit_last', '1'),
(2403, 1446, '_edit_lock', '1440925862:1'),
(2404, 1446, '_edit_last', '1'),
(2405, 1241, '_search', 'Template: Sticky, '),
(2406, 1168, '_search', 'Template: Password Protected (the password is &#8220;enter&#8221;), '),
(2407, 1148, '_search', 'Template: Comments, '),
(2408, 1150, '_search', 'Template: Comments Disabled, '),
(2409, 1149, '_search', 'Template: Pingbacks And Trackbacks, '),
(2410, 1179, '_search', 'Media: Twitter Embeds, '),
(2411, 358, '_search', 'Post Format: Standard, '),
(2412, 555, '_search', 'Post Format: Gallery, '),
(2413, 1031, '_search', 'Post Format: Gallery (Tiled), '),
(2414, 1158, '_search', 'Post Format: Image, '),
(2415, 1163, '_search', 'Post Format: Image (Caption), '),
(2416, 568, '_search', 'Post Format: Image (Linked), '),
(2417, 587, '_search', 'Post Format: Audio, '),
(2418, 582, '_search', 'Post Format: Video (WordPress.tv), '),
(2419, 1005, '_search', 'Post Format: Video (VideoPress), '),
(2420, 1161, '_search', 'Post Format: Video (YouTube), '),
(2421, 559, '_search', 'Post Format: Aside, '),
(2422, 579, '_search', 'Post Format: Status, '),
(2423, 565, '_search', 'Post Format: Link, '),
(2424, 575, '_search', 'Post Format: Quote, '),
(2425, 562, '_search', 'Post Format: Chat, '),
(2426, 1175, '_search', 'Antidisestablishmentarianism, '),
(2427, 1169, '_search', ', '),
(2428, 1170, '_search', 'Edge Case: No Content, '),
(2429, 1152, '_search', 'Edge Case: Many Categories, '),
(2430, 1151, '_search', 'Edge Case: Many Tags, '),
(2431, 1000, '_search', 'Edge Case: Nested And Mixed Lists, '),
(2432, 1171, '_edit_lock', '1440925713:1'),
(2433, 1171, '_edit_last', '1'),
(2436, 357, '_edit_lock', '1440934232:1'),
(2437, 326, '_edit_lock', '1482402695:6'),
(2439, 2015, '_wp_attached_file', '2015/09/Sticker-1.jpg'),
(2440, 2015, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:864;s:6:"height";i:640;s:4:"file";s:21:"2015/09/Sticker-1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"Sticker-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"Sticker-1-864x500.jpg";s:5:"width";i:864;s:6:"height";i:500;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;}}'),
(2441, 2016, '_wp_attached_file', '2015/09/Sticker-2.jpg'),
(2442, 2016, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:626;s:4:"file";s:21:"2015/09/Sticker-2.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"Sticker-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"Sticker-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2443, 2017, '_wp_attached_file', '2015/09/tee-shirt.jpg'),
(2444, 2017, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:676;s:4:"file";s:21:"2015/09/tee-shirt.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"tee-shirt-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"tee-shirt-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2447, 2019, '_wp_attached_file', '2015/09/skyline.jpg'),
(2448, 2019, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:640;s:4:"file";s:19:"2015/09/skyline.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"skyline-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"skyline-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2450, 2020, '_wp_attached_file', '2015/08/training-room.jpg'),
(2451, 2020, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:25:"2015/08/training-room.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"training-room-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"training-room-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2452, 2021, '_wp_attached_file', '2015/08/skyline.jpg'),
(2453, 2021, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:640;s:4:"file";s:19:"2015/08/skyline.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"skyline-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"skyline-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2455, 2019, '_wp_attachment_image_alt', 'skyline'),
(2456, 1967, '_thumbnail_id', '2803'),
(2457, 85, '_edit_lock', '1441895425:1'),
(2463, 2021, '_edit_lock', '1441896891:1'),
(2464, 2024, '_wp_attached_file', '2015/09/site-logo.png'),
(2465, 2024, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:166;s:6:"height";i:120;s:4:"file";s:21:"2015/09/site-logo.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"site-logo-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2468, 2024, '_wp_attachment_image_alt', 'Asia Center Login Logo'),
(2471, 2032, '_search', 'Internship Programme, '),
(2472, 2032, '_edit_lock', '1482809094:6'),
(2473, 2032, '_edit_last', '6'),
(2474, 2032, '_wp_page_template', 'default'),
(2485, 2035, '_wp_attached_file', '2015/09/intern.jpg'),
(2486, 2035, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:260;s:6:"height";i:182;s:4:"file";s:18:"2015/09/intern.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"intern-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2487, 2036, '_wp_attached_file', '2015/09/intern2.jpg'),
(2488, 2036, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:190;s:6:"height";i:190;s:4:"file";s:19:"2015/09/intern2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"intern2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2489, 327, '_wp_old_slug', 'main-slider-03'),
(2490, 327, '_edit_lock', '1484032119:6'),
(2494, 2055, '_search', 'Email Notification, '),
(2495, 2055, '_wp_old_slug', '1_email_1-2'),
(2496, 2059, '_wp_attached_file', '2015/09/corridor.jpg'),
(2497, 2059, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:720;s:6:"height";i:960;s:4:"file";s:20:"2015/09/corridor.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"corridor-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"corridor-720x500.jpg";s:5:"width";i:720;s:6:"height";i:500;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;}}'),
(2498, 2060, '_wp_attached_file', '2015/09/class.jpg'),
(2499, 2060, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:17:"2015/09/class.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"class-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"class-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2500, 2061, '_wp_attached_file', '2015/09/student.jpg'),
(2501, 2061, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:19:"2015/09/student.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"student-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"student-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2502, 2062, '_wp_attached_file', '2015/09/meeting-room.jpg'),
(2503, 2062, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:24:"2015/09/meeting-room.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"meeting-room-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"meeting-room-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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;}}'),
(2504, 2063, '_wp_attached_file', '2015/09/favicon.png'),
(2505, 2063, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:16;s:6:"height";i:16;s:4:"file";s:19:"2015/09/favicon.png";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;}}'),
(2506, 2064, '_search', 'Location, '),
(2507, 2064, '_edit_lock', '1484651748:6'),
(2508, 2064, '_edit_last', '6'),
(2509, 2064, '_wp_page_template', 'contact.php'),
(2510, 2067, '_search', 'Direction, '),
(2511, 2067, '_menu_item_type', 'post_type'),
(2512, 2067, '_menu_item_menu_item_parent', '0'),
(2513, 2067, '_menu_item_object_id', '2064'),
(2514, 2067, '_menu_item_object', 'page'),
(2515, 2067, '_menu_item_target', ''),
(2516, 2067, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2517, 2067, '_menu_item_xfn', ''),
(2518, 2067, '_menu_item_url', ''),
(2520, 2070, '_wp_attached_file', '2015/09/corridor1.jpg'),
(2521, 2070, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:400;s:4:"file";s:21:"2015/09/corridor1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"corridor1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2522, 2071, '_wp_attached_file', '2015/09/building.jpg'),
(2523, 2071, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:400;s:4:"file";s:20:"2015/09/building.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"building-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2524, 2071, '_wp_attachment_image_alt', 'The Phayathai Plaza Building'),
(2525, 2070, '_wp_attachment_image_alt', 'Asia Centre Entrance'),
(2527, 2064, '_cs_replacements', 'a:1:{s:20:"sidebar-widgets-page";s:4:"cs-1";}'),
(2537, 2092, '_wp_attached_file', '2015/08/image1.jpg'),
(2538, 2092, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:18:"2015/08/image1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"image1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:13:"iPhone 6 Plus";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1443098747;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:1;}}'),
(2539, 2093, '_wp_attached_file', '2015/08/image2.jpg'),
(2540, 2093, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:18:"2015/08/image2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"image2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:13:"iPhone 6 Plus";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1443098986;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:1;}}'),
(2541, 2092, '_edit_lock', '1457435697:6'),
(2548, 2096, '_search', 'Auto Draft, '),
(2549, 2096, '_edit_lock', '1482991280:6'),
(2550, 2096, '_edit_last', '6'),
(2551, 2096, '_wp_page_template', 'default'),
(2552, 2099, '_wp_attached_file', '2015/09/SG-Study-Hub.jpg'),
(2553, 2099, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:1280;s:4:"file";s:24:"2015/09/SG-Study-Hub.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"SG-Study-Hub-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"SG-Study-Hub-1140x1140.jpg";s:5:"width";i:1140;s:6:"height";i:1140;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"SG-Study-Hub-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"SG-Study-Hub-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:1;}}'),
(2579, 264, '_edit_lock', '1484029563:6'),
(2580, 210, '_edit_lock', '1482916919:6'),
(2581, 2104, '_search', 'Registration Checkout, '),
(2582, 2105, '_search', 'Transactions, '),
(2583, 2106, '_search', 'Thank You, '),
(2584, 2107, '_search', 'Registration Cancelled, '),
(2615, 2111, '_search', 'People, '),
(2616, 2111, '_menu_item_type', 'custom'),
(2617, 2111, '_menu_item_menu_item_parent', '2401'),
(2618, 2111, '_menu_item_object_id', '2111'),
(2619, 2111, '_menu_item_object', 'custom'),
(2620, 2111, '_menu_item_target', ''),
(2621, 2111, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2622, 2111, '_menu_item_xfn', ''),
(2623, 2111, '_menu_item_url', '#'),
(2627, 2113, '_search', 'Advisory Board, '),
(2628, 2113, '_edit_lock', '1482519467:6'),
(2629, 2113, '_edit_last', '5'),
(2630, 2113, '_wp_page_template', 'page-fullwidth.php'),
(2631, 2115, '_search', 'ADVISORY BOARD, '),
(2632, 2115, '_menu_item_type', 'post_type'),
(2633, 2115, '_menu_item_menu_item_parent', '2111'),
(2634, 2115, '_menu_item_object_id', '2113'),
(2635, 2115, '_menu_item_object', 'page'),
(2636, 2115, '_menu_item_target', ''),
(2637, 2115, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2638, 2115, '_menu_item_xfn', ''),
(2639, 2115, '_menu_item_url', ''),
(2641, 2117, '_wp_attached_file', '2015/09/robin-ramcharan.jpg'),
(2642, 2117, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:166;s:6:"height";i:200;s:4:"file";s:27:"2015/09/robin-ramcharan.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"robin-ramcharan-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:1;}}'),
(2643, 2117, '_wp_attachment_image_alt', 'Robin Ramcharan'),
(2644, 2119, '_wp_attached_file', '2015/09/karin-dean.jpg'),
(2645, 2119, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:912;s:6:"height";i:1368;s:4:"file";s:22:"2015/09/karin-dean.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"karin-dean-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:23:"karin-dean-683x1024.jpg";s:5:"width";i:683;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"karin-dean-912x500.jpg";s:5:"width";i:912;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";d:8;s:6:"credit";s:0:"";s:6:"camera";s:15:"Canon EOS 1100D";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1440090950;s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"55";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:7:"0.00625";s:5:"title";s:0:"";s:11:"orientation";i:1;}}'),
(2646, 2119, '_wp_attachment_image_alt', 'Karin Dean'),
(2647, 2120, '_wp_attached_file', '2015/09/nobuo-hayashi.jpg'),
(2648, 2120, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:290;s:6:"height";i:312;s:4:"file";s:25:"2015/09/nobuo-hayashi.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"nobuo-hayashi-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:11:{s:8:"aperture";d:2.3999999999999999;s:6:"credit";s:0:"";s:6:"camera";s:14:"Hasselblad H3D";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1387201660;s:9:"copyright";s:14:"Hasselblad H3D";s:12:"focal_length";s:3:"100";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:17:"0.033333333333333";s:5:"title";s:13:"Nobuo Hayashi";s:11:"orientation";i:0;}}'),
(2649, 2120, '_wp_attachment_image_alt', 'Nobuo Hayashi'),
(2650, 2121, '_wp_attached_file', '2015/09/ross-worthington.jpg'),
(2651, 2121, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:337;s:6:"height";i:337;s:4:"file";s:28:"2015/09/ross-worthington.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"ross-worthington-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2652, 2121, '_wp_attachment_image_alt', 'Ross Worthington'),
(2653, 2124, '_wp_attached_file', '2015/09/Dr.-Sorpong-Peou.jpg'),
(2654, 2124, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:115;s:6:"height";i:150;s:4:"file";s:28:"2015/09/Dr.-Sorpong-Peou.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"Dr.-Sorpong-Peou-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2655, 2124, '_wp_attachment_image_alt', 'Dr. Sorpong Peou'),
(2657, 2133, '_wp_attached_file', '2015/09/sorpong.jpg'),
(2658, 2133, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:178;s:6:"height";i:178;s:4:"file";s:19:"2015/09/sorpong.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"sorpong-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2660, 2136, '_search', 'Partners, '),
(2661, 2136, '_edit_lock', '1469790443:5'),
(2662, 2136, '_edit_last', '5'),
(2663, 2136, '_wp_page_template', 'page-fullwidth.php'),
(2664, 2138, '_search', ', '),
(2665, 2138, '_menu_item_type', 'post_type'),
(2666, 2138, '_menu_item_menu_item_parent', '2401'),
(2667, 2138, '_menu_item_object_id', '2136'),
(2668, 2138, '_menu_item_object', 'page'),
(2669, 2138, '_menu_item_target', ''),
(2670, 2138, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2671, 2138, '_menu_item_xfn', ''),
(2672, 2138, '_menu_item_url', ''),
(2674, 2139, '_wp_attached_file', '2015/10/Screen-Shot-2015-06-11-at-18.28.57.png'),
(2675, 2139, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:170;s:6:"height";i:218;s:4:"file";s:46:"2015/10/Screen-Shot-2015-06-11-at-18.28.57.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2015-06-11-at-18.28.57-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2676, 2139, '_wp_attachment_image_alt', 'Logo'),
(2677, 2144, '_search', 'Centre Associates, '),
(2678, 2144, '_edit_lock', '1481910112:5'),
(2679, 2144, '_edit_last', '5'),
(2680, 2144, '_wp_page_template', 'page-fullwidth.php'),
(2681, 2146, '_search', ', '),
(2682, 2146, '_menu_item_type', 'post_type'),
(2683, 2146, '_menu_item_menu_item_parent', '2111'),
(2684, 2146, '_menu_item_object_id', '2144'),
(2685, 2146, '_menu_item_object', 'page'),
(2686, 2146, '_menu_item_target', ''),
(2687, 2146, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2688, 2146, '_menu_item_xfn', ''),
(2689, 2146, '_menu_item_url', ''),
(2691, 2147, '_wp_attached_file', '2015/10/Alexandra-Demetrianova.png'),
(2692, 2147, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:318;s:6:"height";i:350;s:4:"file";s:34:"2015/10/Alexandra-Demetrianova.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"Alexandra-Demetrianova-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2693, 2148, '_wp_attached_file', '2015/10/Eilo-Wing-yat-Yu.png'),
(2694, 2148, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:732;s:6:"height";i:884;s:4:"file";s:28:"2015/10/Eilo-Wing-yat-Yu.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"Eilo-Wing-yat-Yu-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:28:"Eilo-Wing-yat-Yu-732x500.png";s:5:"width";i:732;s:6:"height";i:500;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;}}'),
(2695, 2149, '_wp_attached_file', '2015/10/Gustavo-A.-Olivares-Marcos.png'),
(2696, 2149, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:600;s:6:"height";i:800;s:4:"file";s:38:"2015/10/Gustavo-A.-Olivares-Marcos.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Gustavo-A.-Olivares-Marcos-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:38:"Gustavo-A.-Olivares-Marcos-600x500.png";s:5:"width";i:600;s:6:"height";i:500;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;}}'),
(2697, 2150, '_wp_attached_file', '2015/10/Jason-Briggs.png'),
(2698, 2150, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:334;s:6:"height";i:331;s:4:"file";s:24:"2015/10/Jason-Briggs.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"Jason-Briggs-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2699, 2151, '_wp_attached_file', '2015/10/Kenneth-Houston.png'),
(2700, 2151, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:334;s:6:"height";i:331;s:4:"file";s:27:"2015/10/Kenneth-Houston.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"Kenneth-Houston-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2701, 2152, '_wp_attached_file', '2015/10/Simon-Osborne.png');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(2702, 2152, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:309;s:6:"height";i:302;s:4:"file";s:25:"2015/10/Simon-Osborne.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Simon-Osborne-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2703, 2153, '_wp_attached_file', '2015/10/Yasuyuki-Kato.png'),
(2704, 2153, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:216;s:6:"height";i:244;s:4:"file";s:25:"2015/10/Yasuyuki-Kato.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Yasuyuki-Kato-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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;}}'),
(2705, 2150, '_wp_attachment_image_alt', 'Jason Briggs'),
(2706, 2147, '_wp_attachment_image_alt', 'Alexandra Demetrianova'),
(2708, 2171, '_search', 'International Educational Programme, '),
(2709, 2171, '_edit_lock', '1482511845:6'),
(2710, 2171, '_edit_last', '5'),
(2711, 2171, '_wp_page_template', 'default'),
(2722, 2175, '_search', ', '),
(2723, 2175, '_menu_item_type', 'post_type'),
(2724, 2175, '_menu_item_menu_item_parent', '2382'),
(2725, 2175, '_menu_item_object_id', '2171'),
(2726, 2175, '_menu_item_object', 'page'),
(2727, 2175, '_menu_item_target', ''),
(2728, 2175, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(2729, 2175, '_menu_item_xfn', ''),
(2730, 2175, '_menu_item_url', ''),
(2732, 339, '_edit_lock', '1482995162:6'),
(2738, 2188, '_search', 'Debating Imagined Communities: A Tribute To Benedict Anderson, '),
(2739, 2188, '_edit_lock', '1455449301:3'),
(2740, 2188, '_edit_last', '3'),
(2741, 2189, '_wp_attached_file', '2015/12/Screen-Shot-2015-12-18-at-11.43.39-am.png'),
(2742, 2189, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:777;s:6:"height";i:724;s:4:"file";s:49:"2015/12/Screen-Shot-2015-12-18-at-11.43.39-am.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:47:"Screen-Shot-2015-12-18-at-11.43.39-am-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:49:"Screen-Shot-2015-12-18-at-11.43.39-am-768x716.png";s:5:"width";i:768;s:6:"height";i:716;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:49:"Screen-Shot-2015-12-18-at-11.43.39-am-777x500.png";s:5:"width";i:777;s:6:"height";i:500;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2743, 2188, '_order', '1454112000'),
(2744, 2188, '_finito', '1454198399'),
(2745, 2188, 'event', 'a:4:{s:10:"event_from";s:10:"30-01-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:8:"10.00 AM";s:14:"event_time_end";s:8:"01.00 PM";}'),
(2746, 2190, '_wp_attached_file', '2015/12/Anderson_B.jpg'),
(2747, 2190, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:240;s:6:"height";i:317;s:4:"file";s:22:"2015/12/Anderson_B.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Anderson_B-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2773, 2070, '_edit_lock', '1453191916:6'),
(2774, 2071, '_edit_lock', '1453192125:6'),
(2781, 2217, '_wp_attached_file', '2015/09/Car-Park-PP.jpg'),
(2782, 2217, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1288;s:6:"height";i:474;s:4:"file";s:23:"2015/09/Car-Park-PP.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Car-Park-PP-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:24:"Car-Park-PP-1140x420.jpg";s:5:"width";i:1140;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"Car-Park-PP-768x283.jpg";s:5:"width";i:768;s:6:"height";i:283;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:24:"Car-Park-PP-1140x420.jpg";s:5:"width";i:1140;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"Car-Park-PP-1140x474.jpg";s:5:"width";i:1140;s:6:"height";i:474;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2783, 2220, '_wp_attached_file', '2015/08/Asia-Centre-Classroom-2.jpeg'),
(2784, 2220, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:36:"2015/08/Asia-Centre-Classroom-2.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Classroom-2-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444318022;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"40";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2785, 2220, '_edit_lock', '1453282354:6'),
(2786, 2221, '_wp_attached_file', '2015/08/Asia-Centre-Classroom-4.jpeg'),
(2787, 2221, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:36:"2015/08/Asia-Centre-Classroom-4.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Classroom-4-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1443098608;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"50";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2788, 2222, '_wp_attached_file', '2015/08/Asia-Centre-Conference-1.jpeg'),
(2789, 2222, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Conference-1.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Conference-1-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476487;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2790, 2223, '_wp_attached_file', '2015/08/Asia-Centre-Conference-2.jpeg'),
(2791, 2223, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Conference-2.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Conference-2-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476298;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"40";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2792, 2224, '_wp_attached_file', '2015/08/Asia-Centre-Conference-2-1.jpeg'),
(2793, 2224, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:39:"2015/08/Asia-Centre-Conference-2-1.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"Asia-Centre-Conference-2-1-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476325;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"40";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2794, 2225, '_wp_attached_file', '2015/08/Asia-Centre-Conference-5.jpeg'),
(2795, 2225, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Conference-5.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Conference-5-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476368;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"40";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2796, 2226, '_wp_attached_file', '2015/08/Asia-Centre-Conference-4.jpeg'),
(2797, 2226, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Conference-4.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Conference-4-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476623;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2798, 2227, '_wp_attached_file', '2015/08/Asia-Centre-Entrance.jpeg'),
(2799, 2227, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:33:"2015/08/Asia-Centre-Entrance.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"Asia-Centre-Entrance-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444316918;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"80";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2800, 2228, '_wp_attached_file', '2015/08/Asia-Centre-Infornt.jpeg'),
(2801, 2228, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:32:"2015/08/Asia-Centre-Infornt.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"Asia-Centre-Infornt-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444316974;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:3:"125";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2802, 2229, '_wp_attached_file', '2015/08/Asia-Centre-Conference-6.jpeg'),
(2803, 2229, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Conference-6.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Conference-6-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476635;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"50";s:13:"shutter_speed";s:4:"0.01";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2804, 2230, '_wp_attached_file', '2015/08/Asia-Centre-Conference-3.jpeg'),
(2805, 2230, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Conference-3.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Conference-3-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476314;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2808, 2232, '_wp_attached_file', '2015/08/Asia-Centre-Lounge-Area-1.jpeg'),
(2809, 2232, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:38:"2015/08/Asia-Centre-Lounge-Area-1.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Asia-Centre-Lounge-Area-1-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444317713;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"80";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2810, 2233, '_wp_attached_file', '2015/08/Asia-Centre-Lounge-Area.jpeg'),
(2811, 2233, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:36:"2015/08/Asia-Centre-Lounge-Area.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Lounge-Area-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444317306;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2812, 2234, '_wp_attached_file', '2015/08/Asia-Centre-Meeting-Room.jpeg'),
(2813, 2234, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Meeting-Room.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Meeting-Room-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444651996;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"50";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2814, 2235, '_wp_attached_file', '2015/08/Asia-Centre-Meeting-Room-1.jpeg'),
(2815, 2235, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:39:"2015/08/Asia-Centre-Meeting-Room-1.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"Asia-Centre-Meeting-Room-1-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444318214;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"40";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2816, 2236, '_wp_attached_file', '2015/08/Asia-Centre-Meeting-Room-2.jpeg'),
(2817, 2236, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:39:"2015/08/Asia-Centre-Meeting-Room-2.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"Asia-Centre-Meeting-Room-2-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444318226;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"40";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2818, 2237, '_wp_attached_file', '2015/08/Asia-Centre-Pantry.jpeg'),
(2819, 2237, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:640;s:4:"file";s:31:"2015/08/Asia-Centre-Pantry.jpeg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"Asia-Centre-Pantry-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:31:"Asia-Centre-Pantry-480x500.jpeg";s:5:"width";i:480;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:7:"iPhone6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444651342;s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"4";s:3:"iso";s:3:"250";s:13:"shutter_speed";s:17:"0.033333333333333";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2820, 2238, '_wp_attached_file', '2015/08/Asia-Centre-Pantry-1.jpeg'),
(2821, 2238, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:33:"2015/08/Asia-Centre-Pantry-1.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"Asia-Centre-Pantry-1-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444318344;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2822, 2239, '_wp_attached_file', '2015/08/Asia-Centre-Sound-System.jpeg'),
(2823, 2239, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Sound-System.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Sound-System-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444477127;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:16:"0.03030303030303";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2824, 2240, '_wp_attached_file', '2015/08/Asia-Centre-Window-View.jpeg'),
(2825, 2240, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:36:"2015/08/Asia-Centre-Window-View.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Window-View-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444476613;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:18:"0.0013908205841446";s:5:"title";s:0:"";s:11:"orientation";i:0;s:8:"keywords";a:0:{}}}'),
(2834, 2245, '_wp_attached_file', '2015/08/Asia-Centre-Window-View-1.jpeg'),
(2835, 2245, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:38:"2015/08/Asia-Centre-Window-View-1.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Asia-Centre-Window-View-1-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444318121;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:2:"32";s:13:"shutter_speed";s:18:"0.0030120481927711";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2836, 2246, '_wp_attached_file', '2015/08/Asia-Centre-Office-Suite.jpeg'),
(2837, 2246, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:37:"2015/08/Asia-Centre-Office-Suite.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Office-Suite-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";d:2.2000000000000002;s:6:"credit";s:0:"";s:6:"camera";s:8:"iPhone 6";s:7:"caption";s:0:"";s:17:"created_timestamp";i:1444318425;s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"4.15";s:3:"iso";s:3:"125";s:13:"shutter_speed";s:17:"0.033333333333333";s:5:"title";s:0:"";s:11:"orientation";i:1;s:8:"keywords";a:0:{}}}'),
(2881, 2266, '_search', 'The &#8220;Kachin Conflict&#8221; in Northern Myanmar: Roots and Shifting Contexts, '),
(2882, 2266, '_edit_lock', '1455451007:3'),
(2883, 2266, '_edit_last', '3'),
(2884, 2266, 'event', 'a:4:{s:10:"event_from";s:10:"20-02-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"9:30 AM";s:14:"event_time_end";s:8:"12:00 AM";}'),
(2887, 2266, '_order', '1455926400'),
(2888, 2266, '_finito', '1456012799'),
(2889, 2268, '_wp_attached_file', '2016/02/Social-Justice.jpg'),
(2890, 2268, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1058;s:6:"height";i:571;s:4:"file";s:26:"2016/02/Social-Justice.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"Social-Justice-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:26:"Social-Justice-768x414.jpg";s:5:"width";i:768;s:6:"height";i:414;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"Social-Justice-1058x500.jpg";s:5:"width";i:1058;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2891, 2266, '_cs_replacements', 'a:1:{s:22:"sidebar-widgets-events";s:22:"sidebar-widgets-events";}'),
(2898, 2276, '_wp_attached_file', '2015/10/Untitled.png'),
(2899, 2276, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:528;s:6:"height";i:108;s:4:"file";s:20:"2015/10/Untitled.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Untitled-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2914, 2284, '_search', 'Debating Imagined Communities: A Tribute To Benedict Anderson, '),
(2915, 2284, '_edit_lock', '1479359093:3'),
(2916, 2284, '_edit_last', '5'),
(2917, 2287, '_wp_attached_file', '2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg'),
(2918, 2287, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:60:"2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:58:"1613942_1121279187891308_8667217838112469785_n-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:60:"1613942_1121279187891308_8667217838112469785_n-1-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"1613942_1121279187891308_8667217838112469785_n-1-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2919, 2288, '_wp_attached_file', '2016/02/12670572_1121278891224671_7824825160265749161_n.jpg'),
(2920, 2288, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/02/12670572_1121278891224671_7824825160265749161_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12670572_1121278891224671_7824825160265749161_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12670572_1121278891224671_7824825160265749161_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"12670572_1121278891224671_7824825160265749161_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2921, 2289, '_wp_attached_file', '2016/02/12670846_1121278897891337_7466768598950683074_n.jpg'),
(2922, 2289, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/02/12670846_1121278897891337_7466768598950683074_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12670846_1121278897891337_7466768598950683074_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12670846_1121278897891337_7466768598950683074_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"12670846_1121278897891337_7466768598950683074_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2923, 2290, '_wp_attached_file', '2016/02/12670318_1121279284557965_5233832323416685959_n.jpg'),
(2924, 2290, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:495;s:4:"file";s:59:"2016/02/12670318_1121279284557965_5233832323416685959_n.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12670318_1121279284557965_5233832323416685959_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12670318_1121279284557965_5233832323416685959_n-768x396.jpg";s:5:"width";i:768;s:6:"height";i:396;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(2925, 2294, '_wp_attached_file', '2016/02/12496040_1121278991224661_8208051164535300385_o.jpg'),
(2926, 2294, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1058;s:6:"height";i:1280;s:4:"file";s:59:"2016/02/12496040_1121278991224661_8208051164535300385_o.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12496040_1121278991224661_8208051164535300385_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12496040_1121278991224661_8208051164535300385_o-768x929.jpg";s:5:"width";i:768;s:6:"height";i:929;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:60:"12496040_1121278991224661_8208051164535300385_o-846x1024.jpg";s:5:"width";i:846;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"12496040_1121278991224661_8208051164535300385_o-1058x500.jpg";s:5:"width";i:1058;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{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;s:8:"keywords";a:0:{}}}'),
(3033, 2318, '_search', 'News, '),
(3034, 2318, '_menu_item_type', 'taxonomy'),
(3035, 2318, '_menu_item_menu_item_parent', '2362'),
(3036, 2318, '_menu_item_object_id', '194'),
(3037, 2318, '_menu_item_object', 'category'),
(3038, 2318, '_menu_item_target', ''),
(3039, 2318, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3040, 2318, '_menu_item_xfn', ''),
(3041, 2318, '_menu_item_url', ''),
(3074, 1712, '_search', 'Contact form 1, '),
(3076, 2328, '_search', 'Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, '),
(3077, 2328, '_edit_lock', '1482990142:6'),
(3078, 2328, '_edit_last', '6'),
(3079, 2328, '_order', '1473897600'),
(3080, 2328, '_finito', '1474156799'),
(3081, 2328, 'event', 'a:4:{s:10:"event_from";s:10:"15-09-2016";s:8:"event_to";s:10:"17-09-2016";s:16:"event_time_start";s:4:"9:00";s:14:"event_time_end";s:4:"5:00";}'),
(3103, 2331, '_search', 'Writing Institute, '),
(3104, 2331, '_edit_lock', '1456386723:5'),
(3105, 2331, '_edit_last', '5'),
(3106, 2331, '_wp_page_template', 'default'),
(3108, 2104, '_edit_lock', '1482900229:6'),
(3109, 2334, '_search', ', '),
(3110, 2334, '_menu_item_type', 'post_type'),
(3111, 2334, '_menu_item_menu_item_parent', '2382'),
(3112, 2334, '_menu_item_object_id', '2331'),
(3113, 2334, '_menu_item_object', 'page'),
(3114, 2334, '_menu_item_target', ''),
(3115, 2334, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3116, 2334, '_menu_item_xfn', ''),
(3117, 2334, '_menu_item_url', ''),
(3132, 2336, '_search', 'Debating Imagined Communities, '),
(3133, 2336, '_edit_lock', '1484032093:6'),
(3134, 2336, '_edit_last', '3'),
(3135, 2337, '_wp_attached_file', '2016/02/Ben-Seminar.jpg'),
(3136, 2337, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:768;s:6:"height";i:396;s:4:"file";s:23:"2016/02/Ben-Seminar.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Ben-Seminar-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"Ben-Seminar-768x396.jpg";s:5:"width";i:768;s:6:"height";i:396;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:{}}}'),
(3137, 2336, '_thumbnail_id', '2337'),
(3138, 2336, 'slider', 'a:5:{s:20:"slider_controls_type";s:6:"slided";s:11:"slider_mode";s:4:"auto";s:15:"slider_interval";s:4:"4000";s:14:"slider_margins";s:13:"clear-margins";s:13:"slider_slides";a:1:{i:0;a:8:{s:11:"slide_photo";s:66:"http://asiacentre.co.th/wp-content/uploads/2016/02/Ben-Seminar.jpg";s:11:"slide_title";s:48:"Read Report on Benedict Anderson Tribute Seminar";s:17:"slide_description";s:39:"Over 40 participants attended the event";s:10:"slide_link";s:90:"http://asiacentre.co.th/news/debating-imagined-communities-a-tribute-to-benedict-anderson/";s:16:"caption_position";s:10:"pos-l-full";s:14:"caption_scheme";s:11:"scheme-dark";s:10:"title_size";s:13:"caption-title";s:17:"remove_background";s:1:"1";}}}'),
(3139, 2336, 'slider_shortcode', 'a:1:{s:21:"slider_auto_shortcode";s:18:"[slider id="2336"]";}'),
(3140, 2336, '_yoast_wpseo_focuskw_text_input', 'Benedict Anderson'),
(3141, 2336, '_yoast_wpseo_focuskw', 'Benedict Anderson'),
(3142, 2336, '_yoast_wpseo_linkdex', '29'),
(3144, 351, '_edit_lock', '1484029646:6'),
(3169, 2342, '_search', 'Seminar on Irregular Foreigners&#8217; Right to Health in Japan, '),
(3170, 2342, '_edit_lock', '1455526076:3'),
(3171, 2342, '_edit_last', '3'),
(3172, 2343, '_wp_attached_file', '2016/02/12140656_1065266113492616_5681783030573671012_n.jpg'),
(3173, 2343, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:59:"2016/02/12140656_1065266113492616_5681783030573671012_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12140656_1065266113492616_5681783030573671012_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3174, 2344, '_wp_attached_file', '2016/02/12118729_1065266103492617_3215442545566282906_n.jpg'),
(3175, 2344, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:436;s:4:"file";s:59:"2016/02/12118729_1065266103492617_3215442545566282906_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12118729_1065266103492617_3215442545566282906_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3176, 2345, '_wp_attached_file', '2016/02/12108978_1065266116825949_7572381867275093488_n.jpg'),
(3177, 2345, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:59:"2016/02/12108978_1065266116825949_7572381867275093488_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12108978_1065266116825949_7572381867275093488_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3182, 2349, '_search', '“Irregular Foreigners’ Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights”., '),
(3183, 2349, '_edit_lock', '1455536317:1'),
(3184, 2349, '_edit_last', '1'),
(3185, 2349, 'event', 'a:4:{s:10:"event_from";s:10:"19-10-2015";s:8:"event_to";s:10:"19-10-2015";s:16:"event_time_start";s:7:"10.00am";s:14:"event_time_end";s:7:"12.00pm";}'),
(3186, 2349, '_order', '1445212800'),
(3187, 2349, '_finito', '1445299199'),
(3188, 703, '_edit_lock', '1482905811:6'),
(3189, 364, '_edit_lock', '1482992171:6'),
(3212, 2352, '_search', 'Commentaries, '),
(3213, 2352, '_edit_lock', '1482991379:6'),
(3214, 2352, '_edit_last', '3'),
(3215, 2352, '_wp_page_template', 'default'),
(3216, 2352, '_yoast_wpseo_focuskw_text_input', 'commentary'),
(3217, 2352, '_yoast_wpseo_focuskw', 'commentary'),
(3218, 2352, '_yoast_wpseo_linkdex', '37'),
(3229, 2355, '_search', 'Publications, '),
(3230, 2355, '_edit_lock', '1482917475:6'),
(3231, 2355, '_edit_last', '3'),
(3232, 2355, '_wp_page_template', 'default'),
(3233, 2355, '_yoast_wpseo_focuskw_text_input', 'publications'),
(3234, 2355, '_yoast_wpseo_focuskw', 'publications'),
(3235, 2355, '_yoast_wpseo_linkdex', '37'),
(3251, 2360, '_search', 'Commentaries, '),
(3252, 2360, '_menu_item_type', 'taxonomy'),
(3253, 2360, '_menu_item_menu_item_parent', '2362'),
(3254, 2360, '_menu_item_object_id', '233'),
(3255, 2360, '_menu_item_object', 'category'),
(3256, 2360, '_menu_item_target', ''),
(3257, 2360, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3258, 2360, '_menu_item_xfn', ''),
(3259, 2360, '_menu_item_url', ''),
(3271, 2362, '_search', 'Publications, '),
(3272, 2362, '_menu_item_type', 'custom'),
(3273, 2362, '_menu_item_menu_item_parent', '0'),
(3274, 2362, '_menu_item_object_id', '2362'),
(3275, 2362, '_menu_item_object', 'custom'),
(3276, 2362, '_menu_item_target', ''),
(3277, 2362, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3278, 2362, '_menu_item_xfn', ''),
(3279, 2362, '_menu_item_url', '#'),
(3281, 2363, '_search', 'The ASEAN Way and Human Rights, '),
(3282, 2363, '_edit_lock', '1455777044:1'),
(3283, 2363, '_edit_last', '1'),
(3286, 2365, '_search', 'Democratic values and human rights in ASEAN, '),
(3287, 2365, '_edit_lock', '1455527397:3'),
(3288, 2365, '_edit_last', '3'),
(3293, 2367, '_search', 'ASEAN needs formal civil society engagement mechanism on human rights, '),
(3294, 2367, '_edit_lock', '1455526492:3'),
(3295, 2367, '_edit_last', '3'),
(3306, 2367, '_yoast_wpseo_focuskw_text_input', 'civil society, human rights, ASEAN'),
(3307, 2367, '_yoast_wpseo_focuskw', 'civil society, human rights, ASEAN'),
(3308, 2367, '_yoast_wpseo_linkdex', '56'),
(3311, 2363, '_yoast_wpseo_focuskw_text_input', 'ASEAN, discourse, human rights, Southeast Asia'),
(3312, 2363, '_yoast_wpseo_focuskw', 'ASEAN, discourse, human rights, Southeast Asia'),
(3313, 2363, '_yoast_wpseo_linkdex', '63'),
(3316, 2365, '_yoast_wpseo_focuskw_text_input', 'ASEAN, democracy, human rights, Southeast Asia'),
(3317, 2365, '_yoast_wpseo_focuskw', 'ASEAN, democracy, human rights, Southeast Asia'),
(3318, 2365, '_yoast_wpseo_linkdex', '61'),
(3325, 2378, '_search', ', '),
(3326, 2378, '_edit_lock', '1455777265:1'),
(3327, 2378, '_edit_last', '1'),
(3336, 2382, '_search', 'Learning, '),
(3337, 2382, '_menu_item_type', 'custom'),
(3338, 2382, '_menu_item_menu_item_parent', '3487'),
(3339, 2382, '_menu_item_object_id', '2382'),
(3340, 2382, '_menu_item_object', 'custom'),
(3341, 2382, '_menu_item_target', ''),
(3342, 2382, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3343, 2382, '_menu_item_xfn', ''),
(3344, 2382, '_menu_item_url', 'http://asiacentre.co.th/learning/'),
(3404, 2390, '_wp_attached_file', '2016/02/upr_logo.jpg'),
(3405, 2390, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:130;s:6:"height";i:170;s:4:"file";s:20:"2016/02/upr_logo.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"upr_logo-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3406, 2391, '_wp_attached_file', '2016/02/upr.jpg'),
(3407, 2391, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:275;s:6:"height";i:183;s:4:"file";s:15:"2016/02/upr.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:13:"upr-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3408, 2392, '_wp_attached_file', '2016/02/Human-Rights-from-Creative-Commons.jpg'),
(3409, 2392, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:500;s:6:"height";i:375;s:4:"file";s:46:"2016/02/Human-Rights-from-Creative-Commons.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Human-Rights-from-Creative-Commons-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3410, 2393, '_wp_attached_file', '2016/02/640px-Four_freedoms_human_rights-e1470829618763.jpg'),
(3411, 2393, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:287;s:4:"file";s:59:"2016/02/640px-Four_freedoms_human_rights-e1470829618763.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"640px-Four_freedoms_human_rights-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3427, 18, '_yoast_wpseo_focuskw_text_input', 'asiacentre, meeting room rental, space rental, training room rental'),
(3428, 18, '_yoast_wpseo_focuskw', 'asiacentre, meeting room rental, space rental, training room rental'),
(3429, 18, '_yoast_wpseo_linkdex', '56'),
(3430, 2401, '_search', 'About, '),
(3431, 2401, '_menu_item_type', 'custom'),
(3432, 2401, '_menu_item_menu_item_parent', '0'),
(3433, 2401, '_menu_item_object_id', '2401'),
(3434, 2401, '_menu_item_object', 'custom'),
(3435, 2401, '_menu_item_target', ''),
(3436, 2401, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3437, 2401, '_menu_item_xfn', ''),
(3438, 2401, '_menu_item_url', '#'),
(3440, 2402, '_search', ', '),
(3441, 2402, '_menu_item_type', 'post_type'),
(3442, 2402, '_menu_item_menu_item_parent', '2401'),
(3443, 2402, '_menu_item_object_id', '18'),
(3444, 2402, '_menu_item_object', 'page'),
(3445, 2402, '_menu_item_target', ''),
(3446, 2402, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(3447, 2402, '_menu_item_xfn', ''),
(3448, 2402, '_menu_item_url', ''),
(3452, 2363, '_thumbnail_id', '2392'),
(3457, 2378, '_wp_old_slug', '2378'),
(3458, 1962, '_yoast_wpseo_focuskw_text_input', 'asiacentre, meeting room rental, space rental, training room rental'),
(3459, 1962, '_yoast_wpseo_focuskw', 'asiacentre, meeting room rental, space rental, training room rental'),
(3460, 1962, '_yoast_wpseo_linkdex', '56'),
(3461, 1963, '_yoast_wpseo_focuskw_text_input', 'asiacentre, meeting room rental, space rental, training room rental'),
(3462, 1963, '_yoast_wpseo_focuskw', 'asiacentre, meeting room rental, space rental, training room rental'),
(3463, 1963, '_yoast_wpseo_linkdex', '56'),
(3464, 2408, '_search', 'A Political Utopia Called Singapore, '),
(3465, 2408, '_edit_lock', '1482405133:6'),
(3466, 2408, '_edit_last', '5'),
(3467, 2409, '_wp_attached_file', '2016/02/Jeanette.png'),
(3468, 2409, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:420;s:6:"height";i:359;s:4:"file";s:20:"2016/02/Jeanette.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Jeanette-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3469, 2408, 'event', 'a:4:{s:10:"event_from";s:10:"19-03-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:6:"9.30am";s:14:"event_time_end";s:7:"12.00pm";}'),
(3470, 2408, '_order', '1458345600'),
(3471, 2408, '_finito', '1458431999'),
(3472, 2410, '_wp_attached_file', '2016/02/Singapore-Election-Ballot-Box.jpg'),
(3473, 2410, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:550;s:6:"height";i:322;s:4:"file";s:41:"2016/02/Singapore-Election-Ballot-Box.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:39:"Singapore-Election-Ballot-Box-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3475, 2412, '_search', 'A Political Utopia Called Singapore, '),
(3476, 2412, '_edit_lock', '1455871705:5'),
(3477, 2412, '_edit_last', '5'),
(3482, 701, '_search', 'Home, '),
(3485, 2092, '_edit_last', '6'),
(3486, 2092, '_wp_old_slug', 'image1-3'),
(3487, 2435, '_wp_attached_file', '2016/03/Classroom-1.jpg'),
(3488, 2435, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:23:"2016/03/Classroom-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Classroom-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3489, 2436, '_wp_attached_file', '2016/03/Classroom-1-1.jpg'),
(3490, 2436, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Classroom-1-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Classroom-1-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3493, 2438, '_wp_attached_file', '2016/03/Classroom-2-1.jpg'),
(3494, 2438, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Classroom-2-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Classroom-2-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3495, 2439, '_wp_attached_file', '2016/03/Classroom-2-3.jpg'),
(3496, 2439, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Classroom-2-3.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Classroom-2-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3497, 2440, '_wp_attached_file', '2016/03/Classroom-3.jpg'),
(3498, 2440, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:420;s:4:"file";s:23:"2016/03/Classroom-3.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Classroom-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3499, 2441, '_wp_attached_file', '2016/03/Classroom-3-1.jpg'),
(3500, 2441, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Classroom-3-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Classroom-3-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3501, 2442, '_wp_attached_file', '2016/03/Classroom-3-2.jpg'),
(3502, 2442, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Classroom-3-2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Classroom-3-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3503, 2443, '_wp_attached_file', '2016/03/Classroom-4.jpg'),
(3504, 2443, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:334;s:4:"file";s:23:"2016/03/Classroom-4.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Classroom-4-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3505, 2444, '_wp_attached_file', '2016/03/Classroom-5.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3506, 2444, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:346;s:4:"file";s:23:"2016/03/Classroom-5.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Classroom-5-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3507, 2445, '_wp_attached_file', '2016/03/Classroom-6.jpg'),
(3508, 2445, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:246;s:4:"file";s:23:"2016/03/Classroom-6.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Classroom-6-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3509, 2446, '_wp_attached_file', '2016/03/Round-Table-1.jpg'),
(3510, 2446, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Round-Table-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Round-Table-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3511, 2447, '_wp_attached_file', '2016/03/Round-Table-6.jpg'),
(3512, 2447, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Round-Table-6.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Round-Table-6-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3513, 2448, '_wp_attached_file', '2016/03/Round-Table-5.jpg'),
(3514, 2448, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Round-Table-5.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Round-Table-5-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3515, 2449, '_wp_attached_file', '2016/03/Round-Table-3.jpg'),
(3516, 2449, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Round-Table-3.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Round-Table-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3517, 2450, '_wp_attached_file', '2016/03/Theatre.jpg'),
(3518, 2450, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:19:"2016/03/Theatre.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"Theatre-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3519, 2451, '_wp_attached_file', '2016/03/Theatre-2.jpg'),
(3520, 2451, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:21:"2016/03/Theatre-2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"Theatre-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3521, 2452, '_wp_attached_file', '2016/03/Discussion-Room-1.jpg'),
(3522, 2452, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:29:"2016/03/Discussion-Room-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"Discussion-Room-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3523, 2453, '_wp_attached_file', '2016/03/Lounge-1.jpg'),
(3524, 2453, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:20:"2016/03/Lounge-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Lounge-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3525, 2454, '_wp_attached_file', '2016/03/Lounge-2.jpg'),
(3526, 2454, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:20:"2016/03/Lounge-2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Lounge-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3527, 2455, '_wp_attached_file', '2016/03/Entrance-5.jpg'),
(3528, 2455, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:404;s:4:"file";s:22:"2016/03/Entrance-5.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Entrance-5-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3529, 2456, '_wp_attached_file', '2016/03/Entrance-6.jpg'),
(3530, 2456, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:22:"2016/03/Entrance-6.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Entrance-6-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3531, 2457, '_wp_attached_file', '2016/03/Entrance-4.jpg'),
(3532, 2457, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:640;s:4:"file";s:22:"2016/03/Entrance-4.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Entrance-4-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"Entrance-4-480x500.jpg";s:5:"width";i:480;s:6:"height";i:500;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:{}}}'),
(3533, 2458, '_wp_attached_file', '2016/03/Entrance-3.jpg'),
(3534, 2458, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:640;s:4:"file";s:22:"2016/03/Entrance-3.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Entrance-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"Entrance-3-480x500.jpg";s:5:"width";i:480;s:6:"height";i:500;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:{}}}'),
(3535, 2459, '_wp_attached_file', '2016/03/Podium.jpg'),
(3536, 2459, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:18:"2016/03/Podium.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"Podium-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3537, 2460, '_wp_attached_file', '2016/03/Fully-Equiped-Sound-System.jpg'),
(3538, 2460, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:316;s:4:"file";s:38:"2016/03/Fully-Equiped-Sound-System.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Fully-Equiped-Sound-System-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3539, 2461, '_wp_attached_file', '2016/03/Switch-Curtain-Sound.jpg'),
(3540, 2461, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:360;s:4:"file";s:32:"2016/03/Switch-Curtain-Sound.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"Switch-Curtain-Sound-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3541, 2462, '_wp_attached_file', '2016/03/View-1.jpg'),
(3542, 2462, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:18:"2016/03/View-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"View-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3543, 2463, '_wp_attached_file', '2016/03/Cinema-Screen-1.jpg'),
(3544, 2463, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:27:"2016/03/Cinema-Screen-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"Cinema-Screen-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3545, 2464, '_wp_attached_file', '2016/03/Cinema-Screen-2.jpg'),
(3546, 2464, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:27:"2016/03/Cinema-Screen-2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"Cinema-Screen-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3547, 2465, '_wp_attached_file', '2016/03/Chairs-1.jpg'),
(3548, 2465, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:20:"2016/03/Chairs-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Chairs-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3549, 2466, '_wp_attached_file', '2016/03/Chairs-3.jpg'),
(3550, 2466, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:20:"2016/03/Chairs-3.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Chairs-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3551, 2467, '_wp_attached_file', '2016/03/Chairs-2.jpg'),
(3552, 2467, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:20:"2016/03/Chairs-2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Chairs-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3553, 2468, '_wp_attached_file', '2016/03/Entrance-1.jpg'),
(3554, 2468, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:594;s:4:"file";s:22:"2016/03/Entrance-1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Entrance-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"Entrance-1-640x500.jpg";s:5:"width";i:640;s:6:"height";i:500;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:{}}}'),
(3555, 2469, '_wp_attached_file', '2016/03/Entrance-2.jpg'),
(3556, 2469, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:22:"2016/03/Entrance-2.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Entrance-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3557, 2470, '_wp_attached_file', '2016/03/Meeting-Table.jpg'),
(3558, 2470, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:360;s:4:"file";s:25:"2016/03/Meeting-Table.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Meeting-Table-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3559, 2471, '_search', 'ASIA Centre Space Gallery, '),
(3560, 2471, '_edit_lock', '1482987270:6'),
(3561, 2471, '_edit_last', '6'),
(3570, 2476, '_wp_attached_file', '2016/03/Classroom-3-3.jpg'),
(3571, 2476, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:420;s:4:"file";s:25:"2016/03/Classroom-3-3.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Classroom-3-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3584, 2483, '_wp_attached_file', '2016/03/Round-Table-4.jpg'),
(3585, 2483, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:25:"2016/03/Round-Table-4.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Round-Table-4-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3634, 2507, '_wp_attached_file', '2016/03/Asia-Centre-Logo-Square-Color.jpg'),
(3635, 2507, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1268;s:6:"height";i:1040;s:4:"file";s:41:"2016/03/Asia-Centre-Logo-Square-Color.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:39:"Asia-Centre-Logo-Square-Color-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:42:"Asia-Centre-Logo-Square-Color-1140x935.jpg";s:5:"width";i:1140;s:6:"height";i:935;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:41:"Asia-Centre-Logo-Square-Color-768x630.jpg";s:5:"width";i:768;s:6:"height";i:630;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:42:"Asia-Centre-Logo-Square-Color-1140x935.jpg";s:5:"width";i:1140;s:6:"height";i:935;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:42:"Asia-Centre-Logo-Square-Color-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3636, 1918, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Workshop, Space Rental, meeting room BTS, ห้องประชุมให้เช่า, ห้องประชุมให้เช่าติดบีทีเอส, ห้องประชุมให้เช่าติดรถไฟฟ้า'),
(3637, 1918, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Workshop, Space Rental, meeting room BTS, ห้องประชุมให้เช่า, ห้องประชุมให้เช่าติดบีทีเอส, ห้องประชุมให้เช่าติดรถไฟฟ้า'),
(3638, 1918, '_yoast_wpseo_linkdex', '63'),
(3639, 316, '_yoast_wpseo_focuskw_text_input', 'Think-Tank, Academic & Society Hub, Meeting Space, Partner for Joint Projects, Conference Space Rental, Training Room Rental, Seminar Room for rent'),
(3640, 316, '_yoast_wpseo_focuskw', 'Think-Tank, Academic & Society Hub, Meeting Space, Partner for Joint Projects, Conference Space Rental, Training Room Rental, Seminar Room for rent'),
(3641, 316, '_yoast_wpseo_title', 'Asia Centre | Think-Tank, Region Hub, Project Partner, Meeting Spaces'),
(3642, 316, '_yoast_wpseo_metadesc', 'Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.'),
(3643, 316, '_yoast_wpseo_linkdex', '33'),
(3644, 1918, '_yoast_wpseo_title', 'Space Rental | Asia Centre - Meeting,Training, Seminar, Workshop'),
(3645, 2092, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3646, 2092, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3647, 2092, '_yoast_wpseo_linkdex', '39'),
(3648, 2220, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3649, 2220, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3650, 2220, '_yoast_wpseo_linkdex', '39'),
(3651, 2221, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3652, 2221, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3653, 2221, '_yoast_wpseo_linkdex', '39'),
(3654, 2222, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3655, 2222, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3656, 2222, '_yoast_wpseo_linkdex', '39'),
(3657, 2223, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3658, 2223, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3659, 2223, '_yoast_wpseo_linkdex', '39'),
(3660, 2224, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3661, 2224, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3662, 2224, '_yoast_wpseo_linkdex', '39'),
(3663, 2225, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3664, 2225, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3665, 2225, '_yoast_wpseo_linkdex', '39'),
(3666, 2229, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3667, 2229, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3668, 2229, '_yoast_wpseo_linkdex', '39'),
(3669, 2230, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3670, 2230, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3671, 2230, '_yoast_wpseo_linkdex', '39'),
(3672, 2226, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3673, 2226, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3674, 2226, '_yoast_wpseo_linkdex', '39'),
(3675, 2232, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3676, 2232, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3677, 2232, '_yoast_wpseo_linkdex', '39'),
(3678, 2233, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3679, 2233, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3680, 2233, '_yoast_wpseo_linkdex', '39'),
(3681, 2234, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3682, 2234, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3683, 2234, '_yoast_wpseo_linkdex', '39'),
(3684, 2235, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3685, 2235, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3686, 2235, '_yoast_wpseo_linkdex', '39'),
(3687, 2236, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3688, 2236, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3689, 2236, '_yoast_wpseo_linkdex', '39'),
(3693, 2246, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3694, 2246, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3695, 2246, '_yoast_wpseo_linkdex', '39'),
(3699, 2227, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3700, 2227, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3701, 2227, '_yoast_wpseo_linkdex', '39'),
(3702, 2238, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3703, 2238, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3704, 2238, '_yoast_wpseo_linkdex', '39'),
(3705, 2237, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3706, 2237, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3707, 2237, '_yoast_wpseo_linkdex', '39'),
(3708, 2239, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3709, 2239, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3710, 2239, '_yoast_wpseo_linkdex', '39'),
(3711, 2240, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3712, 2240, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3713, 2240, '_yoast_wpseo_linkdex', '39'),
(3714, 2245, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3715, 2245, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3716, 2245, '_yoast_wpseo_linkdex', '39'),
(3717, 2228, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3718, 2228, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3719, 2228, '_yoast_wpseo_linkdex', '39'),
(3723, 2093, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3724, 2093, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3725, 2093, '_yoast_wpseo_linkdex', '39'),
(3726, 2020, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3727, 2020, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3728, 2020, '_yoast_wpseo_linkdex', '39'),
(3729, 2021, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3730, 2021, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3731, 2021, '_yoast_wpseo_linkdex', '39'),
(3744, 1967, '_yoast_wpseo_focuskw_text_input', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3745, 1967, '_yoast_wpseo_focuskw', 'Meeting, Training, Seminar, Conference, Space Rental'),
(3746, 1967, '_yoast_wpseo_linkdex', '39'),
(3747, 2222, '_edit_lock', '1457435844:6'),
(3748, 2222, '_edit_last', '6'),
(3749, 2450, '_edit_lock', '1457599813:6'),
(3751, 2452, '_edit_lock', '1457599946:6'),
(3752, 2454, '_edit_lock', '1457600267:6'),
(3756, 2513, '_wp_attached_file', '2016/03/Asia-Centre-BTS-Phayathai.jpeg'),
(3757, 2513, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:38:"2016/03/Asia-Centre-BTS-Phayathai.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Asia-Centre-BTS-Phayathai-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3760, 2515, '_wp_attached_file', '2016/03/Asia-Centre-Entrance1.jpeg'),
(3761, 2515, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:34:"2016/03/Asia-Centre-Entrance1.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"Asia-Centre-Entrance1-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3762, 2516, '_wp_attached_file', '2016/03/Asia-Centre-Entrance2.jpeg'),
(3763, 2516, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:720;s:6:"height";i:960;s:4:"file";s:34:"2016/03/Asia-Centre-Entrance2.jpeg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"Asia-Centre-Entrance2-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Entrance2-720x500.jpeg";s:5:"width";i:720;s:6:"height";i:500;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:{}}}'),
(3766, 2518, '_wp_attached_file', '2016/03/Asia-Centre-Phayathai-Plaza.jpeg'),
(3767, 2518, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:640;s:4:"file";s:40:"2016/03/Asia-Centre-Phayathai-Plaza.jpeg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"Asia-Centre-Phayathai-Plaza-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:40:"Asia-Centre-Phayathai-Plaza-480x500.jpeg";s:5:"width";i:480;s:6:"height";i:500;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:{}}}'),
(3771, 2136, '_oembed_8a6bd39a0abdbcb19742df8b10426834', '{{unknown}}'),
(3772, 2136, '_oembed_2cde17b6d54180c7461bafc6ec74a67a', '{{unknown}}'),
(3773, 2521, '_wp_attached_file', '2016/03/auke.jpg'),
(3774, 2521, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:313;s:6:"height";i:115;s:4:"file";s:16:"2016/03/auke.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"auke-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3775, 2523, '_wp_attached_file', '2016/03/logo.jpg'),
(3776, 2523, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:959;s:6:"height";i:158;s:4:"file";s:16:"2016/03/logo.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"logo-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"logo-768x127.jpg";s:5:"width";i:768;s:6:"height";i:127;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:{}}}'),
(3777, 2533, '_wp_attached_file', '2016/03/Auke3.jpg'),
(3778, 2533, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1200;s:6:"height";i:1200;s:4:"file";s:17:"2016/03/Auke3.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"Auke3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"Auke3-1140x1140.jpg";s:5:"width";i:1140;s:6:"height";i:1140;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:17:"Auke3-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"Auke3-1024x1024.jpg";s:5:"width";i:1024;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:18:"Auke3-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3779, 2536, '_wp_attached_file', '2016/03/How-to-get-Asia-Centre.jpg'),
(3780, 2536, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1987;s:6:"height";i:679;s:4:"file";s:34:"2016/03/How-to-get-Asia-Centre.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"How-to-get-Asia-Centre-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"How-to-get-Asia-Centre-1140x390.jpg";s:5:"width";i:1140;s:6:"height";i:390;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:34:"How-to-get-Asia-Centre-768x262.jpg";s:5:"width";i:768;s:6:"height";i:262;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:35:"How-to-get-Asia-Centre-1140x390.jpg";s:5:"width";i:1140;s:6:"height";i:390;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:35:"How-to-get-Asia-Centre-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3781, 2070, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3782, 2070, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3783, 2070, '_yoast_wpseo_linkdex', '65'),
(3784, 2536, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3785, 2536, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3786, 2536, '_yoast_wpseo_linkdex', '65'),
(3787, 2513, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3788, 2513, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3789, 2513, '_yoast_wpseo_linkdex', '65'),
(3790, 2518, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3791, 2518, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3792, 2518, '_yoast_wpseo_linkdex', '65'),
(3793, 2217, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3794, 2217, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3795, 2217, '_yoast_wpseo_linkdex', '65'),
(3808, 2071, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3809, 2071, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3810, 2071, '_yoast_wpseo_linkdex', '65'),
(3811, 2064, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3812, 2064, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3813, 2064, '_yoast_wpseo_linkdex', '65'),
(3817, 2541, '_wp_attached_file', '2016/03/Direction-to-Asia-Centre-1.jpg'),
(3818, 2541, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2227;s:6:"height";i:1035;s:4:"file";s:38:"2016/03/Direction-to-Asia-Centre-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Direction-to-Asia-Centre-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:39:"Direction-to-Asia-Centre-1-1140x530.jpg";s:5:"width";i:1140;s:6:"height";i:530;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:38:"Direction-to-Asia-Centre-1-768x357.jpg";s:5:"width";i:768;s:6:"height";i:357;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:39:"Direction-to-Asia-Centre-1-1140x530.jpg";s:5:"width";i:1140;s:6:"height";i:530;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:39:"Direction-to-Asia-Centre-1-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3823, 2541, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3824, 2541, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(3825, 2541, '_yoast_wpseo_linkdex', '65'),
(3827, 2545, '_search', 'The Politics Of Conflict, '),
(3828, 2545, '_edit_lock', '1458210594:5'),
(3829, 2545, '_edit_last', '5'),
(3832, 2547, '_wp_attached_file', '2016/03/8377_1135688779783682_209742658531093273_n.jpg'),
(3833, 2547, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:322;s:4:"file";s:54:"2016/03/8377_1135688779783682_209742658531093273_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:52:"8377_1135688779783682_209742658531093273_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:6:"Picasa";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:{}}}'),
(3834, 2548, '_wp_attached_file', '2016/03/10394868_1135688579783702_2696966684464241378_n.jpg'),
(3835, 2548, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:292;s:4:"file";s:59:"2016/03/10394868_1135688579783702_2696966684464241378_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"10394868_1135688579783702_2696966684464241378_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:6:"Picasa";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:{}}}'),
(3836, 2549, '_wp_attached_file', '2016/03/12742831_1135688383117055_4856394100844368184_n.jpg'),
(3837, 2549, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:239;s:4:"file";s:59:"2016/03/12742831_1135688383117055_4856394100844368184_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12742831_1135688383117055_4856394100844368184_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:6:"Picasa";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:{}}}'),
(3838, 2550, '_wp_attached_file', '2016/03/1238820_1135688193117074_3493690549020337119_n.jpg'),
(3839, 2550, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:407;s:6:"height";i:480;s:4:"file";s:58:"2016/03/1238820_1135688193117074_3493690549020337119_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:56:"1238820_1135688193117074_3493690549020337119_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:6:"Picasa";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:{}}}'),
(3840, 2552, '_wp_attached_file', '2016/03/12321583_1135688509783709_5050390669660545527_n.jpg'),
(3841, 2552, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:480;s:6:"height";i:235;s:4:"file";s:59:"2016/03/12321583_1135688509783709_5050390669660545527_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12321583_1135688509783709_5050390669660545527_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:6:"Picasa";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:{}}}'),
(3851, 2556, '_search', 'Entering Femininity: Reporting Rituals and Violations, '),
(3852, 2556, '_edit_lock', '1461228480:5'),
(3853, 2556, '_edit_last', '5'),
(3854, 2557, '_wp_attached_file', '2016/03/FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280670752.jpg'),
(3855, 2557, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:617;s:6:"height";i:308;s:4:"file";s:97:"2016/03/FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280670752.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:95:"FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280670752-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3856, 2557, '_wp_attachment_backup_sizes', 'a:4:{s:9:"full-orig";a:3:{s:5:"width";i:617;s:6:"height";i:308;s:4:"file";s:74:"FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:80:"FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1458280670752";a:3:{s:5:"width";i:617;s:6:"height";i:308;s:4:"file";s:89:"FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280551970.jpg";}s:23:"thumbnail-1458280670752";a:4:{s:4:"file";s:95:"FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280551970-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}'),
(3857, 2556, 'event', 'a:4:{s:10:"event_from";s:10:"30-04-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"9:30 AM";s:14:"event_time_end";s:0:"";}'),
(3858, 2556, '_order', '1461974400'),
(3859, 2556, '_finito', '1462060799'),
(3864, 2561, '_wp_attached_file', '2016/03/10509541_1149847311701162_6408657329684323979_n-e1458703606947.jpg'),
(3865, 2561, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:180;s:4:"file";s:74:"2016/03/10509541_1149847311701162_6408657329684323979_n-e1458703606947.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:72:"10509541_1149847311701162_6408657329684323979_n-e1458703606947-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"10509541_1149847311701162_6408657329684323979_n-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"10509541_1149847311701162_6408657329684323979_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(3866, 2561, '_wp_attachment_backup_sizes', 'a:5:{s:9:"full-orig";a:3:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:51:"10509541_1149847311701162_6408657329684323979_n.jpg";}s:18:"full-1458703606947";a:3:{s:5:"width";i:320;s:6:"height";i:180;s:4:"file";s:66:"10509541_1149847311701162_6408657329684323979_n-e1458703573521.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:57:"10509541_1149847311701162_6408657329684323979_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:59:"10509541_1149847311701162_6408657329684323979_n-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:59:"10509541_1149847311701162_6408657329684323979_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(3874, 2565, '_search', 'Singapore: A Political Dystopia for Democracy, '),
(3875, 2565, '_edit_lock', '1459515621:5'),
(3876, 2565, '_edit_last', '5'),
(3877, 2566, '_wp_attached_file', '2016/03/10509541_1149847311701162_6408657329684323979_n-1.jpg'),
(3878, 2566, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:61:"2016/03/10509541_1149847311701162_6408657329684323979_n-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"10509541_1149847311701162_6408657329684323979_n-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:61:"10509541_1149847311701162_6408657329684323979_n-1-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:61:"10509541_1149847311701162_6408657329684323979_n-1-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(3884, 2570, '_search', 'Academic Writing Clinic, '),
(3885, 2570, '_edit_lock', '1459505140:5'),
(3886, 2570, '_edit_last', '5'),
(3887, 2573, '_search', 'Academic Writing Clinic, '),
(3888, 2573, '_edit_lock', '1459507390:5'),
(3889, 2573, '_edit_last', '5'),
(3890, 2573, '_order', '1463961600'),
(3891, 2573, '_finito', '1464134399'),
(3892, 2573, 'event', 'a:4:{s:10:"event_from";s:10:"23-05-2016";s:8:"event_to";s:10:"24-05-2016";s:16:"event_time_start";s:6:"9:00am";s:14:"event_time_end";s:6:"4:00pm";}'),
(3893, 2574, '_wp_attached_file', '2016/04/academic_writing.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(3894, 2574, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1100;s:6:"height";i:850;s:4:"file";s:28:"2016/04/academic_writing.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"academic_writing-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"academic_writing-768x593.jpg";s:5:"width";i:768;s:6:"height";i:593;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"academic_writing-1100x500.jpg";s:5:"width";i:1100;s:6:"height";i:500;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:{}}}'),
(3899, 2580, '_search', 'Cause Lawyering: In Conversation With Regional Advocates, '),
(3900, 2580, '_edit_lock', '1461062995:5'),
(3901, 2580, '_edit_last', '5'),
(3902, 2581, '_wp_attached_file', '2016/04/scales.jpg'),
(3903, 2581, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2992;s:6:"height";i:1571;s:4:"file";s:18:"2016/04/scales.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"scales-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"scales-1140x599.jpg";s:5:"width";i:1140;s:6:"height";i:599;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"scales-768x403.jpg";s:5:"width";i:768;s:6:"height";i:403;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"scales-1140x599.jpg";s:5:"width";i:1140;s:6:"height";i:599;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"scales-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3904, 2580, 'event', 'a:4:{s:10:"event_from";s:10:"14-05-2016";s:8:"event_to";s:10:"14-05-2016";s:16:"event_time_start";s:6:"9:30am";s:14:"event_time_end";s:7:"12:00PM";}'),
(3905, 2580, '_order', '1463184000'),
(3906, 2580, '_finito', '1463270399'),
(3908, 2583, '_wp_attached_file', '2016/04/UPR-Conference-Call-page-001.jpg'),
(3909, 2583, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1754;s:6:"height";i:1240;s:4:"file";s:40:"2016/04/UPR-Conference-Call-page-001.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"UPR-Conference-Call-page-001-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:41:"UPR-Conference-Call-page-001-1140x806.jpg";s:5:"width";i:1140;s:6:"height";i:806;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:40:"UPR-Conference-Call-page-001-768x543.jpg";s:5:"width";i:768;s:6:"height";i:543;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:41:"UPR-Conference-Call-page-001-1140x806.jpg";s:5:"width";i:1140;s:6:"height";i:806;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:41:"UPR-Conference-Call-page-001-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3912, 2234, '_edit_lock', '1460951505:6'),
(3913, 2234, '_edit_last', '6'),
(3914, 2226, '_edit_lock', '1460951650:6'),
(3915, 2226, '_edit_last', '6'),
(3917, 2592, '_wp_attached_file', '2016/04/jk.jpg'),
(3918, 2592, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:234;s:6:"height";i:262;s:4:"file";s:14:"2016/04/jk.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:12:"jk-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3919, 2597, '_search', 'Stress Testing Single-Party Dominance in Malaysia, '),
(3920, 2597, '_edit_lock', '1461229004:5'),
(3921, 2597, '_edit_last', '5'),
(3922, 2597, '_order', '1463097600'),
(3923, 2597, '_finito', '1463183999'),
(3924, 2597, 'event', 'a:4:{s:10:"event_from";s:10:"13-05-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"3:00 PM";s:14:"event_time_end";s:7:"5:00 PM";}'),
(3925, 2599, '_wp_attached_file', '2016/04/imdb-copy-e1461225880574.jpg'),
(3926, 2599, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:584;s:6:"height";i:366;s:4:"file";s:36:"2016/04/imdb-copy-e1461225880574.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"imdb-copy-e1461225880574-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3927, 2599, '_wp_attachment_backup_sizes', 'a:2:{s:9:"full-orig";a:3:{s:5:"width";i:584;s:6:"height";i:366;s:4:"file";s:13:"imdb-copy.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:19:"imdb-copy-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}'),
(3928, 2600, '_wp_attached_file', '2016/04/william-case.jpg'),
(3929, 2600, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:211;s:6:"height";i:289;s:4:"file";s:24:"2016/04/william-case.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"william-case-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3932, 2604, '_wp_attached_file', '2016/04/gerak.png'),
(3933, 2604, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:86;s:4:"file";s:17:"2016/04/gerak.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:15:"gerak-90x86.png";s:5:"width";i:90;s:6:"height";i:86;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:{}}}'),
(3935, 2606, '_search', 'Working with People-Centred Processes: Art, Education &#038; Cross-Sector Collaboration, '),
(3936, 2606, '_edit_last', '5'),
(3937, 2606, '_edit_lock', '1462010273:5'),
(3938, 2609, '_search', 'Working with People-Centred Processes: Art, Education &#038; Cross-Sector Collaboration, '),
(3939, 2609, '_edit_lock', '1475564654:5'),
(3940, 2609, '_edit_last', '5'),
(3941, 2609, '_order', '1476403200'),
(3942, 2609, '_finito', '1476748799'),
(3943, 2609, 'event', 'a:4:{s:10:"event_from";s:10:"14-10-2016";s:8:"event_to";s:10:"17-10-2016";s:16:"event_time_start";s:0:"";s:14:"event_time_end";s:0:"";}'),
(3944, 2610, '_wp_attached_file', '2016/04/OAUB-2010.jpg'),
(3945, 2610, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:417;s:4:"file";s:21:"2016/04/OAUB-2010.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"OAUB-2010-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:10:"1268149873";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:{}}}'),
(3947, 2614, '_wp_attached_file', '2016/05/13230673_10156840745450307_1623548805_o.jpg'),
(3948, 2614, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:51:"2016/05/13230673_10156840745450307_1623548805_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"13230673_10156840745450307_1623548805_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:52:"13230673_10156840745450307_1623548805_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"13230673_10156840745450307_1623548805_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:52:"13230673_10156840745450307_1623548805_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:52:"13230673_10156840745450307_1623548805_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3949, 2615, '_wp_attached_file', '2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png'),
(3950, 2615, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:652;s:6:"height";i:418;s:4:"file";s:48:"2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"Screen-Shot-2016-05-21-at-7.06.34-AM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3951, 2616, '_wp_attached_file', '2016/05/13224345_10156837166920307_243753405_o-2.jpg'),
(3952, 2616, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:52:"2016/05/13224345_10156837166920307_243753405_o-2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"13224345_10156837166920307_243753405_o-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:53:"13224345_10156837166920307_243753405_o-2-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:52:"13224345_10156837166920307_243753405_o-2-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:53:"13224345_10156837166920307_243753405_o-2-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"13224345_10156837166920307_243753405_o-2-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3953, 2617, '_wp_attached_file', '2016/05/13242308_10156837166915307_771615932_o-2.jpg'),
(3954, 2617, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:1280;s:4:"file";s:52:"2016/05/13242308_10156837166915307_771615932_o-2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"13242308_10156837166915307_771615932_o-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"13242308_10156837166915307_771615932_o-2-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:53:"13242308_10156837166915307_771615932_o-2-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:52:"13242308_10156837166915307_771615932_o-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(3955, 2618, '_search', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya, '),
(3956, 2618, '_edit_lock', '1463790225:5'),
(3957, 2618, '_edit_last', '5'),
(3958, 2619, '_wp_attached_file', '2016/05/13224331_10156840745480307_1071113168_o.jpg'),
(3959, 2619, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:1280;s:4:"file";s:51:"2016/05/13224331_10156840745480307_1071113168_o.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"13224331_10156840745480307_1071113168_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:52:"13224331_10156840745480307_1071113168_o-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:52:"13224331_10156840745480307_1071113168_o-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:51:"13224331_10156840745480307_1071113168_o-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(3963, 2627, '_search', 'Academic Writing Clinic, '),
(3964, 2627, '_edit_lock', '1468483560:5'),
(3965, 2627, '_edit_last', '5'),
(3966, 2628, '_wp_attached_file', '2016/06/rsch.jpg'),
(3967, 2628, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:425;s:6:"height";i:282;s:4:"file";s:16:"2016/06/rsch.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"rsch-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3968, 2627, 'event', 'a:4:{s:10:"event_from";s:10:"26-07-2016";s:8:"event_to";s:10:"27-07-2016";s:16:"event_time_start";s:8:"9.00 a.m";s:14:"event_time_end";s:8:"4.00 p.m";}'),
(3969, 2627, '_order', '1469491200'),
(3970, 2627, '_finito', '1469663999'),
(3973, 2632, '_search', 'Confronting Elusiveness: Demanding Accountability in Southeast Asia, '),
(3974, 2632, '_edit_lock', '1466670598:5'),
(3975, 2633, '_wp_attached_file', '2016/06/Map-of-SE-Asia_04.jpg'),
(3976, 2633, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:427;s:4:"file";s:29:"2016/06/Map-of-SE-Asia_04.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"Map-of-SE-Asia_04-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"5.6";s:6:"credit";s:0:"";s:6:"camera";s:19:"Canon EOS REBEL T2i";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1337320275";s:9:"copyright";s:0:"";s:12:"focal_length";s:2:"51";s:3:"iso";s:3:"320";s:13:"shutter_speed";s:6:"0.0125";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(3977, 2632, '_edit_last', '5'),
(3978, 2632, '_order', '1466812800'),
(3979, 2632, '_finito', '1466899199'),
(3980, 2632, 'event', 'a:4:{s:10:"event_from";s:0:"";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"9.30 AM";s:14:"event_time_end";s:8:"12.00 PM";}'),
(3981, 2634, '_wp_attached_file', '2016/06/logosmaller.png'),
(3982, 2634, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:751;s:6:"height";i:574;s:4:"file";s:23:"2016/06/logosmaller.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"logosmaller-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:23:"logosmaller-751x500.png";s:5:"width";i:751;s:6:"height";i:500;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:{}}}'),
(3983, 2635, '_wp_attached_file', '2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png'),
(3984, 2635, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:742;s:6:"height";i:389;s:4:"file";s:48:"2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"Screen-Shot-2016-06-09-at-4.06.02-PM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3985, 2637, '_wp_attached_file', '2016/06/13411659_1207574492595110_7290071945552310544_o.jpg'),
(3986, 2637, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:59:"2016/06/13411659_1207574492595110_7290071945552310544_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"13411659_1207574492595110_7290071945552310544_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:61:"13411659_1207574492595110_7290071945552310544_o-1140x1614.jpg";s:5:"width";i:1140;s:6:"height";i:1614;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:60:"13411659_1207574492595110_7290071945552310544_o-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:60:"13411659_1207574492595110_7290071945552310544_o-723x1024.jpg";s:5:"width";i:723;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"13411659_1207574492595110_7290071945552310544_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(3987, 2638, '_wp_attached_file', '2016/06/Abid-15.jpg'),
(3988, 2638, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:504;s:6:"height";i:736;s:4:"file";s:19:"2016/06/Abid-15.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"Abid-15-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"Abid-15-504x500.jpg";s:5:"width";i:504;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.2";s:6:"credit";s:0:"";s:6:"camera";s:8:"GT-I9505";s:7:"caption";s:14:"??????????????";s:17:"created_timestamp";s:10:"1443097607";s:9:"copyright";s:0:"";s:12:"focal_length";s:3:"4.2";s:3:"iso";s:2:"50";s:13:"shutter_speed";s:18:"0.0063291139240506";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(3989, 2638, '_edit_lock', '1465991051:5'),
(3990, 2638, '_edit_last', '5'),
(3993, 1918, '_oembed_96d37956ad4a5fd6d3ef5692debbc31a', '{{unknown}}'),
(3994, 2651, '_wp_attached_file', '2016/06/performance_payments.png'),
(3995, 2651, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:319;s:6:"height";i:110;s:4:"file";s:32:"2016/06/performance_payments.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:30:"performance_payments-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(3996, 2653, '_search', 'Brexit &#038; Its Implications: An Asia Centre Roundtable, '),
(3997, 2653, '_edit_lock', '1468487242:5'),
(3998, 2653, '_edit_last', '5'),
(3999, 2654, '_wp_attached_file', '2016/06/BREXIT.jpg'),
(4000, 2654, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:3200;s:6:"height";i:1956;s:4:"file";s:18:"2016/06/BREXIT.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:16:"BREXIT-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"BREXIT-1140x697.jpg";s:5:"width";i:1140;s:6:"height";i:697;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"BREXIT-768x469.jpg";s:5:"width";i:768;s:6:"height";i:469;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"BREXIT-1140x697.jpg";s:5:"width";i:1140;s:6:"height";i:697;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"BREXIT-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4001, 2653, '_order', '1469404800'),
(4002, 2653, '_finito', '1469491199'),
(4003, 2653, 'event', 'a:4:{s:10:"event_from";s:10:"25-07-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:6:"2.00pm";s:14:"event_time_end";s:6:"5.00pm";}'),
(4006, 2657, '_wp_attached_file', '2016/06/13523655_10157003280205307_82205617_o-e1466999579729.jpg'),
(4007, 2657, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:627;s:6:"height";i:851;s:4:"file";s:64:"2016/06/13523655_10157003280205307_82205617_o-e1466999579729.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:62:"13523655_10157003280205307_82205617_o-e1466999579729-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"13523655_10157003280205307_82205617_o-576x1024.jpg";s:5:"width";i:576;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:64:"13523655_10157003280205307_82205617_o-e1466999579729-627x500.jpg";s:5:"width";i:627;s:6:"height";i:500;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:{}}}'),
(4008, 2657, '_wp_attachment_backup_sizes', 'a:4:{s:9:"full-orig";a:3:{s:5:"width";i:720;s:6:"height";i:1280;s:4:"file";s:41:"13523655_10157003280205307_82205617_o.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:47:"13523655_10157003280205307_82205617_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:50:"13523655_10157003280205307_82205617_o-576x1024.jpg";s:5:"width";i:576;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:49:"13523655_10157003280205307_82205617_o-720x500.jpg";s:5:"width";i:720;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4015, 2660, '_wp_attached_file', '2016/06/13509681_10157003279515307_1474960354_o-2-e1467003705459.jpg'),
(4016, 2660, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:496;s:6:"height";i:598;s:4:"file";s:68:"2016/06/13509681_10157003279515307_1474960354_o-2-e1467003705459.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:66:"13509681_10157003279515307_1474960354_o-2-e1467003705459-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:54:"13509681_10157003279515307_1474960354_o-2-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:54:"13509681_10157003279515307_1474960354_o-2-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:68:"13509681_10157003279515307_1474960354_o-2-e1467003705459-496x500.jpg";s:5:"width";i:496;s:6:"height";i:500;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:{}}}'),
(4017, 2660, '_edit_lock', '1467003676:5'),
(4018, 2660, '_wp_attachment_backup_sizes', 'a:5:{s:9:"full-orig";a:3:{s:5:"width";i:960;s:6:"height";i:1280;s:4:"file";s:45:"13509681_10157003279515307_1474960354_o-2.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:51:"13509681_10157003279515307_1474960354_o-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:54:"13509681_10157003279515307_1474960354_o-2-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:54:"13509681_10157003279515307_1474960354_o-2-768x1024.jpg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:53:"13509681_10157003279515307_1474960354_o-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4019, 2661, '_wp_attached_file', '2016/06/Screen-Shot-2016-06-27-at-12.16.26-PM.png'),
(4020, 2661, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:649;s:6:"height";i:401;s:4:"file";s:49:"2016/06/Screen-Shot-2016-06-27-at-12.16.26-PM.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:47:"Screen-Shot-2016-06-27-at-12.16.26-PM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4021, 2662, '_wp_attached_file', '2016/06/1394142_10151974405743832_1507090755_n-e1467005244632.jpg'),
(4022, 2662, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:324;s:6:"height";i:369;s:4:"file";s:65:"2016/06/1394142_10151974405743832_1507090755_n-e1467005244632.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:63:"1394142_10151974405743832_1507090755_n-e1467005244632-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"1394142_10151974405743832_1507090755_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"1394142_10151974405743832_1507090755_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4023, 2662, '_wp_attachment_backup_sizes', 'a:4:{s:9:"full-orig";a:3:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:42:"1394142_10151974405743832_1507090755_n.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:48:"1394142_10151974405743832_1507090755_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:50:"1394142_10151974405743832_1507090755_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:50:"1394142_10151974405743832_1507090755_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4024, 2663, '_wp_attached_file', '2016/06/Screen-Shot-2016-06-27-at-12.28.00-PM.png'),
(4025, 2663, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:644;s:6:"height";i:370;s:4:"file";s:49:"2016/06/Screen-Shot-2016-06-27-at-12.28.00-PM.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:47:"Screen-Shot-2016-06-27-at-12.28.00-PM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4028, 2665, '_wp_attached_file', '2016/06/Screen-Shot-2016-06-27-at-12.36.29-PM-1.png'),
(4029, 2665, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:287;s:6:"height";i:385;s:4:"file";s:51:"2016/06/Screen-Shot-2016-06-27-at-12.36.29-PM-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"Screen-Shot-2016-06-27-at-12.36.29-PM-1-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4030, 2667, '_search', 'Impunity waters down accountability in Southeast Asia, '),
(4031, 2667, '_edit_lock', '1467098800:5'),
(4032, 2667, '_edit_last', '5'),
(4033, 2668, '_wp_attached_file', '2016/06/ENDURING-IMPUNIY.jpg'),
(4034, 2668, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1190;s:6:"height";i:1630;s:4:"file";s:28:"2016/06/ENDURING-IMPUNIY.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"ENDURING-IMPUNIY-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:30:"ENDURING-IMPUNIY-1140x1562.jpg";s:5:"width";i:1140;s:6:"height";i:1562;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"ENDURING-IMPUNIY-768x1052.jpg";s:5:"width";i:768;s:6:"height";i:1052;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"ENDURING-IMPUNIY-748x1024.jpg";s:5:"width";i:748;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"ENDURING-IMPUNIY-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4035, 2669, '_wp_attached_file', '2016/06/13497966_1217100084975884_6777376889908211101_o.jpg'),
(4036, 2669, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:59:"2016/06/13497966_1217100084975884_6777376889908211101_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"13497966_1217100084975884_6777376889908211101_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:60:"13497966_1217100084975884_6777376889908211101_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"13497966_1217100084975884_6777376889908211101_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:60:"13497966_1217100084975884_6777376889908211101_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"13497966_1217100084975884_6777376889908211101_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4037, 2670, '_wp_attached_file', '2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922.jpg'),
(4038, 2670, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1264;s:6:"height";i:691;s:4:"file";s:74:"2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:72:"13522799_1217100138309212_2027423706937307920_o-e1467096886922-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:75:"13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg";s:5:"width";i:1140;s:6:"height";i:623;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:74:"13522799_1217100138309212_2027423706937307920_o-e1467096886922-768x420.jpg";s:5:"width";i:768;s:6:"height";i:420;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:75:"13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg";s:5:"width";i:1140;s:6:"height";i:623;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:75:"13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4039, 2670, '_wp_attachment_backup_sizes', 'a:6:{s:9:"full-orig";a:3:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:51:"13522799_1217100138309212_2027423706937307920_o.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:57:"13522799_1217100138309212_2027423706937307920_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:11:"medium-orig";a:4:{s:4:"file";s:60:"13522799_1217100138309212_2027423706937307920_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:59:"13522799_1217100138309212_2027423706937307920_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:60:"13522799_1217100138309212_2027423706937307920_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:60:"13522799_1217100138309212_2027423706937307920_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4040, 2678, '_search', 'Entering Femininity: Reporting Rituals and Violations, '),
(4041, 2678, '_edit_lock', '1469515106:5'),
(4042, 2678, '_edit_last', '5'),
(4043, 2679, '_wp_attached_file', '2016/06/13082517_1182274798458413_5088535181471000755_n-2.jpg'),
(4044, 2679, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:61:"2016/06/13082517_1182274798458413_5088535181471000755_n-2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"13082517_1182274798458413_5088535181471000755_n-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:61:"13082517_1182274798458413_5088535181471000755_n-2-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:61:"13082517_1182274798458413_5088535181471000755_n-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4045, 2680, '_wp_attached_file', '2016/06/13087044_1182274555125104_5491962876800857670_o.jpg'),
(4046, 2680, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:59:"2016/06/13087044_1182274555125104_5491962876800857670_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"13087044_1182274555125104_5491962876800857670_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:60:"13087044_1182274555125104_5491962876800857670_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"13087044_1182274555125104_5491962876800857670_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:60:"13087044_1182274555125104_5491962876800857670_o-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"13087044_1182274555125104_5491962876800857670_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4047, 2681, '_wp_attached_file', '2016/06/13123060_1183424575010102_656530940472674724_o.jpg'),
(4048, 2681, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:726;s:4:"file";s:58:"2016/06/13123060_1183424575010102_656530940472674724_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:56:"13123060_1183424575010102_656530940472674724_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:59:"13123060_1183424575010102_656530940472674724_o-1140x647.jpg";s:5:"width";i:1140;s:6:"height";i:647;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:58:"13123060_1183424575010102_656530940472674724_o-768x436.jpg";s:5:"width";i:768;s:6:"height";i:436;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"13123060_1183424575010102_656530940472674724_o-1140x647.jpg";s:5:"width";i:1140;s:6:"height";i:647;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"13123060_1183424575010102_656530940472674724_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4057, 2686, '_search', 'Interns, '),
(4058, 2686, '_edit_lock', '1480394776:3'),
(4059, 2686, '_edit_last', '3'),
(4060, 2686, '_wp_page_template', 'page-fullwidth.php'),
(4071, 1636, '_search', 'Home, '),
(4072, 1637, '_search', ', '),
(4073, 1638, '_search', ', '),
(4084, 2692, '_search', ', '),
(4085, 2692, '_menu_item_type', 'post_type'),
(4086, 2692, '_menu_item_menu_item_parent', '2111'),
(4087, 2692, '_menu_item_object_id', '2686'),
(4088, 2692, '_menu_item_object', 'page'),
(4089, 2692, '_menu_item_target', ''),
(4090, 2692, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4091, 2692, '_menu_item_xfn', ''),
(4092, 2692, '_menu_item_url', ''),
(4112, 2701, '_wp_attached_file', '2016/07/Bio-Picture-1-e1467627891670.jpg'),
(4113, 2701, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:924;s:6:"height";i:704;s:4:"file";s:40:"2016/07/Bio-Picture-1-e1467627891670.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:38:"Bio-Picture-1-e1467627891670-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:26:"Bio-Picture-1-1140x641.jpg";s:5:"width";i:1140;s:6:"height";i:641;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:40:"Bio-Picture-1-e1467627891670-768x585.jpg";s:5:"width";i:768;s:6:"height";i:585;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:26:"Bio-Picture-1-1140x641.jpg";s:5:"width";i:1140;s:6:"height";i:641;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:40:"Bio-Picture-1-e1467627891670-924x500.jpg";s:5:"width";i:924;s:6:"height";i:500;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:10:"1467650106";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:{}}}'),
(4114, 2701, '_wp_attachment_backup_sizes', 'a:6:{s:9:"full-orig";a:3:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:17:"Bio-Picture-1.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:23:"Bio-Picture-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:11:"medium-orig";a:4:{s:4:"file";s:26:"Bio-Picture-1-1140x641.jpg";s:5:"width";i:1140;s:6:"height";i:641;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:25:"Bio-Picture-1-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:26:"Bio-Picture-1-1140x641.jpg";s:5:"width";i:1140;s:6:"height";i:641;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:26:"Bio-Picture-1-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4116, 2707, '_wp_attached_file', '2016/07/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline.jpg'),
(4117, 2707, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:64:"2016/07/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:62:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:66:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614.jpg";s:5:"width";i:1140;s:6:"height";i:1614;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:65:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:65:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-723x1024.jpg";s:5:"width";i:723;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:65:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4118, 2708, '_wp_attached_file', '2016/07/Screen-Shot-2016-07-14-at-4.06.21-PM.png'),
(4119, 2708, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:590;s:6:"height";i:348;s:4:"file";s:48:"2016/07/Screen-Shot-2016-07-14-at-4.06.21-PM.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"Screen-Shot-2016-07-14-at-4.06.21-PM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4120, 2709, '_search', 'Asia Centre to Focus on Human Rights Policy Analysis, '),
(4121, 2709, '_edit_lock', '1468835799:5'),
(4122, 2709, '_edit_last', '5'),
(4123, 2710, '_wp_attached_file', '2016/07/13707687_10154339567788832_2587654188097978361_n.jpg'),
(4124, 2710, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:60:"2016/07/13707687_10154339567788832_2587654188097978361_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:58:"13707687_10154339567788832_2587654188097978361_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:60:"13707687_10154339567788832_2587654188097978361_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"13707687_10154339567788832_2587654188097978361_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4125, 2712, '_wp_attached_file', '2016/07/13659163_1230554846963741_5829662882208383_n.jpg'),
(4126, 2712, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:720;s:6:"height";i:960;s:4:"file";s:56:"2016/07/13659163_1230554846963741_5829662882208383_n.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:54:"13659163_1230554846963741_5829662882208383_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:56:"13659163_1230554846963741_5829662882208383_n-720x500.jpg";s:5:"width";i:720;s:6:"height";i:500;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:{}}}'),
(4131, 2716, '_search', 'Authoritarian Instituitions Help Najib Weather 1MDB Storm, '),
(4132, 2716, '_edit_lock', '1469515485:5'),
(4133, 2716, '_edit_last', '5'),
(4134, 2717, '_wp_attached_file', '2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg'),
(4135, 2717, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:61:"2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"13174221_1190404337645459_3710002666741059499_n-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:61:"13174221_1190404337645459_3710002666741059499_n-3-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:61:"13174221_1190404337645459_3710002666741059499_n-3-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4136, 2718, '_wp_attached_file', '2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg'),
(4137, 2718, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:61:"2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"13226717_1190404417645451_7033552345152260822_n-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:61:"13226717_1190404417645451_7033552345152260822_n-2-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:61:"13226717_1190404417645451_7033552345152260822_n-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4144, 2723, '_search', 'Cause Lawyering: Advocating For Justice, '),
(4145, 2723, '_edit_lock', '1469515510:5'),
(4146, 2723, '_edit_last', '5'),
(4147, 2724, '_wp_attached_file', '2016/07/13244637_1192143484138211_8491340487285207073_n-2.jpg'),
(4148, 2724, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:61:"2016/07/13244637_1192143484138211_8491340487285207073_n-2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"13244637_1192143484138211_8491340487285207073_n-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:61:"13244637_1192143484138211_8491340487285207073_n-2-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:61:"13244637_1192143484138211_8491340487285207073_n-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4149, 2725, '_wp_attached_file', '2016/07/13237877_1192143364138223_8699701757944548731_n-2.jpg'),
(4150, 2725, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:61:"2016/07/13237877_1192143364138223_8699701757944548731_n-2.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"13237877_1192143364138223_8699701757944548731_n-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:61:"13237877_1192143364138223_8699701757944548731_n-2-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:61:"13237877_1192143364138223_8699701757944548731_n-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4163, 2728, '_search', 'Futures Planning: Charting Asia Centre’s Course, '),
(4164, 2728, '_edit_lock', '1469526876:5'),
(4165, 2728, '_edit_last', '5'),
(4166, 2729, '_wp_attached_file', '2016/07/12705587_1131304350222125_1313265168233955617_n.jpg'),
(4167, 2729, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:754;s:6:"height";i:960;s:4:"file";s:59:"2016/07/12705587_1131304350222125_1313265168233955617_n.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12705587_1131304350222125_1313265168233955617_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"12705587_1131304350222125_1313265168233955617_n-754x500.jpg";s:5:"width";i:754;s:6:"height";i:500;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:{}}}'),
(4168, 2730, '_wp_attached_file', '2016/07/12742839_1131304393555454_4755732837999469162_n.jpg'),
(4169, 2730, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/07/12742839_1131304393555454_4755732837999469162_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12742839_1131304393555454_4755732837999469162_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12742839_1131304393555454_4755732837999469162_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"12742839_1131304393555454_4755732837999469162_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4170, 2731, '_wp_attached_file', '2016/07/12745406_1131304506888776_7488563555071341490_n.jpg'),
(4171, 2731, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/07/12745406_1131304506888776_7488563555071341490_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12745406_1131304506888776_7488563555071341490_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12745406_1131304506888776_7488563555071341490_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"12745406_1131304506888776_7488563555071341490_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4178, 2738, '_search', 'Brexit: A Failure of Promoting the European Union, '),
(4179, 2738, '_edit_lock', '1480494890:8'),
(4180, 2738, '_edit_last', '5'),
(4181, 2739, '_wp_attached_file', '2016/07/13631660_1237868799565679_1461397159066718475_n.jpg'),
(4182, 2739, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/07/13631660_1237868799565679_1461397159066718475_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"13631660_1237868799565679_1461397159066718475_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"13631660_1237868799565679_1461397159066718475_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"13631660_1237868799565679_1461397159066718475_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4183, 2740, '_wp_attached_file', '2016/07/13620274_1237867352899157_2289645346702615491_n.jpg'),
(4184, 2740, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/07/13620274_1237867352899157_2289645346702615491_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"13620274_1237867352899157_2289645346702615491_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"13620274_1237867352899157_2289645346702615491_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"13620274_1237867352899157_2289645346702615491_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4185, 2741, '_wp_attached_file', '2016/07/13620908_1237866319565927_2111982935833394140_n.jpg'),
(4186, 2741, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/07/13620908_1237866319565927_2111982935833394140_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"13620908_1237866319565927_2111982935833394140_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"13620908_1237866319565927_2111982935833394140_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"13620908_1237866319565927_2111982935833394140_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4187, 2742, '_wp_attached_file', '2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg'),
(4188, 2742, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:61:"2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"13631660_1237868799565679_1461397159066718475_n-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:61:"13631660_1237868799565679_1461397159066718475_n-1-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:61:"13631660_1237868799565679_1461397159066718475_n-1-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4189, 2743, '_wp_attached_file', '2016/07/13770343_1237865629565996_7960205151669899940_n.jpg'),
(4190, 2743, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/07/13770343_1237865629565996_7960205151669899940_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"13770343_1237865629565996_7960205151669899940_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"13770343_1237865629565996_7960205151669899940_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"13770343_1237865629565996_7960205151669899940_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4197, 2773, '_wp_attached_file', '2016/07/Screen-Shot-2016-07-29-at-6.00.37-PM.png'),
(4198, 2773, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:221;s:6:"height";i:125;s:4:"file";s:48:"2016/07/Screen-Shot-2016-07-29-at-6.00.37-PM.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"Screen-Shot-2016-07-29-at-6.00.37-PM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4201, 2778, '_search', 'Southeast Asian Studies Series – Call for Manuscripts, '),
(4202, 2778, '_edit_lock', '1470291541:5'),
(4203, 2778, '_edit_last', '5'),
(4204, 2780, '_wp_attached_file', '2016/08/Asia-Centre-Logo-Flat-Color-GA.png'),
(4205, 2780, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:132;s:4:"file";s:42:"2016/08/Asia-Centre-Logo-Flat-Color-GA.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:40:"Asia-Centre-Logo-Flat-Color-GA-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4206, 2782, '_wp_attached_file', '2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png'),
(4207, 2782, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:720;s:6:"height";i:143;s:4:"file";s:48:"2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"Screen-Shot-2016-08-04-at-1.03.52-PM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4213, 2788, '_search', 'Media &#038; Communications Workshop, '),
(4214, 2788, '_edit_lock', '1470366672:5'),
(4215, 2788, '_edit_last', '5'),
(4216, 2790, '_search', 'Media &#038; Communications Workshop, '),
(4217, 2790, '_edit_lock', '1479359332:3'),
(4218, 2790, '_edit_last', '3'),
(4219, 2790, 'event', 'a:4:{s:10:"event_from";s:10:"19-09-2016";s:8:"event_to";s:10:"30-09-2016";s:16:"event_time_start";s:0:"";s:14:"event_time_end";s:0:"";}'),
(4220, 2790, '_order', '1474243200'),
(4221, 2790, '_finito', '1475279999'),
(4222, 2791, '_wp_attached_file', '2016/08/Screen-Shot-2016-08-05-at-10.52.16-AM.png'),
(4223, 2791, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1053;s:6:"height";i:681;s:4:"file";s:49:"2016/08/Screen-Shot-2016-08-05-at-10.52.16-AM.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:47:"Screen-Shot-2016-08-05-at-10.52.16-AM-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:49:"Screen-Shot-2016-08-05-at-10.52.16-AM-768x497.png";s:5:"width";i:768;s:6:"height";i:497;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"Screen-Shot-2016-08-05-at-10.52.16-AM-1053x500.png";s:5:"width";i:1053;s:6:"height";i:500;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:{}}}'),
(4230, 1752, '_search', 'Twitter, '),
(4232, 42, '_edit_lock', '1482809993:6'),
(4233, 2803, '_wp_attached_file', '2016/08/Asia-Centre-Cover-Photo-1.jpg'),
(4234, 2803, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:37:"2016/08/Asia-Centre-Cover-Photo-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"Asia-Centre-Cover-Photo-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4239, 2808, '_wp_attached_file', '2016/08/Asiacentre-Cover-photo.jpg'),
(4240, 2808, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:879;s:6:"height";i:517;s:4:"file";s:34:"2016/08/Asiacentre-Cover-photo.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"Asiacentre-Cover-photo-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:34:"Asiacentre-Cover-photo-768x452.jpg";s:5:"width";i:768;s:6:"height";i:452;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"Asiacentre-Cover-photo-879x500.jpg";s:5:"width";i:879;s:6:"height";i:500;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:{}}}'),
(4242, 2810, '_wp_attached_file', '2016/08/Brixit-e1470829748677.jpg'),
(4243, 2810, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:374;s:4:"file";s:33:"2016/08/Brixit-e1470829748677.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"Brixit-e1470825944390-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:34:"Brixit-e1470825944390-1140x666.jpg";s:5:"width";i:1140;s:6:"height";i:666;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"Brixit-e1470825944390-768x449.jpg";s:5:"width";i:768;s:6:"height";i:449;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"Brixit-e1470825944390-1140x666.jpg";s:5:"width";i:1140;s:6:"height";i:666;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"Brixit-e1470825944390-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4244, 2810, '_wp_attachment_backup_sizes', 'a:9:{s:9:"full-orig";a:3:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:10:"Brixit.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:16:"Brixit-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:11:"medium-orig";a:4:{s:4:"file";s:19:"Brixit-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:18:"Brixit-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:19:"Brixit-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:19:"Brixit-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1470827824323";a:3:{s:5:"width";i:1152;s:6:"height";i:673;s:4:"file";s:25:"Brixit-e1470825944390.jpg";}s:18:"full-1470828880809";a:3:{s:5:"width";i:879;s:6:"height";i:514;s:4:"file";s:25:"Brixit-e1470827824323.jpg";}s:18:"full-1470829748677";a:3:{s:5:"width";i:800;s:6:"height";i:468;s:4:"file";s:25:"Brixit-e1470828880809.jpg";}}'),
(4245, 2815, '_wp_attached_file', '2016/08/1st-Anniversary-e1470828783341.jpg'),
(4246, 2815, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:509;s:4:"file";s:42:"2016/08/1st-Anniversary-e1470828783341.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:40:"1st-Anniversary-e1470828757659-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:42:"1st-Anniversary-e1470828757659-768x489.jpg";s:5:"width";i:768;s:6:"height";i:489;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:42:"1st-Anniversary-e1470828757659-867x500.jpg";s:5:"width";i:867;s:6:"height";i:500;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:{}}}'),
(4247, 2815, '_wp_attachment_backup_sizes', 'a:15:{s:9:"full-orig";a:3:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:19:"1st-Anniversary.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:25:"1st-Anniversary-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:27:"1st-Anniversary-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:27:"1st-Anniversary-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1470828018811";a:3:{s:5:"width";i:955;s:6:"height";i:691;s:4:"file";s:34:"1st-Anniversary-e1470827999628.jpg";}s:18:"full-1470828069267";a:3:{s:5:"width";i:879;s:6:"height";i:636;s:4:"file";s:34:"1st-Anniversary-e1470828018811.jpg";}s:23:"thumbnail-1470828069267";a:4:{s:4:"file";s:40:"1st-Anniversary-e1470827999628-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:26:"medium_large-1470828069267";a:4:{s:4:"file";s:42:"1st-Anniversary-e1470827999628-768x556.jpg";s:5:"width";i:768;s:6:"height";i:556;s:9:"mime-type";s:10:"image/jpeg";}s:28:"post-thumbnail-1470828069267";a:4:{s:4:"file";s:42:"1st-Anniversary-e1470827999628-955x500.jpg";s:5:"width";i:955;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1470828081829";a:3:{s:5:"width";i:870;s:6:"height";i:569;s:4:"file";s:34:"1st-Anniversary-e1470828069267.jpg";}s:18:"full-1470828757659";a:3:{s:5:"width";i:870;s:6:"height";i:569;s:4:"file";s:34:"1st-Anniversary-e1470828081829.jpg";}s:23:"thumbnail-1470828757659";a:4:{s:4:"file";s:40:"1st-Anniversary-e1470828069267-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:26:"medium_large-1470828757659";a:4:{s:4:"file";s:42:"1st-Anniversary-e1470828069267-768x502.jpg";s:5:"width";i:768;s:6:"height";i:502;s:9:"mime-type";s:10:"image/jpeg";}s:28:"post-thumbnail-1470828757659";a:4:{s:4:"file";s:42:"1st-Anniversary-e1470828069267-870x500.jpg";s:5:"width";i:870;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1470828783341";a:3:{s:5:"width";i:867;s:6:"height";i:552;s:4:"file";s:34:"1st-Anniversary-e1470828757659.jpg";}}'),
(4248, 2817, '_wp_attached_file', '2016/08/1st-Anniversary-2-e1470829083155.jpg'),
(4249, 2817, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:44:"2016/08/1st-Anniversary-2-e1470829083155.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"1st-Anniversary-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"1st-Anniversary-2-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"1st-Anniversary-2-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4250, 2817, '_wp_attachment_backup_sizes', 'a:1:{s:9:"full-orig";a:3:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:21:"1st-Anniversary-2.jpg";}}'),
(4251, 2818, '_wp_attached_file', '2016/08/1st-Anniversary-3-e1470829666134.jpg'),
(4252, 2818, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:378;s:4:"file";s:44:"2016/08/1st-Anniversary-3-e1470829666134.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:42:"1st-Anniversary-3-e1470829258265-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:44:"1st-Anniversary-3-e1470829258265-768x454.jpg";s:5:"width";i:768;s:6:"height";i:454;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:44:"1st-Anniversary-3-e1470829258265-957x500.jpg";s:5:"width";i:957;s:6:"height";i:500;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:{}}}'),
(4253, 2818, '_wp_attachment_backup_sizes', 'a:6:{s:9:"full-orig";a:3:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:21:"1st-Anniversary-3.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:27:"1st-Anniversary-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:29:"1st-Anniversary-3-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:29:"1st-Anniversary-3-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1470829272655";a:3:{s:5:"width";i:957;s:6:"height";i:566;s:4:"file";s:36:"1st-Anniversary-3-e1470829258265.jpg";}s:18:"full-1470829666134";a:3:{s:5:"width";i:800;s:6:"height";i:473;s:4:"file";s:36:"1st-Anniversary-3-e1470829272655.jpg";}}'),
(4254, 2393, '_wp_attachment_backup_sizes', 'a:2:{s:9:"full-orig";a:3:{s:5:"width";i:640;s:6:"height";i:287;s:4:"file";s:36:"640px-Four_freedoms_human_rights.jpg";}s:18:"full-1470829618763";a:3:{s:5:"width";i:640;s:6:"height";i:287;s:4:"file";s:51:"640px-Four_freedoms_human_rights-e1470829595226.jpg";}}'),
(4255, 2819, '_wp_attached_file', '2016/08/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722.jpg'),
(4256, 2819, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:89:"2016/08/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:87:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830106289-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:76:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-1140x1614.jpg";s:5:"width";i:1140;s:6:"height";i:1614;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:89:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830106289-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:75:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-723x1024.jpg";s:5:"width";i:723;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:90:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830106289-1000x500.jpg";s:5:"width";i:1000;s:6:"height";i:500;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:{}}}'),
(4257, 2819, '_wp_attachment_backup_sizes', 'a:7:{s:9:"full-orig";a:3:{s:5:"width";i:1140;s:6:"height";i:1614;s:4:"file";s:66:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:72:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:11:"medium-orig";a:4:{s:4:"file";s:76:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-1140x1614.jpg";s:5:"width";i:1140;s:6:"height";i:1614;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:75:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:75:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-723x1024.jpg";s:5:"width";i:723;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:75:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1470830119722";a:3:{s:5:"width";i:1000;s:6:"height";i:750;s:4:"file";s:81:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830106289.jpg";}}'),
(4258, 2820, '_wp_attached_file', '2016/08/Media-Communications-workshop-e1472094394601.jpeg'),
(4259, 2820, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:636;s:6:"height";i:337;s:4:"file";s:57:"2016/08/Media-Communications-workshop-e1472094394601.jpeg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:55:"Media-Communications-workshop-e1470831493302-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;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:10:"??????????";s:17:"created_timestamp";s:10:"1470855757";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:{}}}'),
(4260, 2820, '_wp_attachment_backup_sizes', 'a:5:{s:9:"full-orig";a:3:{s:5:"width";i:691;s:6:"height";i:457;s:4:"file";s:34:"Media-Communications-workshop.jpeg";}s:18:"full-1470831493302";a:3:{s:5:"width";i:640;s:6:"height";i:423;s:4:"file";s:49:"Media-Communications-workshop-e1470831310314.jpeg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:40:"Media-Communications-workshop-90x90.jpeg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:18:"full-1472094346327";a:3:{s:5:"width";i:636;s:6:"height";i:337;s:4:"file";s:49:"Media-Communications-workshop-e1470831493302.jpeg";}s:18:"full-1472094394601";a:3:{s:5:"width";i:636;s:6:"height";i:337;s:4:"file";s:49:"Media-Communications-workshop-e1472094346327.jpeg";}}'),
(4263, 2824, '_wp_attached_file', '2016/08/Draft-Programme.jpg'),
(4264, 2824, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1240;s:6:"height";i:1753;s:4:"file";s:27:"2016/08/Draft-Programme.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:25:"Draft-Programme-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"Draft-Programme-1140x1612.jpg";s:5:"width";i:1140;s:6:"height";i:1612;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"Draft-Programme-768x1086.jpg";s:5:"width";i:768;s:6:"height";i:1086;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"Draft-Programme-724x1024.jpg";s:5:"width";i:724;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:28:"Draft-Programme-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4265, 2825, '_wp_attached_file', '2016/08/Draft-Programme-Day-2.jpg'),
(4266, 2825, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1240;s:6:"height";i:1753;s:4:"file";s:33:"2016/08/Draft-Programme-Day-2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"Draft-Programme-Day-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"Draft-Programme-Day-2-1140x1612.jpg";s:5:"width";i:1140;s:6:"height";i:1612;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:34:"Draft-Programme-Day-2-768x1086.jpg";s:5:"width";i:768;s:6:"height";i:1086;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"Draft-Programme-Day-2-724x1024.jpg";s:5:"width";i:724;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"Draft-Programme-Day-2-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4267, 2826, '_wp_attached_file', '2016/08/Draft-Programme-Day-3.jpg'),
(4268, 2826, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1240;s:6:"height";i:1753;s:4:"file";s:33:"2016/08/Draft-Programme-Day-3.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"Draft-Programme-Day-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"Draft-Programme-Day-3-1140x1612.jpg";s:5:"width";i:1140;s:6:"height";i:1612;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:34:"Draft-Programme-Day-3-768x1086.jpg";s:5:"width";i:768;s:6:"height";i:1086;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"Draft-Programme-Day-3-724x1024.jpg";s:5:"width";i:724;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"Draft-Programme-Day-3-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4271, 2828, '_search', 'Southeast Asia &#038; The UPR: All Talk &#038; No Action?, '),
(4272, 2828, '_edit_lock', '1482990849:6'),
(4273, 2828, '_edit_last', '8'),
(4274, 2829, '_wp_attached_file', '2016/08/Talking.jpg'),
(4275, 2829, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1000;s:6:"height";i:1000;s:4:"file";s:19:"2016/08/Talking.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"Talking-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"Talking-768x768.jpg";s:5:"width";i:768;s:6:"height";i:768;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"Talking-1000x500.jpg";s:5:"width";i:1000;s:6:"height";i:500;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:10:"1354810122";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:{}}}'),
(4276, 2828, '_order', '1474070400'),
(4277, 2828, '_finito', '1474156799'),
(4278, 2828, 'event', 'a:4:{s:10:"event_from";s:10:"17-09-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"9:30 AM";s:14:"event_time_end";s:7:"12.00PM";}'),
(4280, 2831, '_wp_attached_file', '2016/08/Screen-Shot-2016-08-25-at-16.16.40.png'),
(4281, 2831, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:580;s:6:"height";i:228;s:4:"file";s:46:"2016/08/Screen-Shot-2016-08-25-at-16.16.40.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-08-25-at-16.16.40-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4282, 2832, '_wp_attached_file', '2016/08/Screen-Shot-2016-08-25-at-16.26.28.png'),
(4283, 2832, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:479;s:6:"height";i:319;s:4:"file";s:46:"2016/08/Screen-Shot-2016-08-25-at-16.26.28.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-08-25-at-16.26.28-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4284, 2834, '_wp_attached_file', '2016/08/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722-1.jpg'),
(4285, 2834, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:879;s:6:"height";i:517;s:4:"file";s:91:"2016/08/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:89:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:91:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722-1-768x452.jpg";s:5:"width";i:768;s:6:"height";i:452;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:91:"UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722-1-879x500.jpg";s:5:"width";i:879;s:6:"height";i:500;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:{}}}'),
(4288, 2836, '_wp_attached_file', '2016/08/Brixit-1.jpg'),
(4289, 2836, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:879;s:6:"height";i:517;s:4:"file";s:20:"2016/08/Brixit-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"Brixit-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"Brixit-1-768x452.jpg";s:5:"width";i:768;s:6:"height";i:452;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"Brixit-1-879x500.jpg";s:5:"width";i:879;s:6:"height";i:500;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:{}}}'),
(4296, 2840, '_wp_attached_file', '2016/08/OAUB-2010.jpg'),
(4297, 2840, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:21:"2016/08/OAUB-2010.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"OAUB-2010-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:10:"1268149873";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:{}}}'),
(4301, 2845, '_wp_attached_file', '2016/07/Screen-Shot-2016-09-05-at-17.28.20.png'),
(4302, 2845, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:190;s:6:"height";i:271;s:4:"file";s:46:"2016/07/Screen-Shot-2016-09-05-at-17.28.20.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-09-05-at-17.28.20-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4305, 2850, '_wp_attached_file', '2016/09/Internship.jpg'),
(4306, 2850, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:879;s:6:"height";i:517;s:4:"file";s:22:"2016/09/Internship.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Internship-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"Internship-768x452.jpg";s:5:"width";i:768;s:6:"height";i:452;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"Internship-879x500.jpg";s:5:"width";i:879;s:6:"height";i:500;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:{}}}'),
(4308, 2854, '_wp_attached_file', '2016/09/Internship-1-e1476088271114.jpg'),
(4309, 2854, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:326;s:6:"height";i:192;s:4:"file";s:39:"2016/09/Internship-1-e1476088271114.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"Internship-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"Internship-1-768x452.jpg";s:5:"width";i:768;s:6:"height";i:452;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"Internship-1-879x500.jpg";s:5:"width";i:879;s:6:"height";i:500;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:{}}}'),
(4310, 1918, '_oembed_14b37ef3e49bf829abdd4683c87f5869', '{{unknown}}'),
(4314, 2859, '_search', 'The 2016 US Elections: Change at Last?, '),
(4315, 2859, '_edit_lock', '1482389315:6'),
(4316, 2859, '_edit_last', '6'),
(4317, 2860, '_wp_attached_file', '2016/09/Screen-Shot-2016-09-20-at-09.51.34.png'),
(4318, 2860, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:654;s:6:"height";i:431;s:4:"file";s:46:"2016/09/Screen-Shot-2016-09-20-at-09.51.34.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-09-20-at-09.51.34-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4319, 2859, '_order', '1478476800'),
(4320, 2859, '_finito', '1478563199'),
(4321, 2859, 'event', 'a:4:{s:10:"event_from";s:10:"07-11-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:6:"3:00PM";s:14:"event_time_end";s:6:"5.00PM";}'),
(4322, 2862, '_wp_attached_file', '2016/09/AAJA_Asia_Logo.png'),
(4323, 2862, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4353;s:6:"height";i:2937;s:4:"file";s:26:"2016/09/AAJA_Asia_Logo.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:24:"AAJA_Asia_Logo-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:27:"AAJA_Asia_Logo-1140x769.png";s:5:"width";i:1140;s:6:"height";i:769;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:26:"AAJA_Asia_Logo-768x518.png";s:5:"width";i:768;s:6:"height";i:518;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:27:"AAJA_Asia_Logo-1140x769.png";s:5:"width";i:1140;s:6:"height";i:769;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:27:"AAJA_Asia_Logo-1140x500.png";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4324, 2863, '_wp_attached_file', '2016/09/Asia-Centre-Logo-Flat-Color-GA-3-1.png'),
(4325, 2863, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:320;s:6:"height";i:132;s:4:"file";s:46:"2016/09/Asia-Centre-Logo-Flat-Color-GA-3-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Asia-Centre-Logo-Flat-Color-GA-3-1-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4326, 2864, '_search', 'UPR Conference Report, '),
(4327, 2864, '_edit_lock', '1484642326:5'),
(4328, 2864, '_edit_last', '5'),
(4329, 2865, '_wp_attached_file', '2016/09/IMG_2172-001.jpg'),
(4330, 2865, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4608;s:6:"height";i:3456;s:4:"file";s:24:"2016/09/IMG_2172-001.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"IMG_2172-001-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"IMG_2172-001-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"IMG_2172-001-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"IMG_2172-001-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"IMG_2172-001-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"3.5";s:6:"credit";s:0:"";s:6:"camera";s:24:"Canon PowerShot A2400 IS";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1473850760";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"7.76";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:17:"0.033333333333333";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4331, 2866, '_wp_attached_file', '2016/09/IMG_2253.jpg'),
(4332, 2866, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4608;s:6:"height";i:3456;s:4:"file";s:20:"2016/09/IMG_2253.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"IMG_2253-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"IMG_2253-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"IMG_2253-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"IMG_2253-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"IMG_2253-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:6:"Picasa";s:6:"camera";s:24:"Canon PowerShot A2400 IS";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1473858708";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"5";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:4:"0.01";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(4333, 2867, '_wp_attached_file', '2016/09/IMG_2200.jpg'),
(4334, 2867, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4608;s:6:"height";i:3456;s:4:"file";s:20:"2016/09/IMG_2200.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"IMG_2200-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"IMG_2200-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"IMG_2200-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"IMG_2200-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"IMG_2200-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"4.5";s:6:"credit";s:0:"";s:6:"camera";s:24:"Canon PowerShot A2400 IS";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1473853581";s:9:"copyright";s:0:"";s:12:"focal_length";s:6:"12.773";s:3:"iso";s:3:"400";s:13:"shutter_speed";s:4:"0.04";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4335, 2868, '_wp_attached_file', '2016/09/IMG_2259-001.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4336, 2868, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4608;s:6:"height";i:3456;s:4:"file";s:24:"2016/09/IMG_2259-001.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"IMG_2259-001-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"IMG_2259-001-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"IMG_2259-001-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"IMG_2259-001-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"IMG_2259-001-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:24:"Canon PowerShot A2400 IS";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1473859373";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"5";s:3:"iso";s:3:"200";s:13:"shutter_speed";s:4:"0.02";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4337, 2869, '_wp_attached_file', '2016/09/IMG_2416.jpg'),
(4338, 2869, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4608;s:6:"height";i:3456;s:4:"file";s:20:"2016/09/IMG_2416.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"IMG_2416-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:21:"IMG_2416-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"IMG_2416-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:21:"IMG_2416-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"IMG_2416-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"2.8";s:6:"credit";s:0:"";s:6:"camera";s:24:"Canon PowerShot A2400 IS";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1473938654";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"5";s:3:"iso";s:3:"250";s:13:"shutter_speed";s:17:"0.016666666666667";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4339, 2870, '_wp_attached_file', '2016/09/IP-1.jpg'),
(4340, 2870, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:3648;s:6:"height";i:2736;s:4:"file";s:16:"2016/09/IP-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"IP-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:17:"IP-1-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"IP-1-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:17:"IP-1-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:17:"IP-1-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"5";s:6:"credit";s:0:"";s:6:"camera";s:9:"DSC-HX50V";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1474015342";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"13.6";s:3:"iso";s:3:"640";s:13:"shutter_speed";s:6:"0.0125";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4341, 2871, '_wp_attached_file', '2016/09/IMG_2542-001.jpg'),
(4342, 2871, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4608;s:6:"height";i:3456;s:4:"file";s:24:"2016/09/IMG_2542-001.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"IMG_2542-001-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"IMG_2542-001-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:24:"IMG_2542-001-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:25:"IMG_2542-001-1140x855.jpg";s:5:"width";i:1140;s:6:"height";i:855;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:25:"IMG_2542-001-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:3:"3.5";s:6:"credit";s:0:"";s:6:"camera";s:24:"Canon PowerShot A2400 IS";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1474022852";s:9:"copyright";s:0:"";s:12:"focal_length";s:5:"8.673";s:3:"iso";s:3:"125";s:13:"shutter_speed";s:5:"0.025";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(4358, 2918, '_search', ', '),
(4359, 2918, '_menu_item_type', 'post_type'),
(4360, 2918, '_menu_item_menu_item_parent', '2111'),
(4361, 2918, '_menu_item_object_id', '300'),
(4362, 2918, '_menu_item_object', 'page'),
(4363, 2918, '_menu_item_target', ''),
(4364, 2918, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4365, 2918, '_menu_item_xfn', ''),
(4366, 2918, '_menu_item_url', ''),
(4370, 2922, '_wp_attached_file', '2016/09/UPR-report-e1476081201329.jpg'),
(4371, 2922, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:376;s:4:"file";s:37:"2016/09/UPR-report-e1476081201329.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"UPR-report-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:22:"UPR-report-768x452.jpg";s:5:"width";i:768;s:6:"height";i:452;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"UPR-report-879x500.jpg";s:5:"width";i:879;s:6:"height";i:500;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:{}}}'),
(4567, 2951, '_search', 'Auto Draft, '),
(4568, 2951, '_edit_last', '5'),
(4569, 2951, '_wp_page_template', 'default'),
(4570, 2951, '_edit_lock', '1475554159:5'),
(4583, 170, '_edit_lock', '1482917842:6'),
(4584, 2955, '_search', 'TestMichelle, '),
(4585, 2955, '_edit_last', '5'),
(4586, 2955, '_edit_lock', '1484026511:6'),
(4596, 2958, '_search', 'Job Opportunities, '),
(4597, 2958, '_edit_lock', '1475555007:5'),
(4598, 2958, '_edit_last', '5'),
(4599, 2958, '_wp_page_template', 'default'),
(4623, 2965, '_search', 'Job Opportunities, '),
(4624, 2965, '_edit_lock', '1475560021:5'),
(4625, 2965, '_edit_last', '5'),
(4626, 2965, '_wp_page_template', 'default'),
(4627, 2967, '_search', 'Join Us, '),
(4628, 2967, '_menu_item_type', 'custom'),
(4629, 2967, '_menu_item_menu_item_parent', '0'),
(4630, 2967, '_menu_item_object_id', '2967'),
(4631, 2967, '_menu_item_object', 'custom'),
(4632, 2967, '_menu_item_target', ''),
(4633, 2967, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4634, 2967, '_menu_item_xfn', ''),
(4635, 2967, '_menu_item_url', '#'),
(4636, 2968, '_search', 'Jobs, '),
(4637, 2968, '_menu_item_type', 'post_type'),
(4638, 2968, '_menu_item_menu_item_parent', '2967'),
(4639, 2968, '_menu_item_object_id', '1955'),
(4640, 2968, '_menu_item_object', 'page'),
(4641, 2968, '_menu_item_target', ''),
(4642, 2968, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4643, 2968, '_menu_item_xfn', ''),
(4644, 2968, '_menu_item_url', ''),
(4655, 2971, '_search', 'Auto Draft, '),
(4656, 2971, '_edit_last', '5'),
(4657, 2971, '_wp_page_template', 'default'),
(4658, 2971, '_edit_lock', '1475555312:5'),
(4659, 2973, '_search', 'test, '),
(4660, 2973, '_edit_last', '5'),
(4661, 2973, '_edit_lock', '1484026483:6'),
(4671, 2976, '_search', 'Internships, '),
(4672, 2976, '_menu_item_type', 'post_type'),
(4673, 2976, '_menu_item_menu_item_parent', '2967'),
(4674, 2976, '_menu_item_object_id', '2032'),
(4675, 2976, '_menu_item_object', 'page'),
(4676, 2976, '_menu_item_target', ''),
(4677, 2976, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(4678, 2976, '_menu_item_xfn', ''),
(4679, 2976, '_menu_item_url', ''),
(4681, 2979, '_search', 'Auto Draft, '),
(4682, 2979, '_edit_last', '5'),
(4683, 2979, '_wp_page_template', 'default'),
(4684, 2979, '_edit_lock', '1482916759:6'),
(4685, 2989, '_wp_attached_file', '2016/10/14555975_10157448683120307_589429913_n-e1475564121734.jpg'),
(4686, 2989, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:816;s:6:"height";i:520;s:4:"file";s:65:"2016/10/14555975_10157448683120307_589429913_n-e1475564121734.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:63:"14555975_10157448683120307_589429913_n-e1475564121734-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:65:"14555975_10157448683120307_589429913_n-e1475564121734-768x489.jpg";s:5:"width";i:768;s:6:"height";i:489;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:65:"14555975_10157448683120307_589429913_n-e1475564121734-816x500.jpg";s:5:"width";i:816;s:6:"height";i:500;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:{}}}'),
(4687, 2990, '_wp_attached_file', '2016/10/14555558_10157448681250307_1824900953_n.jpg'),
(4688, 2990, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:51:"2016/10/14555558_10157448681250307_1824900953_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:49:"14555558_10157448681250307_1824900953_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"14555558_10157448681250307_1824900953_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:51:"14555558_10157448681250307_1824900953_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4689, 2991, '_wp_attached_file', '2016/10/12141059_1155701617782398_7635159891832070421_o.jpg'),
(4690, 2991, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:720;s:4:"file";s:59:"2016/10/12141059_1155701617782398_7635159891832070421_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12141059_1155701617782398_7635159891832070421_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:60:"12141059_1155701617782398_7635159891832070421_o-1140x641.jpg";s:5:"width";i:1140;s:6:"height";i:641;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12141059_1155701617782398_7635159891832070421_o-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:60:"12141059_1155701617782398_7635159891832070421_o-1140x641.jpg";s:5:"width";i:1140;s:6:"height";i:641;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"12141059_1155701617782398_7635159891832070421_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4691, 2992, '_wp_attached_file', '2016/10/12717821_1132756900076870_5762799772999519120_n.jpg'),
(4692, 2992, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/10/12717821_1132756900076870_5762799772999519120_n.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"12717821_1132756900076870_5762799772999519120_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"12717821_1132756900076870_5762799772999519120_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"12717821_1132756900076870_5762799772999519120_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4709, 2989, '_wp_attachment_backup_sizes', 'a:4:{s:9:"full-orig";a:3:{s:5:"width";i:960;s:6:"height";i:540;s:4:"file";s:42:"14555975_10157448683120307_589429913_n.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:48:"14555975_10157448683120307_589429913_n-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:50:"14555975_10157448683120307_589429913_n-768x432.jpg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:50:"14555975_10157448683120307_589429913_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4717, 3022, '_search', 'Focus On Life, '),
(4718, 3022, '_edit_lock', '1482389321:6'),
(4719, 3022, '_edit_last', '6'),
(4720, 3022, 'event', 'a:4:{s:10:"event_from";s:10:"11-10-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"6.00 PM";s:14:"event_time_end";s:7:"8.00 PM";}'),
(4721, 3022, '_order', '1476144000'),
(4722, 3022, '_finito', '1476230399'),
(4723, 3023, '_wp_attached_file', '2016/10/Screen-Shot-2016-10-07-at-10.28.39.png'),
(4724, 3023, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:300;s:6:"height";i:241;s:4:"file";s:46:"2016/10/Screen-Shot-2016-10-07-at-10.28.39.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-10-07-at-10.28.39-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4725, 3024, '_wp_attached_file', '2016/10/Press-con-7.jpg'),
(4726, 3024, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1024;s:6:"height";i:683;s:4:"file";s:23:"2016/10/Press-con-7.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"Press-con-7-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:23:"Press-con-7-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:24:"Press-con-7-1024x500.jpg";s:5:"width";i:1024;s:6:"height";i:500;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:{}}}'),
(4729, 3027, '_wp_attached_file', '2016/10/journalism.gif'),
(4730, 3027, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:956;s:6:"height";i:523;s:4:"file";s:22:"2016/10/journalism.gif";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"journalism-90x90.gif";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/gif";}s:12:"medium_large";a:4:{s:4:"file";s:22:"journalism-768x420.gif";s:5:"width";i:768;s:6:"height";i:420;s:9:"mime-type";s:9:"image/gif";}s:14:"post-thumbnail";a:4:{s:4:"file";s:22:"journalism-956x500.gif";s:5:"width";i:956;s:6:"height";i:500;s:9:"mime-type";s:9:"image/gif";}}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:{}}}'),
(4734, 3029, '_wp_attached_file', '2016/10/shutterstock_156379598.jpg'),
(4735, 3029, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:5237;s:6:"height";i:3491;s:4:"file";s:34:"2016/10/shutterstock_156379598.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"shutterstock_156379598-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:35:"shutterstock_156379598-1140x760.jpg";s:5:"width";i:1140;s:6:"height";i:760;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:34:"shutterstock_156379598-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:35:"shutterstock_156379598-1140x760.jpg";s:5:"width";i:1140;s:6:"height";i:760;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:35:"shutterstock_156379598-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4736, 3030, '_wp_attached_file', '2016/10/Screen-Shot-2016-10-07-at-10.58.35.png'),
(4737, 3030, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:758;s:6:"height";i:520;s:4:"file";s:46:"2016/10/Screen-Shot-2016-10-07-at-10.58.35.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-10-07-at-10.58.35-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:46:"Screen-Shot-2016-10-07-at-10.58.35-758x500.png";s:5:"width";i:758;s:6:"height";i:500;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:{}}}'),
(4759, 3038, '_wp_attached_file', '2016/10/Asia-Centre-Map-update-1.jpg'),
(4760, 3038, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1063;s:6:"height";i:650;s:4:"file";s:36:"2016/10/Asia-Centre-Map-update-1.jpg";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Asia-Centre-Map-update-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:36:"Asia-Centre-Map-update-1-768x470.jpg";s:5:"width";i:768;s:6:"height";i:470;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:37:"Asia-Centre-Map-update-1-1063x500.jpg";s:5:"width";i:1063;s:6:"height";i:500;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:{}}}'),
(4761, 3038, '_edit_lock', '1475814150:6'),
(4765, 3038, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(4766, 3038, '_yoast_wpseo_focuskw', 'Asia Centre, Location, Phayathai Plaza, BTS Phayathai, Meeting room rental'),
(4767, 3038, '_yoast_wpseo_linkdex', '65'),
(4774, 2922, '_wp_attachment_backup_sizes', 'a:2:{s:9:"full-orig";a:3:{s:5:"width";i:879;s:6:"height";i:517;s:4:"file";s:14:"UPR-report.jpg";}s:18:"full-1476081201329";a:3:{s:5:"width";i:640;s:6:"height";i:376;s:4:"file";s:29:"UPR-report-e1476081173859.jpg";}}'),
(4775, 3048, '_wp_attached_file', '2016/10/Internship-1.jpg'),
(4776, 3048, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:24:"2016/10/Internship-1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:22:"Internship-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4785, 2840, '_edit_lock', '1476085155:6'),
(4786, 2840, '_edit_last', '6'),
(4787, 2803, '_edit_lock', '1476085440:6'),
(4788, 2803, '_edit_last', '6'),
(4791, 3054, '_wp_attached_file', '2016/10/Asia-Centre-Space1.jpg'),
(4792, 3054, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:30:"2016/10/Asia-Centre-Space1.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"Asia-Centre-Space1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4793, 3022, '_wp_old_slug', 'asean-the-death-penalty-behind-the-shutter'),
(4794, 2854, '_wp_attachment_backup_sizes', 'a:1:{s:9:"full-orig";a:3:{s:5:"width";i:879;s:6:"height";i:517;s:4:"file";s:16:"Internship-1.jpg";}}'),
(4795, 3057, '_wp_attached_file', '2016/10/US-election.jpg'),
(4796, 3057, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:23:"2016/10/US-election.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:21:"US-election-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4797, 1918, '_yoast_wpseo_metadesc', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20m away from BTS Phayathai.'),
(4798, 328, '_yoast_wpseo_focuskw_text_input', 'Asia Centre, Address, Think-Tank, Academic & Society Hub, Meeting Space, Partner for Joint Project'),
(4799, 328, '_yoast_wpseo_focuskw', 'Asia Centre, Address, Think-Tank, Academic & Society Hub, Meeting Space, Partner for Joint Project'),
(4800, 328, '_yoast_wpseo_linkdex', '31'),
(4801, 320, '_yoast_wpseo_metadesc', 'ABOUT The Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions.'),
(4802, 2435, '_edit_lock', '1482986816:6'),
(4803, 2435, '_edit_last', '6'),
(4804, 2092, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4805, 2220, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4806, 2221, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4807, 2222, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4808, 2223, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4809, 2224, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4810, 2225, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4811, 2229, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4812, 2230, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4813, 2226, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4814, 2232, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4815, 2233, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4816, 2234, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4817, 2235, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4818, 2236, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4819, 2246, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4820, 2227, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4821, 2238, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4822, 2237, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4823, 2239, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4824, 2240, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4825, 2245, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4826, 2228, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4827, 2093, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4828, 2020, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4829, 2021, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4832, 1967, '_yoast_wpseo_metadesc', 'Meeting Space Available for private meetings, conferences, training workshops, networking sessions'),
(4833, 1967, '_wp_old_slug', 'spaces'),
(4834, 2516, '_wp_attachment_image_alt', 'meeting room rental'),
(4835, 3054, '_wp_attachment_image_alt', 'meeting room rental bts'),
(4836, 3057, '_wp_attachment_image_alt', 'asia centre'),
(4838, 3062, '_wp_attached_file', '2016/10/hbs-logo-separate2.jpg'),
(4839, 3062, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:798;s:6:"height";i:589;s:4:"file";s:30:"2016/10/hbs-logo-separate2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"hbs-logo-separate2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:30:"hbs-logo-separate2-600x443.jpg";s:5:"width";i:600;s:6:"height";i:443;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:30:"hbs-logo-separate2-768x567.jpg";s:5:"width";i:768;s:6:"height";i:567;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:30:"hbs-logo-separate2-798x500.jpg";s:5:"width";i:798;s:6:"height";i:500;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:{}}}'),
(4841, 3064, '_search', 'Spark Sessions: An Alternative Networking Event, '),
(4842, 3064, '_edit_lock', '1482915409:6'),
(4843, 3064, '_edit_last', '6'),
(4844, 3065, '_wp_attached_file', '2016/11/14918847_1326888830663675_4103291665663509381_o.jpg'),
(4845, 3065, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2048;s:6:"height";i:1570;s:4:"file";s:59:"2016/11/14918847_1326888830663675_4103291665663509381_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"14918847_1326888830663675_4103291665663509381_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:59:"14918847_1326888830663675_4103291665663509381_o-600x460.jpg";s:5:"width";i:600;s:6:"height";i:460;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14918847_1326888830663675_4103291665663509381_o-768x589.jpg";s:5:"width";i:768;s:6:"height";i:589;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14918847_1326888830663675_4103291665663509381_o-783x600.jpg";s:5:"width";i:783;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14918847_1326888830663675_4103291665663509381_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4846, 3064, '_order', '1480032000'),
(4847, 3064, '_finito', '1480118399'),
(4848, 3064, 'event', 'a:4:{s:10:"event_from";s:10:"25-11-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"6.00 PM";s:14:"event_time_end";s:7:"8.00 PM";}'),
(4849, 3066, '_wp_attached_file', '2016/11/Screen-Shot-2016-11-03-at-16.26.44.png'),
(4850, 3066, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:606;s:6:"height";i:220;s:4:"file";s:46:"2016/11/Screen-Shot-2016-11-03-at-16.26.44.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-11-03-at-16.26.44-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:46:"Screen-Shot-2016-11-03-at-16.26.44-600x218.png";s:5:"width";i:600;s:6:"height";i:218;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:{}}}'),
(4851, 3068, '_wp_attached_file', '2016/11/Screen-Shot-2016-11-03-at-16.46.31.png'),
(4852, 3068, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:631;s:6:"height";i:147;s:4:"file";s:46:"2016/11/Screen-Shot-2016-11-03-at-16.46.31.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:44:"Screen-Shot-2016-11-03-at-16.46.31-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:46:"Screen-Shot-2016-11-03-at-16.46.31-600x140.png";s:5:"width";i:600;s:6:"height";i:140;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:{}}}'),
(4853, 3069, '_wp_attached_file', '2016/11/facebook-like-share-ss-1920.png'),
(4854, 3069, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1080;s:4:"file";s:39:"2016/11/facebook-like-share-ss-1920.png";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"facebook-like-share-ss-1920-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:39:"facebook-like-share-ss-1920-600x338.png";s:5:"width";i:600;s:6:"height";i:338;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:39:"facebook-like-share-ss-1920-768x432.png";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:39:"facebook-like-share-ss-1920-800x450.png";s:5:"width";i:800;s:6:"height";i:450;s:9:"mime-type";s:9:"image/png";}s:14:"post-thumbnail";a:4:{s:4:"file";s:40:"facebook-like-share-ss-1920-1140x500.png";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4855, 3070, '_wp_attached_file', '2016/11/register-now-button55286.png'),
(4856, 3070, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:782;s:6:"height";i:167;s:4:"file";s:36:"2016/11/register-now-button55286.png";s:5:"sizes";a:3:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"register-now-button55286-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:36:"register-now-button55286-600x128.png";s:5:"width";i:600;s:6:"height";i:128;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:36:"register-now-button55286-768x164.png";s:5:"width";i:768;s:6:"height";i:164;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:{}}}'),
(4864, 3075, '_search', 'National Human Rights Institutions in Southeast Asia: Challenges of Protection, '),
(4865, 3075, '_edit_lock', '1484623085:5'),
(4866, 3075, '_edit_last', '5'),
(4867, 3076, '_wp_attached_file', '2016/11/NHRI-Conference-Call-Asia-Centre-.jpg'),
(4868, 3076, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:45:"2016/11/NHRI-Conference-Call-Asia-Centre-.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:43:"NHRI-Conference-Call-Asia-Centre--90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:45:"NHRI-Conference-Call-Asia-Centre--339x480.jpg";s:5:"width";i:339;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:46:"NHRI-Conference-Call-Asia-Centre--768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"NHRI-Conference-Call-Asia-Centre--424x600.jpg";s:5:"width";i:424;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:46:"NHRI-Conference-Call-Asia-Centre--1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4869, 3075, '_order', '1499904000'),
(4870, 3075, '_finito', '1500076799'),
(4871, 3075, 'event', 'a:4:{s:10:"event_from";s:10:"13-07-2017";s:8:"event_to";s:10:"14-07-2017";s:16:"event_time_start";s:0:"";s:14:"event_time_end";s:0:"";}'),
(4872, 3077, '_wp_attached_file', '2016/11/NHRI-Conference-Call-Asia-Centre-.pdf'),
(4873, 3078, '_wp_attached_file', '2016/11/NHRI-Conference-Call-Asia-Centre-1-1.jpg'),
(4874, 3078, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:48:"2016/11/NHRI-Conference-Call-Asia-Centre-1-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"NHRI-Conference-Call-Asia-Centre-1-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:48:"NHRI-Conference-Call-Asia-Centre-1-1-339x480.jpg";s:5:"width";i:339;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:49:"NHRI-Conference-Call-Asia-Centre-1-1-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:48:"NHRI-Conference-Call-Asia-Centre-1-1-424x600.jpg";s:5:"width";i:424;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:49:"NHRI-Conference-Call-Asia-Centre-1-1-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4875, 3075, '_wp_old_slug', 'national-human-rights-institutions-in-southeast-asia-challenges-of-protection'),
(4876, 3080, '_wp_attached_file', '2016/11/NHRI-Conference-Call-Asia-Centre-1-2.jpg'),
(4877, 3080, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:48:"2016/11/NHRI-Conference-Call-Asia-Centre-1-2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"NHRI-Conference-Call-Asia-Centre-1-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:48:"NHRI-Conference-Call-Asia-Centre-1-2-339x480.jpg";s:5:"width";i:339;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:49:"NHRI-Conference-Call-Asia-Centre-1-2-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:48:"NHRI-Conference-Call-Asia-Centre-1-2-424x600.jpg";s:5:"width";i:424;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:49:"NHRI-Conference-Call-Asia-Centre-1-2-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4878, 3081, '_wp_attached_file', '2016/11/NHRI-Conference-Call-Asia-Centre-1-3.jpg'),
(4879, 3081, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:48:"2016/11/NHRI-Conference-Call-Asia-Centre-1-3.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:46:"NHRI-Conference-Call-Asia-Centre-1-3-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:48:"NHRI-Conference-Call-Asia-Centre-1-3-339x480.jpg";s:5:"width";i:339;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:49:"NHRI-Conference-Call-Asia-Centre-1-3-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:48:"NHRI-Conference-Call-Asia-Centre-1-3-424x600.jpg";s:5:"width";i:424;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:49:"NHRI-Conference-Call-Asia-Centre-1-3-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4881, 3084, '_wp_attached_file', '2016/11/visa-mastercard-paypal.png'),
(4882, 3084, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:605;s:6:"height";i:117;s:4:"file";s:34:"2016/11/visa-mastercard-paypal.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:32:"visa-mastercard-paypal-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:34:"visa-mastercard-paypal-600x116.png";s:5:"width";i:600;s:6:"height";i:116;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:{}}}'),
(4883, 3085, '_search', 'Media &#038; Communications Workshop, '),
(4884, 3085, '_edit_lock', '1482912076:6'),
(4885, 3085, '_edit_last', '5'),
(4886, 3086, '_wp_attached_file', '2016/11/Professional-skills.png'),
(4887, 3086, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:594;s:6:"height";i:336;s:4:"file";s:31:"2016/11/Professional-skills.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:29:"Professional-skills-90x90.png";s:5:"width";i:90;s:6:"height";i:90;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:{}}}'),
(4888, 3085, '_order', '1483920000'),
(4889, 3085, '_finito', '1484956799'),
(4890, 3085, 'event', 'a:4:{s:10:"event_from";s:10:"09-01-2017";s:8:"event_to";s:10:"20-01-2017";s:16:"event_time_start";s:0:"";s:14:"event_time_end";s:0:"";}'),
(4891, 3087, '_wp_attached_file', '2016/11/Media-Comms-Workshop-Poster.jpg'),
(4892, 3087, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:39:"2016/11/Media-Comms-Workshop-Poster.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:37:"Media-Comms-Workshop-Poster-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:39:"Media-Comms-Workshop-Poster-339x480.jpg";s:5:"width";i:339;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:40:"Media-Comms-Workshop-Poster-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:39:"Media-Comms-Workshop-Poster-424x600.jpg";s:5:"width";i:424;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:40:"Media-Comms-Workshop-Poster-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4893, 3088, '_wp_attached_file', '2016/11/15146880_10157669480405307_331213641_o.jpg'),
(4894, 3088, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:50:"2016/11/15146880_10157669480405307_331213641_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:48:"15146880_10157669480405307_331213641_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:50:"15146880_10157669480405307_331213641_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"15146880_10157669480405307_331213641_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"15146880_10157669480405307_331213641_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:51:"15146880_10157669480405307_331213641_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4895, 3089, '_wp_attached_file', '2016/11/14500703_10210243375978781_116785850124513616_o.jpg'),
(4896, 3089, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:948;s:4:"file";s:59:"2016/11/14500703_10210243375978781_116785850124513616_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"14500703_10210243375978781_116785850124513616_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:59:"14500703_10210243375978781_116785850124513616_o-600x444.jpg";s:5:"width";i:600;s:6:"height";i:444;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14500703_10210243375978781_116785850124513616_o-768x569.jpg";s:5:"width";i:768;s:6:"height";i:569;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14500703_10210243375978781_116785850124513616_o-800x593.jpg";s:5:"width";i:800;s:6:"height";i:593;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14500703_10210243375978781_116785850124513616_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4897, 3090, '_wp_attached_file', '2016/11/14352502_1286411821378043_4165059938118413393_o.jpg'),
(4898, 3090, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1920;s:6:"height";i:1076;s:4:"file";s:59:"2016/11/14352502_1286411821378043_4165059938118413393_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:57:"14352502_1286411821378043_4165059938118413393_o-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:59:"14352502_1286411821378043_4165059938118413393_o-600x336.jpg";s:5:"width";i:600;s:6:"height";i:336;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14352502_1286411821378043_4165059938118413393_o-768x430.jpg";s:5:"width";i:768;s:6:"height";i:430;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14352502_1286411821378043_4165059938118413393_o-800x448.jpg";s:5:"width";i:800;s:6:"height";i:448;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14352502_1286411821378043_4165059938118413393_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4899, 3092, '_wp_attached_file', '2016/11/Draft2weekProgramme-week-1.jpg'),
(4900, 3092, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1752;s:6:"height";i:1237;s:4:"file";s:38:"2016/11/Draft2weekProgramme-week-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Draft2weekProgramme-week-1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:38:"Draft2weekProgramme-week-1-600x424.jpg";s:5:"width";i:600;s:6:"height";i:424;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:38:"Draft2weekProgramme-week-1-768x542.jpg";s:5:"width";i:768;s:6:"height";i:542;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:38:"Draft2weekProgramme-week-1-800x565.jpg";s:5:"width";i:800;s:6:"height";i:565;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:39:"Draft2weekProgramme-week-1-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4901, 3093, '_wp_attached_file', '2016/11/Draft2weekProgramme-Week-2.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(4902, 3093, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1448;s:6:"height";i:589;s:4:"file";s:38:"2016/11/Draft2weekProgramme-Week-2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:36:"Draft2weekProgramme-Week-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:38:"Draft2weekProgramme-Week-2-600x244.jpg";s:5:"width";i:600;s:6:"height";i:244;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:38:"Draft2weekProgramme-Week-2-768x312.jpg";s:5:"width";i:768;s:6:"height";i:312;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:38:"Draft2weekProgramme-Week-2-800x325.jpg";s:5:"width";i:800;s:6:"height";i:325;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:39:"Draft2weekProgramme-Week-2-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4903, 3094, '_wp_attached_file', '2016/11/Programme-Week-1-.jpg'),
(4904, 3094, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1453;s:6:"height";i:608;s:4:"file";s:29:"2016/11/Programme-Week-1-.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"Programme-Week-1--90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:29:"Programme-Week-1--600x251.jpg";s:5:"width";i:600;s:6:"height";i:251;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:29:"Programme-Week-1--768x321.jpg";s:5:"width";i:768;s:6:"height";i:321;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:29:"Programme-Week-1--800x335.jpg";s:5:"width";i:800;s:6:"height";i:335;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:30:"Programme-Week-1--1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4905, 3095, '_wp_attached_file', '2016/11/Programme-Week-2.jpg'),
(4906, 3095, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1455;s:6:"height";i:593;s:4:"file";s:28:"2016/11/Programme-Week-2.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:26:"Programme-Week-2-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:28:"Programme-Week-2-600x245.jpg";s:5:"width";i:600;s:6:"height";i:245;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:28:"Programme-Week-2-768x313.jpg";s:5:"width";i:768;s:6:"height";i:313;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:28:"Programme-Week-2-800x326.jpg";s:5:"width";i:800;s:6:"height";i:326;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:29:"Programme-Week-2-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4908, 3097, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable, '),
(4909, 3097, '_edit_lock', '1482915879:6'),
(4910, 3097, '_edit_last', '6'),
(4911, 3098, '_wp_attached_file', '2016/11/FB-Poster-e1480055488282.jpg'),
(4912, 3098, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1754;s:6:"height";i:1083;s:4:"file";s:36:"2016/11/FB-Poster-e1480055488282.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"FB-Poster-e1480055488282-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:36:"FB-Poster-e1480055488282-600x370.jpg";s:5:"width";i:600;s:6:"height";i:370;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:36:"FB-Poster-e1480055488282-768x474.jpg";s:5:"width";i:768;s:6:"height";i:474;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:36:"FB-Poster-e1480055488282-800x494.jpg";s:5:"width";i:800;s:6:"height";i:494;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:37:"FB-Poster-e1480055488282-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4913, 3098, '_wp_attachment_backup_sizes', 'a:6:{s:9:"full-orig";a:3:{s:5:"width";i:1754;s:6:"height";i:1239;s:4:"file";s:13:"FB-Poster.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:19:"FB-Poster-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:11:"medium-orig";a:4:{s:4:"file";s:21:"FB-Poster-600x424.jpg";s:5:"width";i:600;s:6:"height";i:424;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:21:"FB-Poster-768x543.jpg";s:5:"width";i:768;s:6:"height";i:543;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:21:"FB-Poster-800x565.jpg";s:5:"width";i:800;s:6:"height";i:565;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:22:"FB-Poster-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4914, 3097, '_order', '1484697600'),
(4915, 3097, '_finito', '1484783999'),
(4916, 3097, 'event', 'a:4:{s:10:"event_from";s:10:"18-01-2017";s:8:"event_to";s:0:"";s:16:"event_time_start";s:6:"3:00PM";s:14:"event_time_end";s:6:"5.00PM";}'),
(4918, 3101, '_wp_attached_file', '2016/11/Benedict.jpg'),
(4919, 3101, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:400;s:4:"file";s:20:"2016/11/Benedict.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"Benedict-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:"Benedict-600x300.jpg";s:5:"width";i:600;s:6:"height";i:300;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"Benedict-768x384.jpg";s:5:"width";i:768;s:6:"height";i:384;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"Benedict-800x400.jpg";s:5:"width";i:800;s:6:"height";i:400;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:{}}}'),
(4920, 3102, '_wp_attached_file', '2016/11/Space-Service.jpg'),
(4921, 3102, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:25:"2016/11/Space-Service.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Space-Service-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:25:"Space-Service-600x254.jpg";s:5:"width";i:600;s:6:"height";i:254;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:{}}}'),
(4922, 3103, '_wp_attached_file', '2016/11/Space-Service-u-shape.jpg'),
(4923, 3103, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:33:"2016/11/Space-Service-u-shape.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"Space-Service-u-shape-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"Space-Service-u-shape-600x254.jpg";s:5:"width";i:600;s:6:"height";i:254;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:{}}}'),
(4928, 3106, '_wp_attached_file', '2016/07/silvia1.jpg'),
(4929, 3106, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:666;s:6:"height";i:367;s:4:"file";s:19:"2016/07/silvia1.jpg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:17:"silvia1-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"silvia1-600x331.jpg";s:5:"width";i:600;s:6:"height";i:331;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:{}}}'),
(4930, 3108, '_wp_attached_file', '2016/07/Anna.jpg'),
(4931, 3108, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:923;s:6:"height";i:521;s:4:"file";s:16:"2016/07/Anna.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:14:"Anna-90x90.jpg";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:16:"Anna-600x339.jpg";s:5:"width";i:600;s:6:"height";i:339;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:16:"Anna-768x434.jpg";s:5:"width";i:768;s:6:"height";i:434;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:16:"Anna-800x452.jpg";s:5:"width";i:800;s:6:"height";i:452;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:16:"Anna-923x500.jpg";s:5:"width";i:923;s:6:"height";i:500;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:{}}}'),
(4938, 3114, '_wp_attached_file', '2016/11/Internship2-1-e1482504544312.png'),
(4939, 3114, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:40:"2016/11/Internship2-1-e1482504544312.png";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:23:"Internship2-1-90x90.png";s:5:"width";i:90;s:6:"height";i:90;s:9:"mime-type";s:9:"image/png";}s:6:"medium";a:4:{s:4:"file";s:25:"Internship2-1-600x254.png";s:5:"width";i:600;s:6:"height";i:254;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:{}}}'),
(4946, 3122, '_search', 'Spark Sessions #1, '),
(4947, 3122, '_edit_lock', '1484108790:6'),
(4948, 3122, '_edit_last', '6'),
(4949, 3123, '_wp_attached_file', '2016/12/15156782_1351360481549843_698629161919147508_o.jpg'),
(4950, 3123, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1125;s:6:"height";i:750;s:4:"file";s:58:"2016/12/15156782_1351360481549843_698629161919147508_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:58:"15156782_1351360481549843_698629161919147508_o-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:58:"15156782_1351360481549843_698629161919147508_o-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:58:"15156782_1351360481549843_698629161919147508_o-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:58:"15156782_1351360481549843_698629161919147508_o-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"15156782_1351360481549843_698629161919147508_o-1125x500.jpg";s:5:"width";i:1125;s:6:"height";i:500;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:{}}}'),
(4951, 3124, '_wp_attached_file', '2016/12/15156988_1351353301550561_1408357164730697893_o.jpg'),
(4952, 3124, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1125;s:6:"height";i:750;s:4:"file";s:59:"2016/12/15156988_1351353301550561_1408357164730697893_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15156988_1351353301550561_1408357164730697893_o-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:59:"15156988_1351353301550561_1408357164730697893_o-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15156988_1351353301550561_1408357164730697893_o-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15156988_1351353301550561_1408357164730697893_o-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"15156988_1351353301550561_1408357164730697893_o-1125x500.jpg";s:5:"width";i:1125;s:6:"height";i:500;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:{}}}'),
(4953, 3125, '_wp_attached_file', '2016/12/15168807_1351353578217200_4300539616157149004_o.jpg'),
(4954, 3125, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1125;s:6:"height";i:750;s:4:"file";s:59:"2016/12/15168807_1351353578217200_4300539616157149004_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15168807_1351353578217200_4300539616157149004_o-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:59:"15168807_1351353578217200_4300539616157149004_o-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15168807_1351353578217200_4300539616157149004_o-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15168807_1351353578217200_4300539616157149004_o-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"15168807_1351353578217200_4300539616157149004_o-1125x500.jpg";s:5:"width";i:1125;s:6:"height";i:500;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:{}}}'),
(4955, 3126, '_wp_attached_file', '2016/12/15181264_1350490221636869_5106384943070841109_n.jpg'),
(4956, 3126, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:640;s:4:"file";s:59:"2016/12/15181264_1350490221636869_5106384943070841109_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15181264_1350490221636869_5106384943070841109_n-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:59:"15181264_1350490221636869_5106384943070841109_n-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15181264_1350490221636869_5106384943070841109_n-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15181264_1350490221636869_5106384943070841109_n-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"15181264_1350490221636869_5106384943070841109_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4957, 3127, '_wp_attached_file', '2016/12/15181600_1350490241636867_8475522455204204596_n.jpg'),
(4958, 3127, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:640;s:4:"file";s:59:"2016/12/15181600_1350490241636867_8475522455204204596_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15181600_1350490241636867_8475522455204204596_n-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:59:"15181600_1350490241636867_8475522455204204596_n-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15181600_1350490241636867_8475522455204204596_n-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15181600_1350490241636867_8475522455204204596_n-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"15181600_1350490241636867_8475522455204204596_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(4959, 3128, '_wp_attached_file', '2016/12/15196018_1351322344886990_3955904930894907268_o.jpg'),
(4960, 3128, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1125;s:6:"height";i:750;s:4:"file";s:59:"2016/12/15196018_1351322344886990_3955904930894907268_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15196018_1351322344886990_3955904930894907268_o-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:59:"15196018_1351322344886990_3955904930894907268_o-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15196018_1351322344886990_3955904930894907268_o-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15196018_1351322344886990_3955904930894907268_o-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"15196018_1351322344886990_3955904930894907268_o-1125x500.jpg";s:5:"width";i:1125;s:6:"height";i:500;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:{}}}'),
(4961, 3129, '_wp_attached_file', '2016/12/15259434_1351367304882494_5002218302385985273_o-e1481078906319.jpg'),
(4962, 3129, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:748;s:6:"height";i:970;s:4:"file";s:74:"2016/12/15259434_1351367304882494_5002218302385985273_o-e1481078906319.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:74:"15259434_1351367304882494_5002218302385985273_o-e1481078906319-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:74:"15259434_1351367304882494_5002218302385985273_o-e1481078906319-370x480.jpg";s:5:"width";i:370;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:74:"15259434_1351367304882494_5002218302385985273_o-e1481078906319-463x600.jpg";s:5:"width";i:463;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:74:"15259434_1351367304882494_5002218302385985273_o-e1481078906319-748x500.jpg";s:5:"width";i:748;s:6:"height";i:500;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:{}}}'),
(4967, 3129, '_wp_attachment_backup_sizes', 'a:5:{s:9:"full-orig";a:3:{s:5:"width";i:750;s:6:"height";i:1125;s:4:"file";s:51:"15259434_1351367304882494_5002218302385985273_o.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:59:"15259434_1351367304882494_5002218302385985273_o-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:11:"medium-orig";a:4:{s:4:"file";s:59:"15259434_1351367304882494_5002218302385985273_o-320x480.jpg";s:5:"width";i:320;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:59:"15259434_1351367304882494_5002218302385985273_o-400x600.jpg";s:5:"width";i:400;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:59:"15259434_1351367304882494_5002218302385985273_o-750x500.jpg";s:5:"width";i:750;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(4981, 3143, '_search', 'Working with People-Centred Processes: Art, Education &#038; Cross-Sector Collaboration, '),
(4982, 3143, '_edit_lock', '1482491721:6'),
(4983, 3143, '_edit_last', '6'),
(4984, 3144, '_wp_attached_file', '2016/12/14589755_1311994662153092_7340181278133205742_o.jpg'),
(4985, 3144, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:59:"2016/12/14589755_1311994662153092_7340181278133205742_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14589755_1311994662153092_7340181278133205742_o-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:59:"14589755_1311994662153092_7340181278133205742_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14589755_1311994662153092_7340181278133205742_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14589755_1311994662153092_7340181278133205742_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14589755_1311994662153092_7340181278133205742_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4986, 3145, '_wp_attached_file', '2016/12/14707860_1311994488819776_1913222299521839638_o.jpg'),
(4987, 3145, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:59:"2016/12/14707860_1311994488819776_1913222299521839638_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14707860_1311994488819776_1913222299521839638_o-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:59:"14707860_1311994488819776_1913222299521839638_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14707860_1311994488819776_1913222299521839638_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14707860_1311994488819776_1913222299521839638_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14707860_1311994488819776_1913222299521839638_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4988, 3146, '_wp_attached_file', '2016/12/14707879_1311999012152657_482260863634705887_o.jpg'),
(4989, 3146, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:58:"2016/12/14707879_1311999012152657_482260863634705887_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:58:"14707879_1311999012152657_482260863634705887_o-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:58:"14707879_1311999012152657_482260863634705887_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:58:"14707879_1311999012152657_482260863634705887_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:58:"14707879_1311999012152657_482260863634705887_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"14707879_1311999012152657_482260863634705887_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4990, 3147, '_wp_attached_file', '2016/12/14712526_1312000232152535_4203790086106565751_o.jpg'),
(4991, 3147, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:59:"2016/12/14712526_1312000232152535_4203790086106565751_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14712526_1312000232152535_4203790086106565751_o-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:59:"14712526_1312000232152535_4203790086106565751_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14712526_1312000232152535_4203790086106565751_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14712526_1312000232152535_4203790086106565751_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14712526_1312000232152535_4203790086106565751_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4992, 3148, '_wp_attached_file', '2016/12/14713050_1311999748819250_592687443407512587_o.jpg'),
(4993, 3148, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:58:"2016/12/14713050_1311999748819250_592687443407512587_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:58:"14713050_1311999748819250_592687443407512587_o-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:58:"14713050_1311999748819250_592687443407512587_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:58:"14713050_1311999748819250_592687443407512587_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:58:"14713050_1311999748819250_592687443407512587_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"14713050_1311999748819250_592687443407512587_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(4994, 3149, '_wp_attached_file', '2016/12/14753653_1311997018819523_7032149555602221993_o.jpg'),
(4995, 3149, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:836;s:4:"file";s:59:"2016/12/14753653_1311997018819523_7032149555602221993_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14753653_1311997018819523_7032149555602221993_o-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:59:"14753653_1311997018819523_7032149555602221993_o-600x392.jpg";s:5:"width";i:600;s:6:"height";i:392;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14753653_1311997018819523_7032149555602221993_o-768x502.jpg";s:5:"width";i:768;s:6:"height";i:502;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14753653_1311997018819523_7032149555602221993_o-800x523.jpg";s:5:"width";i:800;s:6:"height";i:523;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14753653_1311997018819523_7032149555602221993_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5006, 3156, '_wp_attached_file', '2016/12/14449052_10210243376938805_9012318743256930180_n.jpg'),
(5007, 3156, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:539;s:6:"height";i:960;s:4:"file";s:60:"2016/12/14449052_10210243376938805_9012318743256930180_n.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:60:"14449052_10210243376938805_9012318743256930180_n-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:60:"14449052_10210243376938805_9012318743256930180_n-270x480.jpg";s:5:"width";i:270;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:60:"14449052_10210243376938805_9012318743256930180_n-337x600.jpg";s:5:"width";i:337;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14449052_10210243376938805_9012318743256930180_n-539x500.jpg";s:5:"width";i:539;s:6:"height";i:500;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:{}}}'),
(5008, 3157, '_search', 'Media &#038; Communications Workshop 2016, '),
(5009, 3157, '_edit_lock', '1482489548:6'),
(5010, 3157, '_edit_last', '6'),
(5011, 3158, '_wp_attached_file', '2016/12/14364622_1283840524968506_3090058256514272589_n.jpg'),
(5012, 3158, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/12/14364622_1283840524968506_3090058256514272589_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14364622_1283840524968506_3090058256514272589_n-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:59:"14364622_1283840524968506_3090058256514272589_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14364622_1283840524968506_3090058256514272589_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14364622_1283840524968506_3090058256514272589_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"14364622_1283840524968506_3090058256514272589_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5013, 3159, '_wp_attached_file', '2016/12/15356032_10157758692690307_796600347_n.jpg'),
(5014, 3159, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:50:"2016/12/15356032_10157758692690307_796600347_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"15356032_10157758692690307_796600347_n-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:50:"15356032_10157758692690307_796600347_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"15356032_10157758692690307_796600347_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"15356032_10157758692690307_796600347_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"15356032_10157758692690307_796600347_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5015, 3160, '_wp_attached_file', '2016/12/15356811_10157758692670307_1596376328_n.jpg'),
(5016, 3160, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:51:"2016/12/15356811_10157758692670307_1596376328_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:51:"15356811_10157758692670307_1596376328_n-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:51:"15356811_10157758692670307_1596376328_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"15356811_10157758692670307_1596376328_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:51:"15356811_10157758692670307_1596376328_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:51:"15356811_10157758692670307_1596376328_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5017, 3161, '_wp_attached_file', '2016/12/15397589_10157758692590307_1481510794_o.jpg'),
(5018, 3161, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:51:"2016/12/15397589_10157758692590307_1481510794_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:51:"15397589_10157758692590307_1481510794_o-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:51:"15397589_10157758692590307_1481510794_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"15397589_10157758692590307_1481510794_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:51:"15397589_10157758692590307_1481510794_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:52:"15397589_10157758692590307_1481510794_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5029, 3169, '_search', 'UN human rights review is largely toothless – but it’s giving a boost to Asian civil society groups, '),
(5030, 3169, '_edit_lock', '1482914564:6'),
(5031, 3169, '_edit_last', '6'),
(5036, 3174, '_search', 'Asia Centre Facilitates Focus On Life Discussion, '),
(5037, 3174, '_edit_lock', '1482489271:6'),
(5038, 3174, '_edit_last', '6'),
(5039, 3175, '_wp_attached_file', '2016/12/14680837_1305365772815981_4734870401466601176_o.jpg'),
(5040, 3175, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:736;s:4:"file";s:59:"2016/12/14680837_1305365772815981_4734870401466601176_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14680837_1305365772815981_4734870401466601176_o-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:59:"14680837_1305365772815981_4734870401466601176_o-600x345.jpg";s:5:"width";i:600;s:6:"height";i:345;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14680837_1305365772815981_4734870401466601176_o-768x442.jpg";s:5:"width";i:768;s:6:"height";i:442;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14680837_1305365772815981_4734870401466601176_o-800x460.jpg";s:5:"width";i:800;s:6:"height";i:460;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14680837_1305365772815981_4734870401466601176_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5041, 3176, '_wp_attached_file', '2016/12/14692067_1305368372815721_7421157843130629890_o.jpg'),
(5042, 3176, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:59:"2016/12/14692067_1305368372815721_7421157843130629890_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14692067_1305368372815721_7421157843130629890_o-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:59:"14692067_1305368372815721_7421157843130629890_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14692067_1305368372815721_7421157843130629890_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14692067_1305368372815721_7421157843130629890_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"14692067_1305368372815721_7421157843130629890_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5043, 3177, '_wp_attached_file', '2016/12/14695353_1305366036149288_9123102683788276967_n.jpg'),
(5044, 3177, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/12/14695353_1305366036149288_9123102683788276967_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14695353_1305366036149288_9123102683788276967_n-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:59:"14695353_1305366036149288_9123102683788276967_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14695353_1305366036149288_9123102683788276967_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14695353_1305366036149288_9123102683788276967_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"14695353_1305366036149288_9123102683788276967_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5045, 3178, '_wp_attached_file', '2016/12/14725642_1305365979482627_6934809242565258751_n.jpg'),
(5046, 3178, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:720;s:6:"height";i:960;s:4:"file";s:59:"2016/12/14725642_1305365979482627_6934809242565258751_n.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14725642_1305365979482627_6934809242565258751_n-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:59:"14725642_1305365979482627_6934809242565258751_n-360x480.jpg";s:5:"width";i:360;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14725642_1305365979482627_6934809242565258751_n-450x600.jpg";s:5:"width";i:450;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"14725642_1305365979482627_6934809242565258751_n-720x500.jpg";s:5:"width";i:720;s:6:"height";i:500;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:{}}}'),
(5047, 3190, '_wp_attached_file', '2016/12/15000245_1333205466698678_6490108670422864360_o.jpg'),
(5048, 3190, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:838;s:4:"file";s:59:"2016/12/15000245_1333205466698678_6490108670422864360_o.jpg";s:5:"sizes";a:0:{}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5049, 3191, '_wp_attached_file', '2016/12/15016445_1333205746698650_8976982019918068679_o.jpg'),
(5050, 3191, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:994;s:4:"file";s:59:"2016/12/15016445_1333205746698650_8976982019918068679_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15016445_1333205746698650_8976982019918068679_o-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:59:"15016445_1333205746698650_8976982019918068679_o-600x466.jpg";s:5:"width";i:600;s:6:"height";i:466;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15016445_1333205746698650_8976982019918068679_o-768x596.jpg";s:5:"width";i:768;s:6:"height";i:596;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15016445_1333205746698650_8976982019918068679_o-773x600.jpg";s:5:"width";i:773;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"15016445_1333205746698650_8976982019918068679_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5051, 3192, '_wp_attached_file', '2016/12/15039482_1333205440032014_2138696706444697529_o.jpg'),
(5052, 3192, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:59:"2016/12/15039482_1333205440032014_2138696706444697529_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15039482_1333205440032014_2138696706444697529_o-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:59:"15039482_1333205440032014_2138696706444697529_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15039482_1333205440032014_2138696706444697529_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15039482_1333205440032014_2138696706444697529_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"15039482_1333205440032014_2138696706444697529_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5053, 3193, '_search', 'The 2016 US Elections: Change At Last?, '),
(5054, 3193, '_edit_lock', '1482489169:6'),
(5055, 3193, '_edit_last', '6'),
(5058, 3196, '_wp_attached_file', '2016/12/NHRI-Conference-Call-Asia-Centre-.jpg'),
(5059, 3196, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:45:"2016/12/NHRI-Conference-Call-Asia-Centre-.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:45:"NHRI-Conference-Call-Asia-Centre--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:45:"NHRI-Conference-Call-Asia-Centre--339x480.jpg";s:5:"width";i:339;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:46:"NHRI-Conference-Call-Asia-Centre--768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:45:"NHRI-Conference-Call-Asia-Centre--424x600.jpg";s:5:"width";i:424;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:46:"NHRI-Conference-Call-Asia-Centre--1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5063, 3200, '_wp_attached_file', '2016/12/15167658_1351371914882033_7900735831384572977_o.jpg');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5064, 3200, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1125;s:6:"height";i:750;s:4:"file";s:59:"2016/12/15167658_1351371914882033_7900735831384572977_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15167658_1351371914882033_7900735831384572977_o-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:59:"15167658_1351371914882033_7900735831384572977_o-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15167658_1351371914882033_7900735831384572977_o-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15167658_1351371914882033_7900735831384572977_o-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:60:"15167658_1351371914882033_7900735831384572977_o-1125x500.jpg";s:5:"width";i:1125;s:6:"height";i:500;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:{}}}'),
(5065, 3201, '_wp_attached_file', '2016/12/15194347_1351369458215612_864402045354347617_o.jpg'),
(5066, 3201, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1125;s:6:"height";i:750;s:4:"file";s:58:"2016/12/15194347_1351369458215612_864402045354347617_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:58:"15194347_1351369458215612_864402045354347617_o-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:58:"15194347_1351369458215612_864402045354347617_o-600x400.jpg";s:5:"width";i:600;s:6:"height";i:400;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:58:"15194347_1351369458215612_864402045354347617_o-768x512.jpg";s:5:"width";i:768;s:6:"height";i:512;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:58:"15194347_1351369458215612_864402045354347617_o-800x533.jpg";s:5:"width";i:800;s:6:"height";i:533;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"15194347_1351369458215612_864402045354347617_o-1125x500.jpg";s:5:"width";i:1125;s:6:"height";i:500;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:{}}}'),
(5067, 3202, '_wp_attached_file', '2016/12/15591783_10157819886335307_1814133035_n.jpg'),
(5068, 3202, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:238;s:6:"height";i:267;s:4:"file";s:51:"2016/12/15591783_10157819886335307_1814133035_n.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:51:"15591783_10157819886335307_1814133035_n-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5069, 3206, '_wp_attached_file', '2016/12/Woodier-e1481886453190.jpg'),
(5070, 3206, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:2740;s:6:"height";i:2939;s:4:"file";s:34:"2016/12/Woodier-e1481886453190.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:34:"Woodier-e1481886453190-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:34:"Woodier-e1481886453190-447x480.jpg";s:5:"width";i:447;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:34:"Woodier-e1481886453190-768x824.jpg";s:5:"width";i:768;s:6:"height";i:824;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:34:"Woodier-e1481886453190-559x600.jpg";s:5:"width";i:559;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:35:"Woodier-e1481886453190-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5071, 3206, '_edit_lock', '1481886727:5'),
(5072, 3206, '_wp_attachment_backup_sizes', 'a:6:{s:9:"full-orig";a:3:{s:5:"width";i:2784;s:6:"height";i:4184;s:4:"file";s:11:"Woodier.jpg";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:19:"Woodier-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:11:"medium-orig";a:4:{s:4:"file";s:19:"Woodier-319x480.jpg";s:5:"width";i:319;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:17:"medium_large-orig";a:4:{s:4:"file";s:20:"Woodier-768x1154.jpg";s:5:"width";i:768;s:6:"height";i:1154;s:9:"mime-type";s:10:"image/jpeg";}s:10:"large-orig";a:4:{s:4:"file";s:19:"Woodier-399x600.jpg";s:5:"width";i:399;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:19:"post-thumbnail-orig";a:4:{s:4:"file";s:20:"Woodier-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}'),
(5075, 3214, '_wp_attached_file', '2016/10/14717235_1305365989482626_7800097046532877793_n.jpg'),
(5076, 3214, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2016/10/14717235_1305365989482626_7800097046532877793_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"14717235_1305365989482626_7800097046532877793_n-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:59:"14717235_1305365989482626_7800097046532877793_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"14717235_1305365989482626_7800097046532877793_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"14717235_1305365989482626_7800097046532877793_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"14717235_1305365989482626_7800097046532877793_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5080, 3219, '_wp_attached_file', '2016/12/IMG_20160922_101844.jpg'),
(5081, 3219, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4160;s:6:"height";i:2336;s:4:"file";s:31:"2016/12/IMG_20160922_101844.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:31:"IMG_20160922_101844-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:"IMG_20160922_101844-600x337.jpg";s:5:"width";i:600;s:6:"height";i:337;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:31:"IMG_20160922_101844-768x431.jpg";s:5:"width";i:768;s:6:"height";i:431;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:31:"IMG_20160922_101844-800x449.jpg";s:5:"width";i:800;s:6:"height";i:449;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:32:"IMG_20160922_101844-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"2";s:6:"credit";s:6:"Picasa";s:6:"camera";s:7:"CHC-U01";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1474539525";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"3.79";s:3:"iso";s:3:"100";s:13:"shutter_speed";s:18:"0.0043859649122807";s:5:"title";s:0:"";s:11:"orientation";s:1:"0";s:8:"keywords";a:0:{}}}'),
(5082, 3220, '_wp_attached_file', '2016/12/IMG_20160922_101630_1.jpg'),
(5083, 3220, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:4160;s:6:"height";i:2336;s:4:"file";s:33:"2016/12/IMG_20160922_101630_1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:33:"IMG_20160922_101630_1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:33:"IMG_20160922_101630_1-600x337.jpg";s:5:"width";i:600;s:6:"height";i:337;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:33:"IMG_20160922_101630_1-768x431.jpg";s:5:"width";i:768;s:6:"height";i:431;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:33:"IMG_20160922_101630_1-800x449.jpg";s:5:"width";i:800;s:6:"height";i:449;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:34:"IMG_20160922_101630_1-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"2";s:6:"credit";s:0:"";s:6:"camera";s:7:"CHC-U01";s:7:"caption";s:0:"";s:17:"created_timestamp";s:10:"1474539392";s:9:"copyright";s:0:"";s:12:"focal_length";s:4:"3.79";s:3:"iso";s:4:"1140";s:13:"shutter_speed";s:4:"0.04";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5084, 3221, '_wp_attached_file', '2016/12/14914826_10202859464004726_798943903_n.jpg'),
(5085, 3221, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:711;s:4:"file";s:50:"2016/12/14914826_10202859464004726_798943903_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"14914826_10202859464004726_798943903_n-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:50:"14914826_10202859464004726_798943903_n-600x444.jpg";s:5:"width";i:600;s:6:"height";i:444;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"14914826_10202859464004726_798943903_n-768x569.jpg";s:5:"width";i:768;s:6:"height";i:569;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"14914826_10202859464004726_798943903_n-800x593.jpg";s:5:"width";i:800;s:6:"height";i:593;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"14914826_10202859464004726_798943903_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5086, 3222, '_wp_attached_file', '2016/12/14886183_10202859479245107_1525629335_n.jpg'),
(5087, 3222, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:51:"2016/12/14886183_10202859479245107_1525629335_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:51:"14886183_10202859479245107_1525629335_n-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:51:"14886183_10202859479245107_1525629335_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"14886183_10202859479245107_1525629335_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:51:"14886183_10202859479245107_1525629335_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:51:"14886183_10202859479245107_1525629335_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5088, 3223, '_wp_attached_file', '2016/12/14875254_10202859471524914_416256527_n.jpg'),
(5089, 3223, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:711;s:4:"file";s:50:"2016/12/14875254_10202859471524914_416256527_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"14875254_10202859471524914_416256527_n-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:50:"14875254_10202859471524914_416256527_n-600x444.jpg";s:5:"width";i:600;s:6:"height";i:444;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"14875254_10202859471524914_416256527_n-768x569.jpg";s:5:"width";i:768;s:6:"height";i:569;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"14875254_10202859471524914_416256527_n-800x593.jpg";s:5:"width";i:800;s:6:"height";i:593;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"14875254_10202859471524914_416256527_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(5110, 2240, '_edit_lock', '1482384495:6'),
(5111, 2229, '_edit_lock', '1482384514:6'),
(5113, 1751, '_search', 'facebook, '),
(5127, 320, '_yoast_wpseo_focuskw_text_input', 'About Asia Centre, Service, educational enterprise, collaborative, social enterprise'),
(5128, 320, '_yoast_wpseo_focuskw', 'About Asia Centre, Service, educational enterprise, collaborative, social enterprise'),
(5129, 320, '_yoast_wpseo_linkdex', '42'),
(5130, 328, '_oembed_b5d60b410c57812b5ee1c31dc43ab7e6', '<iframe width="700" height="394" src="https://www.youtube.com/embed/4C9FyF-HR40?feature=oembed" frameborder="0" allowfullscreen></iframe>'),
(5131, 328, '_oembed_time_b5d60b410c57812b5ee1c31dc43ab7e6', '1482402991'),
(5132, 3233, '_search', 'Spark Sessions: An Alternative Networking Event (past event), '),
(5133, 3233, '_edit_lock', '1482819495:6'),
(5134, 3233, '_edit_last', '6'),
(5142, 2096, 'event', '4'),
(5143, 3241, '_search', 'home page 08, '),
(5144, 3241, '_edit_lock', '1484029610:6'),
(5145, 3241, '_edit_last', '6'),
(5146, 3242, '_search', ', '),
(5147, 3242, '_menu_item_type', 'taxonomy'),
(5148, 3242, '_menu_item_menu_item_parent', '0'),
(5149, 3242, '_menu_item_object_id', '239'),
(5150, 3242, '_menu_item_object', 'category'),
(5151, 3242, '_menu_item_target', ''),
(5152, 3242, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5153, 3242, '_menu_item_xfn', ''),
(5154, 3242, '_menu_item_url', ''),
(5157, 3122, '_thumbnail_id', '3126'),
(5162, 3193, '_thumbnail_id', '3190'),
(5165, 3190, '_wp_attachment_backup_sizes', 'a:2:{s:9:"full-orig";a:3:{s:5:"width";i:1280;s:6:"height";i:838;s:4:"file";s:51:"15000245_1333205466698678_6490108670422864360_o.jpg";}s:18:"full-1482489265131";a:3:{s:5:"width";i:400;s:6:"height";i:262;s:4:"file";s:66:"15000245_1333205466698678_6490108670422864360_o-e1482489113209.jpg";}}'),
(5170, 3174, '_thumbnail_id', '3177'),
(5174, 3157, '_thumbnail_id', '3219'),
(5179, 2864, '_thumbnail_id', '2866'),
(5182, 3143, '_thumbnail_id', '3149'),
(5191, 3253, '_search', 'Media and Communications Workshop, '),
(5192, 3253, '_edit_lock', '1482986053:6'),
(5193, 3253, '_edit_last', '6'),
(5194, 3253, '_thumbnail_id', '3221'),
(5195, 3255, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-1.jpg'),
(5196, 3255, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:593;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-1.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-1-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-1-600x445.jpg";s:5:"width";i:600;s:6:"height";i:445;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-1-768x569.jpg";s:5:"width";i:768;s:6:"height";i:569;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-1-800x593.jpg";s:5:"width";i:800;s:6:"height";i:593;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-1-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;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:{}}}'),
(5197, 3256, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-2.jpg'),
(5198, 3256, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-2.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-2-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-2-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-2-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-2-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;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:{}}}'),
(5199, 3257, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-3.jpg'),
(5200, 3257, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:593;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-3.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-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:53:"media-communication-workshop-asiacentre-3-600x445.jpg";s:5:"width";i:600;s:6:"height";i:445;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-3-768x569.jpg";s:5:"width";i:768;s:6:"height";i:569;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-3-800x593.jpg";s:5:"width";i:800;s:6:"height";i:593;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-3-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;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:{}}}'),
(5201, 3258, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-4.jpg'),
(5202, 3258, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:449;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-4.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-4-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:53:"media-communication-workshop-asiacentre-4-600x337.jpg";s:5:"width";i:600;s:6:"height";i:337;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-4-768x431.jpg";s:5:"width";i:768;s:6:"height";i:431;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-4-800x449.jpg";s:5:"width";i:800;s:6:"height";i:449;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:{}}}'),
(5203, 3259, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-5.jpg'),
(5204, 3259, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:449;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-5.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-5-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:53:"media-communication-workshop-asiacentre-5-600x337.jpg";s:5:"width";i:600;s:6:"height";i:337;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-5-768x431.jpg";s:5:"width";i:768;s:6:"height";i:431;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-5-800x449.jpg";s:5:"width";i:800;s:6:"height";i:449;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:{}}}'),
(5205, 3260, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-6.jpg'),
(5206, 3260, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-6.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-6-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:53:"media-communication-workshop-asiacentre-6-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-6-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-6-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;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:{}}}'),
(5207, 3261, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-7.jpg'),
(5208, 3261, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-7.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-7-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:53:"media-communication-workshop-asiacentre-7-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-7-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-7-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;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:{}}}'),
(5209, 3262, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-8.jpg'),
(5210, 3262, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-8.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-8-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:53:"media-communication-workshop-asiacentre-8-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-8-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-8-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;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:{}}}'),
(5211, 3263, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-9.jpg'),
(5212, 3263, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:600;s:4:"file";s:53:"2016/12/media-communication-workshop-asiacentre-9.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-9-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:53:"media-communication-workshop-asiacentre-9-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-9-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:53:"media-communication-workshop-asiacentre-9-800x500.jpg";s:5:"width";i:800;s:6:"height";i:500;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:{}}}'),
(5213, 3264, '_wp_attached_file', '2016/12/media-communication-workshop-asiacentre-10.jpg'),
(5214, 3264, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:337;s:6:"height";i:600;s:4:"file";s:54:"2016/12/media-communication-workshop-asiacentre-10.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:54:"media-communication-workshop-asiacentre-10-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:54:"media-communication-workshop-asiacentre-10-270x480.jpg";s:5:"width";i:270;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:54:"media-communication-workshop-asiacentre-10-337x600.jpg";s:5:"width";i:337;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:54:"media-communication-workshop-asiacentre-10-337x500.jpg";s:5:"width";i:337;s:6:"height";i:500;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:{}}}'),
(5215, 3255, '_edit_lock', '1482500501:6'),
(5216, 3255, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5217, 3255, '_edit_last', '6'),
(5218, 3258, '_edit_lock', '1482500565:6'),
(5219, 3258, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5220, 3258, '_edit_last', '6'),
(5221, 3261, '_edit_lock', '1482500686:6'),
(5222, 3261, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5223, 3261, '_edit_last', '6'),
(5224, 3264, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5225, 3263, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5226, 3262, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5227, 3260, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5228, 3259, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5229, 3257, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5230, 3256, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5231, 3223, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5232, 3222, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5233, 3221, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5234, 3220, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5235, 3219, '_wp_attachment_image_alt', 'Asia Centre''s Media and Communication Workshop'),
(5236, 3214, '_wp_attachment_image_alt', 'Asia Centre Facilitates Focus On Life Discussion'),
(5237, 3114, '_wp_attachment_backup_sizes', 'a:1:{s:9:"full-orig";a:3:{s:5:"width";i:640;s:6:"height";i:271;s:4:"file";s:17:"Internship2-1.png";}}'),
(5238, 3265, '_wp_attached_file', '2016/12/asiacentre-media-communication-workshop.png'),
(5239, 3265, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:400;s:4:"file";s:51:"2016/12/asiacentre-media-communication-workshop.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:51:"asiacentre-media-communication-workshop-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:51:"asiacentre-media-communication-workshop-600x300.png";s:5:"width";i:600;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:51:"asiacentre-media-communication-workshop-768x384.png";s:5:"width";i:768;s:6:"height";i:384;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:51:"asiacentre-media-communication-workshop-800x400.png";s:5:"width";i:800;s:6:"height";i:400;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:{}}}'),
(5240, 3265, '_wp_attachment_image_alt', 'asiacentre-media-communication-workshop'),
(5241, 3101, '_edit_lock', '1482505628:6'),
(5242, 3101, '_edit_last', '6'),
(5243, 3101, '_wp_attachment_image_alt', 'asiacentre-event-roundtable-Benedict-Anderson'),
(5260, 2471, '_thumbnail_id', '3379'),
(5261, 2471, '_wp_old_slug', 'space-gallery-1'),
(5264, 3273, '_search', 'social media, '),
(5265, 3273, '_edit_lock', '1482907280:6'),
(5266, 3273, '_edit_last', '6'),
(5268, 3301, '_search', 'Management Team-1, '),
(5269, 3301, '_edit_lock', '1482916972:6'),
(5270, 3301, '_edit_last', '6'),
(5271, 3301, '_wp_page_template', 'default'),
(5272, 3325, '_search', ', '),
(5273, 3325, '_menu_item_type', 'taxonomy'),
(5274, 3325, '_menu_item_menu_item_parent', '0'),
(5275, 3325, '_menu_item_object_id', '236'),
(5276, 3325, '_menu_item_object', 'events'),
(5277, 3325, '_menu_item_target', ''),
(5278, 3325, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5279, 3325, '_menu_item_xfn', ''),
(5280, 3325, '_menu_item_url', ''),
(5281, 3325, '_menu_item_orphaned', '1482809213'),
(5282, 3326, '_search', ', '),
(5283, 3326, '_menu_item_type', 'taxonomy'),
(5284, 3326, '_menu_item_menu_item_parent', '0'),
(5285, 3326, '_menu_item_object_id', '235'),
(5286, 3326, '_menu_item_object', 'events'),
(5287, 3326, '_menu_item_target', ''),
(5288, 3326, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5289, 3326, '_menu_item_xfn', ''),
(5290, 3326, '_menu_item_url', ''),
(5291, 3326, '_menu_item_orphaned', '1482809213'),
(5292, 3327, '_search', ', '),
(5293, 3327, '_menu_item_type', 'taxonomy'),
(5294, 3327, '_menu_item_menu_item_parent', '0'),
(5295, 3327, '_menu_item_object_id', '211'),
(5296, 3327, '_menu_item_object', 'events'),
(5297, 3327, '_menu_item_target', ''),
(5298, 3327, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5299, 3327, '_menu_item_xfn', ''),
(5300, 3327, '_menu_item_url', ''),
(5301, 3327, '_menu_item_orphaned', '1482809213'),
(5302, 3328, '_search', ', '),
(5303, 3328, '_menu_item_type', 'custom'),
(5304, 3328, '_menu_item_menu_item_parent', '0'),
(5305, 3328, '_menu_item_object_id', '3328'),
(5306, 3328, '_menu_item_object', 'custom'),
(5307, 3328, '_menu_item_target', ''),
(5308, 3328, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5309, 3328, '_menu_item_xfn', ''),
(5310, 3328, '_menu_item_url', 'http://asiacentre.co.th/wp-admin/themes.php?page=vpt_option#social_media_sites'),
(5311, 3328, '_menu_item_orphaned', '1482809610'),
(5312, 3329, '_search', 'Social Media, '),
(5313, 3329, '_menu_item_type', 'custom'),
(5314, 3329, '_menu_item_menu_item_parent', '0'),
(5315, 3329, '_menu_item_object_id', '3329'),
(5316, 3329, '_menu_item_object', 'custom'),
(5317, 3329, '_menu_item_target', ''),
(5318, 3329, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5319, 3329, '_menu_item_xfn', ''),
(5320, 3329, '_menu_item_url', 'http://asiacentre.co.th/wp-admin/themes.php?page=vpt_option#social_media_sites'),
(5325, 3341, '_search', ', '),
(5326, 3341, '_menu_item_type', 'post_type'),
(5327, 3341, '_menu_item_menu_item_parent', '0'),
(5328, 3341, '_menu_item_object_id', '39'),
(5329, 3341, '_menu_item_object', 'page'),
(5330, 3341, '_menu_item_target', ''),
(5331, 3341, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5332, 3341, '_menu_item_xfn', ''),
(5333, 3341, '_menu_item_url', ''),
(5347, 3346, '_search', 'Academic Services, '),
(5348, 3346, '_edit_lock', '1482821508:6'),
(5349, 3346, '_edit_last', '6'),
(5350, 3346, '_wp_page_template', 'default'),
(5351, 3348, '_search', ', '),
(5352, 3348, '_menu_item_type', 'post_type'),
(5353, 3348, '_menu_item_menu_item_parent', '3487'),
(5354, 3348, '_menu_item_object_id', '3346'),
(5355, 3348, '_menu_item_object', 'page'),
(5356, 3348, '_menu_item_target', ''),
(5357, 3348, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5358, 3348, '_menu_item_xfn', ''),
(5359, 3348, '_menu_item_url', ''),
(5360, 3349, '_search', 'NGO Services, '),
(5361, 3349, '_edit_lock', '1484026450:6'),
(5362, 3349, '_edit_last', '6'),
(5363, 3349, '_wp_page_template', 'default'),
(5364, 3351, '_search', 'Professional Development Services, '),
(5365, 3351, '_edit_lock', '1482821571:6'),
(5366, 3351, '_edit_last', '6'),
(5367, 3351, '_wp_page_template', 'default'),
(5368, 3353, '_search', 'Expert Advisory Service, '),
(5369, 3353, '_edit_lock', '1482821602:6'),
(5370, 3353, '_edit_last', '6'),
(5371, 3353, '_wp_page_template', 'default'),
(5400, 3362, '_search', 'Getting to Asia Centre, '),
(5401, 3362, '_menu_item_type', 'custom'),
(5402, 3362, '_menu_item_menu_item_parent', '0'),
(5403, 3362, '_menu_item_object_id', '3362'),
(5404, 3362, '_menu_item_object', 'custom'),
(5405, 3362, '_menu_item_target', ''),
(5406, 3362, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5407, 3362, '_menu_item_xfn', ''),
(5408, 3362, '_menu_item_url', 'https://www.youtube.com/watch?v=OAC9DUyNVeM'),
(5410, 3363, '_search', ', '),
(5411, 3363, '_menu_item_type', 'post_type'),
(5412, 3363, '_menu_item_menu_item_parent', '0'),
(5413, 3363, '_menu_item_object_id', '39'),
(5414, 3363, '_menu_item_object', 'page'),
(5415, 3363, '_menu_item_target', ''),
(5416, 3363, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5417, 3363, '_menu_item_xfn', ''),
(5418, 3363, '_menu_item_url', ''),
(5420, 3364, '_search', ', '),
(5421, 3364, '_menu_item_type', 'post_type'),
(5422, 3364, '_menu_item_menu_item_parent', '0'),
(5423, 3364, '_menu_item_object_id', '2064'),
(5424, 3364, '_menu_item_object', 'page'),
(5425, 3364, '_menu_item_target', ''),
(5426, 3364, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5427, 3364, '_menu_item_xfn', ''),
(5428, 3364, '_menu_item_url', ''),
(5444, 3369, '_search', ', '),
(5445, 3369, '_menu_item_type', 'taxonomy'),
(5446, 3369, '_menu_item_menu_item_parent', '0'),
(5447, 3369, '_menu_item_object_id', '248'),
(5448, 3369, '_menu_item_object', 'espresso_event_categories'),
(5449, 3369, '_menu_item_target', ''),
(5450, 3369, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5451, 3369, '_menu_item_xfn', ''),
(5452, 3369, '_menu_item_url', ''),
(5453, 3369, '_menu_item_orphaned', '1482829007'),
(5511, 3377, '_search', ', '),
(5512, 3377, '_edit_last', '6'),
(5513, 3377, 'event', 'a:4:{s:10:"event_from";s:0:"";s:8:"event_to";s:0:"";s:16:"event_time_start";s:0:"";s:14:"event_time_end";s:0:"";}'),
(5514, 3377, '_edit_lock', '1484041127:6'),
(5525, 3379, '_wp_attached_file', '2016/12/Ben1-asiacentre-event-space.jpeg'),
(5526, 3379, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1159;s:6:"height";i:652;s:4:"file";s:40:"2016/12/Ben1-asiacentre-event-space.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:40:"Ben1-asiacentre-event-space-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:40:"Ben1-asiacentre-event-space-600x338.jpeg";s:5:"width";i:600;s:6:"height";i:338;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:40:"Ben1-asiacentre-event-space-768x432.jpeg";s:5:"width";i:768;s:6:"height";i:432;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:40:"Ben1-asiacentre-event-space-800x450.jpeg";s:5:"width";i:800;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:41:"Ben1-asiacentre-event-space-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5549, 3383, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable (test), '),
(5550, 3383, '_EventOrigin', 'events-calendar'),
(5551, 3383, '_edit_lock', '1482897394:6'),
(5552, 3383, '_edit_last', '6'),
(5553, 3383, '_tribe_modified_fields', 'a:13:{s:15:"_EventStartDate";i:1482897296;s:13:"_EventEndDate";i:1482897296;s:18:"_EventStartDateUTC";i:1482897296;s:16:"_EventEndDateUTC";i:1482897296;s:14:"_EventDuration";i:1482897296;s:20:"_EventCurrencySymbol";i:1482897296;s:22:"_EventCurrencyPosition";i:1482897296;s:10:"_EventCost";i:1482897296;s:9:"_EventURL";i:1482897296;s:14:"_EventTimezone";i:1482897296;s:18:"_EventTimezoneAbbr";i:1482897296;s:12:"post_content";i:1482897296;s:13:"_thumbnail_id";i:1482897296;}'),
(5555, 3384, '_EventShowMapLink', '1'),
(5556, 3384, '_EventShowMap', '1'),
(5557, 3384, '_EventStartDate', '2017-01-18 15:00:00'),
(5558, 3384, '_EventEndDate', '2017-01-18 17:00:00'),
(5559, 3384, '_EventStartDateUTC', '2017-01-18 08:00:00'),
(5560, 3384, '_EventEndDateUTC', '2017-01-18 10:00:00'),
(5561, 3384, '_EventDuration', '7200'),
(5562, 3384, '_EventCurrencySymbol', ''),
(5563, 3384, '_EventCurrencyPosition', 'prefix'),
(5564, 3384, '_EventCost', '0'),
(5565, 3384, '_EventURL', ''),
(5566, 3384, '_EventTimezone', 'UTC+7'),
(5567, 3384, '_EventTimezoneAbbr', ''),
(5568, 3383, '_EventShowMapLink', '1'),
(5569, 3383, '_EventShowMap', '1'),
(5570, 3383, '_EventStartDate', '2017-01-18 15:00:00'),
(5571, 3383, '_EventEndDate', '2017-01-18 17:00:00'),
(5572, 3383, '_EventStartDateUTC', '2017-01-18 08:00:00'),
(5573, 3383, '_EventEndDateUTC', '2017-01-18 10:00:00'),
(5574, 3383, '_EventDuration', '7200'),
(5575, 3383, '_EventCurrencySymbol', ''),
(5576, 3383, '_EventCurrencyPosition', 'prefix'),
(5577, 3383, '_EventCost', '0'),
(5578, 3383, '_EventURL', ''),
(5579, 3383, '_EventTimezone', 'UTC+7'),
(5580, 3383, '_EventTimezoneAbbr', ''),
(5581, 3385, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable, '),
(5582, 3385, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable, '),
(5583, 3385, '_order', '1484697600'),
(5584, 3385, '_finito', '1484783999'),
(5585, 3385, 'event', 'a:4:{s:10:"event_from";s:10:"18-01-2017";s:8:"event_to";s:0:"";s:16:"event_time_start";s:6:"3:00PM";s:14:"event_time_end";s:6:"5.00PM";}'),
(5586, 3385, '_dp_original', '3097'),
(5587, 3385, '_edit_lock', '1482900544:6'),
(5588, 3386, '_wp_attached_file', '2016/12/Asia-centre-Logo.jpg'),
(5589, 3386, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:450;s:6:"height";i:452;s:4:"file";s:28:"2016/12/Asia-centre-Logo.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:28:"Asia-centre-Logo-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5590, 3387, '_wp_attached_file', '2016/12/Asia-Centre-Logo-Flat-Color.jpg'),
(5591, 3387, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:450;s:6:"height";i:452;s:4:"file";s:39:"2016/12/Asia-Centre-Logo-Flat-Color.jpg";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:39:"Asia-Centre-Logo-Flat-Color-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}}s:10:"image_meta";a:12:{s:8:"aperture";s:1:"0";s:6:"credit";s:0:"";s:6:"camera";s:0:"";s:7:"caption";s:0:"";s:17:"created_timestamp";s:1:"0";s:9:"copyright";s:0:"";s:12:"focal_length";s:1:"0";s:3:"iso";s:1:"0";s:13:"shutter_speed";s:1:"0";s:5:"title";s:0:"";s:11:"orientation";s:1:"1";s:8:"keywords";a:0:{}}}'),
(5592, 3388, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable (test), '),
(5593, 3389, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable, '),
(5594, 3389, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable, '),
(5595, 3389, '_search', 'Benedict Anderson  1st Anniversary Memorial Roundtable, '),
(5596, 3389, '_order', '1484697600'),
(5597, 3389, '_finito', '1484783999'),
(5598, 3389, 'event', 'a:4:{s:10:"event_from";s:10:"18-01-2017";s:8:"event_to";s:0:"";s:16:"event_time_start";s:6:"3:00PM";s:14:"event_time_end";s:6:"5.00PM";}'),
(5600, 3389, '_dp_original', '3385'),
(5601, 3389, '_edit_lock', '1482906367:6'),
(5602, 3388, '_edit_last', '6'),
(5603, 3388, '_edit_lock', '1482913768:6'),
(5605, 3388, '_wp_page_template', 'page-posts.php'),
(5636, 3394, '_wp_attached_file', '2016/12/asiacentre-logo.png'),
(5637, 3394, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:180;s:6:"height";i:180;s:4:"file";s:27:"2016/12/asiacentre-logo.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:27:"asiacentre-logo-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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:{}}}'),
(5649, 2096, 'slider', '1'),
(5650, 3399, '_search', 'Upcoming Events, '),
(5651, 3399, '_edit_lock', '1482995318:6'),
(5652, 3399, '_edit_last', '6'),
(5653, 3399, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:25:"[content_chunk id="3399"]";}'),
(5654, 3401, '_search', 'Past Events, '),
(5655, 3401, '_edit_lock', '1482908807:6'),
(5656, 3401, '_edit_last', '6'),
(5657, 3401, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:25:"[content_chunk id="3401"]";}'),
(5667, 3405, '_search', 'Spark Sessions: An Alternative Networking Event, '),
(5668, 3405, '_search', 'Spark Sessions: An Alternative Networking Event, '),
(5669, 3405, '_order', '1480032000'),
(5670, 3405, '_finito', '1480118399'),
(5671, 3405, 'event', 'a:4:{s:10:"event_from";s:10:"25-11-2016";s:8:"event_to";s:0:"";s:16:"event_time_start";s:7:"6.00 PM";s:14:"event_time_end";s:7:"8.00 PM";}'),
(5672, 3405, '_dp_original', '3064'),
(5673, 3405, '_edit_lock', '1482908591:6'),
(5674, 3405, '_edit_last', '6'),
(5675, 3401, '_wp_trash_meta_status', 'publish'),
(5676, 3401, '_wp_trash_meta_time', '1482908951'),
(5677, 3401, '_wp_desired_post_slug', 'past-events'),
(5678, 3406, '_search', 'Media &#038; Communications Workshop, '),
(5679, 3406, '_edit_last', '6'),
(5680, 3406, '_edit_lock', '1482914443:6'),
(5681, 3406, '_thumbnail_id', '3086'),
(5682, 3406, '_wp_page_template', 'page-posts.php'),
(5685, 3410, '_search', 'Benedict Anderson 1st Anniversary Memorial Roundtable, '),
(5686, 3410, '_edit_lock', '1482914084:6'),
(5687, 3410, '_edit_last', '6'),
(5688, 3169, '_thumbnail_id', '3394'),
(5691, 3411, '_search', 'Spark Sessions: An Alternative Networking Event, '),
(5692, 3411, '_edit_last', '6'),
(5693, 3411, '_edit_lock', '1482915206:6'),
(5694, 3411, '_thumbnail_id', '3127'),
(5695, 3411, '_wp_page_template', 'page-posts.php'),
(5706, 3385, '_wp_trash_meta_status', 'draft'),
(5707, 3385, '_wp_trash_meta_time', '1482915913'),
(5708, 3385, '_wp_desired_post_slug', ''),
(5709, 3410, '_wp_trash_meta_status', 'draft'),
(5710, 3410, '_wp_trash_meta_time', '1482915920'),
(5711, 3410, '_wp_desired_post_slug', ''),
(5712, 3405, '_wp_trash_meta_status', 'draft'),
(5713, 3405, '_wp_trash_meta_time', '1482915927'),
(5714, 3405, '_wp_desired_post_slug', ''),
(5715, 3389, '_wp_trash_meta_status', 'draft'),
(5716, 3389, '_wp_trash_meta_time', '1482915940'),
(5717, 3389, '_wp_desired_post_slug', ''),
(5718, 3301, '_wp_trash_meta_status', 'publish'),
(5719, 3301, '_wp_trash_meta_time', '1482917165'),
(5720, 3301, '_wp_desired_post_slug', 'management-team'),
(5731, 3415, '_search', 'Home Page-test, '),
(5732, 3415, '_search', 'Home Page-test, '),
(5733, 3415, '_search', 'Home Page-test, '),
(5734, 3415, 'hom_page_metabox', 'a:1:{s:11:"hom_section";a:2:{i:0;a:14:{s:12:"layout_style";s:1:"3";s:10:"merge_cols";s:1:"1";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:4:"even";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:0:"";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:0:"";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:17:"[slider id="318"]";}}s:7:"col_6_2";a:2:{i:0;a:1:{s:6:"sc_6_2";s:157:"[super_button label="Meeting Space" tagline="Book Now / Find out more..." color="#c96d14" link="http://asiacentre.co.th/meeting-spaces/" link_opens="_blank"]";}i:1;a:1:{s:6:"sc_6_2";s:36:"[featured_gallery gallery_id="2471"]";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}i:1;a:14:{s:12:"layout_style";s:1:"1";s:10:"merge_cols";s:1:"0";s:11:"stripe_cols";s:1:"1";s:15:"stripe_odd_even";s:4:"even";s:16:"force_background";s:1:"0";s:14:"remove_margins";s:1:"0";s:9:"section_1";a:1:{i:0;a:1:{s:7:"col_1_1";a:1:{i:0;a:1:{s:6:"sc_1_1";s:41:"[content_chunk section_title="" id="320"]";}}}}s:9:"section_2";a:1:{i:0;a:2:{s:7:"col_2_1";a:1:{i:0;a:1:{s:6:"sc_2_1";s:0:"";}}s:7:"col_2_2";a:1:{i:0;a:1:{s:6:"sc_2_2";s:0:"";}}}}s:9:"section_3";a:1:{i:0;a:3:{s:7:"col_3_1";a:1:{i:0;a:1:{s:6:"sc_3_1";s:57:"[featured_gallery section_title="Training" gallery_id=""]";}}s:7:"col_3_2";a:1:{i:0;a:1:{s:6:"sc_3_2";s:0:"";}}s:7:"col_3_3";a:1:{i:0;a:1:{s:6:"sc_3_3";s:0:"";}}}}s:9:"section_4";a:1:{i:0;a:4:{s:7:"col_4_1";a:1:{i:0;a:1:{s:6:"sc_4_1";s:0:"";}}s:7:"col_4_2";a:1:{i:0;a:1:{s:6:"sc_4_2";s:0:"";}}s:7:"col_4_3";a:1:{i:0;a:1:{s:6:"sc_4_3";s:0:"";}}s:7:"col_4_4";a:1:{i:0;a:1:{s:6:"sc_4_4";s:0:"";}}}}s:9:"section_5";a:1:{i:0;a:2:{s:7:"col_5_1";a:1:{i:0;a:1:{s:6:"sc_5_1";s:0:"";}}s:7:"col_5_2";a:1:{i:0;a:1:{s:6:"sc_5_2";s:0:"";}}}}s:9:"section_6";a:1:{i:0;a:2:{s:7:"col_6_1";a:1:{i:0;a:1:{s:6:"sc_6_1";s:0:"";}}s:7:"col_6_2";a:1:{i:0;a:1:{s:6:"sc_6_2";s:0:"";}}}}s:9:"section_7";a:1:{i:0;a:2:{s:7:"col_7_1";a:1:{i:0;a:1:{s:6:"sc_7_1";s:0:"";}}s:7:"col_7_2";a:1:{i:0;a:1:{s:6:"sc_7_2";s:0:"";}}}}s:9:"section_8";a:1:{i:0;a:2:{s:7:"col_8_1";a:1:{i:0;a:1:{s:6:"sc_8_1";s:0:"";}}s:7:"col_8_2";a:1:{i:0;a:1:{s:6:"sc_8_2";s:0:"";}}}}}}}'),
(5735, 3415, '_wp_old_slug', 'home-02'),
(5736, 3415, '_wp_old_slug', 'home-page-02');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(5737, 3415, '_yoast_wpseo_focuskw_text_input', 'Think-Tank, Academic & Society Hub, Meeting Space, Partner for Joint Projects, Conference Space Rental, Training Room Rental, Seminar Room for rent'),
(5738, 3415, '_yoast_wpseo_focuskw', 'Think-Tank, Academic & Society Hub, Meeting Space, Partner for Joint Projects, Conference Space Rental, Training Room Rental, Seminar Room for rent'),
(5739, 3415, '_yoast_wpseo_title', 'Asia Centre | Think-Tank, Academic & Civil Society Hub, Meeting Space'),
(5740, 3415, '_yoast_wpseo_metadesc', 'Asia Centre is an independent think- tank and networking hub for academia and civil society in the region.-Asia Centre, Bangkok, Thailand'),
(5741, 3415, '_yoast_wpseo_linkdex', '36'),
(5742, 3415, '_dp_original', '316'),
(5743, 3415, '_edit_lock', '1484029593:6'),
(5744, 3415, '_edit_last', '6'),
(5745, 3416, '_wp_attached_file', '2016/12/asiacentre-internship-1.png'),
(5746, 3416, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:400;s:4:"file";s:35:"2016/12/asiacentre-internship-1.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:35:"asiacentre-internship-1-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:35:"asiacentre-internship-1-600x300.png";s:5:"width";i:600;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:35:"asiacentre-internship-1-768x384.png";s:5:"width";i:768;s:6:"height";i:384;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:35:"asiacentre-internship-1-800x400.png";s:5:"width";i:800;s:6:"height";i:400;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:{}}}'),
(5751, 318, '_thumbnail_id', '3421'),
(5756, 3421, '_wp_attached_file', '2016/12/Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report.png'),
(5757, 3421, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:400;s:4:"file";s:72:"2016/12/Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:72:"Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report-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:72:"Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report-600x300.png";s:5:"width";i:600;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:72:"Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report-768x384.png";s:5:"width";i:768;s:6:"height";i:384;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:72:"Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report-800x400.png";s:5:"width";i:800;s:6:"height";i:400;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:{}}}'),
(5762, 3424, '_wp_attached_file', '2016/12/asiacentre-media-communication-workshop-2.png'),
(5763, 3424, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:400;s:4:"file";s:53:"2016/12/asiacentre-media-communication-workshop-2.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:53:"asiacentre-media-communication-workshop-2-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:53:"asiacentre-media-communication-workshop-2-600x300.png";s:5:"width";i:600;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:53:"asiacentre-media-communication-workshop-2-768x384.png";s:5:"width";i:768;s:6:"height";i:384;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:53:"asiacentre-media-communication-workshop-2-800x400.png";s:5:"width";i:800;s:6:"height";i:400;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:{}}}'),
(5764, 3425, '_wp_attached_file', '2016/12/asiacentre-conference-NHRI-extended.png'),
(5765, 3425, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:400;s:4:"file";s:47:"2016/12/asiacentre-conference-NHRI-extended.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:47:"asiacentre-conference-NHRI-extended-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:47:"asiacentre-conference-NHRI-extended-600x300.png";s:5:"width";i:600;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:47:"asiacentre-conference-NHRI-extended-768x384.png";s:5:"width";i:768;s:6:"height";i:384;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:47:"asiacentre-conference-NHRI-extended-800x400.png";s:5:"width";i:800;s:6:"height";i:400;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:{}}}'),
(5766, 3426, '_wp_attached_file', '2016/12/job-oppornunities-hiring-digitalmarketing-communication-officer-1.png'),
(5767, 3426, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:800;s:6:"height";i:400;s:4:"file";s:77:"2016/12/job-oppornunities-hiring-digitalmarketing-communication-officer-1.png";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:77:"job-oppornunities-hiring-digitalmarketing-communication-officer-1-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:77:"job-oppornunities-hiring-digitalmarketing-communication-officer-1-600x300.png";s:5:"width";i:600;s:6:"height";i:300;s:9:"mime-type";s:9:"image/png";}s:12:"medium_large";a:4:{s:4:"file";s:77:"job-oppornunities-hiring-digitalmarketing-communication-officer-1-768x384.png";s:5:"width";i:768;s:6:"height";i:384;s:9:"mime-type";s:9:"image/png";}s:5:"large";a:4:{s:4:"file";s:77:"job-oppornunities-hiring-digitalmarketing-communication-officer-1-800x400.png";s:5:"width";i:800;s:6:"height";i:400;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:{}}}'),
(5799, 3428, '_search', 'UPR Conference, '),
(5800, 3428, '_edit_lock', '1484907373:6'),
(5801, 3428, '_edit_last', '6'),
(5802, 3429, '_wp_attached_file', '2016/12/image1.jpeg'),
(5803, 3429, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:19:"2016/12/image1.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image1-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image1-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image1-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image1-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image1-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5804, 3430, '_wp_attached_file', '2016/12/image2.jpeg'),
(5805, 3430, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:19:"2016/12/image2.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image2-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image2-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image2-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image2-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image2-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5806, 3431, '_wp_attached_file', '2016/12/image3.jpeg'),
(5807, 3431, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:19:"2016/12/image3.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image3-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image3-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image3-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image3-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image3-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5808, 3432, '_wp_attached_file', '2016/12/image4.jpeg'),
(5809, 3432, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:19:"2016/12/image4.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image4-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image4-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image4-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image4-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image4-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5810, 3433, '_wp_attached_file', '2016/12/image5.jpeg'),
(5811, 3433, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:19:"2016/12/image5.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image5-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image5-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image5-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image5-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image5-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5812, 3434, '_wp_attached_file', '2016/12/image6.jpeg'),
(5813, 3434, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:864;s:6:"height";i:1152;s:4:"file";s:19:"2016/12/image6.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image6-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image6-360x480.jpeg";s:5:"width";i:360;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"image6-768x1024.jpeg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image6-450x600.jpeg";s:5:"width";i:450;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"image6-864x500.jpeg";s:5:"width";i:864;s:6:"height";i:500;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:{}}}'),
(5814, 3435, '_wp_attached_file', '2016/12/image7.jpeg'),
(5815, 3435, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:19:"2016/12/image7.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image7-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image7-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image7-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image7-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image7-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5816, 3436, '_wp_attached_file', '2016/12/image8.jpeg'),
(5817, 3436, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:864;s:6:"height";i:1152;s:4:"file";s:19:"2016/12/image8.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image8-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image8-360x480.jpeg";s:5:"width";i:360;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"image8-768x1024.jpeg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image8-450x600.jpeg";s:5:"width";i:450;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"image8-864x500.jpeg";s:5:"width";i:864;s:6:"height";i:500;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:{}}}'),
(5818, 3437, '_wp_attached_file', '2016/12/image9.jpeg'),
(5819, 3437, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:19:"2016/12/image9.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"image9-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:19:"image9-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:19:"image9-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:19:"image9-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image9-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5820, 3438, '_wp_attached_file', '2016/12/image10.jpeg'),
(5821, 3438, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:20:"2016/12/image10.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image10-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"image10-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"image10-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"image10-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"image10-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5822, 3439, '_wp_attached_file', '2016/12/image11.jpeg'),
(5823, 3439, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:640;s:6:"height";i:480;s:4:"file";s:20:"2016/12/image11.jpeg";s:5:"sizes";a:2:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image11-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"image11-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;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:{}}}'),
(5824, 3440, '_wp_attached_file', '2016/12/image12.jpeg'),
(5825, 3440, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1368;s:6:"height";i:1026;s:4:"file";s:20:"2016/12/image12.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image12-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"image12-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"image12-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"image12-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"image12-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5826, 3441, '_wp_attached_file', '2016/12/image13.jpeg'),
(5827, 3441, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:20:"2016/12/image13.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image13-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"image13-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"image13-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"image13-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"image13-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5830, 3443, '_wp_attached_file', '2016/12/image15.jpeg'),
(5831, 3443, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:864;s:6:"height";i:1152;s:4:"file";s:20:"2016/12/image15.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image15-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"image15-360x480.jpeg";s:5:"width";i:360;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:21:"image15-768x1024.jpeg";s:5:"width";i:768;s:6:"height";i:1024;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"image15-450x600.jpeg";s:5:"width";i:450;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:20:"image15-864x500.jpeg";s:5:"width";i:864;s:6:"height";i:500;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:{}}}'),
(5832, 3444, '_wp_attached_file', '2016/12/image16.jpeg'),
(5833, 3444, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1152;s:6:"height";i:864;s:4:"file";s:20:"2016/12/image16.jpeg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:20:"image16-150x150.jpeg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:20:"image16-600x450.jpeg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:20:"image16-768x576.jpeg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:20:"image16-800x600.jpeg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:21:"image16-1140x500.jpeg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(5834, 3428, '_thumbnail_id', '3435'),
(5835, 3429, '_edit_lock', '1482990549:6'),
(5836, 3429, '_wp_attachment_image_alt', 'asiacentre-conference-UPR-2016'),
(5837, 3429, '_edit_last', '6'),
(5839, 2106, '_edit_lock', '1482991888:6'),
(5842, 3446, '_search', 'Past Event, '),
(5843, 3446, '_edit_lock', '1482994434:6'),
(5844, 3446, '_edit_last', '6'),
(5845, 3446, 'content_chunk_shortcode', 'a:1:{s:22:"content_auto_shortcode";s:25:"[content_chunk id="3446"]";}'),
(5846, 3446, '_wp_trash_meta_status', 'draft'),
(5847, 3446, '_wp_trash_meta_time', '1482994578'),
(5848, 3446, '_wp_desired_post_slug', 'past-event'),
(5849, 3447, '_search', 'achieve page, '),
(5850, 3447, '_edit_lock', '1483089769:6'),
(5851, 3447, '_edit_last', '6'),
(5852, 3447, '_wp_page_template', 'default'),
(5853, 3449, '_search', 'Archive-Gallery, '),
(5854, 3449, '_edit_lock', '1483089981:6'),
(5855, 3449, '_edit_last', '6'),
(5856, 3449, '_wp_page_template', 'default'),
(5857, 3447, '_wp_trash_meta_status', 'draft'),
(5858, 3447, '_wp_trash_meta_time', '1483090134'),
(5859, 3447, '_wp_desired_post_slug', 'achieve-page'),
(5860, 3449, '_wp_trash_meta_status', 'publish'),
(5861, 3449, '_wp_trash_meta_time', '1483090142'),
(5862, 3449, '_wp_desired_post_slug', 'archive-gallery'),
(5864, 3453, '_wp_attached_file', '2017/01/Screen-Shot-2017-01-06-at-18.07.42-e1483702231239.png'),
(5865, 3453, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:339;s:6:"height";i:252;s:4:"file";s:61:"2017/01/Screen-Shot-2017-01-06-at-18.07.42-e1483702231239.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:61:"Screen-Shot-2017-01-06-at-18.07.42-e1483702231239-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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:{}}}'),
(5866, 3453, '_wp_attachment_backup_sizes', 'a:2:{s:9:"full-orig";a:3:{s:5:"width";i:339;s:6:"height";i:318;s:4:"file";s:38:"Screen-Shot-2017-01-06-at-18.07.42.png";}s:14:"thumbnail-orig";a:4:{s:4:"file";s:46:"Screen-Shot-2017-01-06-at-18.07.42-150x150.png";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:9:"image/png";}}'),
(5867, 3456, '_wp_attached_file', '2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png'),
(5868, 3456, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:339;s:6:"height";i:249;s:4:"file";s:48:"2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:48:"Screen-Shot-2017-01-06-at-18.07.42-1-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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:{}}}'),
(5869, 3453, '_yoast_wpseo_focuskw_text_input', 'asiacentre, meeting room rental, space rental, training room rental'),
(5870, 3453, '_yoast_wpseo_focuskw', 'asiacentre, meeting room rental, space rental, training room rental'),
(5871, 3453, '_yoast_wpseo_linkdex', '56'),
(5873, 2973, '_wp_trash_meta_status', 'draft'),
(5874, 2973, '_wp_trash_meta_time', '1484026639'),
(5875, 2973, '_wp_desired_post_slug', ''),
(5876, 2955, '_wp_trash_meta_status', 'draft'),
(5877, 2955, '_wp_trash_meta_time', '1484026654'),
(5878, 2955, '_wp_desired_post_slug', ''),
(5879, 264, '_wp_trash_meta_status', 'publish'),
(5880, 264, '_wp_trash_meta_time', '1484029707'),
(5881, 264, '_wp_desired_post_slug', 'home-test'),
(5882, 3415, '_wp_trash_meta_status', 'draft'),
(5883, 3415, '_wp_trash_meta_time', '1484029737'),
(5884, 3415, '_wp_desired_post_slug', ''),
(5885, 3241, '_wp_trash_meta_status', 'draft'),
(5886, 3241, '_wp_trash_meta_time', '1484029754'),
(5887, 3241, '_wp_desired_post_slug', ''),
(5888, 348, '_edit_lock', '1484032016:6'),
(5889, 322, '_edit_lock', '1484032067:6'),
(5890, 2336, '_wp_trash_meta_status', 'publish'),
(5891, 2336, '_wp_trash_meta_time', '1484032237'),
(5892, 2336, '_wp_desired_post_slug', 'debating-imagined-communities'),
(5893, 327, '_wp_trash_meta_status', 'publish'),
(5894, 327, '_wp_trash_meta_time', '1484032263'),
(5895, 327, '_wp_desired_post_slug', 'spaces'),
(5896, 3233, '_wp_trash_meta_status', 'private'),
(5897, 3233, '_wp_trash_meta_time', '1484032286'),
(5898, 3233, '_wp_desired_post_slug', '3233'),
(5899, 1016, '_search', 'Template: Featured Image (Vertical), '),
(5900, 3460, '_search', 'Direction, '),
(5901, 3460, '_menu_item_type', 'post_type'),
(5902, 3460, '_menu_item_menu_item_parent', '0'),
(5903, 3460, '_menu_item_object_id', '2064'),
(5904, 3460, '_menu_item_object', 'page'),
(5905, 3460, '_menu_item_target', ''),
(5906, 3460, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5907, 3460, '_menu_item_xfn', ''),
(5908, 3460, '_menu_item_url', ''),
(5909, 3461, '_search', 'Book, '),
(5910, 3461, '_edit_lock', '1484039156:6'),
(5911, 3461, '_edit_last', '6'),
(5912, 3377, '_wp_trash_meta_status', 'draft'),
(5913, 3377, '_wp_trash_meta_time', '1484041271'),
(5914, 3377, '_wp_desired_post_slug', ''),
(5915, 3462, '_search', ', '),
(5916, 3462, '_menu_item_type', 'taxonomy'),
(5917, 3462, '_menu_item_menu_item_parent', '2362'),
(5918, 3462, '_menu_item_object_id', '256'),
(5919, 3462, '_menu_item_object', 'category'),
(5920, 3462, '_menu_item_target', ''),
(5921, 3462, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5922, 3462, '_menu_item_xfn', ''),
(5923, 3462, '_menu_item_url', ''),
(5924, 3463, '_search', ', '),
(5925, 3463, '_menu_item_type', 'taxonomy'),
(5926, 3463, '_menu_item_menu_item_parent', '2362'),
(5927, 3463, '_menu_item_object_id', '257'),
(5928, 3463, '_menu_item_object', 'category'),
(5929, 3463, '_menu_item_target', ''),
(5930, 3463, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5931, 3463, '_menu_item_xfn', ''),
(5932, 3463, '_menu_item_url', ''),
(5942, 3465, '_search', ', '),
(5943, 3465, '_menu_item_type', 'taxonomy'),
(5944, 3465, '_menu_item_menu_item_parent', '3468'),
(5945, 3465, '_menu_item_object_id', '211'),
(5946, 3465, '_menu_item_object', 'events'),
(5947, 3465, '_menu_item_target', ''),
(5948, 3465, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5949, 3465, '_menu_item_xfn', ''),
(5950, 3465, '_menu_item_url', ''),
(5960, 3467, '_search', ', '),
(5961, 3467, '_menu_item_type', 'post_type_archive'),
(5962, 3467, '_menu_item_menu_item_parent', '3468'),
(5963, 3467, '_menu_item_object_id', '0'),
(5964, 3467, '_menu_item_object', 'event'),
(5965, 3467, '_menu_item_target', ''),
(5966, 3467, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5967, 3467, '_menu_item_xfn', ''),
(5968, 3467, '_menu_item_url', ''),
(5969, 3468, '_search', 'Events, '),
(5970, 3468, '_menu_item_type', 'custom'),
(5971, 3468, '_menu_item_menu_item_parent', '0'),
(5972, 3468, '_menu_item_object_id', '3468'),
(5973, 3468, '_menu_item_object', 'custom'),
(5974, 3468, '_menu_item_target', ''),
(5975, 3468, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(5976, 3468, '_menu_item_xfn', ''),
(5977, 3468, '_menu_item_url', '#'),
(5978, 3444, '_wp_attachment_image_alt', 'upr-asiacentre'),
(5997, 3471, '_search', 'Programmes, '),
(5998, 3471, '_menu_item_type', 'custom'),
(5999, 3471, '_menu_item_menu_item_parent', '0'),
(6000, 3471, '_menu_item_object_id', '3471'),
(6001, 3471, '_menu_item_object', 'custom'),
(6002, 3471, '_menu_item_target', ''),
(6003, 3471, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(6004, 3471, '_menu_item_xfn', ''),
(6005, 3471, '_menu_item_url', '#'),
(6007, 3473, '_search', 'Human Rights, '),
(6008, 3473, '_edit_lock', '1484906756:6'),
(6009, 3473, '_edit_last', '6'),
(6010, 3473, '_wp_page_template', 'default'),
(6011, 3475, '_search', ', '),
(6012, 3475, '_menu_item_type', 'post_type'),
(6013, 3475, '_menu_item_menu_item_parent', '3471'),
(6014, 3475, '_menu_item_object_id', '3473'),
(6015, 3475, '_menu_item_object', 'page'),
(6016, 3475, '_menu_item_target', ''),
(6017, 3475, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(6018, 3475, '_menu_item_xfn', ''),
(6019, 3475, '_menu_item_url', ''),
(6020, 3476, '_search', 'HUMAN RIGHTS IN SOUTHEAST ASIA:  CIVIL SOCIETY PERSPECTIVES, '),
(6021, 3476, '_edit_lock', '1484127876:6'),
(6022, 3476, '_edit_last', '6'),
(6028, 3480, '_wp_attached_file', '2017/01/NHRI-Conference-Call-Deadline-Extended.jpg'),
(6029, 3480, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1239;s:6:"height";i:1754;s:4:"file";s:50:"2017/01/NHRI-Conference-Call-Deadline-Extended.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"NHRI-Conference-Call-Deadline-Extended-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:50:"NHRI-Conference-Call-Deadline-Extended-339x480.jpg";s:5:"width";i:339;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"NHRI-Conference-Call-Deadline-Extended-768x1087.jpg";s:5:"width";i:768;s:6:"height";i:1087;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"NHRI-Conference-Call-Deadline-Extended-424x600.jpg";s:5:"width";i:424;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:51:"NHRI-Conference-Call-Deadline-Extended-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(6030, 3485, '_search', 'Education Programme, '),
(6031, 3485, '_edit_lock', '1484818613:5'),
(6032, 3485, '_edit_last', '5'),
(6033, 3485, '_wp_page_template', 'default'),
(6034, 3487, '_search', 'Education, '),
(6035, 3487, '_menu_item_type', 'post_type'),
(6036, 3487, '_menu_item_menu_item_parent', '3471'),
(6037, 3487, '_menu_item_object_id', '3485'),
(6038, 3487, '_menu_item_object', 'page'),
(6039, 3487, '_menu_item_target', ''),
(6040, 3487, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(6041, 3487, '_menu_item_xfn', ''),
(6042, 3487, '_menu_item_url', ''),
(6043, 3488, '_search', 'Partnerships, '),
(6044, 3488, '_edit_lock', '1484635036:6'),
(6045, 3488, '_edit_last', '6'),
(6046, 3488, '_wp_page_template', 'default'),
(6047, 3490, '_search', ', '),
(6048, 3490, '_menu_item_type', 'post_type'),
(6049, 3490, '_menu_item_menu_item_parent', '2967'),
(6050, 3490, '_menu_item_object_id', '3488'),
(6051, 3490, '_menu_item_object', 'page'),
(6052, 3490, '_menu_item_target', ''),
(6053, 3490, '_menu_item_classes', 'a:1:{i:0;s:0:"";}'),
(6054, 3490, '_menu_item_xfn', ''),
(6055, 3490, '_menu_item_url', ''),
(6056, 3425, '_edit_lock', '1484640388:6'),
(6057, 3425, '_edit_last', '6'),
(6058, 3425, '_wp_old_slug', 'asiacentre-conference-NHRI-extended'),
(6061, 3496, '_search', 'Auto Draft, '),
(6062, 3498, '_search', 'Asia Centre partners Stenden University to teach ASEAN Studies, '),
(6063, 3498, '_edit_lock', '1484818489:5'),
(6064, 3498, '_edit_last', '5'),
(6065, 3499, '_wp_attached_file', '2017/01/stenden.png'),
(6066, 3499, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:200;s:6:"height";i:200;s:4:"file";s:19:"2017/01/stenden.png";s:5:"sizes";a:1:{s:9:"thumbnail";a:4:{s:4:"file";s:19:"stenden-150x150.png";s:5:"width";i:150;s:6:"height";i:150;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:{}}}'),
(6067, 3500, '_wp_attached_file', '2017/01/16010480_10157961979360307_1873655252_o.jpg'),
(6068, 3500, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1280;s:6:"height";i:960;s:4:"file";s:51:"2017/01/16010480_10157961979360307_1873655252_o.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:51:"16010480_10157961979360307_1873655252_o-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:51:"16010480_10157961979360307_1873655252_o-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:51:"16010480_10157961979360307_1873655252_o-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:51:"16010480_10157961979360307_1873655252_o-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:52:"16010480_10157961979360307_1873655252_o-1140x500.jpg";s:5:"width";i:1140;s:6:"height";i:500;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:{}}}'),
(6069, 3501, '_search', 'Auto Draft, '),
(6070, 3501, '_edit_lock', '1484803262:5'),
(6077, 3498, '_thumbnail_id', '3500'),
(6082, 3508, '_search', 'Auto Draft, '),
(6083, 3509, '_search', 'Benedict Anderson 1st Anniversary Memorial Roundtable, '),
(6084, 3509, '_edit_lock', '1484818495:5'),
(6085, 3509, '_edit_last', '5'),
(6086, 3510, '_wp_attached_file', '2017/01/16174393_1422421001110457_7479200004431334526_n.jpg'),
(6087, 3510, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2017/01/16174393_1422421001110457_7479200004431334526_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"16174393_1422421001110457_7479200004431334526_n-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:59:"16174393_1422421001110457_7479200004431334526_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"16174393_1422421001110457_7479200004431334526_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"16174393_1422421001110457_7479200004431334526_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"16174393_1422421001110457_7479200004431334526_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(6088, 3511, '_wp_attached_file', '2017/01/16174390_1422420874443803_8317045771845445222_n.jpg'),
(6089, 3511, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2017/01/16174390_1422420874443803_8317045771845445222_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"16174390_1422420874443803_8317045771845445222_n-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:59:"16174390_1422420874443803_8317045771845445222_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"16174390_1422420874443803_8317045771845445222_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"16174390_1422420874443803_8317045771845445222_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"16174390_1422420874443803_8317045771845445222_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(6090, 3512, '_wp_attached_file', '2017/01/16144785_10157990728360307_688990583_n.jpg'),
(6091, 3512, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:50:"2017/01/16144785_10157990728360307_688990583_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"16144785_10157990728360307_688990583_n-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:50:"16144785_10157990728360307_688990583_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:50:"16144785_10157990728360307_688990583_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"16144785_10157990728360307_688990583_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"16144785_10157990728360307_688990583_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(6092, 3513, '_wp_attached_file', '2017/01/16143015_1422420567777167_3257024904827770099_n.jpg'),
(6093, 3513, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2017/01/16143015_1422420567777167_3257024904827770099_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"16143015_1422420567777167_3257024904827770099_n-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:59:"16143015_1422420567777167_3257024904827770099_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"16143015_1422420567777167_3257024904827770099_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"16143015_1422420567777167_3257024904827770099_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"16143015_1422420567777167_3257024904827770099_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(6094, 3514, '_wp_attached_file', '2017/01/16128767_10157990728085307_5104749_n.jpg'),
(6095, 3514, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:48:"2017/01/16128767_10157990728085307_5104749_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:48:"16128767_10157990728085307_5104749_n-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:48:"16128767_10157990728085307_5104749_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:48:"16128767_10157990728085307_5104749_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:48:"16128767_10157990728085307_5104749_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:48:"16128767_10157990728085307_5104749_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(6096, 3515, '_wp_attached_file', '2017/01/15977588_1422421147777109_1951656290648111029_n.jpg'),
(6097, 3515, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:960;s:6:"height";i:720;s:4:"file";s:59:"2017/01/15977588_1422421147777109_1951656290648111029_n.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:59:"15977588_1422421147777109_1951656290648111029_n-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:59:"15977588_1422421147777109_1951656290648111029_n-600x450.jpg";s:5:"width";i:600;s:6:"height";i:450;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:59:"15977588_1422421147777109_1951656290648111029_n-768x576.jpg";s:5:"width";i:768;s:6:"height";i:576;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:59:"15977588_1422421147777109_1951656290648111029_n-800x600.jpg";s:5:"width";i:800;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:59:"15977588_1422421147777109_1951656290648111029_n-960x500.jpg";s:5:"width";i:960;s:6:"height";i:500;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:{}}}'),
(6098, 3516, '_wp_attached_file', '2017/01/16144061_10157986411310307_943290719_n.jpg'),
(6099, 3516, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:720;s:6:"height";i:960;s:4:"file";s:50:"2017/01/16144061_10157986411310307_943290719_n.jpg";s:5:"sizes";a:4:{s:9:"thumbnail";a:4:{s:4:"file";s:50:"16144061_10157986411310307_943290719_n-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:50:"16144061_10157986411310307_943290719_n-360x480.jpg";s:5:"width";i:360;s:6:"height";i:480;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:50:"16144061_10157986411310307_943290719_n-450x600.jpg";s:5:"width";i:450;s:6:"height";i:600;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:50:"16144061_10157986411310307_943290719_n-720x500.jpg";s:5:"width";i:720;s:6:"height";i:500;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:{}}}'),
(6100, 3509, '_thumbnail_id', '3513'),
(6105, 3520, '_search', 'Briefing on ASEAN to Korea University Students, '),
(6106, 3520, '_edit_lock', '1484818458:5'),
(6107, 3520, '_edit_last', '5'),
(6108, 3521, '_wp_attached_file', '2017/01/skorea.jpg'),
(6109, 3521, '_wp_attachment_metadata', 'a:5:{s:5:"width";i:1040;s:6:"height";i:642;s:4:"file";s:18:"2017/01/skorea.jpg";s:5:"sizes";a:5:{s:9:"thumbnail";a:4:{s:4:"file";s:18:"skorea-150x150.jpg";s:5:"width";i:150;s:6:"height";i:150;s:9:"mime-type";s:10:"image/jpeg";}s:6:"medium";a:4:{s:4:"file";s:18:"skorea-600x370.jpg";s:5:"width";i:600;s:6:"height";i:370;s:9:"mime-type";s:10:"image/jpeg";}s:12:"medium_large";a:4:{s:4:"file";s:18:"skorea-768x474.jpg";s:5:"width";i:768;s:6:"height";i:474;s:9:"mime-type";s:10:"image/jpeg";}s:5:"large";a:4:{s:4:"file";s:18:"skorea-800x494.jpg";s:5:"width";i:800;s:6:"height";i:494;s:9:"mime-type";s:10:"image/jpeg";}s:14:"post-thumbnail";a:4:{s:4:"file";s:19:"skorea-1040x500.jpg";s:5:"width";i:1040;s:6:"height";i:500;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:{}}}'),
(6116, 3520, '_thumbnail_id', '3521'),
(6123, 18, '_oembed_28356a4649d02d0bd7a1855e89917dd5', '{{unknown}}'),
(6124, 3421, '_edit_lock', '1484891248:6'),
(6125, 3421, '_edit_last', '6'),
(6126, 3421, '_wp_old_slug', 'Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report'),
(6127, 3473, '_oembed_5c03908fed3a27cf357f4f359083ab75', '<blockquote data-secret="IhiaaXFGGv" class="wp-embedded-content"><a href="http://asiacentre.co.th/gallery/upr/">UPR Conference</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);" src="http://asiacentre.co.th/gallery/upr/embed/#?secret=IhiaaXFGGv" data-secret="IhiaaXFGGv" width="600" height="338" title="&#8220;UPR Conference&#8221; &#8212; Asia Centre" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>'),
(6128, 3473, '_oembed_time_5c03908fed3a27cf357f4f359083ab75', '1484905160');
INSERT INTO `wp_postmeta` (`meta_id`, `post_id`, `meta_key`, `meta_value`) VALUES
(6129, 3473, '_oembed_edc5e274fffe506de19001d777b95ee2', '<blockquote data-secret="wSAOuCzulz" class="wp-embedded-content"><a href="http://asiacentre.co.th/gallery/upr/">UPR Conference</a></blockquote><iframe class="wp-embedded-content" sandbox="allow-scripts" security="restricted" style="position: absolute; clip: rect(1px, 1px, 1px, 1px);" src="http://asiacentre.co.th/gallery/upr/embed/#?secret=wSAOuCzulz" data-secret="wSAOuCzulz" width="200" height="200" title="&#8220;UPR Conference&#8221; &#8212; Asia Centre" frameborder="0" marginwidth="0" marginheight="0" scrolling="no"></iframe>'),
(6130, 3473, '_oembed_time_edc5e274fffe506de19001d777b95ee2', '1484905248');

-- --------------------------------------------------------

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

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

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

INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(18, 1, '2014-06-07 10:20:00', '2014-06-07 10:20:00', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<p style="text-align: justify;"><strong><span style="text-decoration: underline;">Download ASIA Centre Activities Report</span></strong></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZRNGM0RVA3Q2JaNDg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2015</a></p>', 'Asia Centre', '', 'publish', 'closed', 'closed', '', 'asia-centre', '', '', '2017-01-20 17:40:55', '2017-01-20 10:40:55', '', 0, 'http://school.wpshow.me/?page_id=18', 0, 'page', '', 0),
(39, 1, '2014-06-09 07:41:01', '2014-06-09 07:41:01', '', 'Contact Us', '', 'publish', 'closed', 'closed', '', 'contact-us', '', '', '2015-09-15 10:23:35', '2015-09-15 10:23:35', '', 0, 'http://school.wpshow.me/?page_id=39', 0, 'page', '', 0),
(42, 1, '2014-06-09 07:48:34', '2014-06-09 07:48:34', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ut odio tellus. Maecenas consectetur leo arcu, sit amet fermentum nisi mattis sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vestibulum eu arcu ut elementum. Ut pellentesque libero ac magna ornare, eget dictum orci ultricies. In quis tortor semper, luctus dolor ut, adipiscing eros. Maecenas sed pharetra neque. Nullam id ipsum id quam ultrices luctus. Donec adipiscing augue non placerat consectetur. Aliquam erat volutpat.\n\n[content_chunk id="320"]', 'Full Width Page', '', 'publish', 'open', 'open', '', 'full-width-page', '', '', '2014-06-09 07:48:34', '2014-06-09 07:48:34', '', 0, 'http://school.wpshow.me/?page_id=42', 0, 'page', '', 0),
(71, 1, '2014-06-09 15:36:42', '2014-06-09 15:36:42', 'Duis ornare magna sit amet dui eleifend imperdiet. <strong>Aliquam at porta elit</strong>. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus. Praesent id felis sagittis, suscipit ligula sed, condimentum nisi. In non commodo risus. Praesent fringilla ligula in orci consectetur pulvinar. Nunc facilisis metus pellentesque, vestibulum libero eget, varius elit. Aliquam sed gravida dui, a imperdiet eros. Cras dignissim libero id feugiat pharetra. Nullam ut bibendum est, sed tincidunt massa.\n\nAenean eu sem non diam iaculis gravida. Nam imperdiet eleifend <span style="text-decoration: underline;">erat ut viverra</span>. Fusce vitae ultrices tortor, tincidunt consectetur purus. Donec ut suscipit nisi. Ut vitae venenatis dolor. Phasellus volutpat sapien sit amet tellus gravida, nec dignissim elit congue. Lorem ipsum dolor sit amet, <a title="Google" href="http://google.com" target="_blank">consectetur adipiscing</a> elit. Vivamus leo magna, condimentum vitae feugiat id, lobortis et nibh.', 'Optimization Methods in Management Science', '', 'publish', 'closed', 'closed', '', 'optimization-methods-in-management-science', '', '', '2014-06-09 15:36:42', '2014-06-09 15:36:42', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=71', 0, 'course', '', 0),
(77, 1, '2014-06-10 06:47:15', '2014-06-10 06:47:15', '<span class="textjustify">Introduces master’s students to quantitative data analysis. Prepares students to use the PASW/SPSS statistical software program and conduct basic descriptive and inferential statistical analyses. Students learn how to apply statistical techniques to address research questions using real datasets and how to interpret and present findings.</span>', 'Basics in Applied Quantitative Anlaysis', '', 'publish', 'closed', 'closed', '', 'basics-in-applied-quantitative-anlaysis', '', '', '2014-06-10 06:47:15', '2014-06-10 06:47:15', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=77', 0, 'course', '', 0),
(78, 1, '2014-06-10 06:50:38', '2014-06-10 06:50:38', '<span class="textjustify">Introduces students to the practice of integrating religion, spirituality and healing into the humanistic counseling/therapeutic relationship. Surveys the current issues pertaining to the assessment and treatment of clients incorporating religious and <strong>spiritual constructs</strong>, including the various religious worldviews, an understanding of the psychological development of religious and spiritual perspectives, the treatment of religious and spiritual dysfunction, the <span style="text-decoration: underline;">incorporation of religious and spiritual assets</span>, the spiritual and healing aspects of the body and mind connection, the connection of spirituality with the creative process, and a review of the clinical research in this particular aspect of the counseling field.</span>', 'Spirituality, Religion, and Healing in Counseling', '', 'publish', 'closed', 'closed', '', 'spirituality-religion-and-healing-in-counseling', '', '', '2014-06-10 06:50:38', '2014-06-10 06:50:38', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=78', 0, 'course', '', 0),
(85, 1, '2014-06-11 11:26:53', '2014-06-11 11:26:53', 'Images taken at the university hall in black and white technique.', 'Students moving around', '', 'draft', 'closed', 'closed', '', 'students-moving-around', '', '', '2015-09-10 14:30:25', '2015-09-10 14:30:25', '', 0, 'http://school.wpshow.me/?post_type=gallery&#038;p=85', 0, 'gallery', '', 0),
(102, 1, '2014-06-12 09:04:13', '2014-06-12 09:04:13', 'Miscellaneous photos taken at the Training Course. Enjoy!', 'Training Courses', '', 'draft', 'closed', 'closed', '', 'a-little-bit-of-everything', '', '', '2015-09-10 14:30:20', '2015-09-10 14:30:20', '', 0, 'http://school.wpshow.me/?post_type=gallery&#038;p=102', 0, 'gallery', '', 0),
(111, 1, '2014-06-11 09:13:50', '2014-06-11 09:13:50', 'See our spaces in action', 'Our Spaces', '', 'draft', 'closed', 'closed', '', 'spaces-gallery', '', '', '2015-09-10 14:30:34', '2015-09-10 14:30:34', '', 0, 'http://school.wpshow.me/?post_type=gallery&#038;p=111', 0, 'gallery', '', 0),
(170, 1, '2014-06-15 09:48:52', '2014-06-15 09:48:52', '<div class="call-out">\n\n<span style="text-decoration: underline;">This is CallOut</span>. Lorem ipsum dolor sit amet, consectetur adipiscing elit. In pretium vulputate scelerisque. Nulla in suscipit risus. Nullam pulvinar augue in risus luctus, sed dapibus ipsum mattis.\n\n</div>\n<strong>I''m a regular paragraph.</strong> Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus. Praesent id felis sagittis, suscipit ligula sed, condimentum nisi. In non commodo risus. Praesent fringilla ligula in orci consectetur pulvinar. Nunc facilisis metus pellentesque, vestibulum libero eget, varius elit. Aliquam sed gravida dui, a imperdiet eros. Cras dignissim libero id feugiat pharetra. Nullam ut bibendum est, sed tincidunt massa.\n\n[gap height="20"]\n\n[row]\n\n[column col="6"]\n\n[bullet_paragraph paragraph_icon="fa-repeat"]\n\n<strong>I''m a bullet paragraph!</strong> Curabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n\n[gap height="10"]\n\n[/bullet_paragraph]\n\n[/column]\n\n[column col="6"]\n\n[bullet_paragraph paragraph_icon="fa-pagelines"]\n\n<strong>I''m also a bullet paragraph!</strong> Maecenas mollis nisl ut diam condimentum, eu sagittis ante elementum. Nam tempus euismod elit, eu venenatis dolor cursus sed. Praesent id felis sagittis, suscipit ligula sed, condimentum nisi. In non commodo risus. Praesent fringilla ligula in orci consectetur pulvinar.\n\n[gap height="10"]\n\n[/bullet_paragraph]\n\n[/column]\n\n[/row]\n\n[separator style="zigzag"]\n\n[row]\n\n[column col="3"]\n<h2 class="title-median">[awesome_icon icon="fa-apple" icon_size="fa-lg"]First Column</h2>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere.\n\n[gap height="20"]\n\n[/column]\n\n[column col="3"]\n<h2 class="title-median">[awesome_icon icon="fa-barcode" icon_size="fa-lg"]Second Column</h2>\nMaecenas mollis nisl ut diam condimentum, eu sagittis ante elementum. Nam tempus euismod elit, eu venenatis dolor cursus sed.\n\n[gap height="20"]\n\n[/column]\n\n[column col="3"]\n<h2 class="title-median">[awesome_icon icon="fa-rocket" icon_size="fa-lg"]Third Column</h2>\nDuis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n\n[gap height="20"]\n\n[/column]\n\n[column col="3"]\n<h2 class="title-median">[awesome_icon icon="fa-leaf" icon_size="fa-lg"]Fourth Column</h2>\nPraesent id felis sagittis, suscipit ligula sed, condimentum nisi. In non commodo risus. Praesent fringilla ligula in orci consectetur pulvinar.\n\n[gap height="20"]\n\n[/column]\n\n[/row]\n\n[separator style="dashed"]\n\n[row]\n\n[column col="4"]\n<h5 class="remove-margin-top">First Column</h5>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere.\n\n[gap height="20"]\n\n[/column]\n\n[column col="4"]\n<h5 class="remove-margin-top">Second Column</h5>\nMaecenas mollis nisl ut diam condimentum, eu sagittis ante elementum. Nam tempus euismod elit, eu venenatis dolor cursus sed\n\n[gap height="20"]\n\n[/column]\n\n[column col="4"]\n<h5 class="remove-margin-top">Third Column</h5>\nDuis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus\n\n[gap height="20"]\n\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="6"]\n<h3 class="remove-margin-top">[awesome_icon icon="fa-cloud-upload" icon_size="fa-lg"]First Column</h3>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n\n[gap height="20"]\n\n[/column]\n\n[column col="6"]\n<h3 class="remove-margin-top">[awesome_icon icon="fa-bolt" icon_size="fa-lg"]Second Column</h3>\nMaecenas mollis nisl ut diam condimentum, eu sagittis ante elementum. Nam tempus euismod elit, eu venenatis dolor cursus sed. Praesent id felis sagittis, suscipit ligula sed, condimentum nisi. In non commodo risus. Praesent fringilla ligula in orci consectetur pulvinar.\n\n[gap height="20"]\n\n[/column]\n\n[/row]\n\n[separator style="fatty"]\n\n[row equal_height="true"]\n\n[custom_column col="6" offset="3" textalign="text-center"]\n<h3 class="title-titan">This is 6x wide column with an offset of 3x</h3>\nMaecenas mollis nisl ut diam condimentum, eu sagittis ante elementum. Nam tempus euismod elit, eu venenatis dolor cursus sed. Praesent id felis sagittis, suscipit ligula sed, condimentum nisi. In non commodo risus. Praesent fringilla ligula in orci consectetur pulvinar.\n\n[/custom_column]\n\n[/row]\n\n[separator style="regular"]\n<h1>h1 - This is H1 title <small>Any title can have a tagline</small></h1>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h2>h2 - This is H2 title</h2>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h3>h3 - This is H3 title</h3>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h4>h4 - This is H4 title</h4>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h5>h5 - This is H5 title</h5>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h6>h6 - This is H6 title <small>I can have a tagline too!</small></h6>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h2 class="title-median">h1-h6 - This is Median title</h2>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h2 class="title-titan">h1-h6 - This is Titan title</h2>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n<h2 class="title-giant">h1-h6 - This is Giant title</h2>\nCurabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n\n[separator style="fatty"]\n\n[row]\n\n[column col="6"]\n<h6>Blockquotes Left</h6>\n[blockquote quote_author="Johnny Doe" quote_source="New York Times" textalign="pull-left"]\n\nVivamus sodales neque quis porta sagittis. Proin euismod orci urna, eu mattis tortor iaculis id. Nulla non congue turpis, sed feugiat velit.\n\n[/blockquote]\n\n[/column]\n\n[column col="6"]\n<h6 class="text-right">Blockquotes Right</h6>\n[blockquote quote_author="Jane Doe" quote_source="Washington Post" textalign="pull-right"]\n\nVivamus sodales neque quis porta sagittis. Proin euismod orci urna, eu mattis tortor iaculis id. Nulla non congue turpis, sed feugiat velit.\n\n[/blockquote]\n\n[/column]\n\n[/row]\n\n[row]\n\n[column col="4"]\n<h6>Image - Left</h6>\n<img class="alignleft size-thumbnail wp-image-115" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/11980066934_0df2439628_b-90x90.jpg" alt="11980066934_0df2439628_b" width="90" height="90" />Curabitur fringilla, massa sit amet ultricies iaculis, nisi lorem faucibus justo, eu interdum odio nunc eu lorem. Aliquam auctor id augue posuere. Etiam fermentum imperdiet sollicitudin. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos.\n\n[/column]\n\n[column col="4"]\n<h6 class="text-center">Image - Center</h6>\n<p class="text-center"><img class="aligncenter size-thumbnail wp-image-103" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/9510947151_ef1d3fdf52_b-90x90.jpg" alt="9510947151_ef1d3fdf52_b" width="90" height="90" />Maecenas mollis nisl ut diam condimentum, eu sagittis ante elementum. Nam tempus euismod elit, eu venenatis dolor cursus sed. Etiam fermentum imperdiet sollicitudin.</p>\n[/column]\n\n[column col="4"]\n<h6>Image - Right</h6>\n<img class="alignright size-thumbnail wp-image-99" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/9735272477_9f8b8a81e3_b-90x90.jpg" alt="9735272477_9f8b8a81e3_b" width="90" height="90" />Etiam fermentum imperdiet sollicitudin. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Duis ornare magna sit amet dui eleifend imperdiet. Aliquam at porta elit. Proin lorem lacus, tempus id diam sit amet, porttitor tempor lectus.\n\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="3"]\n<h6 class="text-center">Image regular</h6>\n&nbsp;\n\n<img class="aligncenter size-thumbnail wp-image-296" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/14093140180_40cc891232_b-90x90.jpg" alt="14093140180_40cc891232_b" width="90" height="90" />\n\n[/column]\n\n[column col="3"]\n<h6 class="text-center">Image rounded corners</h6>\n&nbsp;\n\n<img class="aligncenter size-thumbnail wp-image-296 img-rounded" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/14093140180_40cc891232_b-90x90.jpg" alt="14093140180_40cc891232_b" width="90" height="90" />\n\n[/column]\n\n[column col="3"]\n<h6 class="text-center">Image in circle</h6>\n&nbsp;\n\n<img class="aligncenter size-thumbnail wp-image-296 img-circle" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/14093140180_40cc891232_b-90x90.jpg" alt="14093140180_40cc891232_b" width="90" height="90" />\n\n[/column]\n\n[column col="3"]\n<h6 class="text-center">Image Thumbnail</h6>\n&nbsp;\n\n<img class="aligncenter size-thumbnail wp-image-296 img-thumbnail" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/14093140180_40cc891232_b-90x90.jpg" alt="14093140180_40cc891232_b" width="90" height="90" />\n\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="3"]\n<h6>Unordered List</h6>\n<ul>\n	<li>Curabitur fringilla</li>\n	<li>Massa sit amet ultricies iaculis</li>\n	<li>Nisi lorem faucibus justo\n<ol>\n	<li>Lorem Ipsum Dolor</li>\n	<li>Quisque neque neque</li>\n	<li>Mauris cursus gravida</li>\n</ol>\n</li>\n	<li>Eu interdum odio nunc eu lorem</li>\n	<li>Aliquam auctor id augue posuere</li>\n</ul>\n[/column]\n\n[column col="3"]\n<h6>Ordered List</h6>\n<ol>\n	<li>Curabitur fringilla</li>\n	<li>Massa sit amet ultricies iaculis</li>\n	<li>Nisi lorem faucibus justo\n<ul>\n	<li>Lorem Ipsum Dolor</li>\n	<li>Quisque neque neque</li>\n	<li>Mauris cursus gravida</li>\n</ul>\n</li>\n	<li>Eu interdum odio nunc eu lorem</li>\n	<li>Aliquam auctor id augue posuere</li>\n</ol>\n[/column]\n\n[column col="3"]\n<h6>Unstyled List</h6>\n<ul class="list-unstyled">\n	<li>Curabitur fringilla</li>\n	<li>Massa sit amet ultricies iaculis</li>\n	<li>Nisi lorem faucibus justo\n<ol>\n	<li>Lorem Ipsum Dolor</li>\n	<li>Quisque neque neque</li>\n	<li>Mauris cursus gravida</li>\n</ol>\n</li>\n	<li>Eu interdum odio nunc eu lorem</li>\n	<li>Aliquam auctor id augue posuere</li>\n</ul>\n[/column]\n\n[column col="3"]\n<h6>List Stacked Pills</h6>\n<ul class="clearfix nav nav-pills nav-stacked">\n	<li class="active"><a title="Google" href="http://google.com" target="_blank">Curabitur fringilla</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Massa sit amet ultricies</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Nisi lorem faucibus</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Eu interdum odio nunc</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Augue posuere lorem</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Proin euismod orci</a></li>\n</ul>\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="12"]\n<h6 class="remove-margin-top">List inline</h6>\n<ul class="list-inline">\n	<li>Curabitur fringilla</li>\n	<li>Massa sit amet ultricies</li>\n	<li>Nisi lorem faucibus</li>\n	<li>Eu interdum odio nunc</li>\n	<li>Augue posuere lorem</li>\n	<li>Proin euismod orci</li>\n</ul>\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="12"]\n<h6 class="remove-margin-top">List pills</h6>\n<ul class="clearfix nav nav-pills">\n	<li class="active"><a title="Google" href="http://google.com" target="_blank">Curabitur fringilla</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Massa sit amet</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Nisi lorem</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Eu interdum</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Augue posuere</a></li>\n	<li><a title="Google" href="http://google.com" target="_blank">Proin euismod</a></li>\n</ul>\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="6"]\n<h6 class="widget-title">Basic table</h6>\n<table class="table">\n<thead>\n<tr>\n<th>#</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Username</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Mark</td>\n<td>Otto</td>\n<td>@mdo</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Jacob</td>\n<td>Thornton</td>\n<td>@fat</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Larry</td>\n<td>the Bird</td>\n<td>@twitter</td>\n</tr>\n</tbody>\n</table>\n[/column]\n\n[column col="6"]\n<h6 class="widget-title">Striped rows Table</h6>\n<table class="table table-striped">\n<thead>\n<tr>\n<th>#</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Username</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Mark</td>\n<td>Otto</td>\n<td>@mdo</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Jacob</td>\n<td>Thornton</td>\n<td>@fat</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Larry</td>\n<td>the Bird</td>\n<td>@twitter</td>\n</tr>\n</tbody>\n</table>\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="6"]\n<h6 class="widget-title">Bordered table</h6>\n<table class="table table-bordered">\n<thead>\n<tr>\n<th>#</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Username</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Mark</td>\n<td>Otto</td>\n<td>@mdo</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Jacob</td>\n<td>Thornton</td>\n<td>@fat</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Larry</td>\n<td>the Bird</td>\n<td>@twitter</td>\n</tr>\n</tbody>\n</table>\n[/column]\n\n[column col="6"]\n<h6 class="widget-title">Hover rows Table</h6>\n<table class="table table-hover">\n<thead>\n<tr>\n<th>#</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Username</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Mark</td>\n<td>Otto</td>\n<td>@mdo</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Jacob</td>\n<td>Thornton</td>\n<td>@fat</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Larry</td>\n<td>the Bird</td>\n<td>@twitter</td>\n</tr>\n</tbody>\n</table>\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="12"]\n<h6 class="widget-title">Condensed table</h6>\n<table class="table table-condensed">\n<thead>\n<tr>\n<th>#</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Username</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Mark</td>\n<td>Otto</td>\n<td>@mdo</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Jacob</td>\n<td>Thornton</td>\n<td>@fat</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Larry</td>\n<td>the Bird</td>\n<td>@twitter</td>\n</tr>\n</tbody>\n</table>\n[/column]\n\n[/row]\n\n[separator style="dotted"]\n\n[row]\n\n[column col="12"]\n<h6>Preformatted text</h6>\nThis should be wrapped as inline code <code>&lt;section&gt;</code> while the following uses <code>&lt;pre&gt;&lt;/pre&gt;</code> tags to format:\n<pre>&lt;div id="z-wenge" class="col-3_2"&gt;\n    &lt;h2&gt;Button sizes&lt;/h2&gt;\n    &lt;button&gt;Large button&lt;/button&gt;\n    &lt;button&gt;Default button&lt;/button&gt;\n    &lt;button&gt;Small button&lt;/button&gt;\n    &lt;button&gt;Extra small button&lt;/button&gt;\n&lt;/div&gt;</pre>\n[/column]\n\n[/row]', 'Text formatting', '', 'publish', 'open', 'open', '', 'text-formatting', '', '', '2014-06-15 09:48:52', '2014-06-15 09:48:52', '', 0, 'http://school.wpshow.me/?page_id=170', 0, 'page', '', 0),
(210, 1, '2014-06-16 06:01:20', '2014-06-16 06:01:20', 'Proin ligula odio, aliquam eu congue pretium, blandit vitae risus. Interdum et malesuada fames ac ante ipsum primis in faucibus. Praesent pulvinar metus orci, a elementum metus dignissim at. In accumsan cursus libero quis interdum. Maecenas facilisis faucibus mi, non tempor sapien sagittis eu. Integer vel pulvinar lacus. Etiam quis hendrerit sapien, eu laoreet purus. Vestibulum dictum lacinia eros quis pellentesque.\n\n[separator style="fatty"]\n\n[row]\n\n[column col="2"]\n<h6>Default BT</h6>\n[button style="btn-default" size="btn-lg" label="Default" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-default" size="btn-md" label="Default" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-default" size="btn-sm" label="Default" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-default" size="btn-xs" label="Default" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="2"]\n<h6>Primary BT</h6>\n[button style="btn-primary" size="btn-lg" label="Primary" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-primary" size="btn-md" label="Primary" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-primary" size="btn-sm" label="Primary" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-primary" size="btn-xs" label="Primary" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="2"]\n<h6>Info BT</h6>\n[button style="btn-info" size="btn-lg" label="Info" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-info" size="btn-md" label="Info" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-info" size="btn-sm" label="Info" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-info" size="btn-xs" label="Info" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="2"]\n<h6>Dngrs BT</h6>\n[button style="btn-danger" size="btn-lg" label="Danger" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-danger" size="btn-md" label="Danger" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-danger" size="btn-sm" label="Danger" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-danger" size="btn-xs" label="Danger" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="2"]\n<h6>Success BT</h6>\n[button style="btn-success" size="btn-lg" label="Success" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-success" size="btn-md" label="Success" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-success" size="btn-sm" label="Success" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-success" size="btn-xs" label="Success" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="2"]\n<h6>Warning BT</h6>\n[button style="btn-warning" size="btn-lg" label="Warning" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-warning" size="btn-md" label="Warning" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-warning" size="btn-sm" label="Warning" link="http://google.com" link_opens="_blank"]\n\n<hr />\n\n[button style="btn-warning" size="btn-xs" label="Warning" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="3"]\n<h6>Custom BT example #1</h6>\n[super_button icon="fa-clock-o" label="A Button Label" tagline="Tagline or descriptive text..." color="#95bd6d" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="3"]\n<h6>Custom BT example #2</h6>\n[super_button icon="fa-fire" label="A Button Label" tagline="Tagline or descriptive text..." color="#c5cace" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="3"]\n<h6>Custom BT example #3</h6>\n[super_button icon="fa-check-square-o" label="A Button Label" tagline="Tagline or descriptive text..." color="#f3cc0c" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[column col="3"]\n<h6>Custom BT example #4</h6>\n[super_button icon="fa-empire" label="A Button Label" tagline="Tagline or descriptive text..." color="#00aeef" link="http://google.com" link_opens="_blank"]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="6"]\n<h6>Alerts Regular</h6>\n[alert style="alert-success" dismissable="false"]\n\n<strong>SUCCESS!</strong> Maecenas a vehicula magna. Fusce nec felis consectetur, eleifend nibh at, iaculis odio. Lorem ipsum dolor sit amet, consectetur adipiscing elit dolorum est nulla.\n\n[/alert]\n\n[alert style="alert-info" dismissable="false"]\n\n<strong>INFO!</strong> Maecenas a vehicula magna. Fusce nec felis consectetur, eleifend nibh at, iaculis odio. Lorem ipsum dolor sit amet, consectetur adipiscing elit dolorum est nulla.\n\n[/alert]\n\n[/column]\n\n[column col="6"]\n<h6>Alerts Dismissable</h6>\n[alert style="alert-danger" dismissable="true"]\n\n<strong>DANGER!</strong> Maecenas a vehicula magna. Fusce nec felis consectetur, eleifend nibh at, iaculis odio. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\n[/alert]\n\n[alert style="alert-warning" dismissable="true"]\n\n<strong>WARNING!</strong> Maecenas a vehicula magna. Fusce nec felis consectetur, eleifend nibh at, iaculis odio. Lorem ipsum dolor sit amet, consectetur adipiscing elit.\n\n[/alert]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="6"]\n<h6>Progress bar - regular</h6>\n[progress_bar style="default" value="29" striped="false"]\n\n[progress_bar style="progress-bar-success" value="56" striped="false"]\n\n[progress_bar style="progress-bar-info" value="64" striped="false"]\n\n[progress_bar style="progress-bar-warning" value="82" striped="false"]\n\n[progress_bar style="progress-bar-danger" value="95" striped="false"]\n\n[/column]\n\n[column col="6"]\n<h6>Progress bar - stripped</h6>\n[progress_bar style="default" value="29" striped="true"]\n\n[progress_bar style="progress-bar-success" value="56" striped="true"]\n\n[progress_bar style="progress-bar-info" value="64" striped="true"]\n\n[progress_bar style="progress-bar-warning" value="82" striped="true"]\n\n[progress_bar style="progress-bar-danger" value="95" striped="true"]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="3"]\n<h6 class="text-center">pie chart - example #1</h6>\n[pie_chart color="#d5a1a1" value="34" label="Chart label is here" chart_align="text-center" line_width="20" width="120"]\n\n[/column]\n\n[column col="3"]\n<h6 class="text-center">pie chart - example #2</h6>\n[pie_chart color="#f5a610" value="77" label="Chart label is here" chart_align="text-center" line_width="16" width="120"]\n\n[/column]\n\n[column col="3"]\n<h6 class="text-center">pie chart - example #3</h6>\n[pie_chart color="#9faeaf" value="59" label="Chart label is here" chart_align="text-center" line_width="12" width="120"]\n\n[/column]\n\n[column col="3"]\n<h6 class="text-center">pie chart - example #4</h6>\n[pie_chart color="#2f8bc1" value="16" label="Chart label is here" chart_align="text-center" line_width="10" width="120"]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="12"]\n<h6>Google Maps</h6>\n[google_map title="My Map" lat="37.782231" lon="-122.400679" zoom="15" name="John Doe, Inc." address="795 Folsom Ave, Suite 600" city="San Francisco" state="CA" zip="94107" country="USA"]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="6"]\n<h6>Responsive media - Video</h6>\n[embedr responsive="true"]\n\nhttp://vimeo.com/16520938\n\n[/embedr]\n\nSHARE link of all the major video services or Soundcloud will work just fine. If there''s a need for more services, <a title="fitVids" href="http://fitvidsjs.com/" target="_blank">fitVids</a> can easily be extended.\n\n[/column]\n\n[column col="6"]\n<h6>SoundCloud</h6>\n[embedr responsive="true"]\n\nhttps://soundcloud.com/foofighters/rope-deadmau5-remix\n\n[/embedr]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="12"]\n<h6>Responsive Audio Player</h6>\n[audio_playr src_ogg="http://81310752d5730fb4ef3c-221b4998ec12974102282b6d4a8fafbe.r2.cf1.rackcdn.com/3rds.ogg" src_mp3="http://81310752d5730fb4ef3c-221b4998ec12974102282b6d4a8fafbe.r2.cf1.rackcdn.com/3rds.mp3"]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="6"]\n<h6>Tabber</h6>\n[tabs_wrapper style="nav-tabs" justify="true"]\n\n[tab_content tab_label="Some Tab"]\n\n<img class="alignleft size-thumbnail wp-image-267" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/8724861154_5b946b9447_b-90x90.jpg" alt="8724861154_5b946b9447_b" width="90" height="90" />Interdum et malesuada fames ac ante ipsum primis in faucibus. Nulla dignissim orci ut pretium luctus. Praesent id mauris nec odio iaculis rhoncus. Cum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam porttitor orci vel sem volutpat viverra. Duis eget nisi consequat nibh accumsan interdum. Mauris consequat est nec tortor auctor molestie. Sed sit amet sagittis est.\n\n[/tab_content]\n\n[tab_content tab_label="Another Tab"]\n\nNullam consequat dignissim risus, sit amet interdum risus hendrerit a. Vivamus viverra lectus sit amet ipsum placerat congue at quis turpis. Integer at porttitor mauris. Cras lacinia enim id neque pretium laoreet. Donec dignissim velit in ultricies pulvinar. Maecenas aliquet nec ipsum ac lobortis. Nam facilisis vel risus eget elementum.\n\n[button style="btn-info" size="btn-md" label="Find Out!" icon="fa-star" link="http://google.com" link_opens="_blank"]\n\n[/tab_content]\n\n[tab_content tab_label="The last one"]\n<h5>Stripped table</h5>\n<table class="table table-striped">\n<thead>\n<tr>\n<th>#</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Username</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Mark</td>\n<td>Otto</td>\n<td>@mdo</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Jacob</td>\n<td>Thornton</td>\n<td>@fat</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Larry</td>\n<td>the Bird</td>\n<td>@twitter</td>\n</tr>\n</tbody>\n</table>\n[/tab_content]\n\n[/tabs_wrapper]\n\n[/column]\n\n[column col="6"]\n<h6>Accordion</h6>\n[accordion_wrapper]\n\n[accordion_content accordion_label="Accordion Content 01"]\n\n<img class="alignleft size-thumbnail wp-image-99" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/9735272477_9f8b8a81e3_b-90x90.jpg" alt="9735272477_9f8b8a81e3_b" width="90" height="90" />Mauris sodales tellus at luctus tristique. Aenean diam augue, placerat at gravida a, aliquam eget orci. Phasellus id fringilla purus, ac fringilla mi. Integer pharetra fringilla dui a cursus. Proin dui arcu, lacinia quis elit ac, euismod feugiat sapien. Maecenas vitae velit consectetur, faucibus ligula nec, consectetur sapien. Integer aliquam accumsan quam, a venenatis dolor auctor sit amet. Donec rutrum adipiscing congue.\n\n[/accordion_content]\n\n[accordion_content accordion_label="Accordion Content 02"]\n\n<img class="alignleft size-full wp-image-280" src="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/8672902307_61427398e9_b.jpg" alt="8672902307_61427398e9_b" width="1140" height="500" />\n\n[/accordion_content]\n\n[accordion_content accordion_label="Accordion Content 03"]\n<table class="table table-striped">\n<thead>\n<tr>\n<th>#</th>\n<th>First Name</th>\n<th>Last Name</th>\n<th>Username</th>\n</tr>\n</thead>\n<tbody>\n<tr>\n<td>1</td>\n<td>Mark</td>\n<td>Otto</td>\n<td>@mdo</td>\n</tr>\n<tr>\n<td>2</td>\n<td>Jacob</td>\n<td>Thornton</td>\n<td>@fat</td>\n</tr>\n<tr>\n<td>3</td>\n<td>Larry</td>\n<td>the Bird</td>\n<td>@twitter</td>\n</tr>\n</tbody>\n</table>\n[/accordion_content]\n\n[accordion_content accordion_label="Accordion Content 04"]\n\nNullam consequat dignissim risus, sit amet interdum risus hendrerit a. Vivamus viverra lectus sit amet ipsum placerat congue at quis turpis. Integer at porttitor mauris.\n\n[separator style="dashed"]\n\nCras lacinia enim id neque pretium laoreet. Donec dignissim velit in ultricies pulvinar. Maecenas aliquet nec ipsum ac lobortis. Nam facilisis vel risus eget elementum.\n\n[/accordion_content]\n\n[accordion_content accordion_label="Accordion Content 05"]\n\nFusce sem tortor, varius pellentesque tellus et, sollicitudin aliquet sem. Aliquam tempus tempus nisi, nec ullamcorper nisi interdum vitae. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aenean augue lacus, dictum in pharetra vel, pulvinar sit amet nisi.\n\n[button style="btn-danger" size="btn-sm" label="Get it now!" icon="fa-file-o" link="http://google.com" link_opens="_blank"]\n\n[/accordion_content]\n\n[/accordion_wrapper]\n\n[/column]\n\n[/row]\n\n[separator style="regular"]\n\n[row]\n\n[column col="12"]\n<h6>Slider / Carousel</h6>\n[slider id="149"]\n\n[/column]\n\n[/row]', 'Components', '', 'publish', 'open', 'open', '', 'components', '', '', '2014-06-16 06:01:20', '2014-06-16 06:01:20', '', 0, 'http://school.wpshow.me/?page_id=210', 0, 'page', '', 0),
(264, 1, '2014-06-18 10:57:09', '2014-06-18 10:57:09', '', 'Home 01', '', 'trash', 'closed', 'closed', '', 'home-test__trashed', '', '', '2017-01-10 13:28:27', '2017-01-10 06:28:27', '', 0, 'http://school.wpshow.me/?post_type=hom_page&#038;p=264', 0, 'hom_page', '', 0),
(300, 1, '2014-06-19 09:25:21', '2014-06-19 09:25:21', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="187" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="280" height="187" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'publish', 'closed', 'closed', '', 'team-members', '', '', '2016-12-27 03:46:39', '2016-12-27 03:46:39', '', 0, 'http://school.wpshow.me/?page_id=300', 0, 'page', '', 0),
(316, 1, '2014-06-22 07:28:00', '2014-06-22 07:28:00', '', 'Home Page', '', 'publish', 'closed', 'closed', '', 'home-page', '', '', '2017-01-20 15:35:17', '2017-01-20 08:35:17', '', 0, 'http://school.wpshow.me/?post_type=hom_page&#038;p=316', 0, 'hom_page', '', 0),
(318, 1, '2014-06-22 07:34:03', '2014-06-22 07:34:03', '', 'HOME SLIDER', '', 'publish', 'closed', 'closed', '', 'home-slider', '', '', '2017-01-20 12:50:09', '2017-01-20 05:50:09', '', 0, 'http://school.wpshow.me/?post_type=slider&#038;p=318', 0, 'slider', '', 0),
(320, 1, '2014-06-22 09:02:46', '2014-06-22 09:02:46', '[row]\r\n\r\n[column col="4"]\r\n<h6><a href="http://asiacentre.co.th/asia-centre/" target="_blank">ABOUT</a></h6>\r\nThe Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\r\n<h6>SOCIAL ENTERPRISE</h6>\r\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.\r\n<h6>SERVICES</h6>\r\nWe provide consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\r\n\r\n[/column]\r\n\r\n[column col="4"]\r\n<h6>UPCOMING EVENTS</h6>\r\n[upcoming_events items_number="5"]\r\n<h6></h6>\r\n[/column]\r\n\r\n[column col="4"]\r\n\r\n&nbsp;\r\n\r\n[wpdevart_like_box profile_id="asiacentre.co.th" animation_efect="none" show_border="show" border_color="#fff" stream="show" connections="show" width="350" height="450" header="small" cover_photo="show" locale="en_US"]\r\n\r\n&nbsp;\r\n\r\n<iframe src="https://www.youtube.com/embed/imUfXuJaHgo" width="300" height="250" frameborder="0" allowfullscreen="allowfullscreen"></iframe>\r\n\r\n[/column]\r\n\r\n[/row]\r\n\r\n[gap height="40"]', '3 columns for home page', '', 'publish', 'closed', 'closed', '', '3-columns-for-home-page', '', '', '2017-01-20 16:13:53', '2017-01-20 09:13:53', '', 0, 'http://school.wpshow.me/?post_type=chunk&#038;p=320', 0, 'chunk', '', 0),
(322, 1, '2014-06-22 09:39:16', '2014-06-22 09:39:16', '', 'Home Page 03', '', 'publish', 'closed', 'closed', '', 'home-page-03', '', '', '2014-06-22 09:39:16', '2014-06-22 09:39:16', '', 0, 'http://school.wpshow.me/?post_type=hom_page&amp;p=322', 0, 'hom_page', '', 0),
(326, 1, '2014-06-23 07:44:43', '2014-06-23 07:44:43', '[team_member photo="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/team_4.jpg" name="John Doe" tagline="Student since 1994"]\n\nVivamus sagittis sem sit amet enim convallis pulvinar. Cras vitae nulla at quam interdum ornare id eget libero. Nulla facilisi\n\n[/team_member]', 'Student talk 01', '', 'publish', 'closed', 'closed', '', 'student-talk-01', '', '', '2014-06-23 07:44:43', '2014-06-23 07:44:43', '', 0, 'http://school.wpshow.me/?post_type=chunk&amp;p=326', 0, 'chunk', '', 0),
(327, 1, '2014-06-23 09:42:48', '2014-06-23 09:42:48', '', 'Spaces', '', 'trash', 'closed', 'closed', '', 'spaces__trashed', '', '', '2017-01-10 14:11:03', '2017-01-10 07:11:03', '', 0, 'http://school.wpshow.me/?post_type=slider&#038;p=327', 0, 'slider', '', 0),
(328, 1, '2014-06-23 09:51:14', '2014-06-23 09:51:14', '<h6 class="title-median">Asia Centre (Bangkok):</h6>\r\n<p class="p1"><span class="s1">128/183 Phayathai Plaza Building (17th Floor),</span><span class="s1">\r\nPhayathai Road,\r\nThung-Phayathai,\r\nRachatewi,\r\nBangkok 10400 </span>Thailand</p>\r\n\r\n<div><strong>เอเชีย เซ็นเตอร์ (กรุงเทพ):</strong></div>\r\n<div>128/183 อาคารพญาไท พลาซ่า, ชั้น 17,</div>\r\n<div>ถนนพญาไท, ทุ่งพญาไท, ราชเทวี,</div>\r\n<div>กรุงเทพ, 10400 ประเทศไทย</div>\r\n&nbsp;\r\n\r\n<strong>Tel:</strong> (66) 02-1293773\r\n\r\n<strong>Fax:</strong> (66) 02-1293774\r\n<strong>\r\nEmail:</strong> <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n\r\n<strong>Social:</strong> <a href="https://www.facebook.com/asiacentre.co.th" target="_blank">Facebook</a>\r\n\r\n<strong>How to get here:</strong> <a href="http://asiacentre.co.th/contact-us/location/">See Location Details</a>', 'Contact Details', '', 'publish', 'closed', 'closed', '', 'contact-details', '', '', '2016-12-22 10:57:00', '2016-12-22 10:57:00', '', 0, 'http://school.wpshow.me/?post_type=chunk&#038;p=328', 0, 'chunk', '', 0),
(335, 1, '2014-06-23 12:01:57', '2014-06-23 12:01:57', 'This option is the one most commonly used by students who are interested in studying a particular topic through independent readings and other activities. The specific nature of the study and criteria for evaluation need to be articulated in writing within the first two weeks of the semester by using a specific Independent Study Form that requires the signature of the faculty member supervising the study, as well as the program chair and associate dean of graduate studies.', 'Independent Study in Education', '', 'publish', 'closed', 'closed', '', 'independent-study-in-education', '', '', '2014-06-23 12:01:57', '2014-06-23 12:01:57', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=335', 0, 'course', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(336, 1, '2014-06-23 12:05:34', '2014-06-23 12:05:34', '<span class="textjustify">Explores a range of writing practices and types of texts to engage candidates in persuasive writing that is aimed at reaching teachers, parents, administrators, and faculty. Examines ways to identify audience, purpose, and styles of writing and speaking used in specific contexts and settings, including schools, organizations, and academic courses. Candidates bring real-world experiences to the course and have assignments to produce particular genres of text.</span>', 'Professional Writing and Communications', '', 'publish', 'closed', 'closed', '', 'professional-writing-and-communications', '', '', '2014-06-23 12:05:34', '2014-06-23 12:05:34', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=336', 0, 'course', '', 0),
(337, 1, '2014-06-23 12:09:45', '2014-06-23 12:09:45', '<span class="textjustify">Provides international students an opportunity to meet and discuss various topics and ideas originating in students’ coursework. Offers support and clarity to the first-year experience of international students. Extends and elaborates on topics covered in EDU 414, and visits to local schools, other Warner classes, and local sociocultural settings are offered to elucidate the American institutions studied by Warner students. This is an optional extension offered to EDU 414 participants.</span>', 'Field Experiences in American Higher Education', '', 'publish', 'closed', 'closed', '', 'field-experiences-in-american-higher-education', '', '', '2014-06-23 12:09:45', '2014-06-23 12:09:45', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=337', 0, 'course', '', 0),
(338, 1, '2014-06-23 12:12:49', '2014-06-23 12:12:49', '<span class="textjustify">A foundational study of the historical, scientific, social, and political roots of health professions education, educational theory, and the continuum of this education. Provides the contextual framework for education in the health professions and emphasizes the historical and sociological theory of the evolution of this education. Critically examines the roles and responsibilities in the assessment and certification of graduates, as well as discusses the framework for accreditation and licensing of health care professionals. Current program assessment methods and tools are reviewed, as well as ethics and responsibilities of education leaders in different roles.</span>', 'Foundations of Health Professions Education', '', 'publish', 'closed', 'closed', '', 'foundations-of-health-professions-education', '', '', '2014-06-23 12:12:49', '2014-06-23 12:12:49', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=338', 0, 'course', '', 0),
(339, 1, '2014-06-23 12:16:43', '2014-06-23 12:16:43', '<span class="textjustify">Provides an overview of advanced quantitative methods that are widely used by researchers in educational and social science settings. Offers students an opportunity to understand and use more sophisticated statistical techniques to formulate and test relevant research hypotheses; conduct rigorous data analysis; interpret results; report and present research findings; and evaluate existing quantitative research. Topics covered include: logistic regression, factor analysis, and structural equation modeling.</span>', 'Advanced Quantitative Research Methods', '', 'publish', 'closed', 'closed', '', 'advanced-quantitative-research-methods', '', '', '2014-06-23 12:16:43', '2014-06-23 12:16:43', '', 0, 'http://school.wpshow.me/?post_type=course&amp;p=339', 0, 'course', '', 0),
(347, 1, '2014-06-24 06:33:41', '2014-06-24 06:33:41', '[slider id="346"]\n\n[row]\n\n[column col="4"]\n\n[super_button icon="fa-graduation-cap" label="How to apply?" tagline="Join us whenever you feel it''s time." color="#ea5644" link="http://school.wpshow.me/?page_id=18" link_opens="_self"]\n\n[/column]\n\n[column col="4"]\n\n[super_button icon="fa-institution" label="Campus Tour" tagline="Student''s life at the glance. Take a tour..." color="#68b5e6" link="http://school.wpshow.me/?page_id=18" link_opens="_self"]\n\n[/column]\n\n[column col="4"]\n\n[super_button icon="fa-bookmark" label="Prospectus" tagline="We''ll mail you free School Prospectus." color="#1cc3a6" link="http://school.wpshow.me/?page_id=18" link_opens="_self"]\n\n[/column]\n\n[/row]', 'Home 04 content', '', 'publish', 'closed', 'closed', '', 'home-04-content', '', '', '2014-06-24 06:33:41', '2014-06-24 06:33:41', '', 0, 'http://school.wpshow.me/?post_type=chunk&amp;p=347', 0, 'chunk', '', 0),
(348, 1, '2014-06-24 06:41:14', '2014-06-24 06:41:14', '', 'Home Page 04', '', 'publish', 'closed', 'closed', '', 'home-page-04', '', '', '2014-06-24 06:41:14', '2014-06-24 06:41:14', '', 0, 'http://school.wpshow.me/?post_type=hom_page&amp;p=348', 0, 'hom_page', '', 0),
(351, 1, '2014-06-24 10:36:16', '2014-06-24 10:36:16', '', 'Home Page 05', '', 'publish', 'closed', 'closed', '', 'home-page-05', '', '', '2014-06-24 10:36:16', '2014-06-24 10:36:16', '', 0, 'http://school.wpshow.me/?post_type=hom_page&amp;p=351', 0, 'hom_page', '', 0),
(356, 1, '2014-06-24 12:14:31', '2014-06-24 12:14:31', '[row]\n\n[column col="8"]\n\n[slider id="318"]\n\n[/column]\n\n[column col="4"]\n\n[recent_news section_title="" items_number="3" exclude_categories="" style="basic"]\n\n[/column]\n\n[/row]', 'Home 05 layout', '', 'publish', 'closed', 'closed', '', 'home-05-layout', '', '', '2014-06-24 12:14:31', '2014-06-24 12:14:31', '', 0, 'http://school.wpshow.me/?post_type=chunk&amp;p=356', 0, 'chunk', '', 0),
(357, 1, '2014-06-24 12:23:18', '2014-06-24 12:23:18', '[team_member photo="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/team_3.jpg" name="Vanessa Paradeez" tagline="Student since 2012"]\n\nEtiam mollis mauris sed nisl tristique, elementum varius libero pretium. In hac habitasse platea dictumst.\n\n[/team_member]', 'Students talk 02', '', 'publish', 'closed', 'closed', '', 'students-talk-02', '', '', '2014-06-24 12:23:18', '2014-06-24 12:23:18', '', 0, 'http://school.wpshow.me/?post_type=chunk&amp;p=357', 0, 'chunk', '', 0),
(358, 1, '2010-10-05 00:27:25', '2010-10-05 07:27:25', 'All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can''t you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end.\n\n<!--more-->\n\nMrs. Darling first heard of Peter when she was tidying up her children''s minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day.\n\nIf you could keep awake (but of course you can''t) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on.\n\nI don''t know whether you have ever seen a map of a person''s mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child''s mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still.\n\nOf course the Neverlands vary a good deal. John''s, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other''s nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more.\n\nOf all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights.\n\nOccasionally in her travels through her children''s minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael''s minds, while Wendy''s began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.', 'Post Format: Standard', '', 'draft', 'closed', 'closed', '', 'post-format-standard', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 0, 'http://wpthemetestdata.wordpress.com/?p=358', 0, 'post', '', 0),
(364, 1, '2014-06-26 08:13:44', '2014-06-26 08:13:44', 'Ut pellentesque libero ac magna ornare, eget dictum orci ultricies. In quis tortor semper, luctus dolor ut, adipiscing eros. Maecenas sed pharetra neque. Nullam id ipsum id quam ultrices luctus. Donec adipiscing augue non placerat consectetur. Aliquam erat volutpat.', 'Posts Page', '', 'publish', 'open', 'open', '', 'posts-page', '', '', '2014-06-26 08:13:44', '2014-06-26 08:13:44', '', 0, 'http://school.wpshow.me/?page_id=364', 0, 'page', '', 0),
(555, 1, '2010-09-10 07:24:14', '2010-09-10 14:24:14', '[gallery]\n\n<!--nextpage-->\n\nYou can use this page to test the Theme''s handling of the[gallery]\n\nshortcode, including the <code>columns</code> parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional.\n<h2>One Column</h2>\n[gallery columns="1"]\n<h2>Two Columns</h2>\n[gallery columns="2"]\n<h2>Three Columns</h2>\n[gallery columns="3"]\n<h2>Four Columns</h2>\n[gallery columns="4"]\n<h2>Five Columns</h2>\n[gallery columns="5"]\n<h2>Six Columns</h2>\n[gallery columns="6"]\n<h2>Seven Columns</h2>\n[gallery columns="7"]\n<h2>Eight Columns</h2>\n[gallery columns="8"]\n<h2>Nine Columns</h2>\n[gallery columns="9"]', 'Post Format: Gallery', '', 'draft', 'closed', 'closed', '', 'post-format-gallery', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 0, 'http://wpthemetestdata.wordpress.com/?p=555', 0, 'post', '', 0),
(559, 1, '2010-05-09 07:51:54', '2010-05-09 14:51:54', '“I never tried to prove nothing, just wanted to give a good show. My life has always been my music, it''s always come first, but the music ain''t worth nothing if you can''t lay it on the public. The main thing is to live for that audience, ''cause what you''re there for is to please the people.”', 'Post Format: Aside', '', 'draft', 'closed', 'closed', '', 'post-format-aside', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=559', 0, 'post', '', 0),
(562, 1, '2010-01-08 07:59:31', '2010-01-08 14:59:31', 'Abbott: Strange as it may seem, they give ball players nowadays very peculiar names.\n\nCostello: Funny names?\n\nAbbott: Nicknames, nicknames. Now, on the St. Louis team we have Who''s on first, What''s on second, I Don''t Know is on third--\n\nCostello: That''s what I want to find out. I want you to tell me the names of the fellows on the St. Louis team.\n\nAbbott: I''m telling you. Who''s on first, What''s on second, I Don''t Know is on third--\n\nCostello: You know the fellows'' names?\n\nAbbott: Yes.\n\nCostello: Well, then who''s playing first?\n\nAbbott: Yes.\n\nCostello: I mean the fellow''s name on first base.\n\nAbbott: Who.\n\nCostello: The fellow playin'' first base.\n\nAbbott: Who.\n\nCostello: The guy on first base.\n\nAbbott: Who is on first.\n\nCostello: Well, what are you askin'' me for?\n\nAbbott: I''m not asking you--I''m telling you. Who is on first.\n\nCostello: I''m asking you--who''s on first?\n\nAbbott: That''s the man''s name.\n\nCostello: That''s who''s name?\n\nAbbott: Yes.\n\nCostello: When you pay off the first baseman every month, who gets the money?\n\nAbbott: Every dollar of it. And why not, the man''s entitled to it.\n\nCostello: Who is?\n\nAbbott: Yes.\n\nCostello: So who gets it?\n\nAbbott: Why shouldn''t he? Sometimes his wife comes down and collects it.\n\nCostello: Who''s wife?\n\nAbbott: Yes. After all, the man earns it.\n\nCostello: Who does?\n\nAbbott: Absolutely.\n\nCostello: Well, all I''m trying to find out is what''s the guy''s name on first base?\n\nAbbott: Oh, no, no. What is on second base.\n\nCostello: I''m not asking you who''s on second.\n\nAbbott: Who''s on first!\n\nCostello: St. Louis has a good outfield?\n\nAbbott: Oh, absolutely.\n\nCostello: The left fielder''s name?\n\nAbbott: Why.\n\nCostello: I don''t know, I just thought I''d ask.\n\nAbbott: Well, I just thought I''d tell you.\n\nCostello: Then tell me who''s playing left field?\n\nAbbott: Who''s playing first.\n\nCostello: Stay out of the infield! The left fielder''s name?\n\nAbbott: Why.\n\nCostello: Because.\n\nAbbott: Oh, he''s center field.\n\nCostello: Wait a minute. You got a pitcher on this team?\n\nAbbott: Wouldn''t this be a fine team without a pitcher?\n\nCostello: Tell me the pitcher''s name.\n\nAbbott: Tomorrow.\n\nCostello: Now, when the guy at bat bunts the ball--me being a good catcher--I want to throw the guy out at first base, so I pick up the ball and throw it to who?\n\nAbbott: Now, that''s he first thing you''ve said right.\n\nCostello: I DON''T EVEN KNOW WHAT I''M TALKING ABOUT!\n\nAbbott: Don''t get excited. Take it easy.\n\nCostello: I throw the ball to first base, whoever it is grabs the ball, so the guy runs to second. Who picks up the ball and throws it to what. What throws it to I don''t know. I don''t know throws it back to tomorrow--a triple play.\n\nAbbott: Yeah, it could be.\n\nCostello: Another guy gets up and it''s a long ball to center.\n\nAbbott: Because.\n\nCostello: Why? I don''t know. And I don''t care.\n\nAbbott: What was that?\n\nCostello: I said, I DON''T CARE!\n\nAbbott: Oh, that''s our shortstop!', 'Post Format: Chat', '', 'draft', 'closed', 'closed', '', 'post-format-chat', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 0, 'http://wpthemetestdata.wordpress.com/?p=562', 0, 'post', '', 0),
(565, 1, '2010-03-07 08:06:53', '2010-03-07 15:06:53', '<a href="http://make.wordpress.org/themes" title="The WordPress Theme Review Team Website">The WordPress Theme Review Team Website</a>', 'Post Format: Link', '', 'draft', 'closed', 'closed', '', 'post-format-link', '', '', '2015-08-30 09:09:37', '2015-08-30 09:09:37', '', 0, 'http://wpthemetestdata.wordpress.com/?p=565', 0, 'post', '', 0),
(568, 1, '2010-08-06 08:09:39', '2010-08-06 15:09:39', '[caption id="attachment_612" align="aligncenter" width="640" caption="Chunk of resinous blackboy husk, Clarkson, Western Australia. This burns like a spinifex log."]<a href="http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg"><img src="http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg" alt="chunk of resinous blackboy husk" title="dsc20040724_152504_532" width="640" height="480" class="size-full wp-image-612" /></a>[/caption]\n', 'Post Format: Image (Linked)', '', 'draft', 'closed', 'closed', '', 'post-format-image-linked', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=568', 0, 'post', '', 0),
(575, 1, '2010-02-05 08:13:15', '2010-02-05 15:13:15', '<blockquote>Only one thing is impossible for God: To find any sense in any copyright law on the planet.\n<cite><a href="http://www.brainyquote.com/quotes/quotes/m/marktwain163473.html">Mark Twain</a></cite></blockquote>', 'Post Format: Quote', '', 'draft', 'closed', 'closed', '', 'post-format-quote', '', '', '2015-08-30 09:09:37', '2015-08-30 09:09:37', '', 0, 'http://wpthemetestdata.wordpress.com/?p=575', 0, 'post', '', 0),
(579, 1, '2010-04-04 08:21:24', '2010-04-04 15:21:24', 'WordPress, how do I love thee? Let me count the ways (in 140 characters or less).', 'Post Format: Status', '', 'draft', 'closed', 'closed', '', 'post-format-status', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=579', 0, 'post', '', 0),
(582, 1, '2010-06-03 08:25:58', '2010-06-03 15:25:58', 'http://wordpress.tv/2009/03/16/anatomy-of-a-wordpress-theme-exploring-the-files-behind-your-theme/\n\nPosted as per the <a href="http://codex.wordpress.org/Embeds" target="_blank">instructions in the Codex</a>.', 'Post Format: Video (WordPress.tv)', '', 'draft', 'closed', 'closed', '', 'post-format-video-wordpresstv', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=582', 0, 'post', '', 0),
(587, 1, '2010-07-02 08:36:44', '2010-07-02 15:36:44', 'Link:\n\n<a href="http://asiacentre.brickisred.com/wp-content/uploads/2012/07/originaldixielandjazzbandwithalbernard-stlouisblues.mp3">St. Louis Blues</a>\n\nAudio shortcode:\n\n[audio http://asiacentre.brickisred.com/wp-content/uploads/2012/07/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]', 'Post Format: Audio', '', 'draft', 'closed', 'closed', '', 'post-format-audio', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=587', 0, 'post', '', 0),
(701, 1, '2011-05-20 18:49:43', '2011-05-21 01:49:43', 'Asia Centre is a human rights consultancy that operates as an online social enterprise.\r\n\r\nIt provides expert advice and technical support globally to not-for-profit organizations, inter-governmental organizations, national institutions, research institutes, tertiary institutions and social enterprises that make up the human rights community.\r\n\r\nAt the core of our strength is 20 years of experience in human rights research, policy advice, tertiary teaching, training and professional development in the Asia-Pacific region.\r\n\r\nBacked by substantive fieldwork and institutional experience, our understanding of the economic, political and social traditions in the Asia-Pacific region ensures expert service to our clients.\r\n\r\nOur services are designed to be affordable, of high quality and tailored to our clients'' needs. We take pride in the timely delivery of assignments.\r\n\r\nPlease feel free to contact us if you want to explore collaborative opportunities.', 'Home', '', 'publish', 'closed', 'closed', '', 'front-page', '', '', '2016-02-23 08:53:29', '2016-02-23 08:53:29', '', 0, 'http://wpthemetestdata.wordpress.com/?page_id=701', 0, 'page', '', 0),
(703, 1, '2011-05-20 18:51:43', '2011-05-21 01:51:43', 'Use this static Page to test the Theme''s handling of the Blog Posts Index page. If the site is set to display a static Page on the Front Page, and this Page is set to display the Blog Posts Index, then this text should not appear.', 'Blog', '', 'publish', 'open', 'closed', '', 'blog', '', '', '2011-05-20 18:51:43', '2011-05-21 01:51:43', '', 0, 'http://wpthemetestdata.wordpress.com/?page_id=703', 0, 'page', '', 0),
(993, 1, '2012-03-15 14:38:08', '2012-03-15 21:38:08', 'This is the post content. It should be displayed in place of the user-defined excerpt in single-page views.', 'Template: Excerpt (Defined)', 'This is a user-defined post excerpt. It should be displayed in place of the post content in archive-index pages.', 'draft', 'closed', 'closed', '', 'template-excerpt-defined', '', '', '2015-08-30 09:08:26', '2015-08-30 09:08:26', '', 0, 'http://wptest.io/demo/?p=993', 0, 'post', '', 0),
(996, 1, '2012-03-15 14:41:11', '2012-03-15 21:41:11', 'This content is before the <a title="The More Tag" href="http://en.support.wordpress.com/splitting-content/more-tag/" target="_blank">more tag</a>.\r\n\r\nRight after this sentence should be a "continue reading" button of some sort.\r\n\r\n<!--more-->\r\n\r\nAnd this content is after the more tag.', 'Template: More Tag', '', 'draft', 'closed', 'closed', '', 'template-more-tag', '', '', '2015-08-30 09:08:14', '2015-08-30 09:08:14', '', 0, 'http://wptest.io/demo/?p=996', 0, 'post', '', 0),
(1000, 1, '2009-05-15 14:48:32', '2009-05-15 21:48:32', 'Nested and mixed lists are an interesting beast. It''s a corner case to make sure that\n<ul>\n	<li><span style="line-height:1.714285714;font-size:1rem;">Lists within lists do not break the ordered list numbering order</span></li>\n	<li><span style="line-height:1.714285714;font-size:1rem;">Your list styles go deep enough.</span></li>\n</ul>\n<h3>Ordered - Unordered - Ordered</h3>\n<ol>\n	<li>ordered item</li>\n	<li>ordered item\n<ul>\n	<li><strong>unordered</strong></li>\n	<li><strong>unordered</strong>\n<ol>\n	<li>ordered item</li>\n	<li>ordered item</li>\n</ol>\n</li>\n</ul>\n</li>\n	<li>ordered item</li>\n	<li>ordered item</li>\n</ol>\n<h3>Ordered - Unordered - Unordered</h3>\n<ol>\n	<li>ordered item</li>\n	<li>ordered item\n<ul>\n	<li><strong>unordered</strong></li>\n	<li><strong>unordered</strong>\n<ul>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>\n</li>\n</ul>\n</li>\n	<li>ordered item</li>\n	<li>ordered item</li>\n</ol>\n<h3>Unordered - Ordered - Unordered</h3>\n<ul>\n	<li>unordered item</li>\n	<li>unordered item\n<ol>\n	<li>ordered</li>\n	<li>ordered\n<ul>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>\n</li>\n</ol>\n</li>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>\n<h3>Unordered - Unordered - Ordered</h3>\n<ul>\n	<li>unordered item</li>\n	<li>unordered item\n<ul>\n	<li>unordered</li>\n	<li>unordered\n<ol>\n	<li><strong>ordered item</strong></li>\n	<li><strong>ordered item</strong></li>\n</ol>\n</li>\n</ul>\n</li>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>', 'Edge Case: Nested And Mixed Lists', '', 'draft', 'closed', 'closed', '', 'edge-case-nested-and-mixed-lists', '', '', '2015-08-30 09:10:05', '2015-08-30 09:10:05', '', 0, 'http://wptest.io/demo/?p=1000', 0, 'post', '', 0),
(1005, 1, '2010-06-02 03:00:34', '2010-06-02 10:00:34', '[wpvideo tFnqC9XQ w=680]\n\n<a title="VideoPress Plugin for WordPress" href="http://videopress.com/" target="_blank">VideoPress</a>, especially as a video post format, usually provides some unique styling issues.\n\nYou will need to install <a title="Jetpack for WordPress" href="http://jetpack.me/" target="_blank">Jetpack</a> or <a title="Slim Jetpack" href="http://wordpress.org/extend/plugins/slimjetpack/" target="_blank">Slim Jetpack</a> plugin to turn the shortcode into a viewable video.', 'Post Format: Video (VideoPress)', '', 'draft', 'closed', 'closed', '', 'post-format-video-videopress', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wptest.io/demo/?p=1005', 0, 'post', '', 0),
(1011, 1, '2012-03-15 15:15:12', '2012-03-15 22:15:12', 'This post should display a <a title="Featured Images" href="http://en.support.wordpress.com/featured-images/#setting-a-featured-image" target="_blank">featured image</a>, if the theme <a title="Post Thumbnails" href="http://codex.wordpress.org/Post_Thumbnails" target="_blank">supports it</a>.\r\n\r\nNon-square images can provide some unique styling issues.\r\n\r\nThis post tests a horizontal featured image.', 'Template: Featured Image (Horizontal)', '', 'draft', 'closed', 'closed', '', 'template-featured-image-horizontal', '', '', '2015-08-30 09:07:30', '2015-08-30 09:07:30', '', 0, 'http://wptest.io/demo/?p=1011', 0, 'post', '', 0),
(1016, 1, '2012-03-15 15:36:32', '2012-03-15 22:36:32', 'This post should display a <a title="Featured Images" href="http://en.support.wordpress.com/featured-images/#setting-a-featured-image" target="_blank">featured image</a>, if the theme <a title="Post Thumbnails" href="http://codex.wordpress.org/Post_Thumbnails" target="_blank">supports it</a>.\r\n\r\nNon-square images can provide some unique styling issues.\r\n\r\nThis post tests a vertical featured image.', 'Template: Featured Image (Vertical)', '', 'draft', 'closed', 'closed', '', 'template-featured-image-vertical', '', '', '2015-08-30 09:08:00', '2015-08-30 09:08:00', '', 0, 'http://wptest.io/demo/?p=1016', 0, 'post', '', 0),
(1031, 1, '2010-09-09 17:23:27', '2010-09-10 00:23:27', 'This is a test for Jetpack''s Tiled Gallery.\n\nInstall <a title="Jetpack for WordPress" href="http://wordpress.org/plugins/jetpack/" target="_blank">Jetpack</a> to test.\n\n[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"]\n\nThis is some text after the Tiled Gallery just to make sure that everything spaces nicely.', 'Post Format: Gallery (Tiled)', '', 'draft', 'closed', 'closed', '', 'post-format-gallery-tiled', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 0, 'http://wptest.io/demo/?p=1031', 0, 'post', '', 0),
(1148, 1, '2012-01-03 10:11:37', '2012-01-03 17:11:37', 'This post tests comments in the following ways.\r\n<ul>\r\n	<li>Threaded comments up to 10 levels deep</li>\r\n	<li>Paginated comments (set <em><strong>Settings &gt; Discussion &gt; Break comments into pages</strong></em> to <em><strong>5</strong></em> top level comments per page)</li>\r\n	<li>Comment markup / formatting</li>\r\n	<li>Comment images</li>\r\n	<li>Comment videos</li>\r\n	<li>Author comments</li>\r\n	<li>Gravatars and default fallbacks</li>\r\n</ul>', 'Template: Comments', '', 'draft', 'closed', 'closed', '', 'template-comments', '', '', '2015-08-30 09:09:34', '2015-08-30 09:09:34', '', 0, 'http://wpthemetestdata.wordpress.com/2007/09/04/comment-test/', 0, 'post', '', 0),
(1149, 1, '2012-01-01 10:17:18', '2012-01-01 17:17:18', 'This post has many pingpacks and trackbacks.\n\nThere are a few ways to list them.\n<ol>\n	<li>Above the comments</li>\n	<li>Below the comments</li>\n	<li>Included within the normal flow of comments</li>\n</ol>', 'Template: Pingbacks And Trackbacks', '', 'draft', 'closed', 'closed', '', 'template-pingbacks-an-trackbacks', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 0, 'http://wpthemetestdata.wordpress.com/2007/09/04/many-trackbacks/', 0, 'post', '', 0),
(1150, 1, '2012-01-02 10:21:15', '2012-01-02 17:21:15', 'This post has its comments, pingbacks, and trackbacks disabled.\n\nThere should be no comment reply form, but <em>should</em> display pingbacks and trackbacks.', 'Template: Comments Disabled', '', 'draft', 'closed', 'closed', '', 'template-comments-disabled', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 0, 'http://wpthemetestdata.wordpress.com/2007/09/04/no-comments/', 0, 'post', '', 0),
(1151, 1, '2009-06-01 01:00:34', '2009-06-01 08:00:34', 'This post has many tags.', 'Edge Case: Many Tags', '', 'draft', 'closed', 'closed', '', 'edge-case-many-tags', '', '', '2015-08-30 09:10:05', '2015-08-30 09:10:05', '', 0, 'http://wpthemetestdata.wordpress.com/2007/11/24/many-tags/', 0, 'post', '', 0),
(1152, 1, '2009-07-02 02:00:03', '2009-07-02 09:00:03', 'This post has many categories.', 'Edge Case: Many Categories', '', 'draft', 'closed', 'closed', '', 'edge-case-many-categories', '', '', '2015-08-30 09:10:05', '2015-08-30 09:10:05', '', 0, 'http://wpthemetestdata.wordpress.com/2007/11/24/many-categories/', 0, 'post', '', 0),
(1153, 1, '2020-01-01 12:00:18', '2020-01-01 19:00:18', 'This post is scheduled to be published in the future.\r\n\r\nIt should not be displayed by the theme.', 'Scheduled', '', 'future', 'closed', 'closed', '', 'scheduled', '', '', '2015-06-03 06:10:27', '2015-06-03 06:10:27', '', 0, 'http://wpthemetestdata.wordpress.com/?p=418', 0, 'post', '', 0),
(1158, 1, '2010-08-08 05:00:39', '2010-08-08 12:00:39', '<dl id="attachment_612" class="wp-caption aligncenter" style="width:650px;"><dt class="wp-caption-dt"></dt></dl>&nbsp;\n\n<a href="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5540.jpg"><img class="alignnone wp-image-755 size-large" src="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5540.jpg?w=604" alt="" width="604" height="453" /></a>', 'Post Format: Image', '', 'draft', 'closed', 'closed', '', 'post-format-image', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 0, 'http://wpthemetestdata.wordpress.com/?p=568', 0, 'post', '', 0),
(1161, 1, '2010-06-02 02:00:58', '2010-06-02 09:00:58', 'http://www.youtube.com/watch?v=SQEQr7c0-dw\n\nLearn more about <a title="WordPress Embeds" href="http://codex.wordpress.org/Embeds" target="_blank">WordPress Embeds</a>.', 'Post Format: Video (YouTube)', '', 'draft', 'closed', 'closed', '', 'post-format-video-youtube', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=582', 0, 'post', '', 0),
(1163, 1, '2010-08-07 06:00:19', '2010-08-07 13:00:19', '[caption id="attachment_754" align="alignnone" width="604"]<a href="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5478.jpg"><img class="wp-image-754 size-large" src="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5478.jpg?w=604" alt="Bell on Wharf" width="604" height="453" /></a> Bell on wharf in San Francisco[/caption]', 'Post Format: Image (Caption)', '', 'draft', 'closed', 'closed', '', 'post-format-image-caption', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=674', 0, 'post', '', 0),
(1168, 1, '2012-01-04 09:38:05', '2012-01-04 16:38:05', 'This content, comments, pingbacks, and trackbacks should not be visible until the password is entered.', 'Template: Password Protected (the password is "enter")', '', 'draft', 'closed', 'closed', 'enter', 'template-password-protected', '', '', '2015-08-30 09:09:34', '2015-08-30 09:09:34', '', 0, 'http://wpthemetestdata.wordpress.com/2007/09/04/test-with-secret-password/', 0, 'post', '', 0),
(1169, 1, '2009-09-05 09:00:23', '2009-09-05 16:00:23', 'This post has no title, but it still must link to the single post view somehow.\n\nThis is typically done by placing the permalink on the post date.', '', '', 'draft', 'closed', 'closed', '', 'edge-case-no-title', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 0, 'http://wpthemetestdata.wordpress.com/2007/09/04/14/', 0, 'post', '', 0),
(1170, 1, '2009-08-06 09:39:56', '2009-08-06 16:39:56', '', 'Edge Case: No Content', '', 'draft', 'closed', 'closed', '', 'edge-case-no-content', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 0, 'http://wpthemetestdata.wordpress.com/2007/09/04/this-post-has-no-body/', 0, 'post', '', 0),
(1171, 1, '2012-01-08 10:00:20', '2012-01-08 17:00:20', 'Post Page 1\r\n\r\n<!--nextpage-->\r\n\r\nPost Page 2\r\n\r\n<!--nextpage-->\r\n\r\nPost Page 3', 'Template: Paginated', '', 'draft', 'closed', 'closed', '', 'template-paginated', '', '', '2015-08-30 09:10:34', '2015-08-30 09:10:34', '', 0, 'http://noeltest.wordpress.com/?p=188', 0, 'post', '', 0),
(1173, 1, '2013-01-05 10:00:49', '2013-01-05 17:00:49', 'Verify that:\r\n<ul>\r\n	<li><span style="line-height: 1.714285714; font-size: 1rem;">The post title renders the word "with" in </span><em style="line-height: 1.714285714; font-size: 1rem;">italics</em><span style="line-height: 1.714285714; font-size: 1rem;"> and the word "markup" in </span><strong style="line-height: 1.714285714; font-size: 1rem;">bold</strong><span style="line-height: 1.714285714; font-size: 1rem;">.</span></li>\r\n	<li><span style="line-height: 1.714285714; font-size: 1rem;">The post title markup should be removed from the browser window / tab.</span></li>\r\n</ul>', 'International Asian Story', '', 'draft', 'closed', 'closed', '', 'markup-title-with-markup', '', '', '2015-08-30 09:07:30', '2015-08-30 09:07:30', '', 0, 'http://wptest.io/demo/?p=861', 0, 'post', '', 0),
(1174, 1, '2013-01-05 11:00:20', '2013-01-05 18:00:20', 'Putting special characters in the title should have no adverse effect on the layout or functionality.\r\n\r\nSpecial characters in the post title have been known to cause issues with JavaScript when it is minified, especially in the admin when editing the post itself (ie. issues with metaboxes, media upload, etc.).\r\n<h2>Latin Character Tests</h2>\r\nThis is a test to see if the fonts used in this theme support basic Latin characters.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>!</td>\r\n<td>"</td>\r\n<td>#</td>\r\n<td>$</td>\r\n<td>%</td>\r\n<td>&amp;</td>\r\n<td>''</td>\r\n<td>(</td>\r\n<td>)</td>\r\n<td>*</td>\r\n</tr>\r\n<tr>\r\n<td>+</td>\r\n<td>,</td>\r\n<td>-</td>\r\n<td>.</td>\r\n<td>/</td>\r\n<td>0</td>\r\n<td>1</td>\r\n<td>2</td>\r\n<td>3</td>\r\n<td>4</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td>6</td>\r\n<td>7</td>\r\n<td>8</td>\r\n<td>9</td>\r\n<td>:</td>\r\n<td>;</td>\r\n<td>&gt;</td>\r\n<td>=</td>\r\n<td>&lt;</td>\r\n</tr>\r\n<tr>\r\n<td>?</td>\r\n<td>@</td>\r\n<td>A</td>\r\n<td>B</td>\r\n<td>C</td>\r\n<td>D</td>\r\n<td>E</td>\r\n<td>F</td>\r\n<td>G</td>\r\n<td>H</td>\r\n</tr>\r\n<tr>\r\n<td>I</td>\r\n<td>J</td>\r\n<td>K</td>\r\n<td>L</td>\r\n<td>M</td>\r\n<td>N</td>\r\n<td>O</td>\r\n<td>P</td>\r\n<td>Q</td>\r\n<td>R</td>\r\n</tr>\r\n<tr>\r\n<td>S</td>\r\n<td>T</td>\r\n<td>U</td>\r\n<td>V</td>\r\n<td>W</td>\r\n<td>X</td>\r\n<td>Y</td>\r\n<td>Z</td>\r\n<td>[</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>]</td>\r\n<td>^</td>\r\n<td>_</td>\r\n<td>`</td>\r\n<td>a</td>\r\n<td>b</td>\r\n<td>c</td>\r\n<td>d</td>\r\n<td>e</td>\r\n<td>f</td>\r\n</tr>\r\n<tr>\r\n<td>g</td>\r\n<td>h</td>\r\n<td>i</td>\r\n<td>j</td>\r\n<td>k</td>\r\n<td>l</td>\r\n<td>m</td>\r\n<td>n</td>\r\n<td>o</td>\r\n<td>p</td>\r\n</tr>\r\n<tr>\r\n<td>q</td>\r\n<td>r</td>\r\n<td>s</td>\r\n<td>t</td>\r\n<td>u</td>\r\n<td>v</td>\r\n<td>w</td>\r\n<td>x</td>\r\n<td>y</td>\r\n<td>z</td>\r\n</tr>\r\n<tr>\r\n<td>{</td>\r\n<td>|</td>\r\n<td>}</td>\r\n<td>~</td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>', 'Singapore Conference Update', '', 'draft', 'closed', 'closed', '', 'title-with-special-characters', '', '', '2015-08-30 09:07:30', '2015-08-30 09:07:30', '', 0, 'http://wptest.io/demo/?p=867', 0, 'post', '', 0),
(1175, 1, '2009-10-05 12:00:59', '2009-10-05 19:00:59', '<h2>Title should not overflow the content area</h2>\n\nA few things to check for:\n<ul>\n	<li>Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.</li>\n	<li>Check the browser window / tab title.</li>\n	<li>If you are a plugin or widget developer, check that this text does not break anything.</li>\n</ul>\n\nThe following CSS properties will help you support non-breaking text.\n\n<pre>-ms-word-wrap: break-word;\nword-wrap: break-word;</pre>\n&nbsp;', 'Antidisestablishmentarianism', '', 'draft', 'closed', 'closed', '', 'title-should-not-overflow-the-content-area', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 0, 'http://wptest.io/demo/?p=877', 0, 'post', '', 0),
(1176, 1, '2013-01-09 09:00:39', '2013-01-09 09:00:39', '<h3>Default</h3>\r\nThis is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me.\r\n<h3>Left Align</h3>\r\n<p style="text-align: left;">This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it''s views. It''s favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.</p>\r\n\r\n<h3>Center Align</h3>\r\n<p style="text-align: center;">This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.</p>\r\n\r\n<h3>Right Align</h3>\r\n<p style="text-align: right;">This is a paragraph. It is right aligned. It is a bit more conservative in it''s views. It''s prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it''s a pretty good shot from at least four or five football fields away. Dead on. So boss.</p>\r\n\r\n<h3>Justify Align</h3>\r\n<p style="text-align: justify;">This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it''s place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.</p>', 'Scheduled events', '', 'draft', 'closed', 'closed', '', 'markup-text-alignment', '', '', '2015-08-30 09:07:30', '2015-08-30 09:07:30', '', 0, 'http://wptest.io/demo/?p=895', 0, 'post', '', 0),
(1177, 1, '2013-01-10 20:15:40', '2013-01-11 03:15:40', 'Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let''s get started.\r\n\r\nOn the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em>, <em>Medium</em>, <em>Large</em> &amp; <em>Fullsize</em>.\r\n<p style="text-align: center;"><img class="size-full wp-image-906 aligncenter" title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /></p>\r\nThe image above happens to be <em><strong>centered</strong></em>.\r\n\r\n<strong><img class="size-full wp-image-904 alignleft" title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n<img class="alignnone  wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" />\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n<img class="size-full wp-image-905 alignright" title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" />\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd just when you thought we were done, we''re going to do them all over again with captions!\r\n\r\n[caption id="attachment_906" align="aligncenter" width="580"]<img class="size-full wp-image-906  " title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /> Look at 580x300 getting some <a title="Image Settings" href="http://en.support.wordpress.com/images/image-settings/">caption</a> love.[/caption]\r\n\r\nThe image above happens to be <em><strong>centered</strong></em>. The caption also has a link in it, just to see if it does anything funky.\r\n\r\n[caption id="attachment_904" align="alignleft" width="150"]<img class="size-full wp-image-904  " title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /> Itty-bitty caption.[/caption]\r\n\r\nThe rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n[caption id="attachment_907" align="alignnone" width="1200"]<img class=" wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" /> Massive image comment for your eyeballs.[/caption]\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n[caption id="attachment_905" align="alignright" width="300"]<img class="size-full wp-image-905 " title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" /> Feels good to be right all the time.[/caption]\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd that''s a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!', 'Publications', '', 'draft', 'closed', 'closed', '', 'markup-image-alignment', '', '', '2015-08-30 09:07:30', '2015-08-30 09:07:30', '', 0, 'http://wptest.io/demo/?p=903', 0, 'post', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1178, 1, '2013-01-11 20:22:19', '2013-01-12 03:22:19', '<h2>Headings</h2>\r\n<h1>Header one</h1>\r\n<h2>Header two</h2>\r\n<h3>Header three</h3>\r\n<h4>Header four</h4>\r\n<h5>Header five</h5>\r\n<h6>Header six</h6>\r\n<h2>Blockquotes</h2>\r\nSingle line blockquote:\r\n<blockquote>Stay hungry. Stay foolish.</blockquote>\r\nMulti line blockquote with a cite reference:\r\n<blockquote>People think focus means saying yes to the thing you''ve got to focus on. But that''s not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I''m actually as proud of the things we haven''t done as the things I have done. Innovation is saying no to 1,000 things.</blockquote>\r\n<cite>Steve Jobs</cite> - Apple Worldwide Developers'' Conference, 1997\r\n<h2>Tables</h2>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Employee</th>\r\n<th>Salary</th>\r\n<th></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<th><a href="http://example.org/">John Doe</a></th>\r\n<td>$1</td>\r\n<td>Because that''s all Steve Jobs needed for a salary.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Doe</a></th>\r\n<td>$100K</td>\r\n<td>For all the blogging she does.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Fred Bloggs</a></th>\r\n<td>$100M</td>\r\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Bloggs</a></th>\r\n<td>$100B</td>\r\n<td>With hair like that?! Enough said...</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Definition Lists</h2>\r\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I''ll let Bill O''Reilly will <a title="We''ll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd></dl>\r\n<h2>Unordered Lists (Nested)</h2>\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n<h2>Ordered List (Nested)</h2>\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n<h2>HTML Tags</h2>\r\nThese supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.\r\n\r\n<strong>Address Tag</strong>\r\n\r\n<address>1 Infinite Loop\r\nCupertino, CA 95014\r\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\r\n\r\nThis is an example of a <a title="Apple" href="http://apple.com">link</a>.\r\n\r\n<strong>Abbreviation Tag</strong>\r\n\r\nThe abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".\r\n\r\n<strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong>\r\n\r\nThe acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".\r\n\r\n<strong>Big Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThese tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.\r\n\r\n<strong>Cite Tag</strong>\r\n\r\n"Code is poetry." --<cite>Automattic</cite>\r\n\r\n<strong>Code Tag</strong>\r\n\r\nYou will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.\r\n\r\n<strong>Delete Tag</strong>\r\n\r\nThis tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).\r\n\r\n<strong>Emphasize Tag</strong>\r\n\r\nThe emphasize tag should <em>italicize</em> text.\r\n\r\n<strong>Insert Tag</strong>\r\n\r\nThis tag should denote <ins>inserted</ins> text.\r\n\r\n<strong>Keyboard Tag</strong>\r\n\r\nThis scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Preformatted Tag</strong>\r\n\r\nThis tag styles large blocks of code.\r\n<pre>.post-title {\r\n	margin: 0 0 5px;\r\n	font-weight: bold;\r\n	font-size: 38px;\r\n	line-height: 1.2;\r\n	and here''s a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;\r\n}</pre>\r\n<strong>Quote Tag</strong>\r\n\r\n<q>Developers, developers, developers...</q> --Steve Ballmer\r\n\r\n<strong>Strike Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis tag shows <span style="text-decoration: line-through;">strike-through text</span>\r\n\r\n<strong>Strong Tag</strong>\r\n\r\nThis tag shows <strong>bold<strong> text.</strong></strong>\r\n\r\n<strong>Subscript Tag</strong>\r\n\r\nGetting our science styling on with H<sub>2</sub>O, which should push the "2" down.\r\n\r\n<strong>Superscript Tag</strong>\r\n\r\nStill sticking with science and Isaac Newton''s E = MC<sup>2</sup>, which should lift the 2 up.\r\n\r\n<strong>Teletype Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Variable Tag</strong>\r\n\r\nThis allows you to denote <var>variables</var>.', 'South East Asia 2015', '', 'draft', 'closed', 'closed', '', 'conference-update', '', '', '2015-08-30 09:07:30', '2015-08-30 09:07:30', '', 0, 'http://wptest.io/demo/?p=919', 0, 'post', '', 0),
(1179, 1, '2011-03-15 15:47:16', '2011-03-15 22:47:16', 'https://twitter.com/nacin/status/319508408669708289\n\nThis post tests WordPress'' <a title="Twitter Embeds" href="http://en.support.wordpress.com/twitter/twitter-embeds/" target="_blank">Twitter Embeds</a> feature.', 'Media: Twitter Embeds', '', 'draft', 'closed', 'closed', '', 'media-twitter-embeds', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 0, 'http://wptest.io/demo/?p=1027', 0, 'post', '', 0),
(1241, 1, '2012-01-07 07:07:21', '2012-01-07 14:07:21', 'This is a sticky post.\r\n\r\nThere are a few things to verify:\r\n<ul>\r\n	<li>The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the <code>.sticky</code> class if you are using the <a title="WordPress Codex post_class() Function" href="http://codex.wordpress.org/Function_Reference/post_class" target="_blank">post_class()</a> function to generate your post classes, which is a best practice.</li>\r\n	<li>They should show at the very top of the blog index page, even though they could be several posts back chronologically.</li>\r\n	<li>They should still show up again in their chronologically correct postion in time, but without the sticky indicator.</li>\r\n	<li>If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.</li>\r\n</ul>', 'Template: Sticky', '', 'draft', 'closed', 'closed', '', 'template-sticky', '', '', '2015-08-30 09:09:34', '2015-08-30 09:09:34', '', 0, 'http://wptest.io/demo/?p=1241', 0, 'post', '', 0),
(1446, 1, '2012-03-14 09:49:22', '2012-03-14 16:49:22', 'This is the post content. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content. Depending on Theme-defined filters, the length of the auto-generated excerpt will vary from Theme-to-Theme. The default length for auto-generated excerpts is 55 words, so to test the excerpt auto-generation, this post must have more than 55 words.\r\n\r\nBe sure to test the formatting of the auto-generated excerpt, to ensure that it doesn''t create any layout problems. Also, ensure that any filters applied to the excerpt, such as &lt;code&gt;excerpt_length&lt;/code&gt; and &lt;code&gt;excerpt_more&lt;/code&gt;, display properly.', 'Template: Excerpt (Generated)', '', 'draft', 'closed', 'closed', '', 'template-excerpt-generated', '', '', '2015-08-30 09:08:36', '2015-08-30 09:08:36', '', 0, 'http://wpthemetestdata.wordpress.com/?p=1446', 0, 'post', '', 0),
(1636, 1, '2015-05-25 09:24:41', '2015-05-25 09:24:41', '', 'Home', '', 'publish', 'open', 'closed', '', 'home-2', '', '', '2016-07-04 10:09:24', '2016-07-04 10:09:24', '', 0, 'http://asiacentre.brickisred.com/uncategorized/%post%/', 1, 'nav_menu_item', '', 0),
(1637, 1, '2015-05-25 09:24:41', '2015-05-25 09:24:41', ' ', '', '', 'publish', 'open', 'closed', '', '1637', '', '', '2016-07-04 10:09:24', '2016-07-04 10:09:24', '', 0, 'http://asiacentre.brickisred.com/uncategorized/%post%/', 2, 'nav_menu_item', '', 0),
(1638, 1, '2015-05-25 09:24:41', '2015-05-25 09:24:41', ' ', '', '', 'publish', 'open', 'closed', '', '1638', '', '', '2016-07-04 10:09:24', '2016-07-04 10:09:24', '', 0, 'http://asiacentre.brickisred.com/uncategorized/%post%/', 3, 'nav_menu_item', '', 0),
(1705, 1, '2015-05-25 09:35:00', '2015-05-25 09:35:00', 'Asia Centre is a human rights consultancy that operates as an online social enterprise.\r\n\r\nIt provides expert advice and technical support globally to not-for-profit organizations, inter-governmental organizations, national institutions, research institutes, tertiary institutions and social enterprises that make up the human rights community.\r\n\r\nAt the core of our strength is 20 years of experience in human rights research, policy advice, tertiary teaching, training and professional development in the Asia-Pacific region.\r\n\r\nBacked by substantive fieldwork and institutional experience, our understanding of the economic, political and social traditions in the Asia-Pacific region ensures expert service to our clients.\r\n\r\nOur services are designed to be affordable, of high quality and tailored to our clients'' needs. We take pride in timely delivery of assignments.\r\n\r\nPlease feel free to contact us if you want to explore collaborative opportunities.', '', '', 'inherit', 'open', 'open', '', '701-revision-v1', '', '', '2015-05-25 09:35:00', '2015-05-25 09:35:00', '', 701, 'http://asiacentre.brickisred.com/uncategorized/%post%/', 0, 'revision', '', 0),
(1712, 1, '2015-06-02 07:56:01', '2015-06-02 07:56:01', '<p>Your Name (required)<br />\r\n    [text* your-name] </p>\r\n\r\n<p>Your Email (required)<br />\r\n    [email* your-email] </p>\r\n\r\n<p>Subject<br />\r\n    [text your-subject] </p>\r\n\r\n<p>Your Message<br />\r\n    [textarea your-message] </p>\r\n\r\n<p>[submit "Send"]</p>\n[your-subject]\ninfo@asiacentre.co.th\nFrom: [your-name] <[your-email]>\r\nSubject: [your-subject]\r\n\r\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Asia Centre\ninfo@asiacentre.co.th\nReply-To: [your-email]\n\n\n\n\n[your-subject]\nAsia Centre <wordpress@asiacentre.brickisred.com>\nMessage Body:\r\n[your-message]\r\n\r\n--\r\nThis e-mail was sent from a contact form on Asia Centre (http://asiacentre.brickisred.com)\n[your-email]\nReply-To: barry.gildea@gmail.com\n\n\n\nYour message was sent successfully. Thanks.\nFailed to send your message. Please try later or contact the administrator by another method.\nValidation errors occurred. Please confirm the fields and submit it again.\nFailed to send your message. Please try later or contact the administrator by another method.\nPlease accept the terms to proceed.\nPlease fill in the required field.\nThis input is too long.\nThis input is too short.\nDate format seems invalid.\nThis date is too early.\nThis date is too late.\nFailed to upload file.\nThis file type is not allowed.\nThis file is too large.\nFailed to upload file. Error occurred.\nNumber format seems invalid.\nThis number is too small.\nThis number is too large.\nYour answer is not correct.\nYour entered code is incorrect.\nEmail address seems invalid.\nURL seems invalid.\nTelephone number seems invalid.', 'Contact form 1', '', 'publish', 'open', 'open', '', 'contact-form-1', '', '', '2016-02-15 17:44:24', '2016-02-15 17:44:24', '', 0, 'http://asiacentre.brickisred.com/?post_type=wpcf7_contact_form&#038;p=1712', 0, 'wpcf7_contact_form', '', 0),
(1750, 1, '2015-06-03 04:39:05', '2015-06-03 04:39:05', 'Asia Centre is a human rights consultancy that operates as an online social enterprise.\r\n\r\nIt provides expert advice and technical support globally to not-for-profit organizations, inter-governmental organizations, national institutions, research institutes, tertiary institutions and social enterprises that make up the human rights community.\r\n\r\nAt the core of our strength is 20 years of experience in human rights research, policy advice, tertiary teaching, training and professional development in the Asia-Pacific region.\r\n\r\nBacked by substantive fieldwork and institutional experience, our understanding of the economic, political and social traditions in the Asia-Pacific region ensures expert service to our clients.\r\n\r\nOur services are designed to be affordable, of high quality and tailored to our clients'' needs. We take pride in timely delivery of assignments.\r\n\r\nPlease feel free to contact us if you want to explore collaborative opportunities.', 'Home', '', 'inherit', 'open', 'open', '', '701-revision-v1', '', '', '2015-06-03 04:39:05', '2015-06-03 04:39:05', '', 701, 'http://asiacentre.brickisred.com/uncategorized/%post%/', 0, 'revision', '', 0),
(1751, 1, '2015-06-03 05:40:30', '2015-06-03 05:40:30', '', 'facebook', '', 'publish', 'open', 'closed', '', 'facebook', '', '', '2016-12-22 06:23:51', '2016-12-22 06:23:51', '', 0, 'http://asiacentre.brickisred.com/?p=1751', 1, 'nav_menu_item', '', 0),
(1752, 1, '2015-06-03 05:40:30', '2015-06-03 05:40:30', '', 'Twitter', 'twitter', 'publish', 'open', 'closed', '', 'twitter', '', '', '2016-12-22 06:23:51', '2016-12-22 06:23:51', '', 0, 'http://asiacentre.brickisred.com/?p=1752', 2, 'nav_menu_item', '', 0),
(1764, 1, '2015-06-03 06:10:27', '2015-06-03 06:10:27', 'This post is scheduled to be published in the future.\r\n\r\nIt should not be displayed by the theme.', 'Scheduled', '', 'inherit', 'open', 'open', '', '1153-revision-v1', '', '', '2015-06-03 06:10:27', '2015-06-03 06:10:27', '', 1153, 'http://asiacentre.brickisred.com/uncategorized/1153-revision-v1/', 0, 'revision', '', 0),
(1765, 1, '2015-06-03 06:13:20', '2015-06-03 06:13:20', 'This post tests comments in the following ways.\r\n<ul>\r\n	<li>Threaded comments up to 10 levels deep</li>\r\n	<li>Paginated comments (set <em><strong>Settings &gt; Discussion &gt; Break comments into pages</strong></em> to <em><strong>5</strong></em> top level comments per page)</li>\r\n	<li>Comment markup / formatting</li>\r\n	<li>Comment images</li>\r\n	<li>Comment videos</li>\r\n	<li>Author comments</li>\r\n	<li>Gravatars and default fallbacks</li>\r\n</ul>', 'Template: Comments', '', 'inherit', 'open', 'open', '', '1148-revision-v1', '', '', '2015-06-03 06:13:20', '2015-06-03 06:13:20', '', 1148, 'http://asiacentre.brickisred.com/uncategorized/1148-revision-v1/', 0, 'revision', '', 0),
(1766, 1, '2015-06-03 06:14:33', '2015-06-03 06:14:33', '<h3>Default</h3>\nThis is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me.\n<h3>Left Align</h3>\n<p style="text-align:left;">This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it''s views. It''s favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.</p>\n\n<h3>Center Align</h3>\n<p style="text-align:center;">This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.</p>\n\n<h3>Right Align</h3>\n<p style="text-align:right;">This is a paragraph. It is right aligned. It is a bit more conservative in it''s views. It''s prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it''s a pretty good shot from at least four or five football fields away. Dead on. So boss.</p>\n\n<h3>Justify Align</h3>\n<p style="text-align:justify;">This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it''s place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.</p>', 'Markup: Text Alignment', '', 'inherit', 'open', 'open', '', '1176-revision-v1', '', '', '2015-06-03 06:14:33', '2015-06-03 06:14:33', '', 1176, 'http://asiacentre.brickisred.com/uncategorized/1176-revision-v1/', 0, 'revision', '', 0),
(1767, 1, '2015-06-03 06:15:05', '2015-06-03 06:15:05', '<h3>Default</h3>\r\nThis is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me.\r\n<h3>Left Align</h3>\r\n<p style="text-align: left;">This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it''s views. It''s favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.</p>\r\n\r\n<h3>Center Align</h3>\r\n<p style="text-align: center;">This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.</p>\r\n\r\n<h3>Right Align</h3>\r\n<p style="text-align: right;">This is a paragraph. It is right aligned. It is a bit more conservative in it''s views. It''s prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it''s a pretty good shot from at least four or five football fields away. Dead on. So boss.</p>\r\n\r\n<h3>Justify Align</h3>\r\n<p style="text-align: justify;">This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it''s place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.</p>', 'Markup: Text Alignment', '', 'inherit', 'open', 'open', '', '1176-revision-v1', '', '', '2015-06-03 06:15:05', '2015-06-03 06:15:05', '', 1176, 'http://asiacentre.brickisred.com/uncategorized/1176-revision-v1/', 0, 'revision', '', 0),
(1771, 1, '2015-06-03 06:23:28', '2015-06-03 06:23:28', '<h2>Headings</h2>\r\n<h1>Header one</h1>\r\n<h2>Header two</h2>\r\n<h3>Header three</h3>\r\n<h4>Header four</h4>\r\n<h5>Header five</h5>\r\n<h6>Header six</h6>\r\n<h2>Blockquotes</h2>\r\nSingle line blockquote:\r\n<blockquote>Stay hungry. Stay foolish.</blockquote>\r\nMulti line blockquote with a cite reference:\r\n<blockquote>People think focus means saying yes to the thing you''ve got to focus on. But that''s not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I''m actually as proud of the things we haven''t done as the things I have done. Innovation is saying no to 1,000 things.</blockquote>\r\n<cite>Steve Jobs</cite> - Apple Worldwide Developers'' Conference, 1997\r\n<h2>Tables</h2>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Employee</th>\r\n<th>Salary</th>\r\n<th></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<th><a href="http://example.org/">John Doe</a></th>\r\n<td>$1</td>\r\n<td>Because that''s all Steve Jobs needed for a salary.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Doe</a></th>\r\n<td>$100K</td>\r\n<td>For all the blogging she does.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Fred Bloggs</a></th>\r\n<td>$100M</td>\r\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Bloggs</a></th>\r\n<td>$100B</td>\r\n<td>With hair like that?! Enough said...</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Definition Lists</h2>\r\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I''ll let Bill O''Reilly will <a title="We''ll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd></dl>\r\n<h2>Unordered Lists (Nested)</h2>\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n<h2>Ordered List (Nested)</h2>\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n<h2>HTML Tags</h2>\r\nThese supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.\r\n\r\n<strong>Address Tag</strong>\r\n\r\n<address>1 Infinite Loop\r\nCupertino, CA 95014\r\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\r\n\r\nThis is an example of a <a title="Apple" href="http://apple.com">link</a>.\r\n\r\n<strong>Abbreviation Tag</strong>\r\n\r\nThe abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".\r\n\r\n<strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong>\r\n\r\nThe acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".\r\n\r\n<strong>Big Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThese tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.\r\n\r\n<strong>Cite Tag</strong>\r\n\r\n"Code is poetry." --<cite>Automattic</cite>\r\n\r\n<strong>Code Tag</strong>\r\n\r\nYou will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.\r\n\r\n<strong>Delete Tag</strong>\r\n\r\nThis tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).\r\n\r\n<strong>Emphasize Tag</strong>\r\n\r\nThe emphasize tag should <em>italicize</em> text.\r\n\r\n<strong>Insert Tag</strong>\r\n\r\nThis tag should denote <ins>inserted</ins> text.\r\n\r\n<strong>Keyboard Tag</strong>\r\n\r\nThis scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Preformatted Tag</strong>\r\n\r\nThis tag styles large blocks of code.\r\n<pre>.post-title {\r\n	margin: 0 0 5px;\r\n	font-weight: bold;\r\n	font-size: 38px;\r\n	line-height: 1.2;\r\n	and here''s a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;\r\n}</pre>\r\n<strong>Quote Tag</strong>\r\n\r\n<q>Developers, developers, developers...</q> --Steve Ballmer\r\n\r\n<strong>Strike Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis tag shows <span style="text-decoration: line-through;">strike-through text</span>\r\n\r\n<strong>Strong Tag</strong>\r\n\r\nThis tag shows <strong>bold<strong> text.</strong></strong>\r\n\r\n<strong>Subscript Tag</strong>\r\n\r\nGetting our science styling on with H<sub>2</sub>O, which should push the "2" down.\r\n\r\n<strong>Superscript Tag</strong>\r\n\r\nStill sticking with science and Isaac Newton''s E = MC<sup>2</sup>, which should lift the 2 up.\r\n\r\n<strong>Teletype Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Variable Tag</strong>\r\n\r\nThis allows you to denote <var>variables</var>.', 'Markup: HTML Tags and Formatting', '', 'inherit', 'open', 'open', '', '1178-revision-v1', '', '', '2015-06-03 06:23:28', '2015-06-03 06:23:28', '', 1178, 'http://asiacentre.brickisred.com/uncategorized/1178-revision-v1/', 0, 'revision', '', 0),
(1772, 1, '2015-06-03 06:24:02', '2015-06-03 06:24:02', '<h2>Headings</h2>\r\n<h1>Header one</h1>\r\n<h2>Header two</h2>\r\n<h3>Header three</h3>\r\n<h4>Header four</h4>\r\n<h5>Header five</h5>\r\n<h6>Header six</h6>\r\n<h2>Blockquotes</h2>\r\nSingle line blockquote:\r\n<blockquote>Stay hungry. Stay foolish.</blockquote>\r\nMulti line blockquote with a cite reference:\r\n<blockquote>People think focus means saying yes to the thing you''ve got to focus on. But that''s not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I''m actually as proud of the things we haven''t done as the things I have done. Innovation is saying no to 1,000 things.</blockquote>\r\n<cite>Steve Jobs</cite> - Apple Worldwide Developers'' Conference, 1997\r\n<h2>Tables</h2>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Employee</th>\r\n<th>Salary</th>\r\n<th></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<th><a href="http://example.org/">John Doe</a></th>\r\n<td>$1</td>\r\n<td>Because that''s all Steve Jobs needed for a salary.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Doe</a></th>\r\n<td>$100K</td>\r\n<td>For all the blogging she does.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Fred Bloggs</a></th>\r\n<td>$100M</td>\r\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Bloggs</a></th>\r\n<td>$100B</td>\r\n<td>With hair like that?! Enough said...</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Definition Lists</h2>\r\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I''ll let Bill O''Reilly will <a title="We''ll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd></dl>\r\n<h2>Unordered Lists (Nested)</h2>\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n<h2>Ordered List (Nested)</h2>\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n<h2>HTML Tags</h2>\r\nThese supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.\r\n\r\n<strong>Address Tag</strong>\r\n\r\n<address>1 Infinite Loop\r\nCupertino, CA 95014\r\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\r\n\r\nThis is an example of a <a title="Apple" href="http://apple.com">link</a>.\r\n\r\n<strong>Abbreviation Tag</strong>\r\n\r\nThe abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".\r\n\r\n<strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong>\r\n\r\nThe acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".\r\n\r\n<strong>Big Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThese tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.\r\n\r\n<strong>Cite Tag</strong>\r\n\r\n"Code is poetry." --<cite>Automattic</cite>\r\n\r\n<strong>Code Tag</strong>\r\n\r\nYou will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.\r\n\r\n<strong>Delete Tag</strong>\r\n\r\nThis tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).\r\n\r\n<strong>Emphasize Tag</strong>\r\n\r\nThe emphasize tag should <em>italicize</em> text.\r\n\r\n<strong>Insert Tag</strong>\r\n\r\nThis tag should denote <ins>inserted</ins> text.\r\n\r\n<strong>Keyboard Tag</strong>\r\n\r\nThis scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Preformatted Tag</strong>\r\n\r\nThis tag styles large blocks of code.\r\n<pre>.post-title {\r\n	margin: 0 0 5px;\r\n	font-weight: bold;\r\n	font-size: 38px;\r\n	line-height: 1.2;\r\n	and here''s a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;\r\n}</pre>\r\n<strong>Quote Tag</strong>\r\n\r\n<q>Developers, developers, developers...</q> --Steve Ballmer\r\n\r\n<strong>Strike Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis tag shows <span style="text-decoration: line-through;">strike-through text</span>\r\n\r\n<strong>Strong Tag</strong>\r\n\r\nThis tag shows <strong>bold<strong> text.</strong></strong>\r\n\r\n<strong>Subscript Tag</strong>\r\n\r\nGetting our science styling on with H<sub>2</sub>O, which should push the "2" down.\r\n\r\n<strong>Superscript Tag</strong>\r\n\r\nStill sticking with science and Isaac Newton''s E = MC<sup>2</sup>, which should lift the 2 up.\r\n\r\n<strong>Teletype Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Variable Tag</strong>\r\n\r\nThis allows you to denote <var>variables</var>.', 'Latest News', '', 'inherit', 'open', 'open', '', '1178-revision-v1', '', '', '2015-06-03 06:24:02', '2015-06-03 06:24:02', '', 1178, 'http://asiacentre.brickisred.com/uncategorized/1178-revision-v1/', 0, 'revision', '', 0),
(1774, 1, '2015-06-03 06:24:56', '2015-06-03 06:24:56', 'Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let''s get started.\r\n\r\nOn the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em>, <em>Medium</em>, <em>Large</em> &amp; <em>Fullsize</em>.\r\n<p style="text-align: center;"><img class="size-full wp-image-906 aligncenter" title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /></p>\r\nThe image above happens to be <em><strong>centered</strong></em>.\r\n\r\n<strong><img class="size-full wp-image-904 alignleft" title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n<img class="alignnone  wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" />\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n<img class="size-full wp-image-905 alignright" title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" />\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd just when you thought we were done, we''re going to do them all over again with captions!\r\n\r\n[caption id="attachment_906" align="aligncenter" width="580"]<img class="size-full wp-image-906  " title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /> Look at 580x300 getting some <a title="Image Settings" href="http://en.support.wordpress.com/images/image-settings/">caption</a> love.[/caption]\r\n\r\nThe image above happens to be <em><strong>centered</strong></em>. The caption also has a link in it, just to see if it does anything funky.\r\n\r\n[caption id="attachment_904" align="alignleft" width="150"]<img class="size-full wp-image-904  " title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /> Itty-bitty caption.[/caption]\r\n\r\nThe rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n[caption id="attachment_907" align="alignnone" width="1200"]<img class=" wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" /> Massive image comment for your eyeballs.[/caption]\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n[caption id="attachment_905" align="alignright" width="300"]<img class="size-full wp-image-905 " title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" /> Feels good to be right all the time.[/caption]\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd that''s a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!', 'Markup: Image Alignment', '', 'inherit', 'open', 'open', '', '1177-revision-v1', '', '', '2015-06-03 06:24:56', '2015-06-03 06:24:56', '', 1177, 'http://asiacentre.brickisred.com/uncategorized/1177-revision-v1/', 0, 'revision', '', 0),
(1776, 1, '2015-06-03 06:26:01', '2015-06-03 06:26:01', '<h3>Default</h3>\r\nThis is a paragraph. It should not have any alignment of any kind. It should just flow like you would normally expect. Nothing fancy. Just straight up text, free flowing, with love. Completely neutral and not picking a side or sitting on the fence. It just is. It just freaking is. It likes where it is. It does not feel compelled to pick a side. Leave him be. It will just be better that way. Trust me.\r\n<h3>Left Align</h3>\r\n<p style="text-align: left;">This is a paragraph. It is left aligned. Because of this, it is a bit more liberal in it''s views. It''s favorite color is green. Left align tends to be more eco-friendly, but it provides no concrete evidence that it really is. Even though it likes share the wealth evenly, it leaves the equal distribution up to justified alignment.</p>\r\n\r\n<h3>Center Align</h3>\r\n<p style="text-align: center;">This is a paragraph. It is center aligned. Center is, but nature, a fence sitter. A flip flopper. It has a difficult time making up its mind. It wants to pick a side. Really, it does. It has the best intentions, but it tends to complicate matters more than help. The best you can do is try to win it over and hope for the best. I hear center align does take bribes.</p>\r\n\r\n<h3>Right Align</h3>\r\n<p style="text-align: right;">This is a paragraph. It is right aligned. It is a bit more conservative in it''s views. It''s prefers to not be told what to do or how to do it. Right align totally owns a slew of guns and loves to head to the range for some practice. Which is cool and all. I mean, it''s a pretty good shot from at least four or five football fields away. Dead on. So boss.</p>\r\n\r\n<h3>Justify Align</h3>\r\n<p style="text-align: justify;">This is a paragraph. It is justify aligned. It gets really mad when people associate it with Justin Timberlake. Typically, justified is pretty straight laced. It likes everything to be in it''s place and not all cattywampus like the rest of the aligns. I am not saying that makes it better than the rest of the aligns, but it does tend to put off more of an elitist attitude.</p>', 'Scheduled events', '', 'inherit', 'open', 'open', '', '1176-revision-v1', '', '', '2015-06-03 06:26:01', '2015-06-03 06:26:01', '', 1176, 'http://asiacentre.brickisred.com/uncategorized/1176-revision-v1/', 0, 'revision', '', 0),
(1777, 1, '2015-06-03 06:38:33', '2015-06-03 06:38:33', 'Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let''s get started.\r\n\r\nOn the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em>, <em>Medium</em>, <em>Large</em> &amp; <em>Fullsize</em>.\r\n<p style="text-align: center;"><img class="size-full wp-image-906 aligncenter" title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /></p>\r\nThe image above happens to be <em><strong>centered</strong></em>.\r\n\r\n<strong><img class="size-full wp-image-904 alignleft" title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n<img class="alignnone  wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" />\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n<img class="size-full wp-image-905 alignright" title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" />\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd just when you thought we were done, we''re going to do them all over again with captions!\r\n\r\n[caption id="attachment_906" align="aligncenter" width="580"]<img class="size-full wp-image-906  " title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /> Look at 580x300 getting some <a title="Image Settings" href="http://en.support.wordpress.com/images/image-settings/">caption</a> love.[/caption]\r\n\r\nThe image above happens to be <em><strong>centered</strong></em>. The caption also has a link in it, just to see if it does anything funky.\r\n\r\n[caption id="attachment_904" align="alignleft" width="150"]<img class="size-full wp-image-904  " title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /> Itty-bitty caption.[/caption]\r\n\r\nThe rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n[caption id="attachment_907" align="alignnone" width="1200"]<img class=" wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" /> Massive image comment for your eyeballs.[/caption]\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n[caption id="attachment_905" align="alignright" width="300"]<img class="size-full wp-image-905 " title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" /> Feels good to be right all the time.[/caption]\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd that''s a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!', 'Latest events', '', 'inherit', 'open', 'open', '', '1177-revision-v1', '', '', '2015-06-03 06:38:33', '2015-06-03 06:38:33', '', 1177, 'http://asiacentre.brickisred.com/uncategorized/1177-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1778, 1, '2015-06-03 06:38:55', '2015-06-03 06:38:55', 'Welcome to image alignment! The best way to demonstrate the ebb and flow of the various image positioning options is to nestle them snuggly among an ocean of words. Grab a paddle and let''s get started.\r\n\r\nOn the topic of alignment, it should be noted that users can choose from the options of <em>None</em>, <em>Left</em>, <em>Right, </em>and <em>Center</em>. In addition, they also get the options of <em>Thumbnail</em>, <em>Medium</em>, <em>Large</em> &amp; <em>Fullsize</em>.\r\n<p style="text-align: center;"><img class="size-full wp-image-906 aligncenter" title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /></p>\r\nThe image above happens to be <em><strong>centered</strong></em>.\r\n\r\n<strong><img class="size-full wp-image-904 alignleft" title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /></strong>The rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n<img class="alignnone  wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" />\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n<img class="size-full wp-image-905 alignright" title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" />\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd just when you thought we were done, we''re going to do them all over again with captions!\r\n\r\n[caption id="attachment_906" align="aligncenter" width="580"]<img class="size-full wp-image-906  " title="Image Alignment 580x300" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-580x300.jpg" alt="Image Alignment 580x300" width="580" height="300" /> Look at 580x300 getting some <a title="Image Settings" href="http://en.support.wordpress.com/images/image-settings/">caption</a> love.[/caption]\r\n\r\nThe image above happens to be <em><strong>centered</strong></em>. The caption also has a link in it, just to see if it does anything funky.\r\n\r\n[caption id="attachment_904" align="alignleft" width="150"]<img class="size-full wp-image-904  " title="Image Alignment 150x150" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-150x150.jpg" alt="Image Alignment 150x150" width="150" height="150" /> Itty-bitty caption.[/caption]\r\n\r\nThe rest of this paragraph is filler for the sake of seeing the text wrap around the 150x150 image, which is <em><strong>left aligned</strong></em>.\r\n\r\nAs you can see the should be some space above, below, and to the right of the image. The text should not be creeping on the image. Creeping is just not right. Images need breathing room too. Let them speak like you words. Let them do their jobs without any hassle from the text. In about one more sentence here, we''ll see that the text moves from the right of the image down below the image in seamless transition. Again, letting the do it''s thang. Mission accomplished!\r\n\r\nAnd now for a <em><strong>massively large image</strong></em>. It also has <em><strong>no alignment</strong></em>.\r\n\r\n[caption id="attachment_907" align="alignnone" width="1200"]<img class=" wp-image-907" title="Image Alignment 1200x400" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-1200x4002.jpg" alt="Image Alignment 1200x400" width="1200" height="400" /> Massive image comment for your eyeballs.[/caption]\r\n\r\nThe image above, though 1200px wide, should not overflow the content area. It should remain contained with no visible disruption to the flow of content.\r\n\r\n[caption id="attachment_905" align="alignright" width="300"]<img class="size-full wp-image-905 " title="Image Alignment 300x200" src="http://asiacentre.brickisred.com/wp-content/uploads/2013/03/image-alignment-300x200.jpg" alt="Image Alignment 300x200" width="300" height="200" /> Feels good to be right all the time.[/caption]\r\n\r\nAnd now we''re going to shift things to the <em><strong>right align</strong></em>. Again, there should be plenty of room above, below, and to the left of the image. Just look at him there... Hey guy! Way to rock that right side. I don''t care what the left aligned image says, you look great. Don''t let anyone else tell you differently.\r\n\r\nIn just a bit here, you should see the text start to wrap below the right aligned image and settle in nicely. There should still be plenty of room and everything should be sitting pretty. Yeah... Just like that. It never felt so good to be right.\r\n\r\nAnd that''s a wrap, yo! You survived the tumultuous waters of alignment. Image alignment achievement unlocked!', 'Publications', '', 'inherit', 'open', 'open', '', '1177-revision-v1', '', '', '2015-06-03 06:38:55', '2015-06-03 06:38:55', '', 1177, 'http://asiacentre.brickisred.com/uncategorized/1177-revision-v1/', 0, 'revision', '', 0),
(1779, 1, '2015-06-03 07:31:34', '2015-06-03 07:31:34', '', 'asia-centre-logo', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo', '', '', '2015-06-03 07:47:43', '2015-06-03 07:47:43', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/06/asia-centre-logo.png', 0, 'attachment', 'image/png', 0),
(1783, 1, '2015-06-03 16:26:43', '2015-06-03 16:26:43', 'Putting special characters in the title should have no adverse effect on the layout or functionality.\r\n\r\nSpecial characters in the post title have been known to cause issues with JavaScript when it is minified, especially in the admin when editing the post itself (ie. issues with metaboxes, media upload, etc.).\r\n<h2>Latin Character Tests</h2>\r\nThis is a test to see if the fonts used in this theme support basic Latin characters.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>!</td>\r\n<td>"</td>\r\n<td>#</td>\r\n<td>$</td>\r\n<td>%</td>\r\n<td>&amp;</td>\r\n<td>''</td>\r\n<td>(</td>\r\n<td>)</td>\r\n<td>*</td>\r\n</tr>\r\n<tr>\r\n<td>+</td>\r\n<td>,</td>\r\n<td>-</td>\r\n<td>.</td>\r\n<td>/</td>\r\n<td>0</td>\r\n<td>1</td>\r\n<td>2</td>\r\n<td>3</td>\r\n<td>4</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td>6</td>\r\n<td>7</td>\r\n<td>8</td>\r\n<td>9</td>\r\n<td>:</td>\r\n<td>;</td>\r\n<td>&gt;</td>\r\n<td>=</td>\r\n<td>&lt;</td>\r\n</tr>\r\n<tr>\r\n<td>?</td>\r\n<td>@</td>\r\n<td>A</td>\r\n<td>B</td>\r\n<td>C</td>\r\n<td>D</td>\r\n<td>E</td>\r\n<td>F</td>\r\n<td>G</td>\r\n<td>H</td>\r\n</tr>\r\n<tr>\r\n<td>I</td>\r\n<td>J</td>\r\n<td>K</td>\r\n<td>L</td>\r\n<td>M</td>\r\n<td>N</td>\r\n<td>O</td>\r\n<td>P</td>\r\n<td>Q</td>\r\n<td>R</td>\r\n</tr>\r\n<tr>\r\n<td>S</td>\r\n<td>T</td>\r\n<td>U</td>\r\n<td>V</td>\r\n<td>W</td>\r\n<td>X</td>\r\n<td>Y</td>\r\n<td>Z</td>\r\n<td>[</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>]</td>\r\n<td>^</td>\r\n<td>_</td>\r\n<td>`</td>\r\n<td>a</td>\r\n<td>b</td>\r\n<td>c</td>\r\n<td>d</td>\r\n<td>e</td>\r\n<td>f</td>\r\n</tr>\r\n<tr>\r\n<td>g</td>\r\n<td>h</td>\r\n<td>i</td>\r\n<td>j</td>\r\n<td>k</td>\r\n<td>l</td>\r\n<td>m</td>\r\n<td>n</td>\r\n<td>o</td>\r\n<td>p</td>\r\n</tr>\r\n<tr>\r\n<td>q</td>\r\n<td>r</td>\r\n<td>s</td>\r\n<td>t</td>\r\n<td>u</td>\r\n<td>v</td>\r\n<td>w</td>\r\n<td>x</td>\r\n<td>y</td>\r\n<td>z</td>\r\n</tr>\r\n<tr>\r\n<td>{</td>\r\n<td>|</td>\r\n<td>}</td>\r\n<td>~</td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>', 'Special Characters', '', 'inherit', 'open', 'open', '', '1174-revision-v1', '', '', '2015-06-03 16:26:43', '2015-06-03 16:26:43', '', 1174, 'http://asiacentre.brickisred.com/other/1174-revision-v1/', 0, 'revision', '', 0),
(1785, 1, '2015-06-03 16:28:42', '2015-06-03 16:28:42', 'Verify that:\r\n<ul>\r\n	<li><span style="line-height: 1.714285714; font-size: 1rem;">The post title renders the word "with" in </span><em style="line-height: 1.714285714; font-size: 1rem;">italics</em><span style="line-height: 1.714285714; font-size: 1rem;"> and the word "markup" in </span><strong style="line-height: 1.714285714; font-size: 1rem;">bold</strong><span style="line-height: 1.714285714; font-size: 1rem;">.</span></li>\r\n	<li><span style="line-height: 1.714285714; font-size: 1rem;">The post title markup should be removed from the browser window / tab.</span></li>\r\n</ul>', 'Markup: Title With Markup', '', 'inherit', 'open', 'open', '', '1173-revision-v1', '', '', '2015-06-03 16:28:42', '2015-06-03 16:28:42', '', 1173, 'http://asiacentre.brickisred.com/other/1173-revision-v1/', 0, 'revision', '', 0),
(1786, 1, '2015-06-03 16:29:31', '2015-06-03 16:29:31', 'Verify that:\r\n<ul>\r\n	<li><span style="line-height: 1.714285714; font-size: 1rem;">The post title renders the word "with" in </span><em style="line-height: 1.714285714; font-size: 1rem;">italics</em><span style="line-height: 1.714285714; font-size: 1rem;"> and the word "markup" in </span><strong style="line-height: 1.714285714; font-size: 1rem;">bold</strong><span style="line-height: 1.714285714; font-size: 1rem;">.</span></li>\r\n	<li><span style="line-height: 1.714285714; font-size: 1rem;">The post title markup should be removed from the browser window / tab.</span></li>\r\n</ul>', 'International Asian Story', '', 'inherit', 'open', 'open', '', '1173-revision-v1', '', '', '2015-06-03 16:29:31', '2015-06-03 16:29:31', '', 1173, 'http://asiacentre.brickisred.com/other/1173-revision-v1/', 0, 'revision', '', 0),
(1788, 1, '2015-06-03 16:31:58', '2015-06-03 16:31:58', '<h2>Headings</h2>\r\n<h1>Header one</h1>\r\n<h2>Header two</h2>\r\n<h3>Header three</h3>\r\n<h4>Header four</h4>\r\n<h5>Header five</h5>\r\n<h6>Header six</h6>\r\n<h2>Blockquotes</h2>\r\nSingle line blockquote:\r\n<blockquote>Stay hungry. Stay foolish.</blockquote>\r\nMulti line blockquote with a cite reference:\r\n<blockquote>People think focus means saying yes to the thing you''ve got to focus on. But that''s not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I''m actually as proud of the things we haven''t done as the things I have done. Innovation is saying no to 1,000 things.</blockquote>\r\n<cite>Steve Jobs</cite> - Apple Worldwide Developers'' Conference, 1997\r\n<h2>Tables</h2>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Employee</th>\r\n<th>Salary</th>\r\n<th></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<th><a href="http://example.org/">John Doe</a></th>\r\n<td>$1</td>\r\n<td>Because that''s all Steve Jobs needed for a salary.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Doe</a></th>\r\n<td>$100K</td>\r\n<td>For all the blogging she does.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Fred Bloggs</a></th>\r\n<td>$100M</td>\r\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Bloggs</a></th>\r\n<td>$100B</td>\r\n<td>With hair like that?! Enough said...</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Definition Lists</h2>\r\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I''ll let Bill O''Reilly will <a title="We''ll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd></dl>\r\n<h2>Unordered Lists (Nested)</h2>\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n<h2>Ordered List (Nested)</h2>\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n<h2>HTML Tags</h2>\r\nThese supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.\r\n\r\n<strong>Address Tag</strong>\r\n\r\n<address>1 Infinite Loop\r\nCupertino, CA 95014\r\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\r\n\r\nThis is an example of a <a title="Apple" href="http://apple.com">link</a>.\r\n\r\n<strong>Abbreviation Tag</strong>\r\n\r\nThe abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".\r\n\r\n<strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong>\r\n\r\nThe acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".\r\n\r\n<strong>Big Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThese tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.\r\n\r\n<strong>Cite Tag</strong>\r\n\r\n"Code is poetry." --<cite>Automattic</cite>\r\n\r\n<strong>Code Tag</strong>\r\n\r\nYou will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.\r\n\r\n<strong>Delete Tag</strong>\r\n\r\nThis tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).\r\n\r\n<strong>Emphasize Tag</strong>\r\n\r\nThe emphasize tag should <em>italicize</em> text.\r\n\r\n<strong>Insert Tag</strong>\r\n\r\nThis tag should denote <ins>inserted</ins> text.\r\n\r\n<strong>Keyboard Tag</strong>\r\n\r\nThis scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Preformatted Tag</strong>\r\n\r\nThis tag styles large blocks of code.\r\n<pre>.post-title {\r\n	margin: 0 0 5px;\r\n	font-weight: bold;\r\n	font-size: 38px;\r\n	line-height: 1.2;\r\n	and here''s a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;\r\n}</pre>\r\n<strong>Quote Tag</strong>\r\n\r\n<q>Developers, developers, developers...</q> --Steve Ballmer\r\n\r\n<strong>Strike Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis tag shows <span style="text-decoration: line-through;">strike-through text</span>\r\n\r\n<strong>Strong Tag</strong>\r\n\r\nThis tag shows <strong>bold<strong> text.</strong></strong>\r\n\r\n<strong>Subscript Tag</strong>\r\n\r\nGetting our science styling on with H<sub>2</sub>O, which should push the "2" down.\r\n\r\n<strong>Superscript Tag</strong>\r\n\r\nStill sticking with science and Isaac Newton''s E = MC<sup>2</sup>, which should lift the 2 up.\r\n\r\n<strong>Teletype Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Variable Tag</strong>\r\n\r\nThis allows you to denote <var>variables</var>.', '2015 Conference Update', '', 'inherit', 'open', 'open', '', '1178-revision-v1', '', '', '2015-06-03 16:31:58', '2015-06-03 16:31:58', '', 1178, 'http://asiacentre.brickisred.com/other/1178-revision-v1/', 0, 'revision', '', 0),
(1790, 1, '2015-06-03 16:38:00', '2015-06-03 16:38:00', 'This post should display a <a title="Featured Images" href="http://en.support.wordpress.com/featured-images/#setting-a-featured-image" target="_blank">featured image</a>, if the theme <a title="Post Thumbnails" href="http://codex.wordpress.org/Post_Thumbnails" target="_blank">supports it</a>.\r\n\r\nNon-square images can provide some unique styling issues.\r\n\r\nThis post tests a horizontal featured image.', 'Template: Featured Image (Horizontal)', '', 'inherit', 'open', 'open', '', '1011-revision-v1', '', '', '2015-06-03 16:38:00', '2015-06-03 16:38:00', '', 1011, 'http://asiacentre.brickisred.com/other/1011-revision-v1/', 0, 'revision', '', 0),
(1792, 1, '2015-06-03 16:49:21', '2015-06-03 16:49:21', '<h2>Headings</h2>\r\n<h1>Header one</h1>\r\n<h2>Header two</h2>\r\n<h3>Header three</h3>\r\n<h4>Header four</h4>\r\n<h5>Header five</h5>\r\n<h6>Header six</h6>\r\n<h2>Blockquotes</h2>\r\nSingle line blockquote:\r\n<blockquote>Stay hungry. Stay foolish.</blockquote>\r\nMulti line blockquote with a cite reference:\r\n<blockquote>People think focus means saying yes to the thing you''ve got to focus on. But that''s not what it means at all. It means saying no to the hundred other good ideas that there are. You have to pick carefully. I''m actually as proud of the things we haven''t done as the things I have done. Innovation is saying no to 1,000 things.</blockquote>\r\n<cite>Steve Jobs</cite> - Apple Worldwide Developers'' Conference, 1997\r\n<h2>Tables</h2>\r\n<table>\r\n<thead>\r\n<tr>\r\n<th>Employee</th>\r\n<th>Salary</th>\r\n<th></th>\r\n</tr>\r\n</thead>\r\n<tbody>\r\n<tr>\r\n<th><a href="http://example.org/">John Doe</a></th>\r\n<td>$1</td>\r\n<td>Because that''s all Steve Jobs needed for a salary.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Doe</a></th>\r\n<td>$100K</td>\r\n<td>For all the blogging she does.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Fred Bloggs</a></th>\r\n<td>$100M</td>\r\n<td>Pictures are worth a thousand words, right? So Jane x 1,000.</td>\r\n</tr>\r\n<tr>\r\n<th><a href="http://example.org/">Jane Bloggs</a></th>\r\n<td>$100B</td>\r\n<td>With hair like that?! Enough said...</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h2>Definition Lists</h2>\r\n<dl><dt>Definition List Title</dt><dd>Definition list division.</dd><dt>Startup</dt><dd>A startup company or startup is a company or temporary organization designed to search for a repeatable and scalable business model.</dd><dt>#dowork</dt><dd>Coined by Rob Dyrdek and his personal body guard Christopher "Big Black" Boykins, "Do Work" works as a self motivator, to motivating your friends.</dd><dt>Do It Live</dt><dd>I''ll let Bill O''Reilly will <a title="We''ll Do It Live" href="https://www.youtube.com/watch?v=O_HyZ5aW76c">explain</a> this one.</dd></dl>\r\n<h2>Unordered Lists (Nested)</h2>\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one\r\n<ul>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ul>\r\n<h2>Ordered List (Nested)</h2>\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one\r\n<ol>\r\n	<li>List item one</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n</li>\r\n	<li>List item two</li>\r\n	<li>List item three</li>\r\n	<li>List item four</li>\r\n</ol>\r\n<h2>HTML Tags</h2>\r\nThese supported tags come from the WordPress.com code <a title="Code" href="http://en.support.wordpress.com/code/">FAQ</a>.\r\n\r\n<strong>Address Tag</strong>\r\n\r\n<address>1 Infinite Loop\r\nCupertino, CA 95014\r\nUnited States</address><strong>Anchor Tag (aka. Link)</strong>\r\n\r\nThis is an example of a <a title="Apple" href="http://apple.com">link</a>.\r\n\r\n<strong>Abbreviation Tag</strong>\r\n\r\nThe abbreviation <abbr title="Seriously">srsly</abbr> stands for "seriously".\r\n\r\n<strong>Acronym Tag (<em>deprecated in HTML5</em>)</strong>\r\n\r\nThe acronym <acronym title="For The Win">ftw</acronym> stands for "for the win".\r\n\r\n<strong>Big Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThese tests are a <big>big</big> deal, but this tag is no longer supported in HTML5.\r\n\r\n<strong>Cite Tag</strong>\r\n\r\n"Code is poetry." --<cite>Automattic</cite>\r\n\r\n<strong>Code Tag</strong>\r\n\r\nYou will learn later on in these tests that <code>word-wrap: break-word;</code> will be your best friend.\r\n\r\n<strong>Delete Tag</strong>\r\n\r\nThis tag will let you <del>strikeout text</del>, but this tag is no longer supported in HTML5 (use the <code>&lt;strike&gt;</code> instead).\r\n\r\n<strong>Emphasize Tag</strong>\r\n\r\nThe emphasize tag should <em>italicize</em> text.\r\n\r\n<strong>Insert Tag</strong>\r\n\r\nThis tag should denote <ins>inserted</ins> text.\r\n\r\n<strong>Keyboard Tag</strong>\r\n\r\nThis scarcely known tag emulates <kbd>keyboard text</kbd>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Preformatted Tag</strong>\r\n\r\nThis tag styles large blocks of code.\r\n<pre>.post-title {\r\n	margin: 0 0 5px;\r\n	font-weight: bold;\r\n	font-size: 38px;\r\n	line-height: 1.2;\r\n	and here''s a line of some really, really, really, really long text, just to see how the PRE tag handles it and to find out how it overflows;\r\n}</pre>\r\n<strong>Quote Tag</strong>\r\n\r\n<q>Developers, developers, developers...</q> --Steve Ballmer\r\n\r\n<strong>Strike Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis tag shows <span style="text-decoration: line-through;">strike-through text</span>\r\n\r\n<strong>Strong Tag</strong>\r\n\r\nThis tag shows <strong>bold<strong> text.</strong></strong>\r\n\r\n<strong>Subscript Tag</strong>\r\n\r\nGetting our science styling on with H<sub>2</sub>O, which should push the "2" down.\r\n\r\n<strong>Superscript Tag</strong>\r\n\r\nStill sticking with science and Isaac Newton''s E = MC<sup>2</sup>, which should lift the 2 up.\r\n\r\n<strong>Teletype Tag <strong>(<em>deprecated in HTML5</em>)</strong></strong>\r\n\r\nThis rarely used tag emulates <tt>teletype text</tt>, which is usually styled like the <code>&lt;code&gt;</code> tag.\r\n\r\n<strong>Variable Tag</strong>\r\n\r\nThis allows you to denote <var>variables</var>.', 'South East Asia 2015', '', 'inherit', 'open', 'open', '', '1178-revision-v1', '', '', '2015-06-03 16:49:21', '2015-06-03 16:49:21', '', 1178, 'http://asiacentre.brickisred.com/other/1178-revision-v1/', 0, 'revision', '', 0),
(1793, 1, '2015-06-03 16:50:21', '2015-06-03 16:50:21', 'Putting special characters in the title should have no adverse effect on the layout or functionality.\r\n\r\nSpecial characters in the post title have been known to cause issues with JavaScript when it is minified, especially in the admin when editing the post itself (ie. issues with metaboxes, media upload, etc.).\r\n<h2>Latin Character Tests</h2>\r\nThis is a test to see if the fonts used in this theme support basic Latin characters.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td>!</td>\r\n<td>"</td>\r\n<td>#</td>\r\n<td>$</td>\r\n<td>%</td>\r\n<td>&amp;</td>\r\n<td>''</td>\r\n<td>(</td>\r\n<td>)</td>\r\n<td>*</td>\r\n</tr>\r\n<tr>\r\n<td>+</td>\r\n<td>,</td>\r\n<td>-</td>\r\n<td>.</td>\r\n<td>/</td>\r\n<td>0</td>\r\n<td>1</td>\r\n<td>2</td>\r\n<td>3</td>\r\n<td>4</td>\r\n</tr>\r\n<tr>\r\n<td>5</td>\r\n<td>6</td>\r\n<td>7</td>\r\n<td>8</td>\r\n<td>9</td>\r\n<td>:</td>\r\n<td>;</td>\r\n<td>&gt;</td>\r\n<td>=</td>\r\n<td>&lt;</td>\r\n</tr>\r\n<tr>\r\n<td>?</td>\r\n<td>@</td>\r\n<td>A</td>\r\n<td>B</td>\r\n<td>C</td>\r\n<td>D</td>\r\n<td>E</td>\r\n<td>F</td>\r\n<td>G</td>\r\n<td>H</td>\r\n</tr>\r\n<tr>\r\n<td>I</td>\r\n<td>J</td>\r\n<td>K</td>\r\n<td>L</td>\r\n<td>M</td>\r\n<td>N</td>\r\n<td>O</td>\r\n<td>P</td>\r\n<td>Q</td>\r\n<td>R</td>\r\n</tr>\r\n<tr>\r\n<td>S</td>\r\n<td>T</td>\r\n<td>U</td>\r\n<td>V</td>\r\n<td>W</td>\r\n<td>X</td>\r\n<td>Y</td>\r\n<td>Z</td>\r\n<td>[</td>\r\n<td></td>\r\n</tr>\r\n<tr>\r\n<td>]</td>\r\n<td>^</td>\r\n<td>_</td>\r\n<td>`</td>\r\n<td>a</td>\r\n<td>b</td>\r\n<td>c</td>\r\n<td>d</td>\r\n<td>e</td>\r\n<td>f</td>\r\n</tr>\r\n<tr>\r\n<td>g</td>\r\n<td>h</td>\r\n<td>i</td>\r\n<td>j</td>\r\n<td>k</td>\r\n<td>l</td>\r\n<td>m</td>\r\n<td>n</td>\r\n<td>o</td>\r\n<td>p</td>\r\n</tr>\r\n<tr>\r\n<td>q</td>\r\n<td>r</td>\r\n<td>s</td>\r\n<td>t</td>\r\n<td>u</td>\r\n<td>v</td>\r\n<td>w</td>\r\n<td>x</td>\r\n<td>y</td>\r\n<td>z</td>\r\n</tr>\r\n<tr>\r\n<td>{</td>\r\n<td>|</td>\r\n<td>}</td>\r\n<td>~</td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n<td></td>\r\n</tr>\r\n</tbody>\r\n</table>', 'Singapore Conference Update', '', 'inherit', 'open', 'open', '', '1174-revision-v1', '', '', '2015-06-03 16:50:21', '2015-06-03 16:50:21', '', 1174, 'http://asiacentre.brickisred.com/other/1174-revision-v1/', 0, 'revision', '', 0),
(1800, 1, '2014-06-24 12:44:35', '2014-06-24 12:44:35', '<h6 class="title-median text-center">Average graduates</h6>\n[pie_chart color="#e37341" value="63" label="" chart_align="text-center" line_width="16" width="120"]\n<p class="text-center"><small>Suspendisse laoreet, risus non varius volutpat, lectus leo adipiscing ipsum, at aliquam diam metus eget lacus. Etiam mollis mauris sed nisl tristique, elementum varius libero pretium.</small></p>', 'Fun fact 01', '', 'publish', 'closed', 'closed', '', 'fun-fact-01', '', '', '2014-06-24 12:44:35', '2014-06-24 12:44:35', '', 0, 'http://school.wpshow.me/?post_type=chunk&amp;p=358', 0, 'chunk', '', 0),
(1801, 1, '2015-06-16 08:27:52', '2015-06-16 08:27:52', '', 'Home', '', 'publish', 'open', 'closed', '', 'home-3', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/home-3/', 1, 'nav_menu_item', '', 0),
(1803, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', 'Default category for all Courses. It can not be deleted or renamed!', 'Courses', '', 'publish', 'open', 'closed', '', 'courses', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/courses/', 18, 'nav_menu_item', '', 0),
(1804, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', 'Default category for all Galleries. It can not be deleted or renamed!', 'Galleries', '', 'publish', 'open', 'closed', '', 'galleries', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/galleries/', 19, 'nav_menu_item', '', 0),
(1805, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', ' ', '', '', 'publish', 'open', 'closed', '', '1805', '', '', '2016-12-22 06:21:24', '2016-12-22 06:21:24', '', 0, 'http://asiacentre.brickisred.com/other/1805/', 1, 'nav_menu_item', '', 0),
(1807, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', ' ', '', '', 'publish', 'open', 'closed', '', '1807', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1807/', 2, 'nav_menu_item', '', 0),
(1808, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', ' ', '', '', 'publish', 'open', 'closed', '', '1808', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1808/', 3, 'nav_menu_item', '', 0),
(1809, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', 'School News should be published here. Category description can have more text if required or none if preferred so by the author/admin. This feature is rarely seen but is always good to know it exists.', '', '', 'publish', 'open', 'closed', '', '1809', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1809/', 17, 'nav_menu_item', '', 0),
(1810, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', '', 'Menu Test', '', 'publish', 'open', 'closed', '', 'menu-test', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/menu-test/', 13, 'nav_menu_item', '', 0),
(1811, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', '', 'Level 3, item', '', 'publish', 'open', 'closed', '', 'level-3-item', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/level-3-item/', 14, 'nav_menu_item', '', 0),
(1812, 1, '2015-06-16 08:27:53', '2015-06-16 08:27:53', '', 'Another level 3 item', '', 'publish', 'open', 'closed', '', 'another-level-3-item', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/another-level-3-item/', 15, 'nav_menu_item', '', 0),
(1813, 1, '2015-06-16 08:27:54', '2015-06-16 08:27:54', '', 'Last item', '', 'publish', 'open', 'closed', '', 'last-item', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/last-item/', 16, 'nav_menu_item', '', 0),
(1814, 1, '2015-06-16 08:27:54', '2015-06-16 08:27:54', ' ', '', '', 'publish', 'open', 'closed', '', '1814', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1814/', 4, 'nav_menu_item', '', 0),
(1815, 1, '2015-06-16 08:27:54', '2015-06-16 08:27:54', ' ', '', '', 'publish', 'open', 'closed', '', '1815', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1815/', 5, 'nav_menu_item', '', 0),
(1820, 1, '2015-06-16 08:27:54', '2015-06-16 08:27:54', ' ', '', '', 'publish', 'open', 'closed', '', '1820', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1820/', 6, 'nav_menu_item', '', 0),
(1821, 1, '2015-06-16 08:27:54', '2015-06-16 08:27:54', ' ', '', '', 'publish', 'open', 'closed', '', '1821', '', '', '2016-12-22 06:36:28', '2016-12-22 06:36:28', '', 0, 'http://asiacentre.brickisred.com/other/1821/', 3, 'nav_menu_item', '', 0),
(1822, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1822', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1822/', 9, 'nav_menu_item', '', 0),
(1823, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1823', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1823/', 10, 'nav_menu_item', '', 0),
(1824, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1824', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1824/', 11, 'nav_menu_item', '', 0),
(1825, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1825', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1825/', 12, 'nav_menu_item', '', 0),
(1826, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1826', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1826/', 7, 'nav_menu_item', '', 0),
(1827, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1827', '', '', '2016-12-22 06:21:24', '2016-12-22 06:21:24', '', 0, 'http://asiacentre.brickisred.com/other/1827/', 5, 'nav_menu_item', '', 0),
(1828, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1828', '', '', '2016-12-22 06:21:24', '2016-12-22 06:21:24', '', 0, 'http://asiacentre.brickisred.com/other/1828/', 6, 'nav_menu_item', '', 0),
(1829, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1829', '', '', '2016-12-22 06:21:24', '2016-12-22 06:21:24', '', 0, 'http://asiacentre.brickisred.com/other/1829/', 3, 'nav_menu_item', '', 0),
(1830, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1830', '', '', '2016-12-22 06:21:24', '2016-12-22 06:21:24', '', 0, 'http://asiacentre.brickisred.com/other/1830/', 2, 'nav_menu_item', '', 0),
(1831, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1831', '', '', '2016-12-22 06:21:24', '2016-12-22 06:21:24', '', 0, 'http://asiacentre.brickisred.com/other/1831/', 4, 'nav_menu_item', '', 0),
(1833, 1, '2015-06-16 08:27:55', '2015-06-16 08:27:55', ' ', '', '', 'publish', 'open', 'closed', '', '1833', '', '', '2015-09-30 11:01:15', '2015-09-30 11:01:15', '', 0, 'http://asiacentre.brickisred.com/other/1833/', 8, 'nav_menu_item', '', 0),
(1834, 1, '2015-06-16 09:10:56', '2015-06-16 09:10:56', '', 'Asia-Centre-Logo-Color', '', 'inherit', 'open', 'open', '', 'asia-centre-logo-color', '', '', '2015-06-16 09:10:56', '2015-06-16 09:10:56', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/06/Asia-Centre-Logo-Color.jpg', 0, 'attachment', 'image/jpeg', 0),
(1835, 1, '2015-06-17 05:28:08', '2015-06-17 05:28:08', 'aisa centre logo', 'aisa centre logo', '', 'inherit', 'open', 'open', '', 'aisa-centre-logo', '', '', '2015-06-17 05:28:24', '2015-06-17 05:28:24', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/06/aisa-centre-logo.png', 0, 'attachment', 'image/png', 0),
(1836, 1, '2015-06-17 05:34:22', '2015-06-17 05:34:22', '', 'aisa-centre-logo-square', '', 'inherit', 'open', 'open', '', 'aisa-centre-logo-square', '', '', '2015-06-17 05:34:22', '2015-06-17 05:34:22', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/06/aisa-centre-logo-square.png', 0, 'attachment', 'image/png', 0),
(1837, 1, '2015-06-17 06:07:59', '2015-06-17 06:07:59', 'Phasellus sodales scelerisque nisi, eu rutrum mi. Cras congue augue ut justo scelerisque adipiscing. Ut quis mauris in sapien convallis placerat. Duis pretium sapien ac faucibus dapibus. Praesent iaculis feugiat massa et laoreet. Nulla lacinia velit eu mauris congue, id facilisis sapien bibendum. Curabitur consectetur ligula orci, tincidunt posuere metus auctor id.\r\n\r\n[separator style="fatty"]\r\n\r\n[team_member photo="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/team_1.jpg" name="Dr. Jane Doe" position="Superintendent" tagline="Administrative team member since June, 1982"]\r\n\r\nClass aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Aenean augue lacus, dictum in pharetra vel, pulvinar sit amet nisi. Nullam consequat dignissim risus, sit amet interdum risus hendrerit a. Vivamus viverra lectus sit amet ipsum placerat congue at quis turpis. Integer at porttitor mauris. Cras lacinia enim id neque pretium laoreet. Donec dignissim velit in ultricies pulvinar. Maecenas aliquet nec ipsum ac lobortis. Nam facilisis vel risus eget elementum.\r\n\r\n[/team_member]\r\n\r\n[team_member photo="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/team_2.jpg" name="Prof. John Doe" position="Assistant Superintendent" tagline="Administrative team member since June, 1997"]\r\n\r\nCum sociis natoque penatibus et magnis dis parturient montes, nascetur ridiculus mus. Nullam porttitor orci vel sem volutpat viverra. Duis eget nisi consequat nibh accumsan interdum. Mauris consequat est nec tortor auctor molestie. Sed sit amet sagittis est.\r\n\r\n[/team_member]\r\n\r\n[team_member photo="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/team_3.jpg" name="Prof. Dr. Sc. Mr. Marrie Pirrie" position="Assistant Superintendent" tagline="Administrative team member since June, 2012"]\r\n\r\nNullam cursus consectetur massa a aliquet. Duis eget placerat dolor, sit amet pulvinar eros. Vestibulum ante ipsum primis in faucibus orci luctus et ultrices posuere cubilia Curae; Nunc ornare tristique diam, at porta lorem accumsan eget. Nulla tincidunt, sem a luctus congue, justo nulla cursus sem, ut lacinia tortor lacus nec libero. Nam suscipit massa at eros consectetur dignissim. Mauris elementum lorem eget libero vulputate mattis. Fusce vel sapien sapien.\r\n\r\n[/team_member]\r\n\r\n[team_member photo="http://asiacentre.brickisred.com/wp-content/uploads/2014/06/team_4.jpg" name="Marcus Bossner Jr." position="Public Relations" tagline="Administrative team member since May, 2011"]\r\n\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla laoreet lectus tempor ipsum malesuada, in egestas nisl consectetur. Maecenas pretium ligula enim, in posuere elit posuere vitae. Fusce vel vehicula enim, a faucibus tortor. Aliquam porttitor nunc at augue tempor, ut pretium sapien laoreet. Vestibulum commodo, tellus id volutpat luctus, tortor diam convallis libero, imperdiet suscipit odio ante non libero.\r\n\r\n[/team_member]', 'Staff / Faculty', '', 'inherit', 'open', 'open', '', '300-revision-v1', '', '', '2015-06-17 06:07:59', '2015-06-17 06:07:59', '', 300, 'http://asiacentre.brickisred.com/other/300-revision-v1/', 0, 'revision', '', 0),
(1838, 1, '2015-06-18 03:52:27', '2015-06-18 03:52:27', '', 'asicentre-logo-bg', '', 'inherit', 'open', 'open', '', 'asicentre-logo-bg', '', '', '2015-06-18 03:52:27', '2015-06-18 03:52:27', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/06/asicentre-logo-bg.jpg', 0, 'attachment', 'image/jpeg', 0),
(1845, 1, '2015-06-18 05:35:25', '2015-06-18 05:35:25', 'This is a sticky post.\r\n\r\nThere are a few things to verify:\r\n<ul>\r\n	<li>The sticky post should be distinctly recognizable in some way in comparison to normal posts. You can style the <code>.sticky</code> class if you are using the <a title="WordPress Codex post_class() Function" href="http://codex.wordpress.org/Function_Reference/post_class" target="_blank">post_class()</a> function to generate your post classes, which is a best practice.</li>\r\n	<li>They should show at the very top of the blog index page, even though they could be several posts back chronologically.</li>\r\n	<li>They should still show up again in their chronologically correct postion in time, but without the sticky indicator.</li>\r\n	<li>If you have a plugin or widget that lists popular posts or comments, make sure that this sticky post is not always at the top of those lists unless it really is popular.</li>\r\n</ul>', 'Template: Sticky', '', 'inherit', 'open', 'open', '', '1241-revision-v1', '', '', '2015-06-18 05:35:25', '2015-06-18 05:35:25', '', 1241, 'http://asiacentre.brickisred.com/other/1241-revision-v1/', 0, 'revision', '', 0),
(1846, 1, '2015-06-18 10:42:39', '2015-06-18 10:42:39', 'asicentre logo', 'asicentre logo', '', 'inherit', 'open', 'open', '', 'asicentre-logo-trans', '', '', '2015-06-18 10:42:53', '2015-06-18 10:42:53', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/06/asicentre-logo-trans.png', 0, 'attachment', 'image/png', 0),
(1885, 1, '2015-07-01 06:52:53', '2015-07-01 06:52:53', '', 'Asia-Centre-Logo-Horizontal', '', 'inherit', 'open', 'open', '', 'asia-centre-logo-horizontal', '', '', '2015-07-01 06:52:53', '2015-07-01 06:52:53', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/07/Asia-Centre-Logo-Horizontal.png', 0, 'attachment', 'image/png', 0),
(1887, 1, '2015-07-01 07:25:34', '2015-07-01 07:25:34', '', 'Asia-Centre-Logo-banner', '', 'inherit', 'open', 'open', '', 'asia-centre-logo-banner-2', '', '', '2015-07-01 07:25:34', '2015-07-01 07:25:34', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/07/Asia-Centre-Logo-banner1.png', 0, 'attachment', 'image/png', 0),
(1891, 1, '2015-07-01 07:33:24', '2015-07-01 07:33:24', '', 'Asia-Centre-Logo-banner', '', 'inherit', 'open', 'open', '', 'asia-centre-logo-banner-3', '', '', '2015-07-01 07:33:24', '2015-07-01 07:33:24', '', 0, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/07/Asia-Centre-Logo-banner2.png', 0, 'attachment', 'image/png', 0),
(1912, 1, '2015-08-27 04:15:47', '2015-08-27 04:15:47', 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Proin ut odio tellus. Maecenas consectetur leo arcu, sit amet fermentum nisi mattis sit amet. Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nunc vestibulum eu arcu ut elementum. Ut pellentesque libero ac magna ornare, eget dictum orci ultricies.', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '39-revision-v1', '', '', '2015-08-27 04:15:47', '2015-08-27 04:15:47', '', 39, 'http://asiacentre.brickisred.com/other/39-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1918, 1, '2015-08-27 05:15:09', '2015-08-27 05:15:09', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[separator style="regular"]\r\n<h4>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</h4>\r\nเปิดให้บริการ รายครึ่งวัน, รายวัน, รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ เหมาะสำหรับการประชุมบริษัท การประชุมส่วนตัว การอบรม การสัมมนา งานเสวนา การประชุมเชิงปฏิบัติการ Workshop การสาธิตสินค้า งานเปิดตัวสินค้า หนังสือ งานฉายภาพยนต์ ฯลฯ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n<a href="http://asiacentre.co.th/contact-us/location/" target="_blank">* ที่จอดรถ</a>\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n[separator style="regular"]\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'publish', 'closed', 'closed', '', 'meeting-spaces', '', '', '2017-01-23 17:10:50', '2017-01-23 10:10:50', '', 0, 'http://asiacentre.brickisred.com/?page_id=1918', 0, 'page', '', 0),
(1919, 1, '2015-08-27 05:15:09', '2015-08-27 05:15:09', 'We have space for rent', 'Space', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-27 05:15:09', '2015-08-27 05:15:09', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1920, 1, '2015-08-27 05:15:35', '2015-08-27 05:15:35', ' ', '', '', 'publish', 'closed', 'closed', '', '1920', '', '', '2017-01-17 13:00:07', '2017-01-17 06:00:07', '', 0, 'http://asiacentre.brickisred.com/?p=1920', 10, 'nav_menu_item', '', 0),
(1922, 1, '2015-08-27 05:19:43', '2015-08-27 05:19:43', 'We have space for rent\r\n\r\n<strong>Booking Form</strong>\r\n\r\n<strong>Calendar of availability</strong>\r\n\r\nMorning, Afternoon, Evening (times)\r\n\r\nRoom Layout (max capacity)\r\nU shape, Classroom, Lecture, Empty\r\n\r\nPrice Live update\r\n\r\n&nbsp;', 'Space', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-27 05:19:43', '2015-08-27 05:19:43', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1923, 1, '2015-08-27 05:20:33', '2015-08-27 05:20:33', 'We have space for rent\r\n\r\n<strong>Booking Form</strong>\r\n\r\n<strong>Calendar of availability</strong>\r\n\r\nMorning, Afternoon, Evening (times)\r\n\r\nRoom Layout (max capacity)\r\nU shape, Classroom, Lecture, Empty\r\n\r\nPrice Live update\r\n\r\nRefreshments &amp; Catering\r\n\r\n&nbsp;', 'Space', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-27 05:20:33', '2015-08-27 05:20:33', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1924, 1, '2015-09-15 10:50:56', '2015-09-15 10:50:56', '<h6 class="title-median">Asia Centre (Bangkok):</h6>\n<p class="p1"><span class="s1">128/183 Phayathai Plaza Building (17th Floor),</span><span class="s1">\nPhayathai Road,\nThung-Phayathai,\nRachatewi,\nBangkok 10400</span></p>\n<strong>Tel:</strong> (66) 02-1293773\n\n<strong>Fax:</strong> (66) 02-1293774\n<strong>\nEmail:</strong> <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\n\n<strong>Social:</strong> <a href="https://www.facebook.com/asiacentre.co.th" target="_blank">Facebook</a>\n\nLocation Details\n<h6 class="title-median"></h6>', 'Contact Details', '', 'inherit', 'closed', 'closed', '', '328-autosave-v1', '', '', '2015-09-15 10:50:56', '2015-09-15 10:50:56', '', 328, 'http://asiacentre.brickisred.com/other/328-autosave-v1/', 0, 'revision', '', 0),
(1925, 1, '2015-08-27 07:52:48', '2015-08-27 07:52:48', '{"theme_css":"ui-lightness","theme_name":"UI Lightness","center_form":"","form_width":"100%","form_align":"left","direction":"ltr","fieldset":"0px","fieldset_color":"000000","fieldset_padding":"0 0 15px 0","fieldset_bg_color":"","title_size":"20px","title_color":"444444","form_desc_size":"14px","form_desc_color":"666666","font":"\\"Lucida Grande\\",\\"Lucida Sans Unicode\\",Tahoma,sans-serif","font_size":"14px","label_color":"444444","weight":"bold","position":"none","align":"left","width":"150px","required_color":"B94A48","required_weight":"bold","label_padding":"0 0 3px 0","description_font_size":"12px","description_color":"666666","description_weight":"normal","description_style":"normal","description_align":"left","field_font_size":"14px","field_height":"32px","line_height":"normal","field_width":"100%","auto_width":"","field_pad":"6px 10px","field_margin":"20px","text_color":"555555","border_color":"cccccc","field_border_width":"1px","field_border_style":"solid","bg_color":"ffffff","bg_color_active":"ffffff","border_color_active":"66afe9","text_color_error":"444444","bg_color_error":"ffffff","border_color_error":"B94A48","border_width_error":"1px","border_style_error":"solid","bg_color_disabled":"ffffff","border_color_disabled":"E5E5E5","text_color_disabled":"A1A1A1","radio_align":"block","check_align":"block","check_font_size":"13px","check_label_color":"444444","check_weight":"normal","section_font_size":"18px","section_color":"444444","section_weight":"bold","section_pad":"15px 0 3px 0","section_mar_top":"15px","section_mar_bottom":"12px","section_bg_color":"","section_border_color":"e8e8e8","section_border_width":"2px","section_border_style":"solid","section_border_loc":"-top","collapse_icon":"6","collapse_pos":"after","repeat_icon":"1","submit_style":"","submit_font_size":"14px","submit_width":"auto","submit_height":"auto","submit_bg_color":"ffffff","submit_border_color":"cccccc","submit_border_width":"1px","submit_text_color":"444444","submit_weight":"normal","submit_border_radius":"4px","submit_bg_img":"","submit_margin":"10px","submit_padding":"6px 11px","submit_shadow_color":"eeeeee","submit_hover_bg_color":"efefef","submit_hover_color":"444444","submit_hover_border_color":"cccccc","submit_active_bg_color":"efefef","submit_active_color":"444444","submit_active_border_color":"cccccc","border_radius":"4px","error_bg":"F2DEDE","error_border":"EBCCD1","error_text":"B94A48","error_font_size":"14px","success_bg_color":"DFF0D8","success_border_color":"D6E9C6","success_text_color":"468847","success_font_size":"14px","important_style":"","custom_css":""}', 'Formidable Style', '', 'publish', 'closed', 'closed', '', 'formidable-style', '', '', '2015-08-27 07:52:48', '2015-08-27 07:52:48', '', 0, 'http://asiacentre.brickisred.com/other/formidable-style/', 1, 'frm_styles', '', 0),
(1926, 0, '2015-04-06 17:18:12', '2015-04-06 17:18:12', '{"email_to":"[admin_email]","cc":"","bcc":"","reply_to":"","from":"[sitename] <[admin_email]>","email_subject":"","email_message":"[default-message]","event":["create"],"conditions":{"send_stop":"send","any_all":"any"}}', 'Email Notification', 'email', 'publish', 'open', 'open', '', '1_email_1', '', '', '2015-12-18 07:37:56', '2015-12-18 07:37:56', '', 0, 'http://asiacentre.brickisred.com/other/1_email_1/', 1, 'frm_form_actions', '', 0),
(1928, 1, '2015-04-06 17:18:12', '2015-04-06 17:18:12', '{"email_to":"info@asiacentre.co.th","cc":"","bcc":"","reply_to":"","from":"[sitename] <info@asiacentre.co.th>","email_subject":"Booking Form Request","email_message":"[default-message]","inc_user_info":"1","event":["create"]}', 'Email Notification', 'email', 'publish', 'closed', 'closed', '', '3_email_1928', '', '', '2015-09-14 09:00:31', '2015-09-14 09:00:31', '', 0, 'http://asiacentre.brickisred.com/other/1_email_1/', 3, 'frm_form_actions', '', 0),
(1929, 1, '2015-08-27 07:57:23', '2015-08-27 07:57:23', 'We have space for rent.\r\n\r\n<strong>Space Booking Form</strong>\r\n\r\n[formidable id=3]\r\n\r\n<strong>Calendar of availability</strong>\r\n\r\nMorning, Afternoon, Evening (times)\r\n\r\nRoom Layout (max capacity)\r\nU shape, Classroom, Lecture, Empty\r\n\r\nPrice Live update\r\n\r\nRefreshments &amp; Catering\r\n\r\n&nbsp;', 'Space', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-27 07:57:23', '2015-08-27 07:57:23', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1930, 1, '2015-08-27 08:02:48', '2015-08-27 08:02:48', 'We have space for rent.\r\n\r\n<strong>Space Booking Form</strong>\r\n\r\n[formidable id=3]\r\n\r\nNotes: (to be deleted)\r\n<ul>\r\n	<li><strong>Calendar of availability</strong></li>\r\n	<li>Morning, Afternoon, Evening (times)</li>\r\n	<li>Room Layout (max capacity) - U shape, Classroom, Lecture, Empty</li>\r\n	<li>Price Live update</li>\r\n	<li>Refreshments &amp; Catering</li>\r\n</ul>\r\n&nbsp;', 'Space', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-27 08:02:48', '2015-08-27 08:02:48', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1931, 1, '2015-08-27 08:18:01', '2015-08-27 08:18:01', '<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\nNotes: (to be deleted)\r\n<ul>\r\n	<li><strong>Calendar of availability</strong></li>\r\n	<li>Morning, Afternoon, Evening (times)</li>\r\n	<li>Room Layout (max capacity) - U shape, Classroom, Lecture, Empty</li>\r\n	<li>Price Live update</li>\r\n	<li>Refreshments &amp; Catering</li>\r\n</ul>\r\n&nbsp;', 'Space', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-27 08:18:01', '2015-08-27 08:18:01', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1932, 1, '2015-08-27 08:18:36', '2015-08-27 08:18:36', '<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Space', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-27 08:18:36', '2015-08-27 08:18:36', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1933, 1, '2015-08-27 08:32:37', '2015-08-27 08:32:37', '<a href="http://asiacentre.co.th/opportunities/internship-programme/">Internship Programme</a>\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream. <a href="http://asiacentre.co.th/opportunities/internship-programme/">Find out more...</a>\r\n\r\n<a href="http://asiacentre.co.th/job-opportunities/">Job Opportunities</a>\r\n\r\nAsia Centre is looking to hire a Digital Marketing &amp; Communication Officer to join our team. This is an exciting role within a young organisation, covering all aspects of communications and marketing including brand development, strategic events, PR, marketing campaigns, digital development and content writing. <a href="http://asiacentre.co.th/job-opportunities/">Find out more...</a>', 'Opportunities', '', 'publish', 'closed', 'closed', '', 'opportunities', '', '', '2016-10-10 06:18:33', '2016-10-10 06:18:33', '', 0, 'http://asiacentre.brickisred.com/?page_id=1933', 0, 'page', '', 0),
(1934, 1, '2015-08-27 08:32:37', '2015-08-27 08:32:37', '', 'Internships', '', 'inherit', 'closed', 'closed', '', '1933-revision-v1', '', '', '2015-08-27 08:32:37', '2015-08-27 08:32:37', '', 1933, 'http://asiacentre.brickisred.com/other/1933-revision-v1/', 0, 'revision', '', 0),
(1936, 1, '2015-08-27 11:26:35', '2015-08-27 11:26:35', '', 'Home', '', 'publish', 'closed', 'closed', '', 'home-4', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 0, 'http://asiacentre.brickisred.com/?p=1936', 1, 'nav_menu_item', '', 0),
(1937, 1, '2015-08-28 04:22:56', '2015-08-28 04:22:56', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy-oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate an exchange of knowledge between the peoples of Asia and the rest of the world.\r\n<ul>\r\n 	<li><a href="http://asiacentre.co.th/services/academic-services/">Academic Services</a></li>\r\n 	<li><a href="http://asiacentre.co.th/services/expert-advisory-service/">Expert Advisory Service</a></li>\r\n 	<li><a href="http://asiacentre.co.th/meetings/">Learning</a></li>\r\n 	<li><a href="http://asiacentre.co.th/ngo-services/">NGO Services</a></li>\r\n 	<li><a href="http://asiacentre.co.th/services/professional-development-services/">Professional Development Services</a></li>\r\n</ul>\r\n<h4></h4>', 'Services', '', 'publish', 'closed', 'closed', '', 'services', '', '', '2016-12-27 07:14:17', '2016-12-27 07:14:17', '', 0, 'http://asiacentre.brickisred.com/?page_id=1937', 0, 'page', '', 0),
(1938, 1, '2015-08-28 04:22:56', '2015-08-28 04:22:56', '', 'Consulting', '', 'inherit', 'closed', 'closed', '', '1937-revision-v1', '', '', '2015-08-28 04:22:56', '2015-08-28 04:22:56', '', 1937, 'http://asiacentre.brickisred.com/other/1937-revision-v1/', 0, 'revision', '', 0),
(1939, 1, '2015-08-28 04:23:10', '2015-08-28 04:23:10', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n 	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n 	<li><a href="http://asiacentre.co.th/writing-institute/">Writing Institute</a>\r\n<p class="page-title"></p>\r\n</li>\r\n</ul>', 'Learning', '', 'publish', 'closed', 'closed', '', 'learning', '', '', '2016-12-27 08:05:34', '2016-12-27 08:05:34', '', 0, 'http://asiacentre.brickisred.com/?page_id=1939', 0, 'page', '', 0),
(1940, 1, '2015-08-28 04:23:10', '2015-08-28 04:23:10', '', 'Education', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2015-08-28 04:23:10', '2015-08-28 04:23:10', '', 1939, 'http://asiacentre.brickisred.com/other/1939-revision-v1/', 0, 'revision', '', 0),
(1946, 1, '2015-08-28 04:24:38', '2015-08-28 04:24:38', 'Praesent sollicitudin ligula id nisi venenatis, sit amet ultrices massa dapibus. Vestibulum nec justo sed sem pretium sodales sed vel lectus. Donec nibh felis, tincidunt rhoncus velit quis, laoreet porta dui. Nam sit amet metus ac magna dictum volutpat. Nullam adipiscing cursus nibh, id vehicula ipsum dapibus a. In sed est faucibus, porttitor eros a, congue lacus. Vivamus est enim, interdum id urna non, elementum gravida urna. Vestibulum sed nibh aliquam, tristique purus sit amet, aliquet leo. Vestibulum dapibus sagittis bibendum.\r\n<h4>This is a subtitle</h4>\r\nAenean nec turpis non massa tempus tristique et malesuada risus. Curabitur volutpat accumsan euismod. In sodales est congue, ornare leo sed, scelerisque libero. Aenean at nulla nec velit hendrerit imperdiet. Praesent in metus ante. Nulla facilisi. Praesent quis lacus suscipit, tincidunt dolor eget, cursus felis. Sed ut consequat dolor. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Nulla mauris enim, fermentum a lectus id, semper ultricies nisl. Aliquam id convallis nulla.\r\n\r\n<!--nextpage-->\r\n<h4>This is page #2</h4>\r\nLorem ipsum dolor sit amet, consectetur adipiscing elit. Maecenas in egestas dolor, a lobortis massa. Vivamus ligula nisi, tincidunt eget gravida vulputate, porta a sem. Fusce sollicitudin accumsan nisi non dignissim. Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Fusce neque risus, convallis sit amet pharetra nec, interdum in tortor. Phasellus quis mi non enim bibendum pellentesque. Nam tempus volutpat nibh, sit amet consequat nulla ultricies ut. Proin id lacinia purus. Pellentesque mattis, urna vitae vulputate pellentesque, tellus justo ornare nulla, vel placerat turpis diam quis odio. In in eros dignissim, faucibus metus et, commodo nisi. Mauris quis ipsum est. Nulla vel hendrerit nisi.\r\n\r\nMaecenas semper, tortor eget rutrum gravida, magna mauris malesuada urna, sit amet ornare dolor est sed est. Duis sed gravida est. Curabitur justo diam, dapibus eget dignissim in, ultricies ut quam. Phasellus fringilla eros neque, at sagittis metus pellentesque eget. Fusce purus nisl, tempor eu consectetur eget, dapibus rutrum nisl. Etiam gravida tellus ut dictum consequat. Nullam accumsan suscipit velit, in lacinia metus consequat a. Integer at laoreet tellus. Morbi arcu ipsum, dictum non cursus ut, scelerisque id eros. Sed sollicitudin fringilla risus, at pretium mauris facilisis quis. Proin gravida sapien quis molestie fringilla. Vestibulum malesuada justo ac massa tincidunt, sit amet sagittis lorem rutrum. Cras viverra aliquet quam, ut vehicula tellus convallis at. Sed sagittis lectus in porta lobortis.\r\n\r\n<!--nextpage-->\r\n<h4>This is page #3</h4>\r\nDonec commodo, diam at porttitor varius, augue eros condimentum eros, eu iaculis lorem tellus ac tellus. Phasellus mollis augue eget quam consequat facilisis. Nulla vitae ullamcorper ligula. Proin accumsan, orci non egestas semper, nulla nisl lacinia quam, ut porta justo turpis ac massa. Phasellus nec pharetra orci, eget congue dolor. Phasellus molestie, ipsum vitae tempus dignissim, turpis velit consectetur neque, non dignissim sem enim ac augue. Duis non eros id tellus pellentesque accumsan. Morbi posuere dui eu interdum egestas. Maecenas eu velit blandit, ornare lorem non, rutrum leo.\r\n\r\n[content_chunk id="320"]', 'About', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2015-08-28 04:24:38', '2015-08-28 04:24:38', '', 18, 'http://asiacentre.brickisred.com/other/18-revision-v1/', 0, 'revision', '', 0),
(1951, 1, '2015-08-28 04:26:33', '2015-08-28 04:26:33', '', 'Mission', '', 'publish', 'closed', 'closed', '', 'mission', '', '', '2015-08-28 04:27:54', '2015-08-28 04:27:54', '', 0, 'http://asiacentre.brickisred.com/?page_id=1951', 0, 'page', '', 0),
(1952, 1, '2015-08-28 04:26:33', '2015-08-28 04:26:33', '', 'Overview', '', 'inherit', 'closed', 'closed', '', '1951-revision-v1', '', '', '2015-08-28 04:26:33', '2015-08-28 04:26:33', '', 1951, 'http://asiacentre.brickisred.com/other/1951-revision-v1/', 0, 'revision', '', 0),
(1953, 1, '2015-08-28 04:26:41', '2015-08-28 04:26:41', '', 'Mission', '', 'inherit', 'closed', 'closed', '', '1951-revision-v1', '', '', '2015-08-28 04:26:41', '2015-08-28 04:26:41', '', 1951, 'http://asiacentre.brickisred.com/other/1951-revision-v1/', 0, 'revision', '', 0),
(1955, 1, '2015-08-28 04:28:06', '2015-08-28 04:28:06', '<b>Digital Marketing &amp; Communication Officer</b>\r\n\r\nAsia Centre is looking to hire a Digital Marketing &amp; Communication Officer to join our team. This is an exciting role within a young organisation, covering all aspects of communications and marketing including brand development, strategic events, PR, marketing campaigns, digital development and content writing.\r\n\r\nThe ideal candidate is effectively bilingual (in Thai &amp; English), enthusiastic, self-motivated and interested in growing and developing the organisation. This is an entry-level position with scope for advancement.\r\n\r\n<b>Duties &amp; Responsibilities Include (but are not limited to)</b>\r\n<ul>\r\n 	<li>Developing strategic communications plans for promotion and dissemination of corporate and programmatic content</li>\r\n 	<li>Implementation and management a range of online &amp; offline communication strategies targeting media and industry engagement</li>\r\n 	<li>Promoting Asia Centre and coordinating its corporate communications, public affairs, press releases and e-marketing development communication</li>\r\n 	<li>Manage the Asia Centre brand</li>\r\n 	<li>Develop/maintain social media profiles and quality content on Twitter, Facebook, and LinkedIn.</li>\r\n 	<li>Develop other, relevant social media outlets to support and expand our digital presence</li>\r\n 	<li>Recruit and maintain media partnerships</li>\r\n 	<li>Manage PR and press relations</li>\r\n 	<li>Assist in the preparation and drafting of various communications (including email, social media, blogs)</li>\r\n 	<li>Marketing of the business arm of Asia Centre by promoting us as a boutique meeting, seminar and conference space in Central Bangkok</li>\r\n</ul>\r\n<b>Required Skills and Qualifications</b>\r\n<ul>\r\n 	<li>Bachelor’s degree in Communications, Business Administration, Marketing, or a related field.</li>\r\n 	<li>Minimum 1 year of directly related marketing, public affairs, media relations, and/or marketing research experience</li>\r\n 	<li>High level of organizational and project coordination skills.</li>\r\n 	<li>Demonstrated working knowledge of Wordpress and basic web communication techniques; expertise in using office software packages, technology, and systems (spreadsheets, graphics, database programs).</li>\r\n 	<li>Knowledge and experience in using social media as a promotional/engagement tool.</li>\r\n 	<li>Experience in graphic design</li>\r\n 	<li>Able to speak, read and write effectively in Thai and English. A good command of English is indispensable.</li>\r\n 	<li>Ability to work in a multicultural environment</li>\r\n 	<li>Flexibility and adaptability within a dynamic work environment are essential assets</li>\r\n</ul>\r\n<b>Work Environment </b>\r\n\r\nAsia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.\r\n\r\n<b>How to apply</b>\r\n\r\nTo apply, submit - in one pdf document -  a brief cover letter, an updated CV (2 pages max), proof of prior work experience and scanned copies of your diplomas to (e-mail).\r\n\r\nAfter submission, please note that only short-listed candidates will be contacted. The position will remain open until filled.\r\n\r\nAs part of the application process Asia Centre reserves the right to verify the academic and professional credentials of short-listed candidates.<b> </b>\r\n\r\n<b>This position is open to Thai nationals only.</b>\r\n\r\n<b>About Asia Centre</b>\r\n\r\nAsia Centre is an independent think- tank and networking hub for academia and civil society in the region. The Centre’s core activities focus on education and human right’s policy research. It provides meeting facilities and services for academic and professional development, communications and outreach, research and publications, and development and technical assistance. Asia Centre connects peoples and regions through collaborative partnership with educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector. Asia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region.', 'Job Opportunities', '', 'publish', 'closed', 'closed', '', 'job-opportunities', '', '', '2017-01-19 16:35:45', '2017-01-19 09:35:45', '', 0, 'http://asiacentre.brickisred.com/?page_id=1955', 0, 'page', '', 0),
(1956, 1, '2015-08-28 04:28:06', '2015-08-28 04:28:06', '', 'Overview', '', 'inherit', 'closed', 'closed', '', '1955-revision-v1', '', '', '2015-08-28 04:28:06', '2015-08-28 04:28:06', '', 1955, 'http://asiacentre.brickisred.com/other/1955-revision-v1/', 0, 'revision', '', 0),
(1962, 1, '2015-08-28 09:12:08', '2015-08-28 09:12:08', 'asia-centre-logo', 'asia-centre-logo', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo-6', '', '', '2017-01-20 17:40:55', '2017-01-20 10:40:55', '', 18, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/08/asia-centre-logo.png', 1, 'attachment', 'image/png', 0),
(1963, 1, '2015-08-28 09:21:03', '2015-08-28 09:21:03', '', 'asia-centre-logo', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo-7', '', '', '2017-01-20 17:40:55', '2017-01-20 10:40:55', '', 18, 'http://asiacentre.brickisred.com/wp-content/uploads/2015/08/asia-centre-logo1.png', 2, 'attachment', 'image/png', 0),
(1964, 1, '2015-08-28 11:26:59', '2015-08-28 11:26:59', '<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-08-28 11:26:59', '2015-08-28 11:26:59', '', 1918, 'http://asiacentre.brickisred.com/other/1918-revision-v1/', 0, 'revision', '', 0),
(1965, 1, '2015-08-28 11:29:54', '2015-08-28 11:29:54', '', 'Opportunities', '', 'inherit', 'closed', 'closed', '', '1933-revision-v1', '', '', '2015-08-28 11:29:54', '2015-08-28 11:29:54', '', 1933, 'http://asiacentre.brickisred.com/other/1933-revision-v1/', 0, 'revision', '', 0),
(1967, 1, '2015-08-28 11:36:40', '2015-08-28 11:36:40', '<a href="http://asiacentre.co.th/spaces/">Find out more</a>\r\n\r\n<a href="http://asiacentre.co.th/spaces/">Book Now</a>', 'Spaces Gallery', '', 'publish', 'closed', 'closed', '', 'meeting-spaces', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 0, 'http://asiacentre.brickisred.com/?post_type=gallery&#038;p=1967', 0, 'gallery', '', 0),
(1982, 1, '2015-08-30 09:08:00', '2015-08-30 09:08:00', 'This post should display a <a title="Featured Images" href="http://en.support.wordpress.com/featured-images/#setting-a-featured-image" target="_blank">featured image</a>, if the theme <a title="Post Thumbnails" href="http://codex.wordpress.org/Post_Thumbnails" target="_blank">supports it</a>.\r\n\r\nNon-square images can provide some unique styling issues.\r\n\r\nThis post tests a vertical featured image.', 'Template: Featured Image (Vertical)', '', 'inherit', 'closed', 'closed', '', '1016-revision-v1', '', '', '2015-08-30 09:08:00', '2015-08-30 09:08:00', '', 1016, 'http://asiacentre.brickisred.com/other/1016-revision-v1/', 0, 'revision', '', 0),
(1983, 1, '2015-08-30 09:08:14', '2015-08-30 09:08:14', 'This content is before the <a title="The More Tag" href="http://en.support.wordpress.com/splitting-content/more-tag/" target="_blank">more tag</a>.\r\n\r\nRight after this sentence should be a "continue reading" button of some sort.\r\n\r\n<!--more-->\r\n\r\nAnd this content is after the more tag.', 'Template: More Tag', '', 'inherit', 'closed', 'closed', '', '996-revision-v1', '', '', '2015-08-30 09:08:14', '2015-08-30 09:08:14', '', 996, 'http://asiacentre.brickisred.com/other/996-revision-v1/', 0, 'revision', '', 0),
(1984, 1, '2015-08-30 09:08:26', '2015-08-30 09:08:26', 'This is the post content. It should be displayed in place of the user-defined excerpt in single-page views.', 'Template: Excerpt (Defined)', 'This is a user-defined post excerpt. It should be displayed in place of the post content in archive-index pages.', 'inherit', 'closed', 'closed', '', '993-revision-v1', '', '', '2015-08-30 09:08:26', '2015-08-30 09:08:26', '', 993, 'http://asiacentre.brickisred.com/other/993-revision-v1/', 0, 'revision', '', 0),
(1985, 1, '2015-08-30 09:08:36', '2015-08-30 09:08:36', 'This is the post content. It should be displayed in place of the auto-generated excerpt in single-page views. Archive-index pages should display an auto-generated excerpt of this content. Depending on Theme-defined filters, the length of the auto-generated excerpt will vary from Theme-to-Theme. The default length for auto-generated excerpts is 55 words, so to test the excerpt auto-generation, this post must have more than 55 words.\r\n\r\nBe sure to test the formatting of the auto-generated excerpt, to ensure that it doesn''t create any layout problems. Also, ensure that any filters applied to the excerpt, such as &lt;code&gt;excerpt_length&lt;/code&gt; and &lt;code&gt;excerpt_more&lt;/code&gt;, display properly.', 'Template: Excerpt (Generated)', '', 'inherit', 'closed', 'closed', '', '1446-revision-v1', '', '', '2015-08-30 09:08:36', '2015-08-30 09:08:36', '', 1446, 'http://asiacentre.brickisred.com/other/1446-revision-v1/', 0, 'revision', '', 0),
(1986, 1, '2015-08-30 09:09:34', '2015-08-30 09:09:34', 'This content, comments, pingbacks, and trackbacks should not be visible until the password is entered.', 'Template: Password Protected (the password is "enter")', '', 'inherit', 'closed', 'closed', '', '1168-revision-v1', '', '', '2015-08-30 09:09:34', '2015-08-30 09:09:34', '', 1168, 'http://asiacentre.brickisred.com/other/1168-revision-v1/', 0, 'revision', '', 0),
(1987, 1, '2015-08-30 09:09:35', '2015-08-30 09:09:35', 'This post has its comments, pingbacks, and trackbacks disabled.\n\nThere should be no comment reply form, but <em>should</em> display pingbacks and trackbacks.', 'Template: Comments Disabled', '', 'inherit', 'closed', 'closed', '', '1150-revision-v1', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 1150, 'http://asiacentre.brickisred.com/other/1150-revision-v1/', 0, 'revision', '', 0),
(1988, 1, '2015-08-30 09:09:35', '2015-08-30 09:09:35', 'This post has many pingpacks and trackbacks.\n\nThere are a few ways to list them.\n<ol>\n	<li>Above the comments</li>\n	<li>Below the comments</li>\n	<li>Included within the normal flow of comments</li>\n</ol>', 'Template: Pingbacks And Trackbacks', '', 'inherit', 'closed', 'closed', '', '1149-revision-v1', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 1149, 'http://asiacentre.brickisred.com/other/1149-revision-v1/', 0, 'revision', '', 0),
(1989, 1, '2015-08-30 09:09:35', '2015-08-30 09:09:35', 'https://twitter.com/nacin/status/319508408669708289\n\nThis post tests WordPress'' <a title="Twitter Embeds" href="http://en.support.wordpress.com/twitter/twitter-embeds/" target="_blank">Twitter Embeds</a> feature.', 'Media: Twitter Embeds', '', 'inherit', 'closed', 'closed', '', '1179-revision-v1', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 1179, 'http://asiacentre.brickisred.com/other/1179-revision-v1/', 0, 'revision', '', 0),
(1990, 1, '2015-08-30 09:09:35', '2015-08-30 09:09:35', 'All children, except one, grow up. They soon know that they will grow up, and the way Wendy knew was this. One day when she was two years old she was playing in a garden, and she plucked another flower and ran with it to her mother. I suppose she must have looked rather delightful, for Mrs. Darling put her hand to her heart and cried, "Oh, why can''t you remain like this for ever!" This was all that passed between them on the subject, but henceforth Wendy knew that she must grow up. You always know after you are two. Two is the beginning of the end.\n\n<!--more-->\n\nMrs. Darling first heard of Peter when she was tidying up her children''s minds. It is the nightly custom of every good mother after her children are asleep to rummage in their minds and put things straight for next morning, repacking into their proper places the many articles that have wandered during the day.\n\nIf you could keep awake (but of course you can''t) you would see your own mother doing this, and you would find it very interesting to watch her. It is quite like tidying up drawers. You would see her on her knees, I expect, lingering humorously over some of your contents, wondering where on earth you had picked this thing up, making discoveries sweet and not so sweet, pressing this to her cheek as if it were as nice as a kitten, and hurriedly stowing that out of sight. When you wake in the morning, the naughtiness and evil passions with which you went to bed have been folded up small and placed at the bottom of your mind and on the top, beautifully aired, are spread out your prettier thoughts, ready for you to put on.\n\nI don''t know whether you have ever seen a map of a person''s mind. Doctors sometimes draw maps of other parts of you, and your own map can become intensely interesting, but catch them trying to draw a map of a child''s mind, which is not only confused, but keeps going round all the time. There are zigzag lines on it, just like your temperature on a card, and these are probably roads in the island, for the Neverland is always more or less an island, with astonishing splashes of colour here and there, and coral reefs and rakish-looking craft in the offing, and savages and lonely lairs, and gnomes who are mostly tailors, and caves through which a river runs, and princes with six elder brothers, and a hut fast going to decay, and one very small old lady with a hooked nose. It would be an easy map if that were all, but there is also first day at school, religion, fathers, the round pond, needle-work, murders, hangings, verbs that take the dative, chocolate pudding day, getting into braces, say ninety-nine, three-pence for pulling out your tooth yourself, and so on, and either these are part of the island or they are another map showing through, and it is all rather confusing, especially as nothing will stand still.\n\nOf course the Neverlands vary a good deal. John''s, for instance, had a lagoon with flamingoes flying over it at which John was shooting, while Michael, who was very small, had a flamingo with lagoons flying over it. John lived in a boat turned upside down on the sands, Michael in a wigwam, Wendy in a house of leaves deftly sewn together. John had no friends, Michael had friends at night, Wendy had a pet wolf forsaken by its parents, but on the whole the Neverlands have a family resemblance, and if they stood still in a row you could say of them that they have each other''s nose, and so forth. On these magic shores children at play are for ever beaching their coracles [simple boat]. We too have been there; we can still hear the sound of the surf, though we shall land no more.\n\nOf all delectable islands the Neverland is the snuggest and most compact, not large and sprawly, you know, with tedious distances between one adventure and another, but nicely crammed. When you play at it by day with the chairs and table-cloth, it is not in the least alarming, but in the two minutes before you go to sleep it becomes very real. That is why there are night-lights.\n\nOccasionally in her travels through her children''s minds Mrs. Darling found things she could not understand, and of these quite the most perplexing was the word Peter. She knew of no Peter, and yet he was here and there in John and Michael''s minds, while Wendy''s began to be scrawled all over with him. The name stood out in bolder letters than any of the other words, and as Mrs. Darling gazed she felt that it had an oddly cocky appearance.', 'Post Format: Standard', '', 'inherit', 'closed', 'closed', '', '358-revision-v1', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 358, 'http://asiacentre.brickisred.com/other/358-revision-v1/', 0, 'revision', '', 0),
(1991, 1, '2015-08-30 09:09:35', '2015-08-30 09:09:35', '[gallery]\n\n<!--nextpage-->\n\nYou can use this page to test the Theme''s handling of the[gallery]\n\nshortcode, including the <code>columns</code> parameter, from 1 to 9 columns. Themes are only required to support the default setting (3 columns), so this page is entirely optional.\n<h2>One Column</h2>\n[gallery columns="1"]\n<h2>Two Columns</h2>\n[gallery columns="2"]\n<h2>Three Columns</h2>\n[gallery columns="3"]\n<h2>Four Columns</h2>\n[gallery columns="4"]\n<h2>Five Columns</h2>\n[gallery columns="5"]\n<h2>Six Columns</h2>\n[gallery columns="6"]\n<h2>Seven Columns</h2>\n[gallery columns="7"]\n<h2>Eight Columns</h2>\n[gallery columns="8"]\n<h2>Nine Columns</h2>\n[gallery columns="9"]', 'Post Format: Gallery', '', 'inherit', 'closed', 'closed', '', '555-revision-v1', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 555, 'http://asiacentre.brickisred.com/other/555-revision-v1/', 0, 'revision', '', 0),
(1992, 1, '2015-08-30 09:09:35', '2015-08-30 09:09:35', 'This is a test for Jetpack''s Tiled Gallery.\n\nInstall <a title="Jetpack for WordPress" href="http://wordpress.org/plugins/jetpack/" target="_blank">Jetpack</a> to test.\n\n[gallery type="rectangular" columns="4" ids="755,757,758,760,766,763" orderby="rand"]\n\nThis is some text after the Tiled Gallery just to make sure that everything spaces nicely.', 'Post Format: Gallery (Tiled)', '', 'inherit', 'closed', 'closed', '', '1031-revision-v1', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 1031, 'http://asiacentre.brickisred.com/other/1031-revision-v1/', 0, 'revision', '', 0),
(1993, 1, '2015-08-30 09:09:35', '2015-08-30 09:09:35', '<dl id="attachment_612" class="wp-caption aligncenter" style="width:650px;"><dt class="wp-caption-dt"></dt></dl>&nbsp;\n\n<a href="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5540.jpg"><img class="alignnone wp-image-755 size-large" src="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5540.jpg?w=604" alt="" width="604" height="453" /></a>', 'Post Format: Image', '', 'inherit', 'closed', 'closed', '', '1158-revision-v1', '', '', '2015-08-30 09:09:35', '2015-08-30 09:09:35', '', 1158, 'http://asiacentre.brickisred.com/other/1158-revision-v1/', 0, 'revision', '', 0),
(1994, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', '[caption id="attachment_754" align="alignnone" width="604"]<a href="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5478.jpg"><img class="wp-image-754 size-large" src="http://asiacentre.brickisred.com/wp-content/uploads/2011/07/100_5478.jpg?w=604" alt="Bell on Wharf" width="604" height="453" /></a> Bell on wharf in San Francisco[/caption]', 'Post Format: Image (Caption)', '', 'inherit', 'closed', 'closed', '', '1163-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 1163, 'http://asiacentre.brickisred.com/other/1163-revision-v1/', 0, 'revision', '', 0),
(1995, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', '[caption id="attachment_612" align="aligncenter" width="640" caption="Chunk of resinous blackboy husk, Clarkson, Western Australia. This burns like a spinifex log."]<a href="http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg"><img src="http://wpthemetestdata.files.wordpress.com/2012/06/dsc20040724_152504_532.jpg" alt="chunk of resinous blackboy husk" title="dsc20040724_152504_532" width="640" height="480" class="size-full wp-image-612" /></a>[/caption]\n', 'Post Format: Image (Linked)', '', 'inherit', 'closed', 'closed', '', '568-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 568, 'http://asiacentre.brickisred.com/other/568-revision-v1/', 0, 'revision', '', 0),
(1996, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', 'Link:\n\n<a href="http://asiacentre.brickisred.com/wp-content/uploads/2012/07/originaldixielandjazzbandwithalbernard-stlouisblues.mp3">St. Louis Blues</a>\n\nAudio shortcode:\n\n[audio http://asiacentre.brickisred.com/wp-content/uploads/2012/07/originaldixielandjazzbandwithalbernard-stlouisblues.mp3]', 'Post Format: Audio', '', 'inherit', 'closed', 'closed', '', '587-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 587, 'http://asiacentre.brickisred.com/other/587-revision-v1/', 0, 'revision', '', 0),
(1997, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', 'http://wordpress.tv/2009/03/16/anatomy-of-a-wordpress-theme-exploring-the-files-behind-your-theme/\n\nPosted as per the <a href="http://codex.wordpress.org/Embeds" target="_blank">instructions in the Codex</a>.', 'Post Format: Video (WordPress.tv)', '', 'inherit', 'closed', 'closed', '', '582-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 582, 'http://asiacentre.brickisred.com/other/582-revision-v1/', 0, 'revision', '', 0),
(1998, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', '[wpvideo tFnqC9XQ w=680]\n\n<a title="VideoPress Plugin for WordPress" href="http://videopress.com/" target="_blank">VideoPress</a>, especially as a video post format, usually provides some unique styling issues.\n\nYou will need to install <a title="Jetpack for WordPress" href="http://jetpack.me/" target="_blank">Jetpack</a> or <a title="Slim Jetpack" href="http://wordpress.org/extend/plugins/slimjetpack/" target="_blank">Slim Jetpack</a> plugin to turn the shortcode into a viewable video.', 'Post Format: Video (VideoPress)', '', 'inherit', 'closed', 'closed', '', '1005-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 1005, 'http://asiacentre.brickisred.com/other/1005-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(1999, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', 'http://www.youtube.com/watch?v=SQEQr7c0-dw\n\nLearn more about <a title="WordPress Embeds" href="http://codex.wordpress.org/Embeds" target="_blank">WordPress Embeds</a>.', 'Post Format: Video (YouTube)', '', 'inherit', 'closed', 'closed', '', '1161-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 1161, 'http://asiacentre.brickisred.com/other/1161-revision-v1/', 0, 'revision', '', 0),
(2000, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', '“I never tried to prove nothing, just wanted to give a good show. My life has always been my music, it''s always come first, but the music ain''t worth nothing if you can''t lay it on the public. The main thing is to live for that audience, ''cause what you''re there for is to please the people.”', 'Post Format: Aside', '', 'inherit', 'closed', 'closed', '', '559-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 559, 'http://asiacentre.brickisred.com/other/559-revision-v1/', 0, 'revision', '', 0),
(2001, 1, '2015-08-30 09:09:36', '2015-08-30 09:09:36', 'WordPress, how do I love thee? Let me count the ways (in 140 characters or less).', 'Post Format: Status', '', 'inherit', 'closed', 'closed', '', '579-revision-v1', '', '', '2015-08-30 09:09:36', '2015-08-30 09:09:36', '', 579, 'http://asiacentre.brickisred.com/other/579-revision-v1/', 0, 'revision', '', 0),
(2002, 1, '2015-08-30 09:09:37', '2015-08-30 09:09:37', '<a href="http://make.wordpress.org/themes" title="The WordPress Theme Review Team Website">The WordPress Theme Review Team Website</a>', 'Post Format: Link', '', 'inherit', 'closed', 'closed', '', '565-revision-v1', '', '', '2015-08-30 09:09:37', '2015-08-30 09:09:37', '', 565, 'http://asiacentre.brickisred.com/other/565-revision-v1/', 0, 'revision', '', 0),
(2003, 1, '2015-08-30 09:09:37', '2015-08-30 09:09:37', '<blockquote>Only one thing is impossible for God: To find any sense in any copyright law on the planet.\n<cite><a href="http://www.brainyquote.com/quotes/quotes/m/marktwain163473.html">Mark Twain</a></cite></blockquote>', 'Post Format: Quote', '', 'inherit', 'closed', 'closed', '', '575-revision-v1', '', '', '2015-08-30 09:09:37', '2015-08-30 09:09:37', '', 575, 'http://asiacentre.brickisred.com/other/575-revision-v1/', 0, 'revision', '', 0),
(2004, 1, '2015-08-30 09:10:04', '2015-08-30 09:10:04', 'Abbott: Strange as it may seem, they give ball players nowadays very peculiar names.\n\nCostello: Funny names?\n\nAbbott: Nicknames, nicknames. Now, on the St. Louis team we have Who''s on first, What''s on second, I Don''t Know is on third--\n\nCostello: That''s what I want to find out. I want you to tell me the names of the fellows on the St. Louis team.\n\nAbbott: I''m telling you. Who''s on first, What''s on second, I Don''t Know is on third--\n\nCostello: You know the fellows'' names?\n\nAbbott: Yes.\n\nCostello: Well, then who''s playing first?\n\nAbbott: Yes.\n\nCostello: I mean the fellow''s name on first base.\n\nAbbott: Who.\n\nCostello: The fellow playin'' first base.\n\nAbbott: Who.\n\nCostello: The guy on first base.\n\nAbbott: Who is on first.\n\nCostello: Well, what are you askin'' me for?\n\nAbbott: I''m not asking you--I''m telling you. Who is on first.\n\nCostello: I''m asking you--who''s on first?\n\nAbbott: That''s the man''s name.\n\nCostello: That''s who''s name?\n\nAbbott: Yes.\n\nCostello: When you pay off the first baseman every month, who gets the money?\n\nAbbott: Every dollar of it. And why not, the man''s entitled to it.\n\nCostello: Who is?\n\nAbbott: Yes.\n\nCostello: So who gets it?\n\nAbbott: Why shouldn''t he? Sometimes his wife comes down and collects it.\n\nCostello: Who''s wife?\n\nAbbott: Yes. After all, the man earns it.\n\nCostello: Who does?\n\nAbbott: Absolutely.\n\nCostello: Well, all I''m trying to find out is what''s the guy''s name on first base?\n\nAbbott: Oh, no, no. What is on second base.\n\nCostello: I''m not asking you who''s on second.\n\nAbbott: Who''s on first!\n\nCostello: St. Louis has a good outfield?\n\nAbbott: Oh, absolutely.\n\nCostello: The left fielder''s name?\n\nAbbott: Why.\n\nCostello: I don''t know, I just thought I''d ask.\n\nAbbott: Well, I just thought I''d tell you.\n\nCostello: Then tell me who''s playing left field?\n\nAbbott: Who''s playing first.\n\nCostello: Stay out of the infield! The left fielder''s name?\n\nAbbott: Why.\n\nCostello: Because.\n\nAbbott: Oh, he''s center field.\n\nCostello: Wait a minute. You got a pitcher on this team?\n\nAbbott: Wouldn''t this be a fine team without a pitcher?\n\nCostello: Tell me the pitcher''s name.\n\nAbbott: Tomorrow.\n\nCostello: Now, when the guy at bat bunts the ball--me being a good catcher--I want to throw the guy out at first base, so I pick up the ball and throw it to who?\n\nAbbott: Now, that''s he first thing you''ve said right.\n\nCostello: I DON''T EVEN KNOW WHAT I''M TALKING ABOUT!\n\nAbbott: Don''t get excited. Take it easy.\n\nCostello: I throw the ball to first base, whoever it is grabs the ball, so the guy runs to second. Who picks up the ball and throws it to what. What throws it to I don''t know. I don''t know throws it back to tomorrow--a triple play.\n\nAbbott: Yeah, it could be.\n\nCostello: Another guy gets up and it''s a long ball to center.\n\nAbbott: Because.\n\nCostello: Why? I don''t know. And I don''t care.\n\nAbbott: What was that?\n\nCostello: I said, I DON''T CARE!\n\nAbbott: Oh, that''s our shortstop!', 'Post Format: Chat', '', 'inherit', 'closed', 'closed', '', '562-revision-v1', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 562, 'http://asiacentre.brickisred.com/other/562-revision-v1/', 0, 'revision', '', 0),
(2005, 1, '2015-08-30 09:10:04', '2015-08-30 09:10:04', '<h2>Title should not overflow the content area</h2>\n\nA few things to check for:\n<ul>\n	<li>Non-breaking text in the title, content, and comments should have no adverse effects on layout or functionality.</li>\n	<li>Check the browser window / tab title.</li>\n	<li>If you are a plugin or widget developer, check that this text does not break anything.</li>\n</ul>\n\nThe following CSS properties will help you support non-breaking text.\n\n<pre>-ms-word-wrap: break-word;\nword-wrap: break-word;</pre>\n&nbsp;', 'Antidisestablishmentarianism', '', 'inherit', 'closed', 'closed', '', '1175-revision-v1', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 1175, 'http://asiacentre.brickisred.com/other/1175-revision-v1/', 0, 'revision', '', 0),
(2006, 1, '2015-08-30 09:10:04', '2015-08-30 09:10:04', 'This post has no title, but it still must link to the single post view somehow.\n\nThis is typically done by placing the permalink on the post date.', '', '', 'inherit', 'closed', 'closed', '', '1169-revision-v1', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 1169, 'http://asiacentre.brickisred.com/other/1169-revision-v1/', 0, 'revision', '', 0),
(2007, 1, '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 'Edge Case: No Content', '', 'inherit', 'closed', 'closed', '', '1170-revision-v1', '', '', '2015-08-30 09:10:04', '2015-08-30 09:10:04', '', 1170, 'http://asiacentre.brickisred.com/other/1170-revision-v1/', 0, 'revision', '', 0),
(2008, 1, '2015-08-30 09:10:05', '2015-08-30 09:10:05', 'This post has many categories.', 'Edge Case: Many Categories', '', 'inherit', 'closed', 'closed', '', '1152-revision-v1', '', '', '2015-08-30 09:10:05', '2015-08-30 09:10:05', '', 1152, 'http://asiacentre.brickisred.com/other/1152-revision-v1/', 0, 'revision', '', 0),
(2009, 1, '2015-08-30 09:10:05', '2015-08-30 09:10:05', 'This post has many tags.', 'Edge Case: Many Tags', '', 'inherit', 'closed', 'closed', '', '1151-revision-v1', '', '', '2015-08-30 09:10:05', '2015-08-30 09:10:05', '', 1151, 'http://asiacentre.brickisred.com/other/1151-revision-v1/', 0, 'revision', '', 0),
(2010, 1, '2015-08-30 09:10:05', '2015-08-30 09:10:05', 'Nested and mixed lists are an interesting beast. It''s a corner case to make sure that\n<ul>\n	<li><span style="line-height:1.714285714;font-size:1rem;">Lists within lists do not break the ordered list numbering order</span></li>\n	<li><span style="line-height:1.714285714;font-size:1rem;">Your list styles go deep enough.</span></li>\n</ul>\n<h3>Ordered - Unordered - Ordered</h3>\n<ol>\n	<li>ordered item</li>\n	<li>ordered item\n<ul>\n	<li><strong>unordered</strong></li>\n	<li><strong>unordered</strong>\n<ol>\n	<li>ordered item</li>\n	<li>ordered item</li>\n</ol>\n</li>\n</ul>\n</li>\n	<li>ordered item</li>\n	<li>ordered item</li>\n</ol>\n<h3>Ordered - Unordered - Unordered</h3>\n<ol>\n	<li>ordered item</li>\n	<li>ordered item\n<ul>\n	<li><strong>unordered</strong></li>\n	<li><strong>unordered</strong>\n<ul>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>\n</li>\n</ul>\n</li>\n	<li>ordered item</li>\n	<li>ordered item</li>\n</ol>\n<h3>Unordered - Ordered - Unordered</h3>\n<ul>\n	<li>unordered item</li>\n	<li>unordered item\n<ol>\n	<li>ordered</li>\n	<li>ordered\n<ul>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>\n</li>\n</ol>\n</li>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>\n<h3>Unordered - Unordered - Ordered</h3>\n<ul>\n	<li>unordered item</li>\n	<li>unordered item\n<ul>\n	<li>unordered</li>\n	<li>unordered\n<ol>\n	<li><strong>ordered item</strong></li>\n	<li><strong>ordered item</strong></li>\n</ol>\n</li>\n</ul>\n</li>\n	<li>unordered item</li>\n	<li>unordered item</li>\n</ul>', 'Edge Case: Nested And Mixed Lists', '', 'inherit', 'closed', 'closed', '', '1000-revision-v1', '', '', '2015-08-30 09:10:05', '2015-08-30 09:10:05', '', 1000, 'http://asiacentre.brickisred.com/other/1000-revision-v1/', 0, 'revision', '', 0),
(2011, 1, '2015-08-30 09:10:34', '2015-08-30 09:10:34', 'Post Page 1\r\n\r\n<!--nextpage-->\r\n\r\nPost Page 2\r\n\r\n<!--nextpage-->\r\n\r\nPost Page 3', 'Template: Paginated', '', 'inherit', 'closed', 'closed', '', '1171-revision-v1', '', '', '2015-08-30 09:10:34', '2015-08-30 09:10:34', '', 1171, 'http://asiacentre.brickisred.com/other/1171-revision-v1/', 0, 'revision', '', 0),
(2013, 1, '2015-09-10 14:11:32', '2015-09-10 14:11:32', 'The Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships. It provides consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector. Operating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.\r\n\r\n[content_chunk id="320"]', 'About', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2015-09-10 14:11:32', '2015-09-10 14:11:32', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2014, 1, '2015-09-10 14:14:19', '2015-09-10 14:14:19', 'The Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\r\n\r\nIt provides consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\r\n\r\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.', 'About', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2015-09-10 14:14:19', '2015-09-10 14:14:19', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2015, 1, '2015-09-10 14:21:35', '2015-09-10 14:21:35', '', 'Sticker 1', '', 'inherit', 'closed', 'closed', '', 'sticker-1', '', '', '2015-09-10 14:21:35', '2015-09-10 14:21:35', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/Sticker-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2016, 1, '2015-09-10 14:21:38', '2015-09-10 14:21:38', '', 'Sticker 2', '', 'inherit', 'closed', 'closed', '', 'sticker-2', '', '', '2015-09-10 14:21:38', '2015-09-10 14:21:38', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/Sticker-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2017, 1, '2015-09-10 14:21:41', '2015-09-10 14:21:41', '', 'tee shirt', '', 'inherit', 'closed', 'closed', '', 'tee-shirt', '', '', '2015-09-10 14:21:41', '2015-09-10 14:21:41', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/tee-shirt.jpg', 0, 'attachment', 'image/jpeg', 0),
(2019, 1, '2015-09-10 14:21:46', '2015-09-10 14:21:46', 'skyline', 'skyline', '', 'inherit', 'closed', 'closed', '', 'skyline', '', '', '2015-09-10 14:24:49', '2015-09-10 14:24:49', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/skyline.jpg', 0, 'attachment', 'image/jpeg', 0),
(2020, 1, '2015-09-10 14:24:05', '2015-09-10 14:24:05', '', 'training room', '', 'inherit', 'closed', 'closed', '', 'training-room-2', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/training-room.jpg', 24, 'attachment', 'image/jpeg', 0),
(2021, 1, '2015-09-10 14:24:08', '2015-09-10 14:24:08', '', 'skyline', '', 'inherit', 'closed', 'closed', '', 'skyline-2', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/skyline.jpg', 25, 'attachment', 'image/jpeg', 0),
(2022, 1, '2015-09-10 14:53:33', '2015-09-10 14:53:33', '[gallery ids="2021,2020,2019,2018,1981,1980,1979,1978,1977,1971,1972,1976,1975,1974,1968,1969,1970"]', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1967-autosave-v1', '', '', '2015-09-10 14:53:33', '2015-09-10 14:53:33', '', 1967, 'http://asiacentre.co.th/other/1967-autosave-v1/', 0, 'revision', '', 0),
(2024, 1, '2015-09-10 15:05:10', '2015-09-10 15:05:10', 'Asia Center Login Logo', 'Asia Center Login Logo', '', 'inherit', 'closed', 'closed', '', 'site-logo-2', '', '', '2015-09-10 15:15:44', '2015-09-10 15:15:44', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/site-logo.png', 0, 'attachment', 'image/png', 0),
(2026, 1, '2015-09-11 10:31:02', '2015-09-11 10:31:02', '', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-revision-v1', '', '', '2015-09-11 10:31:02', '2015-09-11 10:31:02', '', 1937, 'http://asiacentre.co.th/other/1937-revision-v1/', 0, 'revision', '', 0),
(2027, 1, '2015-09-11 10:33:30', '2015-09-11 10:33:30', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate exchange of knowledge between the peoples of Asia and the rest of the world.\n<h4>Academic Services</h4>\nThe Centre’s academics specialize in the teaching of academic writing, critical thinking and study strategies, communication studies, international relations, international law, political science and research methodology at tertiary institutions for undergraduate and post-graduate degrees.\n\nAdditionally, we provide advice to students on their capstone papers, independent study projects, master and doctoral theses and we undertake proof reading.\n\nOur academic services, inclusive of research, are available for both academic and non- academic clients. We undertake research work for commissioned projects such as occasional papers, baseline studies, specialist reports and policy briefs. For academics we can advise on research projects, grant applications and finalizing manuscripts for academic publications.\n\nFor tertiary institutions we can advise on accreditation matters and consult on compiling quality assurance reports. We undertake external curriculum review, serve as external examiners and participate in review committees.\n<h4>NGO Services</h4>\nWe provide technical assistance and advice to non-governmental organizations and donor agencies supporting the non-profit sector. We seek to facilitate knowledge transfer between experts and civil society practitioners in Asia and the rest of the world.\n\nThis assistance includes advice in the following key areas: context assessments and political\n\nanalyses for intervention strategies, communications strategies, grants &amp; loan applications,\n\nproject monitoring &amp; evaluation, technical writing and documentation.\n<h4>Professional Development Services</h4>\nWe conduct professional development services on areas such as leadership, advocacy\n\ncampaigns, strategic planning, online communications and performance management. We\n\ncan produce course syllabi and training programs based on our client needs. This can also\n\ninclude training of trainers.\n\nOur trainers and facilitators come from our list of in-house consultants who are selected\n\nbased on the clients’ training needs. To this end, the Centre’s experts are experienced in\n\nimparting knowledge to adult learners. We are experienced in self-directed learning where\n\nlearners acquire knowledge through problem solving and task oriented exercises.\n<h4>Expert Advisory Service</h4>\nThe Centre''s experts can provide professional knowledge via speaking engagements as guest\n\nlecturers and speakers at academic, civil society and public events and provide advice\n\non specific policy areas. These can include participation at conferences, meetings, media\n\nbriefings and interviews.', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-autosave-v1', '', '', '2015-09-11 10:33:30', '2015-09-11 10:33:30', '', 1937, 'http://asiacentre.co.th/other/1937-autosave-v1/', 0, 'revision', '', 0),
(2028, 1, '2015-09-11 10:34:11', '2015-09-11 10:34:11', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate exchange of knowledge between the peoples of Asia and the rest of the world.\r\n<h4>Academic Services</h4>\r\nThe Centre’s academics specialize in the teaching of academic writing, critical thinking and study strategies, communication studies, international relations, international law, political science and research methodology at tertiary institutions for undergraduate and post-graduate degrees.\r\n\r\nAdditionally, we provide advice to students on their capstone papers, independent study projects, master and doctoral theses and we undertake proof reading.\r\n\r\nOur academic services, inclusive of research, are available for both academic and non- academic clients. We undertake research work for commissioned projects such as occasional papers, baseline studies, specialist reports and policy briefs. For academics we can advise on research projects, grant applications and finalizing manuscripts for academic publications.\r\n\r\nFor tertiary institutions we can advise on accreditation matters and consult on compiling quality assurance reports. We undertake external curriculum review, serve as external examiners and participate in review committees.\r\n<h4>NGO Services</h4>\r\nWe provide technical assistance and advice to non-governmental organizations and donor agencies supporting the non-profit sector. We seek to facilitate knowledge transfer between experts and civil society practitioners in Asia and the rest of the world.\r\n\r\nThis assistance includes advice in the following key areas: context assessments and political analyses for intervention strategies, communications strategies, grants &amp; loan applications, project monitoring &amp; evaluation, technical writing and documentation.\r\n<h4>Professional Development Services</h4>\r\nWe conduct professional development services on areas such as leadership, advocacy campaigns, strategic planning, online communications and performance management. We can produce course syllabi and training programs based on our client needs. This can also include training of trainers.\r\n\r\nOur trainers and facilitators come from our list of in-house consultants who are selected based on the clients’ training needs. To this end, the Centre’s experts are experienced in imparting knowledge to adult learners. We are experienced in self-directed learning where learners acquire knowledge through problem solving and task oriented exercises.\r\n<h4>Expert Advisory Service</h4>\r\nThe Centre''s experts can provide professional knowledge via speaking engagements as guest lecturers and speakers at academic, civil society and public events and provide advice on specific policy areas. These can include participation at conferences, meetings, media briefings and interviews.', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-revision-v1', '', '', '2015-09-11 10:34:11', '2015-09-11 10:34:11', '', 1937, 'http://asiacentre.co.th/other/1937-revision-v1/', 0, 'revision', '', 0),
(2029, 1, '2015-09-13 14:07:39', '2015-09-13 14:07:39', '[SPACES]\r\n\r\nAsia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\nOur spaces can accommodate 4 to 60 people. The following are available:\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n<table width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50">&nbsp;</td>\r\n<td width="54">&nbsp;</td>\r\n<td width="44">&nbsp;</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-13 14:07:39', '2015-09-13 14:07:39', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2030, 1, '2015-09-13 14:07:58', '2015-09-13 14:07:58', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\nOur spaces can accommodate 4 to 60 people. The following are available:\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n<table width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-13 14:07:58', '2015-09-13 14:07:58', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2031, 1, '2015-09-13 14:09:09', '2015-09-13 14:09:09', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n<table width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-13 14:09:09', '2015-09-13 14:09:09', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2032, 1, '2015-09-13 14:10:52', '2015-09-13 14:10:52', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'publish', 'closed', 'closed', '', 'internship-programme', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 1933, 'http://asiacentre.co.th/?page_id=2032', 0, 'page', '', 0),
(2033, 1, '2015-09-13 14:10:52', '2015-09-13 14:10:52', 'The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a minimum of 3 months to a maximum of 6 months.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n	<li>Official letter of university enrolment</li>\r\n	<li>Copy of passport</li>\r\n	<li>CV</li>\r\n	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2015-09-13 14:10:52', '2015-09-13 14:10:52', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2035, 1, '2015-09-13 14:13:31', '2015-09-13 14:13:31', '', 'intern', '', 'inherit', 'closed', 'closed', '', 'intern', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 2032, 'http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg', 4, 'attachment', 'image/jpeg', 0),
(2036, 1, '2015-09-13 14:13:33', '2015-09-13 14:13:33', '', 'intern2', '', 'inherit', 'closed', 'closed', '', 'intern2', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 2032, 'http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg', 5, 'attachment', 'image/jpeg', 0),
(2037, 1, '2015-09-13 14:13:47', '2015-09-13 14:13:47', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="alignnone size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a> <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="alignnone size-medium wp-image-2036" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a>The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\n\n<strong>Research Intern</strong>\n\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\n\n<strong>Communications Intern</strong>\n\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.\n\n<strong>Eligibility</strong>\n\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\n\n<strong>Duration </strong>\n\nThe Centre recruits interns for a minimum of 3 months to a maximum of 6 months.\n\n<strong>General Conditions</strong>\n\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\n\n<strong>Application procedure:</strong>\n\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\n<ul>\n	<li>Official letter of university enrolment</li>\n	<li>Copy of passport</li>\n	<li>CV</li>\n	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\n</ul>\n&nbsp;\n\n&nbsp;', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-autosave-v1', '', '', '2015-09-13 14:13:47', '2015-09-13 14:13:47', '', 2032, 'http://asiacentre.co.th/other/2032-autosave-v1/', 0, 'revision', '', 0),
(2038, 1, '2015-09-13 14:14:36', '2015-09-13 14:14:36', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a> The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a minimum of 3 months to a maximum of 6 months.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n	<li>Official letter of university enrolment</li>\r\n	<li>Copy of passport</li>\r\n	<li>CV</li>\r\n	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2015-09-13 14:14:36', '2015-09-13 14:14:36', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2039, 1, '2015-09-13 14:44:17', '2015-09-13 14:44:17', '<a href="http://asiacentre.co.th/opportunities/internship-programme/">Internship Programme</a>', 'Opportunities', '', 'inherit', 'closed', 'closed', '', '1933-revision-v1', '', '', '2015-09-13 14:44:17', '2015-09-13 14:44:17', '', 1933, 'http://asiacentre.co.th/other/1933-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2040, 1, '2015-09-14 09:09:25', '2015-09-14 09:09:25', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\n\n[separator style="regular"]\n\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\n<ul>\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\n	<li>High-speed internet access, skype video-conferencing, computers</li>\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\n	<li>Private lockers and lounge area</li>\n	<li>Pantry with microwave, kettle and fridge</li>\n</ul>\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\n\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\n\n[separator style="regular"]\n<table class="table table-striped" width="441">\n<tbody>\n<tr>\n<td width="83"><strong>Room Type</strong></td>\n<td width="51"><strong>1 hour</strong></td>\n<td width="84"><strong>Half day</strong></td>\n<td width="78"><strong>Full day</strong></td>\n<td width="73"><strong>Evening</strong></td>\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\n</tr>\n<tr>\n<td width="83"><strong> </strong></td>\n<td width="51"><em>Min. 3 hrs\n</em><em>(8-5pm) </em></td>\n<td width="84">08.00-12.00\nor 13.00-17.00</td>\n<td width="78">08.00-17.00</td>\n<td width="73">17.00-21.00</td>\n<td width="73">08.00-21.00</td>\n</tr>\n<tr>\n<td width="83"><strong>Seminar Room</strong></td>\n<td width="51">1100</td>\n<td width="84">3600</td>\n<td width="78">6400</td>\n<td width="73">5400</td>\n<td width="73">10000</td>\n</tr>\n<tr>\n<td width="83"><strong>Meeting Room</strong></td>\n<td width="51">750</td>\n<td width="84">1500</td>\n<td width="78">2500</td>\n<td width="73">3500</td>\n<td width="73">5500</td>\n</tr>\n<tr>\n<td width="83"><strong>Both Rooms</strong></td>\n<td width="51">1500</td>\n<td width="84">4500</td>\n<td width="78">8000</td>\n<td width="73">7000</td>\n<td width="73">12500</td>\n</tr>\n</tbody>\n</table>\n<em>All Prices in Thai Bhat</em>\n<h3><strong>Room Capacity</strong></h3>\n<table class="table table-striped">\n<tbody>\n<tr>\n<td width="76"><strong>Layout</strong></td>\n<td width="75"><strong>Theatre</strong></td>\n<td width="79"><strong>Classroom</strong></td>\n<td width="81"><strong>Conference</strong></td>\n<td width="81"><strong>Boardroom</strong></td>\n<td width="59"><strong>Meeting</strong></td>\n</tr>\n<tr>\n<td width="76"><strong>Number </strong></td>\n<td width="75">60</td>\n<td width="79">40</td>\n<td width="81">25</td>\n<td width="81">15</td>\n<td width="59">4</td>\n</tr>\n</tbody>\n</table>\n<h3><strong>Office Suite</strong></h3>\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\n<table class="table table-striped">\n<tbody>\n<tr>\n<td width="116"><strong>Office Suite</strong></td>\n<td width="50"><strong>Weekly</strong></td>\n<td width="54"><strong>Monthly</strong></td>\n<td width="44"><strong>Yearly</strong></td>\n</tr>\n<tr>\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\n<td width="50">10,000</td>\n<td width="54">30,000</td>\n<td width="44">25,000</td>\n</tr>\n<tr>\n<td width="116"><strong>Sharing (1 desk)</strong></td>\n<td width="50">5,000</td>\n<td width="54">15,000</td>\n<td width="44">13,000</td>\n</tr>\n<tr>\n<td width="116"><em>All Prices in Thai Bhat</em></td>\n<td width="50"></td>\n<td width="54"></td>\n<td width="44"></td>\n</tr>\n</tbody>\n</table>\n[separator style="regular"]\n<h1><strong>Space Booking Form</strong></h1>\n[formidable id=3]\n\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-autosave-v1', '', '', '2015-09-14 09:09:25', '2015-09-14 09:09:25', '', 1918, 'http://asiacentre.co.th/other/1918-autosave-v1/', 0, 'revision', '', 0),
(2041, 1, '2015-09-14 07:53:00', '2015-09-14 07:53:00', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[tabs_wrapper style="nav-tabs" justify="true"]\r\n\r\n[tabs_wrapper style="nav-pills" justify="false"]\r\n\r\nStart adding tab containers here...\r\n\r\n[/tabs_wrapper]\r\n\r\nStart adding tab containers here...\r\n\r\n[/tabs_wrapper]\r\n<table width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 07:53:00', '2015-09-14 07:53:00', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2042, 1, '2015-09-14 07:56:02', '2015-09-14 07:56:02', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<table width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 07:56:02', '2015-09-14 07:56:02', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2043, 1, '2015-09-14 08:05:36', '2015-09-14 08:05:36', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:05:36', '2015-09-14 08:05:36', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2044, 1, '2015-09-14 08:07:30', '2015-09-14 08:07:30', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table width="441" class="table table-striped>\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:07:30', '2015-09-14 08:07:30', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2045, 1, '2015-09-14 08:08:44', '2015-09-14 08:08:44', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table width="441" class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\nRoom Capacity\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:08:44', '2015-09-14 08:08:44', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2046, 1, '2015-09-14 08:09:42', '2015-09-14 08:09:42', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Minimum 3 hours </em>\r\n\r\n<em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\n\r\nor\r\n\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:09:42', '2015-09-14 08:09:42', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2047, 1, '2015-09-14 08:11:29', '2015-09-14 08:11:29', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00 or\r\n13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:11:29', '2015-09-14 08:11:29', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2048, 1, '2015-09-14 08:12:56', '2015-09-14 08:12:56', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:12:56', '2015-09-14 08:12:56', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2049, 1, '2015-09-14 08:15:30', '2015-09-14 08:15:30', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[gallery columns="6" ids="2020,2019,2018,1981,1980,1979,1978,1977,1976,1975,1974,1972,1971,1970,1969,1968"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:15:30', '2015-09-14 08:15:30', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2050, 1, '2015-09-14 08:15:55', '2015-09-14 08:15:55', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[separator style="regular"]\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 08:15:55', '2015-09-14 08:15:55', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2051, 1, '2015-09-14 08:56:06', '2015-09-14 08:56:06', '[row]\n\n[column col="4"]\n\n[bullet_paragraph [awesome_icon icon="fa-check" icon_size="fa-lg"]]\n<h6>ABOUT</h6>\nThe Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\n\n[/bullet_paragraph]\n\n[/column]\n\n[column col="4"]\n\n[bullet_paragraph]\n<h6>SERVICES</h6>\nWe provide consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\n\n&nbsp;\n\n[/bullet_paragraph]\n\n[/column]\n\n[column col="4"]\n\n[bullet_paragraph]\n<h6>SOCIAL ENTERPRISE</h6>\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.\n\n[/bullet_paragraph]\n\n[/column]\n\n[/row]\n\n[gap height="40"]', '3 columns for home page', '', 'inherit', 'closed', 'closed', '', '320-autosave-v1', '', '', '2015-09-14 08:56:06', '2015-09-14 08:56:06', '', 320, 'http://asiacentre.co.th/other/320-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2052, 1, '2015-09-14 09:09:38', '2015-09-14 09:09:38', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n[separator style="regular"]\r\n<a name="bookingform"></a>\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 09:09:38', '2015-09-14 09:09:38', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2053, 1, '2015-09-14 09:10:06', '2015-09-14 09:10:06', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2015-09-14 09:10:06', '2015-09-14 09:10:06', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2055, 1, '2015-04-06 17:18:12', '2015-04-06 17:18:12', '{"email_to":"info@asiacentre.co.th","cc":"","bcc":"","reply_to":"","from":"[sitename] <info@asiacentre.co.th>","email_subject":"","email_message":"[default-message]","event":["create"]}', 'Email Notification', 'email', 'publish', 'closed', 'closed', '', '5_email_2055', '', '', '2015-09-14 09:14:39', '2015-09-14 09:14:39', '', 0, 'http://asiacentre.brickisred.com/other/1_email_1/', 5, 'frm_form_actions', '', 0),
(2056, 1, '2015-09-14 09:15:19', '2015-09-14 09:15:19', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a> The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a minimum of 3 months to a maximum of 6 months.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n	<li>Official letter of university enrolment</li>\r\n	<li>Copy of passport</li>\r\n	<li>CV</li>\r\n	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>\r\nor use this form\r\n\r\n[formidable id=5]\r\n\r\n&nbsp;', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2015-09-14 09:15:19', '2015-09-14 09:15:19', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2057, 1, '2015-09-14 09:17:30', '2015-09-14 09:17:30', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a> The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a minimum of 3 months to a maximum of 6 months.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n	<li>Official letter of university enrolment</li>\r\n	<li>Copy of passport</li>\r\n	<li>CV</li>\r\n	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2015-09-14 09:17:30', '2015-09-14 09:17:30', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2058, 1, '2015-09-14 09:23:27', '2015-09-14 09:23:27', '', 'Contact Us', '', 'inherit', 'closed', 'closed', '', '39-revision-v1', '', '', '2015-09-14 09:23:27', '2015-09-14 09:23:27', '', 39, 'http://asiacentre.co.th/other/39-revision-v1/', 0, 'revision', '', 0),
(2059, 1, '2015-09-14 09:46:48', '2015-09-14 09:46:48', '', 'corridor', '', 'inherit', 'closed', 'closed', '', 'corridor', '', '', '2015-09-14 09:46:48', '2015-09-14 09:46:48', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/corridor.jpg', 0, 'attachment', 'image/jpeg', 0),
(2060, 1, '2015-09-14 09:46:51', '2015-09-14 09:46:51', '', 'class', '', 'inherit', 'closed', 'closed', '', 'class', '', '', '2015-09-14 09:46:51', '2015-09-14 09:46:51', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/class.jpg', 0, 'attachment', 'image/jpeg', 0),
(2061, 1, '2015-09-14 09:46:53', '2015-09-14 09:46:53', '', 'student', '', 'inherit', 'closed', 'closed', '', 'student', '', '', '2015-09-14 09:46:53', '2015-09-14 09:46:53', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/student.jpg', 0, 'attachment', 'image/jpeg', 0),
(2062, 1, '2015-09-14 09:46:55', '2015-09-14 09:46:55', '', 'meeting-room', '', 'inherit', 'closed', 'closed', '', 'meeting-room', '', '', '2015-09-14 09:46:55', '2015-09-14 09:46:55', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/meeting-room.jpg', 0, 'attachment', 'image/jpeg', 0),
(2063, 1, '2015-09-14 14:34:01', '2015-09-14 14:34:01', '', 'favicon', '', 'inherit', 'closed', 'closed', '', 'favicon-2', '', '', '2015-09-14 14:34:01', '2015-09-14 14:34:01', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/favicon.png', 0, 'attachment', 'image/png', 0),
(2064, 1, '2015-09-15 10:27:27', '2015-09-15 10:27:27', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone size-full wp-image-3038" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map-update-1.jpg" alt="asia-centre-map-update" width="1063" height="650" />\r\n\r\n&nbsp;\r\n\r\n<iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15501.49714848407!2d100.532498!3d13.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc54d13b8a0284a40!2sASIA+Centre+Co.%2C+Ltd.!5e0!3m2!1sen!2sth!4v1475804628679" width="600" height="450" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'Direction', '', 'publish', 'closed', 'closed', '', 'location', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 39, 'http://asiacentre.co.th/?page_id=2064', 0, 'page', '', 0),
(2065, 1, '2015-09-15 10:27:27', '2015-09-15 10:27:27', 'Location', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-15 10:27:27', '2015-09-15 10:27:27', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2066, 1, '2015-09-15 10:28:14', '2015-09-15 10:28:14', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n&nbsp;\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\nPlease refer to the map below for a location overview.\r\n\r\n[Insert Google Map]\r\n\r\nParking\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-15 10:28:14', '2015-09-15 10:28:14', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2067, 1, '2015-09-15 10:29:08', '2015-09-15 10:29:08', '', 'Direction', '', 'publish', 'closed', 'closed', '', '2067', '', '', '2017-01-17 14:54:11', '2017-01-17 07:54:11', '', 39, 'http://asiacentre.co.th/?p=2067', 1, 'nav_menu_item', '', 0),
(2068, 1, '2015-09-15 10:40:33', '2015-09-15 10:40:33', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-15 10:40:33', '2015-09-15 10:40:33', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2069, 1, '2015-09-15 10:46:51', '2015-09-15 10:46:51', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-15 10:46:51', '2015-09-15 10:46:51', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2070, 1, '2015-09-16 10:52:19', '2015-09-16 10:52:19', 'Asia Centre Entrance', 'Asia Centre Entrance', 'Asia Centre Entrance', 'inherit', 'closed', 'closed', '', 'corridor-2', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2071, 1, '2015-09-16 10:52:21', '2015-09-16 10:52:21', 'The Phayathai Plaza Building', 'The Phayathai Plaza Building', 'The Phayathai Plaza Building', 'inherit', 'closed', 'closed', '', 'building', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg', 7, 'attachment', 'image/jpeg', 0),
(2072, 1, '2015-09-16 10:55:47', '2015-09-16 10:55:47', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\n<ul>\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\n	<li>Go out through Exit 1 and walk down the stairs</li>\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\n</ul>\n&nbsp;\n\n<strong>Please refer to the map below for a location overview.</strong>\n\n[wpgmza id="1"]\n\n&nbsp;\n\n<strong>Parking</strong>\n\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-autosave-v1', '', '', '2015-09-16 10:55:47', '2015-09-16 10:55:47', '', 2064, 'http://asiacentre.co.th/other/2064-autosave-v1/', 0, 'revision', '', 0),
(2073, 1, '2015-09-16 10:54:26', '2015-09-16 10:54:26', '[caption id="attachment_2070" align="alignright" width="172"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="172" height="229" /></a> Asia Centre Entrance[/caption]\r\n\r\n[caption id="attachment_2071" align="alignright" width="171"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="171" height="228" /></a> The Phayathai Plaza Building[/caption]\r\n\r\nAsia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-16 10:54:26', '2015-09-16 10:54:26', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2074, 1, '2015-09-16 10:56:51', '2015-09-16 10:56:51', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>\r\n\r\n[caption id="attachment_2071" align="alignright" width="175"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="175" height="233" /></a> The Phayathai Plaza Building[/caption]\r\n\r\nTake either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre\r\n\r\n[caption id="attachment_2070" align="alignright" width="168"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="168" height="224" /></a> Asia Centre Entrance[/caption]</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-16 10:56:51', '2015-09-16 10:56:51', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2075, 1, '2015-09-16 10:57:18', '2015-09-16 10:57:18', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\n<ul>\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\n	<li>Go out through Exit 1 and walk down the stairs</li>\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\n</ul>\n&nbsp;\n\n<strong>Please refer to the map below for a location overview.</strong>\n\n[wpgmza id="1"]\n\n&nbsp;\n\n<strong>Parking</strong>\n\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-16 10:57:18', '2015-09-16 10:57:18', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2076, 1, '2015-09-16 10:58:05', '2015-09-16 10:58:05', '[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\nAsia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-16 10:58:05', '2015-09-16 10:58:05', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2077, 1, '2015-09-16 10:58:34', '2015-09-16 10:58:34', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-16 10:58:34', '2015-09-16 10:58:34', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2078, 1, '2015-09-18 04:39:39', '2015-09-18 04:39:39', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:39:39', '2015-09-18 04:39:39', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2079, 1, '2015-09-18 04:40:44', '2015-09-18 04:40:44', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:40:44', '2015-09-18 04:40:44', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2080, 1, '2015-09-18 04:41:06', '2015-09-18 04:41:06', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:41:06', '2015-09-18 04:41:06', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2081, 1, '2015-09-18 04:41:21', '2015-09-18 04:41:21', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:41:21', '2015-09-18 04:41:21', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2082, 1, '2015-09-18 04:41:33', '2015-09-18 04:41:33', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:41:33', '2015-09-18 04:41:33', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2083, 1, '2015-09-18 04:42:04', '2015-09-18 04:42:04', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:42:04', '2015-09-18 04:42:04', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2084, 1, '2015-09-18 04:42:37', '2015-09-18 04:42:37', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:42:37', '2015-09-18 04:42:37', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2085, 1, '2015-09-18 04:42:59', '2015-09-18 04:42:59', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:42:59', '2015-09-18 04:42:59', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2086, 1, '2015-09-18 04:43:22', '2015-09-18 04:43:22', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n[caption id="attachment_2071" align="alignright" width="173"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg"><img class=" wp-image-2071" src="http://asiacentre.co.th/wp-content/uploads/2015/09/building.jpg" alt="The Phayathai Plaza Building" width="173" height="231" /></a> The Phayathai Plaza Building[/caption]\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\n[caption id="attachment_2070" align="alignright" width="174"]<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg"><img class=" wp-image-2070" src="http://asiacentre.co.th/wp-content/uploads/2015/09/corridor1.jpg" alt="Asia Centre Entrance" width="174" height="232" /></a> Asia Centre Entrance[/caption]\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2015-09-18 04:43:22', '2015-09-18 04:43:22', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2092, 1, '2015-09-24 08:05:02', '2015-09-24 08:05:02', '', 'image1', 'Classroom', 'inherit', 'closed', 'closed', '', 'classroom', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/image1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2093, 1, '2015-09-24 08:05:07', '2015-09-24 08:05:07', '', 'image2', '', 'inherit', 'closed', 'closed', '', 'image2-3', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/image2.jpg', 23, 'attachment', 'image/jpeg', 0),
(2096, 1, '2015-09-24 08:16:54', '2015-09-24 08:16:54', '', 'Events', '', 'publish', 'closed', 'closed', '', 'events', '', '', '2016-12-28 06:13:13', '2016-12-28 06:13:13', '', 0, 'http://asiacentre.co.th/?page_id=2096', 8, 'page', '', 0),
(2097, 1, '2015-09-24 08:16:54', '2015-09-24 08:16:54', '', 'Events', '', 'inherit', 'closed', 'closed', '', '2096-revision-v1', '', '', '2015-09-24 08:16:54', '2015-09-24 08:16:54', '', 2096, 'http://asiacentre.co.th/other/2096-revision-v1/', 0, 'revision', '', 0),
(2099, 1, '2015-09-24 08:20:03', '2015-09-24 08:20:03', '', 'SG Study Hub', '', 'inherit', 'closed', 'closed', '', 'sg-study-hub', '', '', '2015-09-24 08:20:03', '2015-09-24 08:20:03', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/09/SG-Study-Hub.jpg', 0, 'attachment', 'image/jpeg', 0),
(2102, 1, '2015-09-24 08:53:41', '2015-09-24 08:53:41', '<a href="http://asiacentre.co.th/opportunities/internship-programme/">Internship Programme</a>\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream. <a href="http://asiacentre.co.th/opportunities/internship-programme/">Find out more...</a>', 'Opportunities', '', 'inherit', 'closed', 'closed', '', '1933-revision-v1', '', '', '2015-09-24 08:53:41', '2015-09-24 08:53:41', '', 1933, 'http://asiacentre.co.th/other/1933-revision-v1/', 0, 'revision', '', 0),
(2104, 1, '2015-09-26 15:09:09', '2015-09-26 15:09:09', '[ESPRESSO_CHECKOUT]', 'Registration Checkout', '', 'publish', 'closed', 'closed', '', 'registration-checkout', '', '', '2015-09-26 15:09:09', '2015-09-26 15:09:09', '', 0, 'http://asiacentre.co.th/registration-checkout/', 0, 'page', '', 0),
(2105, 1, '2015-09-26 15:09:09', '2015-09-26 15:09:09', '[ESPRESSO_TXN_PAGE]', 'Transactions', '', 'publish', 'closed', 'closed', '', 'transactions', '', '', '2015-09-26 15:09:09', '2015-09-26 15:09:09', '', 0, 'http://asiacentre.co.th/transactions/', 0, 'page', '', 0),
(2106, 1, '2015-09-26 15:09:09', '2015-09-26 15:09:09', '[ESPRESSO_THANK_YOU]', 'Thank You', '', 'publish', 'closed', 'closed', '', 'thank-you', '', '', '2015-09-26 15:09:09', '2015-09-26 15:09:09', '', 0, 'http://asiacentre.co.th/thank-you/', 0, 'page', '', 0),
(2107, 1, '2015-09-26 15:09:09', '2015-09-26 15:09:09', '[ESPRESSO_CANCELLED]', 'Registration Cancelled', '', 'publish', 'closed', 'closed', '', 'registration-cancelled', '', '', '2015-09-26 15:09:09', '2015-09-26 15:09:09', '', 0, 'http://asiacentre.co.th/registration-cancelled/', 0, 'page', '', 0),
(2111, 1, '2015-09-30 11:07:28', '2015-09-30 11:07:28', '', 'People', '', 'publish', 'closed', 'closed', '', 'people', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 0, 'http://asiacentre.co.th/?p=2111', 4, 'nav_menu_item', '', 0),
(2113, 1, '2015-09-30 11:11:05', '2015-09-30 11:11:05', '<p style="text-align: justify;">The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.</p>\r\n\r\n<h2 style="text-align: justify;">Dr. Robin Ramcharan - Chairman</h2>\r\n<p style="text-align: justify;"><img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked in the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D. and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow at the Centre for International Peace and Security Studies at McGill University and the University of Montreal.</p>\r\n\r\n<h2 style="text-align: justify;"><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\n<p style="text-align: justify;">Dr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, an M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;"><strong>Nobuo Hayashi - Member</strong></h2>\r\n<p style="text-align: justify;"><img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, the conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular, recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;"><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />BA (University of Waterloo, Canada); MA and Ph.D. (York University, Canada). Currently Professor and Chair, Department of Politics and Public Administration, Ryerson University, Toronto, Canada. Formerly Chair of the Department of Political Science, University of Winnipeg (Manitoba); Chair of the Advisory and Recruitment Committee for The Manitoba Chair of Global Governance Studies – a joint program between the University of Winnipeg and the University of Manitoba. Prior to these academic appointments, Professor of International Security at Sophia University in Tokyo (Japan); Canada-ASEAN Fellow as well as Fellow at the Institute of Southeast Asian Studies (Singapore). Academic fields of expertise: security and democracy studies, with the regional focus on the Asia-Pacific. Service: Editorial boards of <i>Rethinking Peace and Conflict Studies</i> (Palgrave Macmillan) and the peer-reviewed journal <i>Asian Politics &amp; Policy</i> (Wiley-Blackwell); regional editor of a peer-reviewed journal - <i>The Asian Journal of Peacebuilding</i> (Seoul National University Press, South Korea). Also Distinguished Senior Fellow at the Cambodian Institute for Peace and Cooperation, Distinguished Visiting Scholar at the Cambodian Development Research Institute, and a member of an International Country Experts Network on UN Peacekeeping.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;"><strong>Professor Jonathan Woodier – Member</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3206 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/Woodier-e1481886453190-447x480.jpg" alt="woodier" width="201" height="216" />PhD (UQ), M.A. (HKU), BA (Hons). A media and communications professional specializing in brand building and organizational transformation, Jonathan is currently a professor at the Sol International School of Media and Communications Arts at Woosong University, South Korea, and an Associate Fellow of the Strategic Communications Centre at King’s College, London. For the last 25 years Jonathan has been working with narratives across multiple businesses in Asia Pacific, EMEA and the Americas. With a background in multi-platform journalism and a proven track record of helping companies effectively create authentic conversations with their stakeholders, he has supported leading brands in growing their businesses in highly-regulated industries while raising levels of motivation and good governance.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n&nbsp;\r\n<h2 style="text-align: justify;"><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<p style="text-align: justify;"><img class="wp-image-2121 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and works experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development, he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n&nbsp;', 'Advisory Board', '', 'publish', 'closed', 'closed', '', 'advisory-board', '', '', '2016-12-16 11:09:57', '2016-12-16 11:09:57', '', 18, 'http://asiacentre.co.th/?page_id=2113', 0, 'page', '', 0),
(2114, 1, '2015-09-30 11:11:05', '2015-09-30 11:11:05', '<strong>ADVISORY BOARD</strong>\r\n\r\nThe Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n\r\n<strong>Robin Ramcharan, Chairman Of the Board</strong>\r\n\r\nDr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Karin Dean, Member</strong>\r\n\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Nobuo Hayashi - Member</strong>\r\n\r\nDr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Sorpong Peou - Member</strong>\r\n\r\nDr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Ross Worthington – Member</strong>\r\n\r\nDr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.', 'ADVISORY BOARD', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-09-30 11:11:05', '2015-09-30 11:11:05', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2115, 1, '2015-09-30 11:11:47', '2015-09-30 11:11:47', '', 'ADVISORY BOARD', '', 'publish', 'closed', 'closed', '', '2115', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 18, 'http://asiacentre.co.th/?p=2115', 5, 'nav_menu_item', '', 0),
(2116, 1, '2015-09-30 11:12:00', '2015-09-30 11:12:00', '<strong>ADVISORY BOARD</strong>\r\n\r\nThe Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n\r\n<strong>Robin Ramcharan, Chairman Of the Board</strong>\r\n\r\nDr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Karin Dean, Member</strong>\r\n\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Nobuo Hayashi - Member</strong>\r\n\r\nDr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Sorpong Peou - Member</strong>\r\n\r\nDr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Ross Worthington – Member</strong>\r\n\r\nDr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-09-30 11:12:00', '2015-09-30 11:12:00', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2117, 1, '2015-10-01 04:38:08', '2015-10-01 04:38:08', 'Robin Ramcharan', 'Robin Ramcharan', '', 'inherit', 'closed', 'closed', '', 'robin-ramcharan', '', '', '2016-12-16 11:09:57', '2016-12-16 11:09:57', '', 2113, 'http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg', 0, 'attachment', 'image/jpeg', 0),
(2118, 1, '2015-10-06 07:23:10', '2015-10-06 07:23:10', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\n\n&nbsp;\n<h2>Robin Ramcharan - Chairman Of the Board</h2>\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\n\n&nbsp;\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\n\n&nbsp;\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\n\n&nbsp;\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\n<img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\n\n&nbsp;\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-autosave-v1', '', '', '2015-10-06 07:23:10', '2015-10-06 07:23:10', '', 2113, 'http://asiacentre.co.th/other/2113-autosave-v1/', 0, 'revision', '', 0),
(2119, 1, '2015-10-01 04:38:43', '2015-10-01 04:38:43', 'Karin Dean', 'Karin Dean', '', 'inherit', 'closed', 'closed', '', 'karin-dean', '', '', '2016-12-16 11:09:58', '2016-12-16 11:09:58', '', 2113, 'http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean.jpg', 4, 'attachment', 'image/jpeg', 0),
(2120, 1, '2015-10-01 04:39:49', '2015-10-01 04:39:49', 'Nobuo Hayashi', 'Nobuo Hayashi', '', 'inherit', 'closed', 'closed', '', 'nobuo-hayashi', '', '', '2016-12-16 11:09:58', '2016-12-16 11:09:58', '', 2113, 'http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg', 5, 'attachment', 'image/jpeg', 0),
(2121, 1, '2015-10-01 04:41:00', '2015-10-01 04:41:00', 'Ross Worthington', 'Ross Worthington', '', 'inherit', 'closed', 'closed', '', 'ross-worthington', '', '', '2016-12-16 11:09:58', '2016-12-16 11:09:58', '', 2113, 'http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg', 6, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2122, 1, '2015-10-01 04:41:26', '2015-10-01 04:41:26', '<strong>ADVISORY BOARD</strong>\r\n\r\nThe Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n\r\n<strong>Robin Ramcharan, Chairman Of the Board</strong>\r\n\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Karin Dean, Member</strong>\r\n\r\n<img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Nobuo Hayashi - Member</strong>\r\n\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Dr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Sorpong Peou - Member</strong>\r\n\r\nDr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Ross Worthington – Member</strong>\r\n\r\n<img class="alignright  wp-image-2121" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 04:41:26', '2015-10-01 04:41:26', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2123, 1, '2015-10-01 04:42:22', '2015-10-01 04:42:22', '<strong>ADVISORY BOARD</strong>\r\n\r\nThe Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n\r\n<strong>Robin Ramcharan, Chairman Of the Board</strong>\r\n\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n\r\n<strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean, Member</strong>\r\n\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Nobuo Hayashi - Member</strong>\r\n\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Dr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Sorpong Peou - Member</strong>\r\n\r\nDr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Ross Worthington – Member</strong>\r\n\r\n<img class="alignright wp-image-2121" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 04:42:22', '2015-10-01 04:42:22', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2124, 1, '2015-10-01 04:44:13', '2015-10-01 04:44:13', 'Dr. Sorpong Peou', 'Dr. Sorpong Peou', '', 'inherit', 'closed', 'closed', '', 'dr-sorpong-peou', '', '', '2016-12-16 11:09:58', '2016-12-16 11:09:58', '', 2113, 'http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg', 3, 'attachment', 'image/jpeg', 0),
(2125, 1, '2015-10-01 04:44:40', '2015-10-01 04:44:40', '<strong>ADVISORY BOARD</strong>\r\n\r\nThe Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n\r\n<strong>Robin Ramcharan, Chairman Of the Board</strong>\r\n\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n\r\n<strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean, Member</strong>\r\n\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Nobuo Hayashi - Member</strong>\r\n\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Dr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Sorpong Peou - Member</strong>\r\n\r\n<img class="alignright size-full wp-image-2124" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg" alt="Dr. Sorpong Peou" width="115" height="150" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Ross Worthington – Member</strong>\r\n\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 04:44:40', '2015-10-01 04:44:40', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2126, 1, '2015-10-01 04:45:44', '2015-10-01 04:45:44', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h1>Robin Ramcharan, Chairman Of the Board</h1>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean, Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h3><strong>Dr. Nobuo Hayashi - Member</strong></h3>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Dr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n<h4><strong>Dr. Sorpong Peou - Member</strong></h4>\r\n<img class="alignright size-full wp-image-2124" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg" alt="Dr. Sorpong Peou" width="115" height="150" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h5><strong>Dr. Ross Worthington – Member</strong></h5>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 04:45:44', '2015-10-01 04:45:44', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2127, 1, '2015-10-01 04:46:43', '2015-10-01 04:46:43', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Robin Ramcharan, Chairman Of the Board</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean, Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Dr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright size-full wp-image-2124" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg" alt="Dr. Sorpong Peou" width="115" height="150" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 04:46:43', '2015-10-01 04:46:43', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2128, 1, '2015-10-01 04:49:53', '2015-10-01 04:49:53', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Robin Ramcharan, Chairman Of the Board</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean, Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Dr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright size-full wp-image-2124" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg" alt="Dr. Sorpong Peou" width="115" height="150" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 04:49:53', '2015-10-01 04:49:53', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2129, 1, '2015-10-01 06:28:26', '2015-10-01 06:28:26', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Robin Ramcharan - Chairman Of the Board</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Dr. Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright size-full wp-image-2124" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg" alt="Dr. Sorpong Peou" width="115" height="150" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 06:28:26', '2015-10-01 06:28:26', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2130, 1, '2015-10-01 09:51:35', '2015-10-01 09:51:35', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Robin Ramcharan - Chairman Of the Board</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright size-full wp-image-2124" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg" alt="Dr. Sorpong Peou" width="115" height="150" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 09:51:35', '2015-10-01 09:51:35', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2131, 1, '2015-10-01 09:52:31', '2015-10-01 09:52:31', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Robin Ramcharan - Chairman Of the Board</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright size-full wp-image-2124" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Dr.-Sorpong-Peou.jpg" alt="Dr. Sorpong Peou" width="115" height="150" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-01 09:52:31', '2015-10-01 09:52:31', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2133, 1, '2015-10-06 07:22:33', '2015-10-06 07:22:33', '', 'sorpong', '', 'inherit', 'closed', 'closed', '', 'sorpong', '', '', '2016-12-16 11:09:58', '2016-12-16 11:09:58', '', 2113, 'http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg', 2, 'attachment', 'image/jpeg', 0),
(2134, 1, '2015-10-06 07:23:12', '2015-10-06 07:23:12', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Robin Ramcharan - Chairman Of the Board</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Advisor, International Law and Policy Institute. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than twelve years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing scholarly articles in the aforementioned areas as well as other related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3). He holds a B.Sc. Foreign Service in international relations, law and organisation from Georgetown University (1995); Diplôme d’études supérieures in international law from the Graduate Institute of International and Development Studies, Geneva (1998); and an LL.M. from the University of Cambridge (1999). Additionally, he attended the post-graduate School of International and Public Affairs at Columbia University (1995-6), The Hague Academy of International Law (1999) and the doctoral programme at the Graduate Institute (1998-2004). His working language is English. He also speaks Japanese (native) and French (intermediate).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-06 07:23:12', '2015-10-06 07:23:12', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2136, 1, '2015-10-06 08:52:46', '2015-10-06 08:52:46', '<b><a href="http://aipglobal.co/" target="_blank"><img class="wp-image-2139 size-full alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://aprrn.info/" target="_blank"><strong>Asia Pacific Refugee Rights Network\r\n</strong></a>\r\n\r\nThe <a href="http://aprrn.info/" target="_blank">Asia Pacific Refugee Rights Network (APRRN)</a> is an <a href="http://aprrn.info/" target="_blank"><img class="alignright  wp-image-2773" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-07-29-at-6.00.37-PM.png" alt="Screen Shot 2016-07-29 at 6.00.37 PM" width="249" height="141" /></a>open and growing network consisting of more than 270 civil society organisations and individuals from 26 countries committed to advancing the rights of refugees in the Asia Pacific region. APRRN aims to advance the rights of refugees and other people in need of protection through joint advocacy, capacity strengthening, resource sharing and outreach.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong><img class="wp-image-2533 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Auke3-1140x1140.jpg" alt="Auke3" width="214" height="214" /></strong></a><a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><strong>Gerakbudaya Enterprise</strong></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><img class="alignright size-full wp-image-2604" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="300" height="86" /></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya Enterprise Sdn. Bhd.</a> distributes books that embody social awareness, critical and alternative perspectives, and the hidden histories of Malaysia, Southeast Asia and the wider world we live in.             GB is dedicated to circulating timely and important books, breaking down artificial barriers between writers/thinkers in institutions and everyone else, and generating informed discussions of important issues in our lives by providing different views and fresh insights.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'publish', 'closed', 'closed', '', 'partners', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 18, 'http://asiacentre.co.th/?page_id=2136', 0, 'page', '', 0),
(2137, 1, '2015-10-06 08:52:46', '2015-10-06 08:52:46', '<b>AIPGlobal.co</b>\r\n<div>\r\n\r\nAIPGlobal.co is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development, to platforms for community engagement as well as funding and entrepreneurship advice for student start up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n<a href="http://aipglobal.co/" target="_blank">http://aipglobal.co</a>\r\n\r\n</div>', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2015-10-06 08:52:46', '2015-10-06 08:52:46', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2138, 1, '2015-10-06 08:53:19', '2015-10-06 08:53:19', ' ', '', '', 'publish', 'closed', 'closed', '', '2138', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 18, 'http://asiacentre.co.th/?p=2138', 9, 'nav_menu_item', '', 0),
(2139, 1, '2015-10-06 08:54:08', '2015-10-06 08:54:08', 'Logo', 'Logo', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2015-06-11-at-18-28-57', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 2136, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png', 1, 'attachment', 'image/png', 0),
(2140, 1, '2015-10-06 08:54:26', '2015-10-06 08:54:26', '<b>AIPGlobal.co</b>\n<div>\n\n<img class="alignright size-full wp-image-2139" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="Logo" width="170" height="218" />AIPGlobal.co is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development, to platforms for community engagement as well as funding and entrepreneurship advice for student start up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\n\n<a href="http://aipglobal.co/" target="_blank">http://aipglobal.co</a>\n\n</div>', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-autosave-v1', '', '', '2015-10-06 08:54:26', '2015-10-06 08:54:26', '', 2136, 'http://asiacentre.co.th/other/2136-autosave-v1/', 0, 'revision', '', 0),
(2141, 1, '2015-10-06 08:55:35', '2015-10-06 08:55:35', '<b>AIPGlobal.co</b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co/"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development, to platforms for community engagement as well as funding and entrepreneurship advice for student start up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n<a href="http://aipglobal.co/" target="_blank">http://aipglobal.co</a>\r\n\r\n</div>', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2015-10-06 08:55:35', '2015-10-06 08:55:35', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2142, 1, '2015-10-06 08:56:43', '2015-10-06 08:56:43', '<b><a href="http://aipglobal.co/"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a>AIPGlobal.co</b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development, to platforms for community engagement as well as funding and entrepreneurship advice for student start up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n<a href="http://aipglobal.co/" target="_blank">http://aipglobal.co</a>\r\n\r\n</div>', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2015-10-06 08:56:43', '2015-10-06 08:56:43', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2143, 1, '2015-10-11 06:33:17', '2015-10-11 06:33:17', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Robin Ramcharan - Chairman Of the Board</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-11 06:33:17', '2015-10-11 06:33:17', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2144, 1, '2015-10-13 03:48:03', '2015-10-13 03:48:03', '<p style="text-align: justify;">Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span></p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;">Ahmed Abid</h2>\r\n<p style="text-align: justify;"><img class="wp-image-2638 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Abid-15.jpg" width="160" height="234" /></p>\r\n<p style="text-align: justify;">Ahmed Abid is a filmmaker and adjunct faculty with the University of Liberal Arts Bangladesh (ULAB), Media Studies and Journalism department. He has produced and directed films on rights-based issues around the world. Some of his key directorial work include <a href="http://www.thedreamingvendorsfilm.com/" target="_blank">The Dreaming Vendors</a> (Bangladesh-Thailand), Votes Echoing Hope (Afghanistan) and Click to Protect, Change to Connect (Brazil-Thailand). Ahmed was the artistic director of the first travelling film festival in Thailand. He has also conducted extensive academic research on media in South and Southeast Asia.  Ahmed has worked in Bangladesh, Cambodia, India, Singapore, Thailand and Jordan; and received training in Italy and the Netherlands. He has taught at the Department of Communications &amp; New Media (CNM), National University of Singapore and worked at its CARE Lab as a Research Assistant. Ahmed holds two Master of Arts degrees; one in Philosophy (University of Dhaka, Bangladesh) and one in Media and Social Development (Mahidol University, Thailand). He also holds a diploma in Cinema from the European-Inter University Centre (EIUC).</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;">Jason Briggs</h2>\r\n<p style="text-align: justify;"><img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Alexandra Demetrianova</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.</p>\r\n<p style="text-align: justify;">Currently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.</p>\r\n<p style="text-align: justify;">As a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.</p>\r\n<p style="text-align: justify;">In her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;">Dr. Kenneth Houston</h2>\r\n<p style="text-align: justify;"><img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Yasuyuki Kato</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Dr. Jay Koh</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-2592 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg" alt="jk" width="193" height="217" />Jay Koh (Doctor Fine Art) is an artist-curator, trained in cross-disciplinary artistic research and active as an independent consultant and evaluator. Jay’s recent research was as a member of the Asian Arts and Performance Consortium funded by the Academy of Finland. He is the founder of iFIMA (international Forum for InterMedia Arts). In 1995 in collaboration with Chu Yuan, he initiated a number of public participative and socially engaged art projects across Europe and Asia; such as the Open Academy program in Hanoi, Hue, Ulaanbaatar and Yangon. Jay’s book <a href="http://www.ifima.net/ALPP%20preview%20sm.pdf" target="_blank"><i>Art-Led Participative Processes: Dialogue &amp; Subjectivity within Performances in the Everyday</i> </a>(University of the Arts Helsinki, 2015; SRID/Gerakbudaya, 2016) discusses holistic and ethical art processes in working relationship, and seeks affirmation across sectors and disciplines. Jay contributes writings for platforms such as Asia Art Archive and Irish Arts Newsletter. His most recent is for BRACK’s MAG, Singapore.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;">Simon Osborne</h2>\r\n<p style="text-align: justify;"><img class="wp-image-2152 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<p style="text-align: justify;"><img class="wp-image-2148 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n&nbsp;', 'Centre Associates', '', 'publish', 'closed', 'closed', '', 'centre-associates', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 18, 'http://asiacentre.co.th/?page_id=2144', 0, 'page', '', 0),
(2145, 1, '2015-10-13 03:48:03', '2015-10-13 03:48:03', '<strong>Centre Associates </strong>\r\n\r\nCentre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n<strong>Jason Briggs</strong>\r\n\r\nJason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n<strong>Alexandra Demetrianova</strong>\r\n\r\nAlexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n<strong>Dr. Kenneth Houston</strong>\r\n\r\nDr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Yasuyuki Kato</strong>\r\n\r\nYasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n<strong>Professor Dr. Gustavo A. Olivares Marcos</strong>\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n<strong>Simon Osborne</strong>\r\n\r\nSimon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honors degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the <a href="http://www.broadgatefinancial.com/">Broadgate Financial Group</a> where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n<strong>Dr. Eilo Wing-yat Yu</strong>\r\n\r\nDr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 03:48:03', '2015-10-13 03:48:03', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2146, 1, '2015-10-13 03:48:33', '2015-10-13 03:48:33', ' ', '', '', 'publish', 'closed', 'closed', '', '2146', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 18, 'http://asiacentre.co.th/?p=2146', 6, 'nav_menu_item', '', 0),
(2147, 1, '2015-10-13 03:49:26', '2015-10-13 03:49:26', 'Alexandra Demetrianova', 'Alexandra Demetrianova', '', 'inherit', 'closed', 'closed', '', 'alexandra-demetrianova', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png', 2, 'attachment', 'image/png', 0),
(2148, 1, '2015-10-13 03:49:35', '2015-10-13 03:49:35', '', 'Eilo Wing-yat Yu', '', 'inherit', 'closed', 'closed', '', 'eilo-wing-yat-yu', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png', 3, 'attachment', 'image/png', 0),
(2149, 1, '2015-10-13 03:49:42', '2015-10-13 03:49:42', '', 'Gustavo A. Olivares Marcos', '', 'inherit', 'closed', 'closed', '', 'gustavo-a-olivares-marcos', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png', 4, 'attachment', 'image/png', 0),
(2150, 1, '2015-10-13 03:49:45', '2015-10-13 03:49:45', 'Jason Briggs', 'Jason Briggs', '', 'inherit', 'closed', 'closed', '', 'jason-briggs', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png', 5, 'attachment', 'image/png', 0),
(2151, 1, '2015-10-13 03:49:49', '2015-10-13 03:49:49', '', 'Kenneth Houston', '', 'inherit', 'closed', 'closed', '', 'kenneth-houston', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png', 6, 'attachment', 'image/png', 0),
(2152, 1, '2015-10-13 03:49:52', '2015-10-13 03:49:52', '', 'Simon Osborne', '', 'inherit', 'closed', 'closed', '', 'simon-osborne', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png', 7, 'attachment', 'image/png', 0),
(2153, 1, '2015-10-13 03:49:54', '2015-10-13 03:49:54', '', 'Yasuyuki Kato', '', 'inherit', 'closed', 'closed', '', 'yasuyuki-kato', '', '', '2016-12-16 11:02:30', '2016-12-16 11:02:30', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png', 8, 'attachment', 'image/png', 0),
(2154, 1, '2015-10-13 04:01:51', '2015-10-13 04:01:51', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\n\n&nbsp;\n<h2>Jason Briggs</h2>\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\n\n&nbsp;\n<h2><strong>Alexandra Demetrianova</strong></h2>\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\n\n&nbsp;\n<h2>Dr. Kenneth Houston</h2>\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\n\n&nbsp;\n<h2><strong>Yasuyuki Kato</strong></h2>\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\n<h2>Professor Dr. Gustavo A. Olivares Marcos</h2>\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\n\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\n\n&nbsp;\n<h2>Simon Osborne</h2>\nimg class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" /&gt;Simon Osborne has over 10 years retail banking experience and is a multi award winnBroadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\n\n&nbsp;\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\n\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-autosave-v1', '', '', '2015-10-13 04:01:51', '2015-10-13 04:01:51', '', 2144, 'http://asiacentre.co.th/other/2144-autosave-v1/', 0, 'revision', '', 0),
(2155, 1, '2015-10-13 03:52:37', '2015-10-13 03:52:37', '<strong>Centre Associates </strong>\r\n\r\nCentre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n\r\n<strong>Jason Briggs</strong>\r\nJ<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />ason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n\r\n<strong>Alexandra Demetrianova</strong>\r\n\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Kenneth Houston</strong>\r\n\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n\r\n<strong>Yasuyuki Kato</strong>\r\n\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n\r\n<strong>Professor Dr. Gustavo A. Olivares Marcos</strong>\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n<strong>Simon Osborne</strong>\r\n\r\nSimon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honors degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the <a href="http://www.broadgatefinancial.com/">Broadgate Financial Group</a> where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n<strong>Dr. Eilo Wing-yat Yu</strong>\r\n\r\nDr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 03:52:37', '2015-10-13 03:52:37', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2156, 1, '2015-10-13 03:55:39', '2015-10-13 03:55:39', '<strong>Centre Associates </strong>\r\n\r\nCentre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n\r\n<strong><img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs</strong>\r\nJason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n\r\n<strong>Alexandra Demetrianova</strong>\r\n\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n\r\n<strong><img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr. Kenneth Houston</strong>\r\n\r\nDr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n\r\n<strong>Yasuyuki Kato</strong>\r\n\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\n<strong>Professor Dr. Gustavo A. Olivares Marcos</strong>\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n\r\n<strong>Simon Osborne<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" /></strong>\r\n\r\nSimon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honors degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the <a href="http://www.broadgatefinancial.com/">Broadgate Financial Group</a> where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n\r\n<strong>Dr. Eilo Wing-yat Yu</strong>\r\n\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 03:55:39', '2015-10-13 03:55:39', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2157, 1, '2015-10-13 03:58:15', '2015-10-13 03:58:15', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs</strong></h2>\r\nJason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr. Kenneth Houston</strong></h2>\r\nDr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n<h2><strong>Professor Dr. Gustavo A. Olivares Marcos</strong></h2>\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2><strong>Simon Osborne<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" /></strong></h2>\r\nSimon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honors degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the <a href="http://www.broadgatefinancial.com/">Broadgate Financial Group</a> where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 03:58:15', '2015-10-13 03:58:15', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2158, 1, '2015-10-13 03:59:35', '2015-10-13 03:59:35', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />\r\nJason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</strong></h2><img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />\r\nDr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n<h2><strong>Professor Dr. Gustavo A. Olivares Marcos</strong></h2>\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2><strong>Simon Osborne<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" /></strong></h2>\r\nSimon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honors degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the <a href="http://www.broadgatefinancial.com/">Broadgate Financial Group</a> where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 03:59:35', '2015-10-13 03:59:35', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2159, 1, '2015-10-13 04:00:46', '2015-10-13 04:00:46', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n<h2>Professor Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2><strong>Simon Osborne<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" /></strong></h2>\r\nSimon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honors degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the <a href="http://www.broadgatefinancial.com/">Broadgate Financial Group</a> where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 04:00:46', '2015-10-13 04:00:46', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2160, 1, '2015-10-13 04:02:09', '2015-10-13 04:02:09', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n<h2>Professor Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winnBroadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 04:02:09', '2015-10-13 04:02:09', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2161, 1, '2015-10-13 04:05:53', '2015-10-13 04:05:53', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2>Professor Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winnBroadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 04:05:53', '2015-10-13 04:05:53', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2162, 1, '2015-10-13 04:06:16', '2015-10-13 04:06:16', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2>Professor Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winnBroadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 04:06:16', '2015-10-13 04:06:16', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2163, 1, '2015-10-13 04:18:56', '2015-10-13 04:18:56', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice in their respective areas of competence. Centre Associates also produce on-demand research for the Centre and contribute to building and sharing knowledge on main areas of research of the Centre that are listed on the Research and Publications Page.\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2>Professor Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nProfessor Dr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/" target="_blank">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 04:18:56', '2015-10-13 04:18:56', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2165, 3, '2015-10-13 06:46:12', '2015-10-13 06:46:12', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Dr. Robin Ramcharan - Chairman</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />Dr. Sorpong Peou is Professor in, and Chair of, the Department of Politics and Public Administration at Ryerson University, and a member of the Yeates School of Graduate Studies. Dr Peou’s research and teaching interests are generally in the fields of International Relations and Comparative Politics, with specialization in Security and Democracy Studies, and a focus on the Asia-Pacific region. He was previously Chair of the Political Science Department at the University of Winnipeg (2010 to 2013).  Prior to his appointment in Winnipeg, he was Professor of International Security at Sophia University (Tokyo, Japan) and Fellow at the Institute of Southeast Asian Studies (Singapore).  In addition to a PhD in International Relations and Comparative Politics from York University (Canada), Dr. Peou holds a MA in Political Science from York University (Canada), and a BA - Hon in Political Science and Peace and Conflict Studies from the University of Waterloo (Canada).<a name="_Toc385345637"></a>\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-13 06:46:12', '2015-10-13 06:46:12', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2166, 3, '2015-10-13 06:50:10', '2015-10-13 06:50:10', 'Centre Associates comprise experts who are scholars and practitioners of international repute. The Centre marshals a global network of experts who provide training and advice They<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes in their respective areas of competence..</span>\n\n&nbsp;\n<h2>Jason Briggs</h2>\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\n\n&nbsp;\n<h2><strong>Alexandra Demetrianova</strong></h2>\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\n\n&nbsp;\n<h2>Dr. Kenneth Houston</h2>\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\n\n&nbsp;\n<h2><strong>Yasuyuki Kato</strong></h2>\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\n\n&nbsp;\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\n\nDr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\n\n&nbsp;\n<h2>Simon Osborne</h2>\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/" target="_blank">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\n\n&nbsp;\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-autosave-v1', '', '', '2015-10-13 06:50:10', '2015-10-13 06:50:10', '', 2144, 'http://asiacentre.co.th/other/2144-autosave-v1/', 0, 'revision', '', 0),
(2167, 3, '2015-10-13 06:51:17', '2015-10-13 06:51:17', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/" target="_blank">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-10-13 06:51:17', '2015-10-13 06:51:17', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2168, 1, '2015-10-13 10:13:10', '2015-10-13 10:13:10', '', 'Courses', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2015-10-13 10:13:10', '2015-10-13 10:13:10', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2169, 1, '2015-10-13 10:14:31', '2015-10-13 10:14:31', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development. We adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs. Experiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies. The courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."', 'Courses', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2015-10-13 10:14:31', '2015-10-13 10:14:31', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2170, 1, '2015-10-13 10:15:24', '2015-10-13 10:15:24', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."', 'Courses', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2015-10-13 10:15:24', '2015-10-13 10:15:24', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2171, 1, '2015-10-13 10:15:49', '2015-10-13 10:15:49', '<h2><strong>International Education Programme (IEP)</strong></h2>\r\n<p style="text-align: justify;">The International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>IEP Bangkok (Thailand)</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3221 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14914826_10202859464004726_798943903_n-600x444.jpg" alt="14914826_10202859464004726_798943903_n" width="354" height="262" />IEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic\r\nconnection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organisations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>Programme Structure</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3222" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14886183_10202859479245107_1525629335_n-600x450.jpg" alt="14886183_10202859479245107_1525629335_n" width="366" height="275" />IEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</p>\r\n\r\n<h2 style="text-align: justify;"><strong><img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="148" height="263" />Teaching Methods</strong></h2>\r\n<p style="text-align: justify;">IEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>Teaching Materials </strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3220 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/IMG_20160922_101630_1-600x337.jpg" alt="img_20160922_101630_1" width="303" height="170" />The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</p>\r\n<p style="text-align: justify;">To learn more about our 2 week Media &amp; Communications Workshop <a href="http://asiacentre.co.th/news/latest-news/media-communications-workshop-2016/" target="_blank">click here</a>.</p>\r\n<p style="text-align: justify;">For more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>', 'International Educational Programme', '', 'publish', 'closed', 'closed', '', 'intl-education-programme', '', '', '2016-12-22 01:50:55', '2016-12-22 01:50:55', '', 0, 'http://asiacentre.co.th/?page_id=2171', 0, 'page', '', 0),
(2172, 1, '2015-10-13 10:15:49', '2015-10-13 10:15:49', '', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2015-10-13 10:15:49', '2015-10-13 10:15:49', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(2173, 1, '2015-10-13 10:16:21', '2015-10-13 10:16:21', '<strong>International Educational Program </strong>\r\n\r\n<strong>(Bangkok, Thailand)</strong>\r\n\r\n<strong>International Education Programme (IEP)</strong>\r\n\r\nThe International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.\r\n\r\n&nbsp;\r\n\r\n<strong>IEP Bangkok (Thailand)</strong>\r\n\r\nIEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organizations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.\r\n\r\n&nbsp;\r\n\r\n<strong>Programme Structure</strong>\r\n\r\nIEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.\r\n\r\n&nbsp;\r\n\r\n<strong>Teaching Methods</strong>\r\n\r\nIEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.\r\n\r\n&nbsp;\r\n\r\n<strong>Teaching Materials </strong>\r\n\r\nThe course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.\r\n\r\n&nbsp;\r\n\r\nFor more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>.', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2015-10-13 10:16:21', '2015-10-13 10:16:21', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(2175, 1, '2015-10-13 10:19:44', '2015-10-13 10:19:44', ' ', '', '', 'publish', 'closed', 'closed', '', '2175', '', '', '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 0, 'http://asiacentre.co.th/?p=2175', 15, 'nav_menu_item', '', 0),
(2176, 1, '2015-10-13 10:20:41', '2015-10-13 10:20:41', '<strong>International Educational Program </strong>\n\n<strong>(Bangkok, Thailand)</strong>\n<h2><strong>International Education Programme (IEP)</strong></h2>\nThe International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.\n\n&nbsp;\n\n<strong>IEP Bangkok (Thailand)</strong>\n\nIEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organizations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.\n\n&nbsp;\n\n<strong>Programme Structure</strong>\n\nIEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.\n\n&nbsp;\n\n<strong>Teaching Methods</strong>\n\nIEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.\n\n&nbsp;\n\n<strong>Teaching Materials </strong>\n\nThe course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.\n\n&nbsp;\n\nFor more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>.', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-autosave-v1', '', '', '2015-10-13 10:20:41', '2015-10-13 10:20:41', '', 2171, 'http://asiacentre.co.th/other/2171-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2177, 1, '2015-10-13 10:20:56', '2015-10-13 10:20:56', '<strong>International Educational Program </strong>\r\n\r\n<strong>(Bangkok, Thailand)</strong>\r\n<h2><strong>International Education Programme (IEP)</strong></h2>\r\nThe International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.\r\n\r\n&nbsp;\r\n<h2><strong>IEP Bangkok (Thailand)</strong></h2>\r\nIEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organizations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.\r\n\r\n&nbsp;\r\n<h2><strong>Programme Structure</strong></h2>\r\nIEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Methods</strong></h2>\r\nIEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Materials </strong></h2>\r\nThe course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.\r\n\r\n&nbsp;\r\n\r\nFor more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>.', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2015-10-13 10:20:56', '2015-10-13 10:20:56', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(2178, 1, '2015-10-13 10:21:11', '2015-10-13 10:21:11', '<strong>International Educational Program </strong>\r\n\r\n<strong>(Bangkok, Thailand)</strong>\r\n<h2><strong>International Education Programme (IEP)</strong></h2>\r\nThe International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.\r\n\r\n&nbsp;\r\n<h2><strong>IEP Bangkok (Thailand)</strong></h2>\r\nIEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organizations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.\r\n\r\n&nbsp;\r\n<h2><strong>Programme Structure</strong></h2>\r\nIEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Methods</strong></h2>\r\nIEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Materials </strong></h2>\r\nThe course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.\r\n\r\n&nbsp;\r\n\r\nFor more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2015-10-13 10:21:11', '2015-10-13 10:21:11', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(2179, 1, '2015-10-13 10:22:55', '2015-10-13 10:22:55', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Courses', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2015-10-13 10:22:55', '2015-10-13 10:22:55', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2180, 1, '2015-10-13 10:23:59', '2015-10-13 10:23:59', '<h2><strong>(Bangkok, Thailand)</strong></h2>\r\n<h2><strong>International Education Programme (IEP)</strong></h2>\r\nThe International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.\r\n\r\n&nbsp;\r\n<h2><strong>IEP Bangkok (Thailand)</strong></h2>\r\nIEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organizations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.\r\n\r\n&nbsp;\r\n<h2><strong>Programme Structure</strong></h2>\r\nIEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Methods</strong></h2>\r\nIEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Materials </strong></h2>\r\nThe course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.\r\n\r\n&nbsp;\r\n\r\nFor more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2015-10-13 10:23:59', '2015-10-13 10:23:59', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(2181, 1, '2015-10-13 10:24:21', '2015-10-13 10:24:21', '<h2><strong>International Education Programme (IEP)</strong></h2>\r\nThe International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.\r\n\r\n&nbsp;\r\n<h2><strong>IEP Bangkok (Thailand)</strong></h2>\r\nIEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organizations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.\r\n\r\n&nbsp;\r\n<h2><strong>Programme Structure</strong></h2>\r\nIEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Methods</strong></h2>\r\nIEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Materials </strong></h2>\r\nThe course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.\r\n\r\n&nbsp;\r\n\r\nFor more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2015-10-13 10:24:21', '2015-10-13 10:24:21', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(2185, 1, '2015-10-23 06:45:37', '2015-10-23 06:45:37', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Dr. Robin Ramcharan - Chairman</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked for the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D and and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow with the Centre for International Peace and Security Studies of McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, a M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />BA (University of Waterloo, Canada); MA and PhD (York University, Canada). Currently Professor and Chair, Department of Politics and Public Administration, Ryerson University, Toronto, Canada. Formerly Chair of the Department of Political Science, University of Winnipeg (Manitoba); Chair of the Advisory and Recruitment Committee for The Manitoba Chair of Global Governance Studies – a joint program between the University of Winnipeg and the University of Manitoba. Prior to these academic appointments, Professor of International Security at Sophia University in Tokyo (Japan); Canada-ASEAN Fellow as well as Fellow at the Institute of Southeast Asian Studies (Singapore). Academic fields of expertise: security and democracy studies, with regional focus on the Asia-Pacific. Major books: <i>Human Security Studies: Theories, Methods and Themes </i>(World Scientific and Imperial College Press, 2014<i>)</i>; <i>Peace and Security in the Asia-Pacific </i>(Praeger 2010), <i>Human Security in East Asia: Challenges for Collaborative Action</i>, ed.<i> </i>(Routledge 2008), <i>International Democracy Assistance for Peacebuilding: Cambodia and Beyond</i>(Palgrave Macmillan 2007), <i>Intervention and Change in Cambodia: Toward Democracy</i> (St. Martin’s Press, Institute of Southeast Asian Studies and Silkworms, 2001) &amp; <i>Conflict Neutralization in the Cambodia War: From Battlefield to Ballot-box</i> (Oxford University Press, 1997). Service: Editorial boards of <i>Rethinking Peace and Conflict Studies</i> (Palgrave Macmillan) and the peer-reviewed journal <i>Asian Politics &amp; Policy</i> (Wiley-Blackwell); regional editor of a peer-reviewed journal - <i>The Asian Journal of Peacebuilding</i> (Seoul National University Press, South Korea). Also Distinguished Senior Fellow at the Cambodian Institute for Peace and Cooperation, Distinguished Visiting Scholar at the Cambodian Development Research Institute, and a member of an International Country Experts Network on UN Peacekeeping.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and work experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2015-10-23 06:45:37', '2015-10-23 06:45:37', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2188, 5, '2015-12-18 07:45:49', '2015-12-18 07:45:49', '<img class="alignnone size-full wp-image-2189" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Screen-Shot-2015-12-18-at-11.43.39-am.png" alt="Screen Shot 2015-12-18 at 11.43.39 am" width="777" height="724" />\r\n\r\n<strong>Debating Imagined Communities: A Tribute To Benedict Anderson</strong>\r\n\r\nBenedict Anderson’s seminal work “Imagined Communities: Reflections on the Origin and Spread of Nationalism” revolutionised our understanding of nationalism. Anderson saw the nationalism as a force that was integrative and imaginative; allowing us to build camaraderie with strangers. While other academics took a negative view of the subject, linking nationalism with fear, notions of ‘the other’ and racism; Anderson postulated that nationalism was also a positive force for integration and solidarity.\r\n\r\nIn a globalised world that is struggling to grapple with migration, climate change, economic integration, refugees and displaced populations just to n<span class="text_exposed_show">ame a few, this debate on nationalism and the notion of ‘imagined communities’ remains relevant today 32 years after its publication.</span>\r\n\r\nWe invite you to join us for a debate and discussion on Imagined Communities in remembrance of Benedict Anderson.\r\n\r\n<span class="text_exposed_show">\r\n<strong>About Benedict Anderson</strong></span>\r\n\r\n<span class="text_exposed_show"><strong><img class="alignright wp-image-2190" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="199" height="263" /></strong>Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book Imagined Communities: Reflections on the Origin and Spread of Nationalism. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66, which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.\r\n</span>\r\n\r\n<span class="text_exposed_show">\r\n<strong>Imagined Communities</strong></span><span class="text_exposed_show">\r\nAnderson coined the term ‘imagined communities’ positing that that the nation was an imagined political community that arose as a result of the interplay between capitalism and the rise of the printing press. Anderson argued that within the nation ‘horizontal comradeship’ or a sense of fraternity was shared by people who did not know each other and who shared the same notion of belonging to a nation despite the existence of inequalities and oppression between groups. He wrote, “Ultimately it is this fraternity that makes it possible, over the past two centuries, for so many millions of people, not so much to kill, as willingly to die for such limited imaginings.”</span>\r\n\r\n&nbsp;\r\n\r\nRSVP at <a href="https://www.facebook.com/events/158076804551470/">Debating Imagined Communities: A Tribute To Benedict Anderson Facebook Page</a>', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'publish', 'closed', 'closed', '', 'debating-imagined-communities-a-tribute-to-benedict-anderson', '', '', '2016-02-14 10:24:08', '2016-02-14 10:24:08', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2188', 0, 'event', '', 0),
(2189, 5, '2015-12-18 07:39:26', '2015-12-18 07:39:26', '', 'Screen Shot 2015-12-18 at 11.43.39 am', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2015-12-18-at-11-43-39-am', '', '', '2015-12-18 07:39:26', '2015-12-18 07:39:26', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2015/12/Screen-Shot-2015-12-18-at-11.43.39-am.png', 0, 'attachment', 'image/png', 0),
(2190, 5, '2015-12-18 07:43:21', '2015-12-18 07:43:21', '', 'Anderson_B', '', 'inherit', 'closed', 'closed', '', 'anderson_b', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 2284, 'http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg', 0, 'attachment', 'image/jpeg', 0),
(2193, 6, '2015-12-30 03:11:21', '2015-12-30 03:11:21', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time Alexandra likes to organize awareness raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/" target="_blank">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-autosave-v1', '', '', '2015-12-30 03:11:21', '2015-12-30 03:11:21', '', 2144, 'http://asiacentre.co.th/other/2144-autosave-v1/', 0, 'revision', '', 0),
(2194, 6, '2015-12-30 03:13:43', '2015-12-30 03:13:43', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time Alexandra likes to organize awareness raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently he serves as head of department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism has spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his PhD and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/" target="_blank">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2015-12-30 03:13:43', '2015-12-30 03:13:43', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2198, 6, '2016-01-17 06:49:30', '2016-01-17 06:49:30', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1600</td>\r\n<td width="84">5700</td>\r\n<td width="78">10500</td>\r\n<td width="73">7500</td>\r\n<td width="73">15700</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1250</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2000</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<em>All Prices in Thai Bhat</em>\r\n\r\n&nbsp;\r\n\r\n<em>All Prices in Thai Bhat</em>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><em>All Prices in Thai Bhat</em></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-01-17 06:49:30', '2016-01-17 06:49:30', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2199, 6, '2016-01-17 06:55:08', '2016-01-17 06:55:08', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1600</td>\r\n<td width="84">5700</td>\r\n<td width="78">10500</td>\r\n<td width="73">7500</td>\r\n<td width="73">15700</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1250</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2000</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nAll Prices in Thai Bhat plus 7% VAT\r\n\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-01-17 06:55:08', '2016-01-17 06:55:08', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2200, 6, '2016-01-17 06:56:50', '2016-01-17 06:56:50', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1600</td>\r\n<td width="84">5700</td>\r\n<td width="78">10500</td>\r\n<td width="73">7500</td>\r\n<td width="73">15700</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1250</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2000</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\nAll Prices in Thai Baht plus 7% VAT\r\n\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-01-17 06:56:50', '2016-01-17 06:56:50', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2201, 6, '2016-01-17 07:17:08', '2016-01-17 07:17:08', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2000</td>\r\n<td width="84">5700</td>\r\n<td width="78">10500</td>\r\n<td width="73">7500</td>\r\n<td width="73">15700</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1650</td>\r\n<td width="84">3600</td>\r\n<td width="78">6600</td>\r\n<td width="73">5600</td>\r\n<td width="73">11200</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2400</td>\r\n<td width="84">6600</td>\r\n<td width="78">12100</td>\r\n<td width="73">9100</td>\r\n<td width="73">18200</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: All Prices in Thai Baht excluded VAT 7% </strong>\r\n\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-01-17 07:17:08', '2016-01-17 07:17:08', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2202, 6, '2016-01-17 07:29:09', '2016-01-17 07:29:09', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2000</td>\r\n<td width="84">5700</td>\r\n<td width="78">10500</td>\r\n<td width="73">7500</td>\r\n<td width="73">15700</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1650</td>\r\n<td width="84">3600</td>\r\n<td width="78">6600</td>\r\n<td width="73">5600</td>\r\n<td width="73">11200</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2400</td>\r\n<td width="84">6600</td>\r\n<td width="78">12100</td>\r\n<td width="73">9100</td>\r\n<td width="73">18200</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: All Prices in Thai Baht plus 7% Vat</strong>\r\n\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-01-17 07:29:09', '2016-01-17 07:29:09', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2203, 6, '2016-01-17 07:53:23', '2016-01-17 07:53:23', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1100</td>\r\n<td width="84">3600</td>\r\n<td width="78">6400</td>\r\n<td width="73">5400</td>\r\n<td width="73">10000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1500</td>\r\n<td width="78">2500</td>\r\n<td width="73">3500</td>\r\n<td width="73">5500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1500</td>\r\n<td width="84">4500</td>\r\n<td width="78">8000</td>\r\n<td width="73">7000</td>\r\n<td width="73">12500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2000</td>\r\n<td width="84">5700</td>\r\n<td width="78">10500</td>\r\n<td width="73">7500</td>\r\n<td width="73">15700</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1650</td>\r\n<td width="84">3600</td>\r\n<td width="78">6600</td>\r\n<td width="73">5600</td>\r\n<td width="73">11200</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2400</td>\r\n<td width="84">6600</td>\r\n<td width="78">12100</td>\r\n<td width="73">9100</td>\r\n<td width="73">18200</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td width="75">60</td>\r\n<td width="79">40</td>\r\n<td width="81">25</td>\r\n<td width="81">15</td>\r\n<td width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-01-17 07:53:23', '2016-01-17 07:53:23', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2204, 6, '2016-01-17 07:59:24', '2016-01-17 07:59:24', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,100</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,400</td>\r\n<td width="73">5,400</td>\r\n<td width="73">10,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">500</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">5,700</td>\r\n<td width="78">10,500</td>\r\n<td width="73">7,500</td>\r\n<td width="73">15,700</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,600</td>\r\n<td width="73">5,600</td>\r\n<td width="73">11,200</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">6,600</td>\r\n<td width="78">12,100</td>\r\n<td width="73">9,100</td>\r\n<td width="73">200</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">60</td>\r\n<td style="text-align: center;" width="79">40</td>\r\n<td style="text-align: center;" width="81">25</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-01-17 07:59:24', '2016-01-17 07:59:24', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2207, 6, '2016-01-19 08:25:26', '2016-01-19 08:25:26', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n\r\n<img class="wp-image-2205 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC.jpg" alt="location AC" width="321" height="242" />\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-19 08:25:26', '2016-01-19 08:25:26', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2209, 6, '2016-01-19 08:34:50', '2016-01-19 08:34:50', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station<img class="alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC-1.jpg" alt="location AC" width="315" height="227" /></li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-19 08:34:50', '2016-01-19 08:34:50', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2211, 6, '2016-01-19 08:40:58', '2016-01-19 08:40:58', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station<img class="alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC-1.jpg" alt="location AC" width="315" height="227" /></li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="wp-image-2210 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Asia-Centre-Map-no-address.png" alt="Asia Centre Map- no address" width="356" height="293" />\r\n\r\n[wpgmza id="1"]', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-19 08:40:58', '2016-01-19 08:40:58', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2212, 6, '2016-01-19 08:46:44', '2016-01-19 08:46:44', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station<img class="alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC-1.jpg" alt="location AC" width="315" height="227" /></li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>Parking<img class="wp-image-2210 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Asia-Centre-Map-no-address.png" alt="Asia Centre Map- no address" width="326" height="269" /></strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-19 08:46:44', '2016-01-19 08:46:44', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2213, 6, '2016-01-19 09:14:21', '2016-01-19 09:14:21', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS Phayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station<img class="alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC-1.jpg" alt="location AC" width="315" height="227" /></li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>Parking<img class="wp-image-2210 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Asia-Centre-Map-no-address.png" alt="Asia Centre Map- no address" width="310" height="256" /></strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-19 09:14:21', '2016-01-19 09:14:21', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2214, 6, '2016-10-07 04:26:31', '2016-10-07 04:26:31', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\nPhayathai and Airport Link stations in Central Bangkok.\n<ul>\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\n 	<li>Go out through Exit 1 and walk down the stairs</li>\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\n</ul>\n<strong>วิธีการเดินทาง</strong>\n\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\n<ul>\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\n</ul>\n<div class="text_exposed_show"></div>\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\n\n<strong>Parking</strong>\n\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\n\nParking Rates:\n1) Visitors are entitled to 15 min of free parking\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\n3) Extended parking (2 stamps)\nDay Rate : 100 bath for parking between 07:00-19:00 PM\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\n\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\n\nที่จอดรถ\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\n- จอดรถในช่องจอดรถได้ในชั้น 10\n\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\n3. มี 2 ตราประทับ\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\n\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\n\n<strong>Please refer to the map below for a location overview.</strong>\n\n<img class="alignnone size-full wp-image-3038" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map-update-1.jpg" alt="asia-centre-map-update" width="1063" height="650" />\n\n&nbsp;\n\n<iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15501.49714848407!2d100.532498!3d13.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc54d13b8a0284a40!2sASIA+Centre+Co.%2C+Ltd.!5e0!3m2!1sen!2sth!4v1475804628679" width="600" height="450" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-autosave-v1', '', '', '2016-10-07 04:26:31', '2016-10-07 04:26:31', '', 2064, 'http://asiacentre.co.th/other/2064-autosave-v1/', 0, 'revision', '', 0),
(2216, 6, '2016-01-20 09:16:18', '2016-01-20 09:16:18', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<img class="alignnone size-medium wp-image-2215" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC-2-1140x447.jpg" alt="location-AC" width="1140" height="447" />\r\n\r\n&nbsp;\r\n\r\n<strong>Parking\r\n\r\n</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-20 09:16:18', '2016-01-20 09:16:18', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2217, 6, '2016-01-20 09:19:32', '2016-01-20 09:19:32', '', 'Car Park PP', '', 'inherit', 'closed', 'closed', '', 'car-park-pp', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP.jpg', 6, 'attachment', 'image/jpeg', 0),
(2218, 6, '2016-01-20 09:20:35', '2016-01-20 09:20:35', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<img class="alignnone size-medium wp-image-2215" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC-2-1140x447.jpg" alt="location-AC" width="1140" height="447" />\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\n&nbsp;\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-20 09:20:35', '2016-01-20 09:20:35', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2219, 6, '2016-01-20 09:21:45', '2016-01-20 09:21:45', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<img class="alignnone size-medium wp-image-2215" src="http://asiacentre.co.th/wp-content/uploads/2015/09/location-AC-2-1140x447.jpg" alt="location-AC" width="1140" height="447" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="alignnone  wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="670" height="247" />\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-01-20 09:21:45', '2016-01-20 09:21:45', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2220, 6, '2016-01-20 09:26:51', '2016-01-20 09:26:51', '', 'Asia Centre Classroom (2)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-classroom-2', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Classroom-2.jpeg', 1, 'attachment', 'image/jpeg', 0),
(2221, 6, '2016-01-20 09:27:41', '2016-01-20 09:27:41', '', 'Asia Centre Classroom (4)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-classroom-4', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Classroom-4.jpeg', 2, 'attachment', 'image/jpeg', 0),
(2222, 6, '2016-01-20 09:27:47', '2016-01-20 09:27:47', '', 'Asia Centre Conference (1)', 'Round Table', 'inherit', 'closed', 'closed', '', 'asia-centre-conference-1', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg', 3, 'attachment', 'image/jpeg', 0),
(2223, 6, '2016-01-20 09:27:51', '2016-01-20 09:27:51', '', 'Asia Centre Conference (2)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-conference-2', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-2.jpeg', 4, 'attachment', 'image/jpeg', 0),
(2224, 6, '2016-01-20 09:28:04', '2016-01-20 09:28:04', '', 'Asia Centre Conference (2)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-conference-2-2', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-2-1.jpeg', 5, 'attachment', 'image/jpeg', 0),
(2225, 6, '2016-01-20 09:28:10', '2016-01-20 09:28:10', '', 'Asia Centre Conference (5)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-conference-5', '', '', '2016-10-12 08:59:30', '2016-10-12 08:59:30', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-5.jpeg', 6, 'attachment', 'image/jpeg', 0),
(2226, 6, '2016-01-20 09:28:18', '2016-01-20 09:28:18', '', 'Asia Centre Conference (4)', 'Round Table', 'inherit', 'closed', 'closed', '', 'asia-centre-conference-4', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-4.jpeg', 9, 'attachment', 'image/jpeg', 0),
(2227, 6, '2016-01-20 09:28:22', '2016-01-20 09:28:22', '', 'Asia Centre Entrance', '', 'inherit', 'closed', 'closed', '', 'asia-centre-entrance', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Entrance.jpeg', 16, 'attachment', 'image/jpeg', 0),
(2228, 6, '2016-01-20 09:28:26', '2016-01-20 09:28:26', '', 'Asia Centre Infornt', '', 'inherit', 'closed', 'closed', '', 'asia-centre-infornt', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Infornt.jpeg', 22, 'attachment', 'image/jpeg', 0),
(2229, 6, '2016-01-20 09:28:30', '2016-01-20 09:28:30', '', 'Asia Centre Conference (6)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-conference-6', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-6.jpeg', 7, 'attachment', 'image/jpeg', 0),
(2230, 6, '2016-01-20 09:28:34', '2016-01-20 09:28:34', '', 'Asia Centre Conference (3)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-conference-3', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-3.jpeg', 8, 'attachment', 'image/jpeg', 0),
(2232, 6, '2016-01-20 09:28:51', '2016-01-20 09:28:51', '', 'Asia Centre Lounge Area (1)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-lounge-area-1', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Lounge-Area-1.jpeg', 10, 'attachment', 'image/jpeg', 0),
(2233, 6, '2016-01-20 09:28:56', '2016-01-20 09:28:56', '', 'Asia Centre Lounge Area', '', 'inherit', 'closed', 'closed', '', 'asia-centre-lounge-area', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Lounge-Area.jpeg', 11, 'attachment', 'image/jpeg', 0),
(2234, 6, '2016-01-20 09:28:59', '2016-01-20 09:28:59', '', 'Asia Centre Meeting Room', 'Asia Centre - Discussion Room', 'inherit', 'closed', 'closed', '', 'asia-centre-meeting-room', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Meeting-Room.jpeg', 12, 'attachment', 'image/jpeg', 0),
(2235, 6, '2016-01-20 09:29:03', '2016-01-20 09:29:03', '', 'Asia Centre Meeting Room (1)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-meeting-room-1', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Meeting-Room-1.jpeg', 13, 'attachment', 'image/jpeg', 0),
(2236, 6, '2016-01-20 09:29:07', '2016-01-20 09:29:07', '', 'Asia Centre Meeting Room (2)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-meeting-room-2', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Meeting-Room-2.jpeg', 14, 'attachment', 'image/jpeg', 0),
(2237, 6, '2016-01-20 09:29:11', '2016-01-20 09:29:11', '', 'Asia Centre Pantry', '', 'inherit', 'closed', 'closed', '', 'asia-centre-pantry', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Pantry.jpeg', 18, 'attachment', 'image/jpeg', 0),
(2238, 6, '2016-01-20 09:29:23', '2016-01-20 09:29:23', '', 'Asia Centre Pantry (1)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-pantry-1', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Pantry-1.jpeg', 17, 'attachment', 'image/jpeg', 0),
(2239, 6, '2016-01-20 09:29:26', '2016-01-20 09:29:26', '', 'Asia Centre Sound System', '', 'inherit', 'closed', 'closed', '', 'asia-centre-sound-system', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Sound-System.jpeg', 19, 'attachment', 'image/jpeg', 0),
(2240, 6, '2016-01-20 09:29:28', '2016-01-20 09:29:28', '', 'Asia Centre Window View', '', 'inherit', 'closed', 'closed', '', 'asia-centre-window-view', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Window-View.jpeg', 20, 'attachment', 'image/jpeg', 0),
(2245, 6, '2016-01-20 09:30:18', '2016-01-20 09:30:18', '', 'Asia Centre Window View (1)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-window-view-1', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Window-View-1.jpeg', 21, 'attachment', 'image/jpeg', 0),
(2246, 6, '2016-01-20 09:30:29', '2016-01-20 09:30:29', '', 'Asia Centre Office Suite', '', 'inherit', 'closed', 'closed', '', 'asia-centre-office-suite', '', '', '2016-10-12 08:59:31', '2016-10-12 08:59:31', '', 1967, 'http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Office-Suite.jpeg', 15, 'attachment', 'image/jpeg', 0),
(2264, 6, '2016-02-02 09:30:29', '2016-02-02 09:30:29', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 2 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,100</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,400</td>\r\n<td width="73">5,400</td>\r\n<td width="73">10,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min. 2 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">7,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">60</td>\r\n<td style="text-align: center;" width="79">40</td>\r\n<td style="text-align: center;" width="81">25</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-02-02 09:30:29', '2016-02-02 09:30:29', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2266, 6, '2016-02-03 05:01:21', '2016-02-03 05:01:21', '<img class="alignnone size-full wp-image-2268" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Social-Justice.jpg" alt="Social Justice" width="1058" height="571" />\r\n\r\n<strong>The "Kachin Conflict" in Northern Myanmar: Roots and Shifting Contexts</strong>\r\n\r\nAsia Centre is pleased to announce the launch of its Saturday monthly seminar series starting this February.The goal of the Seminar Series is to convene a local forum for cross-disciplinary multi-dimensional interaction to discuss issues facing us in the region and beyond.\r\n\r\nEach seminar will be centred on a core theme or a hot topic issue. We will be featuring speakers from diverse backgrounds and disciplines, who will draw on their own personal experiences to show how the theme or topic has shaped their work. Speakers will have 30 - 45 mins to present followed by an interactive discussion and Q&amp;A with the audience.\r\n\r\nThis monthly seminar series happens on a Saturday and is designed to bring people together in a laid back social setting, it’s Saturday after all.\r\n\r\nTo start off the Seminar Series we will be commemorating World Social Justice Day by focusing on conflict, resolution and the prospects of reconciliation in Kachin State in Myanmar. Kachin State is one of the few remaining terrains of on-going fighting in Myanmar in 2016. We will begin by looking at the roots and historical context of the Kachin conflict before discussing the intersectionality between the ethnic conflict and socio-political as well as religious dimensions.\r\n\r\n&nbsp;\r\n\r\n<strong>Speaker</strong>\r\n\r\n<img class="wp-image-2119 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean.jpg" alt="Karin Dean" width="129" height="194" />Dr Karin Dean has extensive experience researching the conflict on the ground. She also worked with the Henry Dunant Centre for Humanitarian Dialogue, a second track conflict resolution organization, which tried to bring the three parties to conflict together to facilitate a peace process.She will share her fieldwork experience as well her insight into the conflict resolution process.', 'The "Kachin Conflict" in Northern Myanmar: Roots and Shifting Contexts', '', 'publish', 'closed', 'closed', '', 'kachin', '', '', '2016-12-22 06:47:36', '2016-12-22 06:47:36', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2266', 0, 'event', '', 0),
(2268, 6, '2016-02-03 05:03:48', '2016-02-03 05:03:48', '', 'Social Justice', '', 'inherit', 'closed', 'closed', '', 'social-justice', '', '', '2016-02-03 05:03:48', '2016-02-03 05:03:48', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/Social-Justice.jpg', 0, 'attachment', 'image/jpeg', 0),
(2269, 6, '2016-02-03 05:04:15', '2016-02-03 05:04:15', '<img src="http://asiacentre.co.th/wp-content/uploads/2016/02/Social-Justice.jpg" alt="Social Justice" width="1058" height="571" class="alignnone size-full wp-image-2268" />\r\n\r\n<strong>The "Kachin Conflict" in Northern Myanmar: Roots and Shifting Contexts</strong>\r\n\r\nAsia Centre is pleased to announce the launch of its Saturday monthly seminar series starting this February.The goal of the Seminar Series is to convene a local forum for cross-disciplinary multi-dimensional interaction to discuss issues facing us in the region and beyond. \r\n\r\nEach seminar will be centred on a core theme or a hot topic issue. We will be featuring speakers from diverse backgrounds and disciplines, who will draw on their own personal experiences to show how the theme or topic has shaped their work. Speakers will have 30 - 45 mins to present followed by an interactive discussion and Q&A with the audience. \r\n\r\nThis monthly seminar series happens on a Saturday and is designed to bring people together in a laid back social setting, it’s Saturday afterall. \r\n\r\nTo start off the Seminar Series we will be commemorating World Social Justice Day by focusing on conflict, resolution and the prospects of reconciliation in Kachin State in Myanmar. Kachin State is one of the few remaining terrains of on-going fighting in Myanmar in 2016. We will begin by looking at the roots and historical context of the Kachin conflict before discussing the intersectionality between the ethnic conflict and socio-political as well as religious dimensions.\r\n\r\nOur speaker Dr Karin Dean has extensive experience researching the conflict on the ground. She also worked with the Henry Dunant Centre for Humanitarian Dialogue, a second track conflict resolution organization, which tried to bring the three parties to conflict together to facilitate a peace process.She will share her fieldwork experience as well her insight into the conflict resolution process.', 'The "Kachin Conflict" in Northern Myanmar: Roots and Shifting Contexts', '', 'inherit', 'closed', 'closed', '', '2266-autosave-v1', '', '', '2016-02-03 05:04:15', '2016-02-03 05:04:15', '', 2266, 'http://asiacentre.co.th/other/2266-autosave-v1/', 0, 'revision', '', 0),
(2275, 5, '2016-07-29 11:04:52', '2016-07-29 11:04:52', '<b><a href="http://aipglobal.co/" target="_blank"><img class="wp-image-2139 size-full alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://aprrn.info/" target="_blank"><strong>Asia Pacific Refugee Rights Network\r\n</strong></a>\r\n\r\nThe <a href="http://aprrn.info/" target="_blank">Asia Pacific Refugee Rights Network (APRRN)</a> is an <a href="http://aprrn.info/" target="_blank"><img class="alignright  wp-image-2773" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-07-29-at-6.00.37-PM.png" alt="Screen Shot 2016-07-29 at 6.00.37 PM" width="249" height="141" /></a>open and growing network consisting of more than 270 civil society organisations and individuals from 26 countries committed to advancing the rights of refugees in the Asia Pacific region. APRRN aims to advance the rights of refugees and other people in need of protection through joint advocacy, capacity strengthening, resource sharing and outreach.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong><img class="wp-image-2533 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Auke3-1140x1140.jpg" alt="Auke3" width="214" height="214" /></strong></a><a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><strong>Gerakbudaya Enterprise</strong></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><img class="alignright size-full wp-image-2604" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="300" height="86" /></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya Enterprise Sdn. Bhd.</a> distributes books that embody social awareness, critical and alternative perspectives, and the hidden histories of Malaysia, Southeast Asia and the wider world we live in.             GB is dedicated to circulating timely and important books, breaking down artificial barriers between writers/thinkers in institutions and everyone else, and generating informed discussions of important issues in our lives by providing different views and fresh insights.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-autosave-v1', '', '', '2016-07-29 11:04:52', '2016-07-29 11:04:52', '', 2136, 'http://asiacentre.co.th/other/2136-autosave-v1/', 0, 'revision', '', 0),
(2276, 5, '2016-02-03 07:31:21', '2016-02-03 07:31:21', '', 'Untitled', '', 'inherit', 'closed', 'closed', '', 'untitled', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 2136, 'http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png', 5, 'attachment', 'image/png', 0),
(2277, 5, '2016-02-03 07:38:10', '2016-02-03 07:38:10', '<b><a href="http://aipglobal.co/"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development, to platforms for community engagement as well as funding and entrepreneurship advice for student start up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg"><img class=" wp-image-2276 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-02-03 07:38:10', '2016-02-03 07:38:10', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2283, 5, '2016-02-04 09:11:19', '2016-02-04 09:11:19', '<img class="alignnone size-full wp-image-2268" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Social-Justice.jpg" alt="Social Justice" width="1058" height="571" />\r\n\r\n<strong>The "Kachin Conflict" in Northern Myanmar: Roots and Shifting Contexts</strong>\r\n\r\nAsia Centre is pleased to announce the launch of its Saturday monthly seminar series starting this February.The goal of the Seminar Series is to convene a local forum for cross-disciplinary multi-dimensional interaction to discuss issues facing us in the region and beyond.\r\n\r\nEach seminar will be centred on a core theme or a hot topic issue. We will be featuring speakers from diverse backgrounds and disciplines, who will draw on their own personal experiences to show how the theme or topic has shaped their work. Speakers will have 30 - 45 mins to present followed by an interactive discussion and Q&amp;A with the audience.\r\n\r\nThis monthly seminar series happens on a Saturday and is designed to bring people together in a laid back social setting, it’s Saturday after all.\r\n\r\nTo start off the Seminar Series we will be commemorating World Social Justice Day by focusing on conflict, resolution and the prospects of reconciliation in Kachin State in Myanmar. Kachin State is one of the few remaining terrains of on-going fighting in Myanmar in 2016. We will begin by looking at the roots and historical context of the Kachin conflict before discussing the intersectionality between the ethnic conflict and socio-political as well as religious dimensions.\r\n\r\n&nbsp;\r\n\r\n<strong>Speaker</strong>\r\n\r\n<img class="wp-image-2119 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean.jpg" alt="Karin Dean" width="129" height="194" />Dr Karin Dean has extensive experience researching the conflict on the ground. She also worked with the Henry Dunant Centre for Humanitarian Dialogue, a second track conflict resolution organization, which tried to bring the three parties to conflict together to facilitate a peace process.She will share her fieldwork experience as well her insight into the conflict resolution process.', 'The "Kachin Conflict" in Northern Myanmar: Roots and Shifting Contexts', '', 'inherit', 'closed', 'closed', '', '2266-autosave-v1', '', '', '2016-02-04 09:11:19', '2016-02-04 09:11:19', '', 2266, 'http://asiacentre.co.th/other/2266-autosave-v1/', 0, 'revision', '', 0),
(2284, 5, '2016-02-04 06:39:12', '2016-02-04 06:39:12', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson, as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre, opened the event by discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri;</span><span style="font-weight: 400;"> a prominent historian and Thai studies scholar, shared the eulogy he gave at Anderson’s funeral in Surabaya. He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel[/caption]\r\n\r\n<span style="font-weight: 400;">Anderson’s <em>Imagined Communities: Reflections on the Origin and Spread of Nationalism </em>revolutionised our understanding of nationalism. We revisited the discourse on the subject by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its'' continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience to share their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and ultimately, the outcome of the debate was determined by the audience who voted in favour of the Opposition.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\r\n\r\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examines how India’s relationship with countries in the region has developed and evolved over time.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\r\n\r\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspective. Mr Otgonbaatar, a Mahidol University student who is originally from Mongolia, played a Mongolian pop-song that drew on the celebrity of the country''s leading singers along with imagery of its glorious past and evocative song lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\r\n\r\n<span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;"><img class="wp-image-2294 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="189" height="229" />The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in <em>Imagined Communities</em> remain relevant in a globalised world that is struggling to grapple with  increasingly cross-border and transnational problems.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>About Benedict Anderson</strong>\r\n\r\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book <em>Imagined Communities: Reflections on the Origin and Spread of Nationalism</em>. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66; which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'publish', 'closed', 'closed', '', 'debating-imagined-communities-a-tribute-to-benedict-anderson', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 0, 'http://asiacentre.co.th/?p=2284', 0, 'post', '', 0),
(2285, 5, '2016-02-04 06:19:55', '2016-02-04 06:19:55', '', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 06:19:55', '2016-02-04 06:19:55', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2286, 5, '2016-02-04 06:24:39', '2016-02-04 06:24:39', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson celebrated the life and work of <img class="wp-image-2190 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="173" height="228" />\r\nthe late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre opened the event discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri</span><span style="font-weight: 400;">, a prominent historian and Thai studies scholar shared the eulogy he gave at Anderson’s funeral in Surabaya.He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 06:24:39', '2016-02-04 06:24:39', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0),
(2287, 5, '2016-02-04 06:26:42', '2016-02-04 06:26:42', '', '1613942_1121279187891308_8667217838112469785_n (1)', '', 'inherit', 'closed', 'closed', '', '1613942_1121279187891308_8667217838112469785_n-1', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 2284, 'http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg', 1, 'attachment', 'image/jpeg', 0),
(2288, 5, '2016-02-04 06:27:57', '2016-02-04 06:27:57', '', '12670572_1121278891224671_7824825160265749161_n', '', 'inherit', 'closed', 'closed', '', '12670572_1121278891224671_7824825160265749161_n', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 2284, 'http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(2289, 5, '2016-02-04 06:29:11', '2016-02-04 06:29:11', '', '12670846_1121278897891337_7466768598950683074_n', '', 'inherit', 'closed', 'closed', '', '12670846_1121278897891337_7466768598950683074_n', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 2284, 'http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(2290, 5, '2016-02-04 06:31:37', '2016-02-04 06:31:37', '', '12670318_1121279284557965_5233832323416685959_n', '', 'inherit', 'closed', 'closed', '', '12670318_1121279284557965_5233832323416685959_n', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 2284, 'http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg', 4, 'attachment', 'image/jpeg', 0),
(2291, 5, '2016-02-04 06:32:55', '2016-02-04 06:32:55', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre opened the event discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri</span><span style="font-weight: 400;">, a prominent historian and Thai studies scholar shared the eulogy he gave at Anderson’s funeral in Surabaya.He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel[/caption]\r\n\r\n<b>The Debate</b>\r\n\r\n<span style="font-weight: 400;">Anderson’s “Imagined Communities: Reflections on the Origin and Spread of Nationalism” revolutionised our understanding of nationalism. We revisited the discourse by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\r\n\r\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience shared their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and was ultimately the outcome of the debate was determined by the  audience who voted in favour of the Opposition.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\r\n\r\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examining how India’s relationship with countries in the region have developed and evolved over time.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>The Open Mic</strong>\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\r\n\r\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspectives. Ms Otgonbaatar, a Mahidol University student who is originally from Mongolia played a Mongolian pop-song that draws on the celebrity of the country''s leading singers along imagery of its glorious past and evocative lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\r\n\r\n<span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in “Imagined Communities” are increasingly relevant in a globalised world that is struggling to grapple with cross-border and transnational problems such as climate change and migration.</span>\r\n\r\n&nbsp;\r\n\r\nAbout Benedict Anderson\r\n\r\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book Imagined Communities: Reflections on the Origin and Spread of Nationalism. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66, which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 06:32:55', '2016-02-04 06:32:55', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0),
(2292, 5, '2016-02-04 06:33:42', '2016-02-04 06:33:42', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre opened the event discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri</span><span style="font-weight: 400;">, a prominent historian and Thai studies scholar shared the eulogy he gave at Anderson’s funeral in Surabaya.He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel<b>The Debate</b>[/caption]\r\n\r\n<span style="font-weight: 400;">Anderson’s “Imagined Communities: Reflections on the Origin and Spread of Nationalism” revolutionised our understanding of nationalism. We revisited the discourse by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\r\n\r\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience shared their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and was ultimately the outcome of the debate was determined by the  audience who voted in favour of the Opposition.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\r\n\r\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examining how India’s relationship with countries in the region have developed and evolved over time.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\r\n\r\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspectives. Ms Otgonbaatar, a Mahidol University student who is originally from Mongolia played a Mongolian pop-song that draws on the celebrity of the country''s leading singers along imagery of its glorious past and evocative lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\r\n\r\n<span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in “Imagined Communities” are increasingly relevant in a globalised world that is struggling to grapple with cross-border and transnational problems such as climate change and migration.</span>\r\n\r\n&nbsp;\r\n\r\nAbout Benedict Anderson\r\n\r\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book Imagined Communities: Reflections on the Origin and Spread of Nationalism. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66, which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 06:33:42', '2016-02-04 06:33:42', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0),
(2293, 5, '2016-02-04 06:37:11', '2016-02-04 06:37:11', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson, as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre opened the event by discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri</span><span style="font-weight: 400;">, a prominent historian and Thai studies scholar shared the eulogy he gave at Anderson’s funeral in Surabaya. He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel<b>The Debate</b>[/caption]\r\n\r\n<span style="font-weight: 400;">Anderson’s “Imagined Communities: Reflections on the Origin and Spread of Nationalism” revolutionised our understanding of nationalism. We revisited the discourse by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its'' continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience shared their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and was ultimately the outcome of the debate was determined by the  audience; who voted in favour of the Opposition.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\r\n\r\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examines how India’s relationship with countries in the region have developed and evolved over time.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\r\n\r\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspectives. Ms Otgonbaatar, a Mahidol University student who is originally from Mongolia, played a Mongolian pop-song that draws on the celebrity of the country''s leading singers along imagery of its glorious past and evocative song lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\r\n\r\n<span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in “Imagined Communities” remain relevant in a globalised world that is struggling to grapple with  increasingly cross-border and transnational problems such as climate change and migration.</span>\r\n\r\n&nbsp;\r\n\r\nAbout Benedict Anderson\r\n\r\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book Imagined Communities: Reflections on the Origin and Spread of Nationalism. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66, which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 06:37:11', '2016-02-04 06:37:11', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0),
(2294, 5, '2016-02-04 06:38:20', '2016-02-04 06:38:20', '', '12496040_1121278991224661_8208051164535300385_o', '', 'inherit', 'closed', 'closed', '', '12496040_1121278991224661_8208051164535300385_o', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 2284, 'http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg', 5, 'attachment', 'image/jpeg', 0),
(2295, 5, '2016-02-04 06:38:50', '2016-02-04 06:38:50', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson, as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre opened the event by discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri</span><span style="font-weight: 400;">, a prominent historian and Thai studies scholar shared the eulogy he gave at Anderson’s funeral in Surabaya. He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel[/caption]\r\n\r\n<span style="font-weight: 400;">Anderson’s “Imagined Communities: Reflections on the Origin and Spread of Nationalism” revolutionised our understanding of nationalism. We revisited the discourse by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its'' continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience shared their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and was ultimately the outcome of the debate was determined by the  audience; who voted in favour of the Opposition.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\r\n\r\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examines how India’s relationship with countries in the region have developed and evolved over time.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\r\n\r\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspectives. Ms Otgonbaatar, a Mahidol University student who is originally from Mongolia, played a Mongolian pop-song that draws on the celebrity of the country''s leading singers along imagery of its glorious past and evocative song lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\r\n\r\n<span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;"><img class="wp-image-2294 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="217" height="262" />The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in “Imagined Communities” remain relevant in a globalised world that is struggling to grapple with  increasingly cross-border and transnational problems such as climate change and migration.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAbout Benedict Anderson\r\n\r\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book Imagined Communities: Reflections on the Origin and Spread of Nationalism. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66, which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 06:38:50', '2016-02-04 06:38:50', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0),
(2296, 5, '2016-02-04 06:39:48', '2016-02-04 06:39:48', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson, as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre opened the event by discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri</span><span style="font-weight: 400;">, a prominent historian and Thai studies scholar shared the eulogy he gave at Anderson’s funeral in Surabaya. He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel[/caption]\r\n\r\n<span style="font-weight: 400;">Anderson’s “Imagined Communities: Reflections on the Origin and Spread of Nationalism” revolutionised our understanding of nationalism. We revisited the discourse by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its'' continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience shared their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and was ultimately the outcome of the debate was determined by the  audience; who voted in favour of the Opposition.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\r\n\r\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examines how India’s relationship with countries in the region have developed and evolved over time.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\r\n\r\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspectives. Ms Otgonbaatar, a Mahidol University student who is originally from Mongolia, played a Mongolian pop-song that draws on the celebrity of the country''s leading singers along imagery of its glorious past and evocative song lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\r\n\r\n<span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;"><img class="wp-image-2294 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="189" height="229" />The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in “Imagined Communities” remain relevant in a globalised world that is struggling to grapple with  increasingly cross-border and transnational problems such as climate change and migration.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>About Benedict Anderson</strong>\r\n\r\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book Imagined Communities: Reflections on the Origin and Spread of Nationalism. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66, which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 06:39:48', '2016-02-04 06:39:48', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0),
(2297, 5, '2016-02-04 07:08:30', '2016-02-04 07:08:30', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson, as well as students and members of public who were keen to learn more about the scholar and his work. </span>\n\n&nbsp;\n\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre, opened the event by discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri;</span><span style="font-weight: 400;"> a prominent historian and Thai studies scholar, shared the eulogy he gave at Anderson’s funeral in Surabaya. He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\n\n&nbsp;\n\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel[/caption]\n\n<span style="font-weight: 400;">Anderson’s <em>Imagined Communities: Reflections on the Origin and Spread of Nationalism </em>revolutionised our understanding of nationalism. We revisited the discourse on the subject by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\n\n&nbsp;\n\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its'' continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience to share their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and ultimately, the outcome of the debate was determined by the audience who voted in favour of the Opposition.</span>\n\n&nbsp;\n\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\n\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examines how India’s relationship with countries in the region has developed and evolved over time.</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\n\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspective. Mr Otgonbaatar, a Mahidol University student who is originally from Mongolia, played a Mongolian pop-song that drew on the celebrity of the country''s leading singers along with imagery of its glorious past and evocative song lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\n\n<span style="font-weight: 400;">\n</span><span style="font-weight: 400;"><img class="wp-image-2294 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="189" height="229" />The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in “Imagined Communities” remain relevant in a globalised world that is struggling to grapple with  increasingly cross-border and transnational problems such as climate change and migration.</span>\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>About Benedict Anderson</strong>\n\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book Imagined Communities: Reflections on the Origin and Spread of Nationalism. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66, which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\n\n&nbsp;\n\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-autosave-v1', '', '', '2016-02-04 07:08:30', '2016-02-04 07:08:30', '', 2284, 'http://asiacentre.co.th/other/2284-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2298, 5, '2016-02-04 07:09:24', '2016-02-04 07:09:24', '<span style="font-weight: 400;">Debating Imagined Communities: A Tribute To Benedict Anderson <img class="wp-image-2190 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/12/Anderson_B.jpg" alt="Anderson_B" width="146" height="193" />celebrated the life and work of the late Professor Anderson. Held on 30 January 2016 at Asia Centre in Bangkok, Thailand; the event attracted a diverse audience of about 40 people including friends and colleagues of Anderson, as well as students and members of public who were keen to learn more about the scholar and his work. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Professor James Gomez, Associate Dean (International Affairs) at the School of Communication Arts, Bangkok University and co-founder of the Asia Centre, opened the event by discussing how Anderson’s work sits in relation to his contemporaries. Professor Emeritus Charnvit Kasetsiri;</span><span style="font-weight: 400;"> a prominent historian and Thai studies scholar, shared the eulogy he gave at Anderson’s funeral in Surabaya. He spoke of his friendship and camaraderie with Anderson and provided insight into the man behind the work.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2287" align="alignleft" width="319"]<img class="wp-image-2287" src="http://asiacentre.co.th/wp-content/uploads/2016/02/1613942_1121279187891308_8667217838112469785_n-1.jpg" alt="1613942_1121279187891308_8667217838112469785_n (1)" width="319" height="239" /> Our Debate Panel[/caption]\r\n\r\n<span style="font-weight: 400;">Anderson’s <em>Imagined Communities: Reflections on the Origin and Spread of Nationalism </em>revolutionised our understanding of nationalism. We revisited the discourse on the subject by debating the motion “This House Believes That Nationalism Can Be A Force For Good”. </span><span style="font-weight: 400;">Proposing the motion was Professor Lipi Ghosh, Director for the Centre for South &amp; Southeast Asian Studies, University of Calcutta and Professor Sean Matthews, Head of School of Modern Languages &amp; Culture, University of Nottingham (Malaysia). On the opposition there was Professor Coeli Barry, Chair of the Masters Programme in Human Rights, Institute of Human Rights and Peace Studies, Mahidol University and Professor Zaharom Naim, School of Modern Languages &amp; Culture, University of Nottingham (Malaysia).</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">It was a rousing and engaging debate which raised some important questions about our <img class=" wp-image-2288 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670572_1121278891224671_7824825160265749161_n.jpg" alt="12670572_1121278891224671_7824825160265749161_n" width="272" height="204" />understanding of nationalism, its'' continued relevance in contemporary society as well as alternatives ideologies that could be used to foster the development of ‘imagined communities’. The debate then opened to the floor for members of the audience to share their own thoughts, analysis and to pose questions to the debate panel. Both teams put up a good fight and ultimately, the outcome of the debate was determined by the audience who voted in favour of the Opposition.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2289" align="alignleft" width="300"]<img class="wp-image-2289" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670846_1121278897891337_7466768598950683074_n.jpg" alt="12670846_1121278897891337_7466768598950683074_n" width="300" height="225" /> Prof. Charnvit launches Prof. Lipi Ghosh''s book "India- Myanmar Relations: Historical Links To Contemporary Convergences"[/caption]\r\n\r\n<span style="font-weight: 400;">We were also pleased to be able to host the Bangkok launch of Prof. Lipi Ghosh’s new book </span><i><span style="font-weight: 400;">India- Myanmar Relations: Historical Links to Contemporary Convergences</span></i><span style="font-weight: 400;">. Prof Ghosh’s work centres on India’s pivot towards Southeast Asia and examines how India’s relationship with countries in the region has developed and evolved over time.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2290 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12670318_1121279284557965_5233832323416685959_n.jpg" alt="12670318_1121279284557965_5233832323416685959_n" width="308" height="159" /></span>\r\n\r\nThe final segment of the programme was the Open Mic session where we were presented with two very interesting takes on the topic of nationalism. Poet, teacher and public speaker, Ms Puja Singh talked about her experiences as an ethnic minority in Nepal and how this shaped her identity and perspective. Mr Otgonbaatar, a Mahidol University student who is originally from Mongolia, played a Mongolian pop-song that drew on the celebrity of the country''s leading singers along with imagery of its glorious past and evocative song lyrics to raise national sentiment. Dr Kenneth Houston, then closed the event by sharing some of his own personal experiences with nationalism in the context of Ireland’s tumultuous history.\r\n\r\n<span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;"><img class="wp-image-2294 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="189" height="229" />The debate and open mic session were a wonderful platform to engage with Anderson’s work. Today some 32 years after its initial publication, the issues raised in <em>Imagined Communities</em> remain relevant in a globalised world that is struggling to grapple with  increasingly cross-border and transnational problems.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>About Benedict Anderson</strong>\r\n\r\n<span style="font-weight: 400;">Benedict Anderson (26 August 1936 – 13 December 2015) was best known for his 1983 book <em>Imagined Communities: Reflections on the Origin and Spread of Nationalism</em>. Anderson was Professor Emeritus of International Studies, Government and Asian Studies at Cornell University and a renowned historian and political scientist. As scholar of Southeast Asia, his unflinching account of the Indonesian anti-Communist purges of 1965-66; which saw over 500,000, massacred, helped undermine the official whitewashed narrative and consequently saw Anderson banned from Indonesia until 1998. Anderson was also a polyglot who contributed extensively to scholarship on the relationship between language and power in the region, and was fluent in Bahasa Indonesia, Javanese, Thai and Tagalog. Anderson passed away in Malang, Indonesia on 13 December 2015 at the age of 79.  </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Debating Imagined Communities: A Tribute To Benedict Anderson', '', 'inherit', 'closed', 'closed', '', '2284-revision-v1', '', '', '2016-02-04 07:09:24', '2016-02-04 07:09:24', '', 2284, 'http://asiacentre.co.th/other/2284-revision-v1/', 0, 'revision', '', 0),
(2299, 5, '2016-02-04 09:14:39', '2016-02-04 09:14:39', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Conferences', '', 'inherit', 'closed', 'closed', '', '1939-autosave-v1', '', '', '2016-02-04 09:14:39', '2016-02-04 09:14:39', '', 1939, 'http://asiacentre.co.th/other/1939-autosave-v1/', 0, 'revision', '', 0),
(2308, 5, '2016-02-04 09:14:58', '2016-02-04 09:14:58', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Conferences', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2016-02-04 09:14:58', '2016-02-04 09:14:58', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2309, 5, '2016-02-04 09:15:56', '2016-02-04 09:15:56', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Seminars', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2016-02-04 09:15:56', '2016-02-04 09:15:56', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2310, 5, '2016-02-04 09:17:13', '2016-02-04 09:17:13', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Meetings', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2016-02-04 09:17:13', '2016-02-04 09:17:13', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2315, 6, '2016-02-05 05:15:56', '2016-02-05 05:15:56', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Our spaces can accommodate 4 to 60 people. The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (boardroom, classroom, conference, theatre style)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,100</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,400</td>\r\n<td width="73">5,400</td>\r\n<td width="73">10,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">7,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">60</td>\r\n<td style="text-align: center;" width="79">40</td>\r\n<td style="text-align: center;" width="81">25</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-02-05 05:15:56', '2016-02-05 05:15:56', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2318, 1, '2016-02-11 03:14:07', '2016-02-11 03:14:07', '', 'News', '', 'publish', 'closed', 'closed', '', '2318', '', '', '2017-01-17 13:10:55', '2017-01-17 06:10:55', '', 234, 'http://asiacentre.co.th/?p=2318', 22, 'nav_menu_item', '', 0),
(2322, 1, '2016-02-11 03:35:03', '2016-02-11 03:35:03', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development, to platforms for community engagement as well as funding and entrepreneurship advice for student start up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-02-11 03:35:03', '2016-02-11 03:35:03', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2325, 3, '2016-02-14 10:07:41', '2016-02-14 10:07:41', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Workshops', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2016-02-14 10:07:41', '2016-02-14 10:07:41', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2326, 3, '2016-02-14 10:08:40', '2016-02-14 10:08:40', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Workshops', '', 'inherit', 'closed', 'closed', '', '1939-autosave-v1', '', '', '2016-02-14 10:08:40', '2016-02-14 10:08:40', '', 1939, 'http://asiacentre.co.th/other/1939-autosave-v1/', 0, 'revision', '', 0),
(2327, 3, '2016-02-14 10:09:22', '2016-02-14 10:09:22', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n</ul>', 'Learning', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2016-02-14 10:09:22', '2016-02-14 10:09:22', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(2328, 3, '2016-02-14 10:22:08', '2016-02-14 10:22:08', 'The Universal Periodic Review (UPR) is a mechanism under the Human Rights Council that reviews the human rights situation in all 193 UN Member States once every four and a half years. All Southeast Asian states have undergone two review cycles of their respective human rights situations under the process. <span style="font-weight: 400;">But what is the impact of the UPR on human rights in the region? And does the focus on constructive dialogue and the state-centric nature of the process help improve the situation?</span>\r\n\r\n<img class=" wp-image-2391 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/upr.jpg" alt="upr" width="319" height="212" />The region is politically diverse with member states varying in their national human rights protection systems, ratification of UN human rights instruments and level of civil society engagement. In relation to the UPR process, a key issue is how it contributes to the advancement of human rights in the region and what role it plays in relation to the ASEAN Intergovernmental Commission on Human Rights (AICHR) and national human rights institutions (NHRIs).This conference seeks to critically examine the UPR process through evidence-based research to evaluate its impact on Southeast Asian states and societies.\r\n\r\n&nbsp;\r\n<p class="remove-margin-top remove-margin-bottom"><strong>Themes</strong></p>\r\n<p class="remove-margin-top remove-margin-bottom"><span style="font-weight: 400;">Key themes that will be treated are:</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">1. Effectiveness of the UPR in addressing human rights protection gaps within Southeast Asia</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">2. States adherence to UPR recommendations for improving the protection capacities of AICHR</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">3. States adherence to UPR recommendations for improving the protection capacities of NHRIs.</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">4. Development of an intra-regional linkage to formally engage with the UPR process</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">5. Challenges faced by civil society in engaging with the UPR process</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">6. Other related themes</span></p>\r\n&nbsp;\r\n<p class="remove-margin-top remove-margin-bottom"><strong>Objectives</strong></p>\r\n<p class="remove-margin-top remove-margin-bottom"><span style="font-weight: 400;">This conference aims to achieve the following objectives:</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">1. Convene researchers working on human rights in Southeast Asia</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">2. Exchange views among the authors researching the UPR process in Southeast Asia</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">3. Publish the outcomes in a special issue journal and/or an edited book</span><span style="font-weight: 400;">\r\n</span><span style="font-weight: 400;">4. Contribute to the academic literature on the UPR and human rights in Southeast Asia</span></p>\r\n&nbsp;\r\n<p class="remove-margin-top remove-margin-bottom"><strong>Conference Structure</strong></p>\r\n<p class="remove-margin-top remove-margin-bottom"><span style="font-weight: 400;">The conference will consist of thematic panels, country-specific discussions and a final plenary session which will be open to civil society groups, international organisations, government officials and the academic community to facilitate knowledge sharing and networking opportunities.</span></p>\r\n&nbsp;\r\n<p class="wsite-content-title"><strong>Conference Fees</strong></p>\r\n<p class="wsite-content-title"><strong>For Presenters        </strong><strong>                                                              </strong>\r\nThis is a self-funded conference hence a fee of USD$200 will be charged to all presenters, this will go towards covering the cost of the venue, equipment and logistics, coffee breaks on all days, certificates for presenters, and conference communications. There will be an early bird discount rate of USD$150 for registration and full payment made before 31 July 2016. We are also offering a special student rate of USD$75.</p>\r\n<p class="wsite-content-title"><strong>For Participants         </strong></p>\r\n<p class="wsite-content-title">You can also attend the conference as a participant to listen to the research being presented, participate in the discussions and engage with the researchers. There is single day rate of USD$75 and a conference package of $150 which will allow you to attend both days of the conference, the welcome dinner and the open plenary on Saturday. Students can pay a discounted rate of USD$40 for single day attendance or USD$75 to attend both days of the conference, the welcome dinner and the open plenary on Saturday. Coffee breaks and lunch are provided.</p>\r\n\r\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<div class="paragraph">Conference fee can be payed in two ways:\r\n1. Directly to the bank account <strong>according to the instructions</strong> that will be listed on the<strong> invoice</strong>\r\n2. <strong>Online payment </strong>using Secured Credit Card Payment</div>\r\n</form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<input name="hosted_button_id" type="hidden" value="4HDXGNH8U8KAL" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="UPR Conference Fee (For Presenters)" /><strong><span style="color: #0000ff;">UPR Conference Fee (For Presenters)</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Regular">Regular $200.00 USD</option>\r\n<option value="Early bird">Early bird $150.00 USD</option>\r\n<option value="Student">Student $75.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n\r\n</form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<input name="hosted_button_id" type="hidden" value="3VFLRWGWVXYEW" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="UPR Conference Fee (For Participants)" /><strong><span style="color: #008000;">UPR Conference Fee (For Participants)</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Single Day">Single Day $75.00 USD</option>\r\n<option value="Conference Package">Conference Package $150.00 USD</option>\r\n<option value="Single Day-Student">Single Day-Student $40.00 USD</option>\r\n<option value="Student Package">Student Package $75.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n<img src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />\r\n\r\n</form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"></form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="hosted_button_id" type="hidden" value="4HDXGNH8U8KAL" />\r\n\r\n</form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><img src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /><img class="alignleft" src="https://www.paypalobjects.com/webstatic/mktg/logo/PP_AcceptanceMarkTray-NoDiscover_243x40.png" alt="Buy now with PayPal" width="170" height="28" /> <!-- PayPal Logo -->\r\n\r\n</form>&nbsp;\r\n\r\n*Please be aware that all conference fees are not refundable.\r\n**All costs regarding the transfer of the registration fee (Transfer fees) are to be covered by the applicant.\r\n\r\n<strong>Submission Guidelines</strong>\r\n<span style="font-weight: 400;">Those wishing to present papers are invited to submit an abstract of 300 words along with a short biographical paragraph, in English to contact@asiacentre.co.th</span>\r\n\r\n<strong>Deadlines</strong>\r\n<ul>\r\n 	<li><strong>Deadline for abstract submission has been extended to 15 August 2016</strong></li>\r\n 	<li>Full paper submission: 1 September 2016</li>\r\n</ul>\r\n&nbsp;\r\n<p class="clear-margins"><strong>Programme Outline</strong></p>\r\n<p class="clear-margins"><img class="alignright size-medium wp-image-2824" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-1140x1612.jpg" alt="Draft Programme" width="1140" height="1612" /> <img class="alignright size-medium wp-image-2825" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-Day-2-1140x1612.jpg" alt="Draft Programme Day 2" width="1140" height="1612" /></p>\r\n&nbsp;\r\n\r\nFor information on the open plenary on 17th September 2017 please click here.\r\n\r\nDo share this conference on <a href="https://www.facebook.com/events/1784604575095088/" target="_blank">Facebook</a>!\r\n\r\n<strong>Conveners:</strong> Professors James Gomez &amp; Robin Ramcharan\r\n\r\n<strong>Host:</strong> Asia Centre, Bangkok, Thailand\r\n\r\n<strong><img class="alignright size-medium wp-image-2707" src="http://asiacentre.co.th/wp-content/uploads/2016/07/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614.jpg" alt="UPR in Southeast Asia- Conference Call - Final Deadline" width="1140" height="1614" /></strong><code></code>', 'Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment', '', 'publish', 'closed', 'closed', '', 'universal-periodic-review-in-southeast-asia', '', '', '2016-12-22 06:47:36', '2016-12-22 06:47:36', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2328', 0, 'event', '', 0),
(2331, 3, '2016-02-14 10:34:32', '2016-02-14 10:34:32', '<span style="font-weight: 400;">The Writing Institute helps individuals to write effectively in the English Language for a variety of purposes, audiences and contexts. The Institute focuses on two groups of individuals (1) students and (2) academics. Services are tailored to the needs of the individuals, whether they are native English speakers or individuals writing in English as a Second Language. </span>\r\n\r\n<span style="font-weight: 400;">Students learn skills to equip them to write research proposals, their capstone papers, independent study papers, </span><span style="font-weight: 400;">theses </span><span style="font-weight: 400;">and other assignments, while academics receive the relevant coaching to help them write </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and prepare manuscripts for academic publications.</span>\r\n\r\n<span style="font-weight: 400;">The Institute also provides editorial services for proofreading and copy editing of all types of academic documents for submission to universities and publishers. Our editors have tertiary qualifications and extensive editorial experience. We welcome drop-in consultations at the Asia Centre to discuss writing assignments as well as have written work proofread and edited. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Writing Clinics</b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive course which aims to develop and expand the academic writing skills required to produce articles, reports and dissertations in English. The course will review the fundamentals of grammar and vocabulary and will teach students to organise their ideas in language that is effective and appropriate for academic work. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. Attention will be paid to developing the skills needed to write a thesis; including crafting a thesis statement, critical reading of academic articles, research and summary skills as well as citing sources.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">This is a special coaching clinic for academics who are looking to improve the quality, persuasiveness and originality of their academic writing.  Participants will receive coaching in with greater clarity and purpose as well as in editing and critically reviewing their work, with a view to publication. It is suitable for academics and graduate students who are producing articles for journals, research papers for conferences as well as contributing content to books and other publications. The coaching clinic will also tackle the skills needed to edit collected works and special issues of journals. Participants will also receive coaching on how to deal with publishers as well as the pre-publication processes of copy editing, proofreading and proper referencing.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Editorial Services </b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides proofreading and editing services to students for a wide range of writing assignments including motivation letters, statements of purpose, essays, capstone papers, independent studies, theses, and as well as abstracts and papers for conferences. The Writing Institute works closely with the student to ensure the final document reflects a high level of proficiency in the English language, is consistent with academic conventions, employs effective tone and voice and is structured in a cogent manner. Students will also be able to drop in for one on one consultations with an assigned editor who can provide coaching throughout the writing process.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">The Institute provides a range of supporting services for academics to prepare their work for publication as well as enhance the overall quality of their academic writing. Editorial services such as copyediting and proofreading are provided for </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and manuscripts intended for academic publication. </span><span style="font-weight: 400;">Our editors are well equipped to assist academics who are native English speakers as well as those for whom English is a Second Language. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Research Methodology Workshops</b>\r\n\r\n<span style="font-weight: 400;">To achieve good results, academic writing needs to be grounded in sound research methodology. </span><span style="font-weight: 400;">The research methodology clinic outlines the fundamentals of doing research from designing a research project to data collection and analysis. The workshops are ideal for postgraduates embarking on their Masters and Doctoral theses who are looking for coaching as they develop their research ideas. For academics, the workshops serve firstly as a refresher and secondly as an opportunity to design and execute an advanced research project with the objective of submitting an academic publication.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Educational Consultancy</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides consultancy services to educational institutions on academic matters. We advise on strategic planning, internalisation, inter-institution memorandums, development of international curriculum, staff capacity training, student exchanges, internships, short courses, summer camps, accreditation and quality assurance issues. We </span><span style="font-weight: 400;">undertake external curriculum and programme reviews and can serve as external examiners and participate in review committees including</span><span style="font-weight: 400;"> compiling and preparing quality assurance reports.</span>', 'Writing Institute', '', 'publish', 'closed', 'closed', '', 'writing-institute', '', '', '2016-02-25 07:54:19', '2016-02-25 07:54:19', '', 0, 'http://asiacentre.co.th/?page_id=2331', 0, 'page', '', 0),
(2332, 3, '2016-02-14 10:34:32', '2016-02-14 10:34:32', '', 'Writing Institute', '', 'inherit', 'closed', 'closed', '', '2331-revision-v1', '', '', '2016-02-14 10:34:32', '2016-02-14 10:34:32', '', 2331, 'http://asiacentre.co.th/other/2331-revision-v1/', 0, 'revision', '', 0),
(2334, 3, '2016-02-14 10:40:41', '2016-02-14 10:40:41', ' ', '', '', 'publish', 'closed', 'closed', '', '2334', '', '', '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 0, 'http://asiacentre.co.th/?p=2334', 16, 'nav_menu_item', '', 0),
(2336, 3, '2016-02-14 11:11:22', '2016-02-14 11:11:22', '', 'Debating Imagined Communities', '', 'trash', 'closed', 'closed', '', 'debating-imagined-communities__trashed', '', '', '2017-01-10 14:10:37', '2017-01-10 07:10:37', '', 0, 'http://asiacentre.co.th/?post_type=slider&#038;p=2336', 0, 'slider', '', 0),
(2337, 3, '2016-02-14 11:10:07', '2016-02-14 11:10:07', '', 'Ben Seminar', '', 'inherit', 'closed', 'closed', '', 'ben-seminar', '', '', '2016-02-14 11:10:07', '2016-02-14 11:10:07', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/Ben-Seminar.jpg', 0, 'attachment', 'image/jpeg', 0),
(2342, 5, '2015-10-29 03:29:09', '2015-10-29 03:29:09', '<img class="wp-image-2345 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12108978_1065266116825949_7572381867275093488_n.jpg" alt="12108978_1065266116825949_7572381867275093488_n" width="199" height="149" />Asia Centre hosted Institute of Human Rights and Peace Studies, Mahidol University student Yasuyuki Kato on 19th October 2015. Kato presented his thesis; "Irregular Foreigners'' Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights".\r\n\r\n<img class="wp-image-2344 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12118729_1065266103492617_3215442545566282906_n.jpg" alt="12118729_1065266103492617_3215442545566282906_n" width="221" height="150" /><img class="wp-image-2343 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12140656_1065266113492616_5681783030573671012_n.jpg" alt="12140656_1065266113492616_5681783030573671012_n" width="198" height="148" />Kato''s research provided insight into some of the challenges that irregular migrants in Japan face when accessing healthcare services. The seminar also discussed the duties of the Japanese government with regards to the provision of adequate healthcare services as well as their differentiated obligations towards citizens and non-citizens.', 'Irregular Foreigners'' Right to Health in Japan', '', 'publish', 'closed', 'closed', '', 'thes', '', '', '2016-02-15 08:50:03', '2016-02-15 08:50:03', '', 0, 'http://asiacentre.co.th/?p=2342', 0, 'post', '', 0),
(2343, 5, '2016-02-15 03:19:24', '2016-02-15 03:19:24', '', '12140656_1065266113492616_5681783030573671012_n', '', 'inherit', 'closed', 'closed', '', '12140656_1065266113492616_5681783030573671012_n', '', '', '2016-02-15 08:50:03', '2016-02-15 08:50:03', '', 2342, 'http://asiacentre.co.th/wp-content/uploads/2016/02/12140656_1065266113492616_5681783030573671012_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2344, 5, '2016-02-15 03:19:24', '2016-02-15 03:19:24', '', '12118729_1065266103492617_3215442545566282906_n', '', 'inherit', 'closed', 'closed', '', '12118729_1065266103492617_3215442545566282906_n', '', '', '2016-02-15 08:50:03', '2016-02-15 08:50:03', '', 2342, 'http://asiacentre.co.th/wp-content/uploads/2016/02/12118729_1065266103492617_3215442545566282906_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(2345, 5, '2016-02-15 03:19:25', '2016-02-15 03:19:25', '', '12108978_1065266116825949_7572381867275093488_n', '', 'inherit', 'closed', 'closed', '', '12108978_1065266116825949_7572381867275093488_n', '', '', '2016-02-15 08:50:03', '2016-02-15 08:50:03', '', 2342, 'http://asiacentre.co.th/wp-content/uploads/2016/02/12108978_1065266116825949_7572381867275093488_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(2346, 5, '2016-02-15 03:24:01', '2016-02-15 03:24:01', '<img class="wp-image-2345 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12108978_1065266116825949_7572381867275093488_n.jpg" alt="12108978_1065266116825949_7572381867275093488_n" width="199" height="149" />Asia Centre hosted Institute of Human Rights and Peace Studies, Mahidol University student <img class="wp-image-2343 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12140656_1065266113492616_5681783030573671012_n.jpg" alt="12140656_1065266113492616_5681783030573671012_n" width="206" height="155" />Yasuyuki Kato on 19th October 2015. Kato presented his thesis; "Irregular Foreigners'' Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights".\r\n\r\n<img class="wp-image-2344 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12118729_1065266103492617_3215442545566282906_n.jpg" alt="12118729_1065266103492617_3215442545566282906_n" width="209" height="143" />', '"Irregular Foreigners'' Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights".', '', 'inherit', 'closed', 'closed', '', '2342-revision-v1', '', '', '2016-02-15 03:24:01', '2016-02-15 03:24:01', '', 2342, 'http://asiacentre.co.th/other/2342-revision-v1/', 0, 'revision', '', 0),
(2347, 5, '2016-02-15 03:25:12', '2016-02-15 03:25:12', '<img class="wp-image-2345 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12108978_1065266116825949_7572381867275093488_n.jpg" alt="12108978_1065266116825949_7572381867275093488_n" width="199" height="149" />Asia Centre hosted Institute of Human Rights and Peace Studies, Mahidol University student Yasuyuki Kato on 19th October 2015. Kato presented his thesis; "Irregular Foreigners'' Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights".\r\n\r\n<img class="wp-image-2344 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12118729_1065266103492617_3215442545566282906_n.jpg" alt="12118729_1065266103492617_3215442545566282906_n" width="221" height="150" /><img class="wp-image-2343 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12140656_1065266113492616_5681783030573671012_n.jpg" alt="12140656_1065266113492616_5681783030573671012_n" width="198" height="148" />', 'Seminar on Irregular Foreigners'' Right to Health in Japan', '', 'inherit', 'closed', 'closed', '', '2342-revision-v1', '', '', '2016-02-15 03:25:12', '2016-02-15 03:25:12', '', 2342, 'http://asiacentre.co.th/other/2342-revision-v1/', 0, 'revision', '', 0),
(2348, 5, '2016-02-15 03:29:09', '2016-02-15 03:29:09', '<img class="wp-image-2345 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12108978_1065266116825949_7572381867275093488_n.jpg" alt="12108978_1065266116825949_7572381867275093488_n" width="199" height="149" />Asia Centre hosted Institute of Human Rights and Peace Studies, Mahidol University student Yasuyuki Kato on 19th October 2015. Kato presented his thesis; "Irregular Foreigners'' Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights".\r\n\r\n<img class="wp-image-2344 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12118729_1065266103492617_3215442545566282906_n.jpg" alt="12118729_1065266103492617_3215442545566282906_n" width="221" height="150" /><img class="wp-image-2343 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12140656_1065266113492616_5681783030573671012_n.jpg" alt="12140656_1065266113492616_5681783030573671012_n" width="198" height="148" />Kato''s research provided insight into some of the challenges that irregular migrants in Japan face when accessing healthcare services. The seminar also discussed the duties of the Japanese government with regards to the provision of adequate healthcare services as well as their differentiated obligations towards citizens and non-citizens.', 'Seminar on Irregular Foreigners'' Right to Health in Japan', '', 'inherit', 'closed', 'closed', '', '2342-revision-v1', '', '', '2016-02-15 03:29:09', '2016-02-15 03:29:09', '', 2342, 'http://asiacentre.co.th/other/2342-revision-v1/', 0, 'revision', '', 0),
(2349, 5, '2016-02-15 06:44:08', '2016-02-15 06:44:08', 'Mahidol University student Yasuyuki Kato will be presenting his research on; “Irregular Foreigners’ Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights”.', '“Irregular Foreigners’ Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights”.', '', 'publish', 'closed', 'closed', '', 'yasu-thesis', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2349', 0, 'event', '', 0),
(2350, 5, '2016-02-15 07:10:55', '2016-02-15 07:10:55', 'Mahidol University student Yasuyuki Kato will be presenting his research on; “Irregular Foreigners’ Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights”.', '“Irregular Foreigners’ Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights”.', '', 'inherit', 'closed', 'closed', '', '2349-autosave-v1', '', '', '2016-02-15 07:10:55', '2016-02-15 07:10:55', '', 2349, 'http://asiacentre.co.th/other/2349-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2352, 3, '2016-02-15 07:11:14', '2016-02-15 07:11:14', '', 'Commentary', '', 'publish', 'closed', 'closed', '', 'commentary', '', '', '2016-02-15 07:11:14', '2016-02-15 07:11:14', '', 0, 'http://asiacentre.co.th/?page_id=2352', 0, 'page', '', 0),
(2353, 3, '2016-02-15 07:11:14', '2016-02-15 07:11:14', '', 'Commentary', '', 'inherit', 'closed', 'closed', '', '2352-revision-v1', '', '', '2016-02-15 07:11:14', '2016-02-15 07:11:14', '', 2352, 'http://asiacentre.co.th/other/2352-revision-v1/', 0, 'revision', '', 0),
(2355, 3, '2016-02-15 07:13:35', '2016-02-15 07:13:35', '', 'Publications', '', 'publish', 'closed', 'closed', '', 'publications', '', '', '2016-02-15 07:13:59', '2016-02-15 07:13:59', '', 0, 'http://asiacentre.co.th/?page_id=2355', 0, 'page', '', 0),
(2356, 3, '2016-02-15 07:13:35', '2016-02-15 07:13:35', '', 'Publications', '', 'inherit', 'closed', 'closed', '', '2355-revision-v1', '', '', '2016-02-15 07:13:35', '2016-02-15 07:13:35', '', 2355, 'http://asiacentre.co.th/other/2355-revision-v1/', 0, 'revision', '', 0),
(2360, 3, '2016-02-15 07:39:40', '2016-02-15 07:39:40', '', 'Commentaries', '', 'publish', 'closed', 'closed', '', '2360', '', '', '2017-01-17 13:10:55', '2017-01-17 06:10:55', '', 234, 'http://asiacentre.co.th/?p=2360', 21, 'nav_menu_item', '', 0),
(2362, 3, '2016-02-15 07:39:40', '2016-02-15 07:39:40', '', 'Publications', '', 'publish', 'closed', 'closed', '', 'news', '', '', '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 0, 'http://asiacentre.co.th/?p=2362', 18, 'nav_menu_item', '', 0),
(2363, 3, '2015-02-19 07:42:52', '2015-02-19 07:42:52', 'ASEAN’s evolving human rights regime is shaped by three competing discourses. These are the human rights policies of national governments, advocacy positions promoted by both global and local civil society and the call for alignment with international human rights standards and procedures by inter-governmental organizations.\r\n\r\nIn this contest, the national governmental discourse has significantly impacted the tone of democracy and human rights now etched onto key documents such as the ASEAN Charter, ASEAN Inter-Governmental Commission of Human Rights (AICHR) Terms of Reference (TOR) and ASEAN Human Rights Declaration (AHRD). It continues to do so as the human rights regime evolves.\r\n\r\nThe result thus far, is a rather weak “protection” regime within ASEAN’s human rights framework.\r\n\r\nIn Southeast Asia, these three discourses offer two approaches to protection. First is “promotion,” based on the traditional, consensual “ASEAN way” – this is the discourse of national governments. Second is “protection,” based on quasi-judicial processes that also involve civil society and that engage domestic judicial authorities in seeking redress and remedies for victims of violations of rights – this is the discourse of local and global civil society and inter-governmental organizations.\r\n\r\nThe current human rights regime in Southeast Asia evolved following the 1993 Vienna Conference at which all States reaffirmed the universality of human rights. Concerted grassroots and international pressure contributed to moving Southeast Asian governments toward the current framework. Throughout the process, from 1993 to the present, these “universal” standards have found their way, albeit reluctantly, into ASEAN’s key documents pertaining to democracy and human rights.\r\n\r\nOfficial documents and statements from ASEAN, its member states, the AICHR, civil society actors and documents submitted to the Universal Periodic Review, Office of the High Commission of Human Rights (OHCHR) and the United Nations reveal a tension between “promotion” and “protection.”\r\n\r\nA review of the ASEAN Charter, AICHR’s TOR and the AHRD shows that since 1993 the development of a ‘protection” regime within AICHR has been influenced by the “ASEAN way” and ASEAN diplomatic culture that can be ascertained through some key practices.\r\n\r\nOne, a majority of AICHR representatives appear to act on behalf of their governments as opposed to advancing a credible peer review human rights system. Moreover, some have not had the requisite training.\r\n\r\nTwo, civil society organizations advocating for a robust protection system were consulted minimally on the margins and essentially excluded from the different formative stages of the ASEAN human rights regime.\r\n\r\nThree, while ASEAN states engage with international human rights monitoring systems, however grudgingly, their adherence to universal standards leaves a lot to be desired.\r\n\r\nFinally, regime security and power preservation take precedence over human rights for the region’s incumbent political elites.\r\n\r\nThe three discourses highlighted above represent Southeast Asia’s engagement with global human rights discourse.\r\n\r\nThe discourse from national governments as it pertains to human rights protection has resulted in a watered down version of key democracy and human rights related instruments in ASEAN when compared with other regions.\r\n\r\nOverall these competing discourses reveal Southeast Asia’s slow progress towards a more liberal democratic form of governance and rule of law as enshrined in international human rights standards.\r\n\r\nNevertheless, given that the AHRD and AICHR are “home-grown,” ASEAN governments cannot in future claim that human rights are an external imposition.\r\n\r\nAnalysts of the development of regional human right mechanisms need to take note of these discourses, in particular the counter-discourse from national governments, and their impact on the implementation of a protection mechanism within the regional human rights framework.\r\n\r\n<em><strong>Drs. James Gomez and Robin Ramcharan</strong> are co-authors of “Evaluating Competing ‘Democratic’ Discourses: The Impact on Human Rights Protection in Southeast Asia” in the Journal of Current Southeast Asian Affairs, (Vol 33, No. 3). <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/" target="_blank">Download the document here</a>.</em>', 'The ASEAN Way and Human Rights', 'The  ASEAN way affects the protection aspect of human rights in Southeast Asia, Dr James Gomez and Dr Robin Ramcharan, explain how. (19 February 2015, New Mandala)', 'publish', 'closed', 'closed', '', 'the-asean-way-and-human-rights', '', '', '2016-02-18 06:32:05', '2016-02-18 06:32:05', '', 0, 'http://asiacentre.co.th/?p=2363', 0, 'post', '', 0),
(2364, 3, '2016-02-15 07:50:13', '2016-02-15 07:50:13', 'ASEAN’s evolving human rights regime is shaped by three competing discourses. These are the human rights policies of national governments, advocacy positions promoted by both global and local civil society and the call for alignment with international human rights standards and procedures by inter-governmental organizations.\r\n\r\nIn this contest, the national governmental discourse has significantly impacted the tone of democracy and human rights now etched onto key documents such as the ASEAN Charter, ASEAN Inter-Governmental Commission of Human Rights (AICHR) Terms of Reference (TOR) and ASEAN Human Rights Declaration (AHRD). It continues to do so as the human rights regime evolves.\r\n\r\nThe result thus far, is a rather weak “protection” regime within ASEAN’s human rights framework.\r\n\r\nIn Southeast Asia, these three discourses offer two approaches to protection. First is “promotion,” based on the traditional, consensual “ASEAN way” – this is the discourse of national governments. Second is “protection,” based on quasi-judicial processes that also involve civil society and that engage domestic judicial authorities in seeking redress and remedies for victims of violations of rights – this is the discourse of local and global civil society and inter-governmental organizations.\r\n\r\nThe current human rights regime in Southeast Asia evolved following the 1993 Vienna Conference at which all States reaffirmed the universality of human rights. Concerted grassroots and international pressure contributed to moving Southeast Asian governments toward the current framework. Throughout the process, from 1993 to the present, these “universal” standards have found their way, albeit reluctantly, into ASEAN’s key documents pertaining to democracy and human rights.\r\n\r\nOfficial documents and statements from ASEAN, its member states, the AICHR, civil society actors and documents submitted to the Universal Periodic Review, Office of the High Commission of Human Rights (OHCHR) and the United Nations reveal a tension between “promotion” and “protection.”\r\n\r\nA review of the ASEAN Charter, AICHR’s TOR and the AHRD shows that since 1993 the development of a ‘protection” regime within AICHR has been influenced by the “ASEAN way” and ASEAN diplomatic culture that can be ascertained through some key practices.\r\n\r\nOne, a majority of AICHR representatives appear to act on behalf of their governments as opposed to advancing a credible peer review human rights system. Moreover, some have not had the requisite training.\r\n\r\nTwo, civil society organizations advocating for a robust protection system were consulted minimally on the margins and essentially excluded from the different formative stages of the ASEAN human rights regime.\r\n\r\nThree, while ASEAN states engage with international human rights monitoring systems, however grudgingly, their adherence to universal standards leaves a lot to be desired.\r\n\r\nFinally, regime security and power preservation take precedence over human rights for the region’s incumbent political elites.\r\n\r\nThe three discourses highlighted above represent Southeast Asia’s engagement with global human rights discourse.\r\n\r\nThe discourse from national governments as it pertains to human rights protection has resulted in a watered down version of key democracy and human rights related instruments in ASEAN when compared with other regions.\r\n\r\nOverall these competing discourses reveal Southeast Asia’s slow progress towards a more liberal democratic form of governance and rule of law as enshrined in international human rights standards.\r\n\r\nNevertheless, given that the AHRD and AICHR are “home-grown,” ASEAN governments cannot in future claim that human rights are an external imposition.\r\n\r\nAnalysts of the development of regional human right mechanisms need to take note of these discourses, in particular the counter-discourse from national governments, and their impact on the implementation of a protection mechanism within the regional human rights framework.\r\n\r\n<em><strong>Drs. James Gomez and Robin Ramcharan</strong> are co-authors of “Evaluating Competing ‘Democratic’ Discourses: The Impact on Human Rights Protection in Southeast Asia” in the Journal of Current Southeast Asian Affairs, (Vol 33, No. 3). <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/" target="_blank">Download the document here</a>.</em>', 'The ASEAN Way and Human Rights', '', 'inherit', 'closed', 'closed', '', '2363-revision-v1', '', '', '2016-02-15 07:50:13', '2016-02-15 07:50:13', '', 2363, 'http://asiacentre.co.th/other/2363-revision-v1/', 0, 'revision', '', 0),
(2365, 3, '2015-02-09 07:53:17', '2015-02-09 07:53:17', 'Southeast Asia is marked by a fragmented and shifting state of democratic development. Much of this fragmentation can be explained by conflict over political values concerning the choice of governance systems, degree of participation and level of accountability.\r\n\r\nIn ASEAN, it is this lack of shared “democratic” values that has impacted the protection capacity of the ASEAN Inter-Governmental Commission of Human Rights (AICHR). This is the principal finding of a special issue of the <em>Journal of Current Southeast Asian Affairs</em> titled “Democracy and Human Rights in Southeast Asia”.\r\n\r\nPublished by the German Institute of Global and Area Studies’ Institute of Asian Studies, this new volume brings together six researchers who examine how ASEAN’s political framework shaped the establishment of the region’s human rights mechanism.\r\n\r\nSince the 2007 Charter, ASEAN has been pursing democratic forms of governance, rule of law and the attendant fundamental human rights through “community-building” in many areas. However a “community” presupposes the development of common values among its member-states and among its citizens.\r\n\r\nBut the papers in the volume reveal that ASEAN’s people-centered approach to regional integration is problematic due to the absence in practice of a community firmly anchored to democratic principles. In fact, member states had divergent reasons for adopting the Charter and the AICHR.\r\n\r\nFor instance, weaker and less secure states, with the authoritarian and military regimes, are not comfortable with the push towards a human rights regime that is aligned to international standards.\r\n\r\nAs a result, the adoption of democratic terminology in its documents and the establishment of a human right mechanism has not allowed ASEAN to move away from its non-interference position to a more interventionist stance among the member states.\r\n\r\nCloser investigation shows that unless the quality of democracy in all ten countries improve through the adoption of shared democratic values, the human rights regime is unlikely to improve substantially. On the academic front existing perspectives from realist, constructivist and acculturalist perspectives preclude a single theoretical explanation.\r\n\r\nThe region is no exception to the global march of democracy that has taken place in recent decades but in the case of the protection capacity of ASEAN’s human rights regime, distinctions between democracy in form and substance must be noted.\r\n\r\nThe papers in the collection are aimed at policy makers, practitioners and students of politics, democracy and human rights in Asia and elsewhere. It is intended to stimulate further debate and discussion on ASEAN’s evolving human rights regime.\r\n\r\n<strong><em>James Gomez and Robin Ramcharan co-edited the latest issue of the Journal of Current Southeast Asian Affairs entitled “Democracy and Human Rights in Southeast Asia”. All papers in the collection are available for download at<a href="http://www.giga-hamburg.de/en/news/asean-democracy">http://www.giga-hamburg.de/en/news/asean-democracy</a></em></strong>', 'Democratic values and human rights in ASEAN', 'Written by Dr James Gomez and Dr Robin Ramcharan, this article first appeared on 9 February 2015 in the Asian Sentinel.', 'publish', 'closed', 'closed', '', 'democratic-values-and-human-rights-in-asean', '', '', '2016-02-15 09:11:31', '2016-02-15 09:11:31', '', 0, 'http://asiacentre.co.th/?p=2365', 0, 'post', '', 0),
(2366, 3, '2016-02-15 07:54:16', '2016-02-15 07:54:16', 'Southeast Asia is marked by a fragmented and shifting state of democratic development. Much of this fragmentation can be explained by conflict over political values concerning the choice of governance systems, degree of participation and level of accountability.\r\n\r\nIn ASEAN, it is this lack of shared “democratic” values that has impacted the protection capacity of the ASEAN Inter-Governmental Commission of Human Rights (AICHR). This is the principal finding of a special issue of the <em>Journal of Current Southeast Asian Affairs</em> titled “Democracy and Human Rights in Southeast Asia”.\r\n\r\nPublished by the German Institute of Global and Area Studies’ Institute of Asian Studies, this new volume brings together six researchers who examine how ASEAN’s political framework shaped the establishment of the region’s human rights mechanism.\r\n\r\nSince the 2007 Charter, ASEAN has been pursing democratic forms of governance, rule of law and the attendant fundamental human rights through “community-building” in many areas. However a “community” presupposes the development of common values among its member-states and among its citizens.\r\n\r\nBut the papers in the volume reveal that ASEAN’s people-centered approach to regional integration is problematic due to the absence in practice of a community firmly anchored to democratic principles. In fact, member states had divergent reasons for adopting the Charter and the AICHR.\r\n\r\nFor instance, weaker and less secure states, with the authoritarian and military regimes, are not comfortable with the push towards a human rights regime that is aligned to international standards.\r\n\r\nAs a result, the adoption of democratic terminology in its documents and the establishment of a human right mechanism has not allowed ASEAN to move away from its non-interference position to a more interventionist stance among the member states.\r\n\r\nCloser investigation shows that unless the quality of democracy in all ten countries improve through the adoption of shared democratic values, the human rights regime is unlikely to improve substantially. On the academic front existing perspectives from realist, constructivist and acculturalist perspectives preclude a single theoretical explanation.\r\n\r\nThe region is no exception to the global march of democracy that has taken place in recent decades but in the case of the protection capacity of ASEAN’s human rights regime, distinctions between democracy in form and substance must be noted.\r\n\r\nThe papers in the collection are aimed at policy makers, practitioners and students of politics, democracy and human rights in Asia and elsewhere. It is intended to stimulate further debate and discussion on ASEAN’s evolving human rights regime.\r\n\r\n<strong><em>James Gomez and Robin Ramcharan co-edited the latest issue of the Journal of Current Southeast Asian Affairs entitled “Democracy and Human Rights in Southeast Asia”. All papers in the collection are available for download at<a href="http://www.giga-hamburg.de/en/news/asean-democracy">http://www.giga-hamburg.de/en/news/asean-democracy</a></em></strong>', 'Democratic values and human rights in ASEAN', '', 'inherit', 'closed', 'closed', '', '2365-revision-v1', '', '', '2016-02-15 07:54:16', '2016-02-15 07:54:16', '', 2365, 'http://asiacentre.co.th/other/2365-revision-v1/', 0, 'revision', '', 0),
(2367, 3, '2012-11-19 07:56:21', '2012-11-19 07:56:21', 'Unless appropriate formal and equitable engagement mechanisms are put in place, civil society will be not be in a position to effectively advocate for and ensure the protection of human rights in the region. This is the lesson to be gleaned from the adoption of the ASEAN Human Rights Declaration (AHRD) yesterday (November 18) during the ASEAN Summit in Phnom Penh, Cambodia.\r\n\r\nThe inability of civil society organisations (CSOs) to meaningfully engage with members of ASEAN over the establishment of institutional and normative human rights frameworks to date explains the limited effectiveness of their advocacy in securing a real protection mechanism for the people of ASEAN.\r\n\r\nMuch of the discussion emerging from yesterday’s release of AHRD has focused on the criticism by CSOs over the lack of adherence to international human rights standards and the rejoinder by ASEAN governmental representative that the tone of the current AHRD is what is politically feasible now within the regional grouping. But the root problem remains the lack of access of CSOs to the inter-governmental process that has crafted institutional mechanisms and the AHRD.\r\n\r\nOver the last two years, CSOs seeking to advance the protection of human rights in the nascent ASEAN human rights regime have been confronted with a regional association and member governments that are still deeply wedded to the principle of non-interference and the primacy of national laws.\r\n\r\nBeginning with the ASEAN Charter in 2008, which promised the establishment of a human rights body, CSOs have been pressuring member governments to adopt a mechanism that would speak to international standards and include a protection mechanism. At each step towards formalising a regional mechanism, for example in 2009 in the run up to the drafting of the Terms of Reference for the AICHR and now in 2012 in the drafting of AHRD, CSOs have tried their level best to engage with ASEAN but in vain.\r\n\r\nOn the adoption of the ADHR in Phnom Penh on November 18, CSO criticisms of the declaration continued unabated. While Singapore’s Representative to the AICHR, Chang Heng Chee, hailed the advent of the “peer-review” mechanism and the ADHR as “the best that could be done” in the social and political context, the CSO exclusion from the process of crafting a human rights regime remains a blatant fact.\r\n\r\nSome 60 CSOs wrote to ASEAN leaders requesting the postponement of the signing given serious flaws in the document. Echoing strongly their comments, the UN High Commissioner for Human Rights, Navi Pillay, also called for the same and has stated: “I am surprised and disappointed that the draft declaration has not been made public and that civil society has not been consulted in the drafting of the document.”\r\n\r\nPoignant criticisms have pointed to AHRD failings to meet existing international standards and the risks of creating a sub-standard level of rights protection in the region.\r\n\r\nPillay has cited as an example the provision on the right to life which, she said, should not be contingent on domestic laws that can be used to justify state-sponsored violence. Further, ASEAN governments want the enjoyment of rights to be balanced with the “performance of duties” and be subject to “national and regional contexts”.\r\n\r\nRights in the region therefore stand to be restricted on a wide range of grounds, including “national security” and “public morality”. The declaration is further criticised for having too many loopholes that may permit states to bypass international standards. Even Surin Pitsuwan, speaking at the ASEAN Summit in Phnom Penh, admitted: “This document can be improved upon.”\r\n\r\nOn such substantive matters critical to the well-being of all ASEAN citizens, CSOs have been confronted with ASEAN member-states’ strategy of selective and limited engagement with CSOs to date over the establishment of a human rights regime in the region. The entire project of crafting a human rights regime is pursued purely as an inter-governmental activity.\r\n\r\nWith no institutionalised mechanism for consultation, CSO engagement has only been accommodated on a piece-meal basis and only because of the tireless advocacy, persistence and pressure by regional CSOs. This state of affairs has neutralised CSOs’ ability to advocate successfully for the protection of human rights in the region.\r\n\r\nSuch a purely inter-governmental approach is entirely out of step with how inter-governmental organisations such as the UN, the EU and the OAS conduct their own inter-governmental activities. In those mechanisms civil society is mainstreamed into the human rights processes.\r\n\r\nIn addition to concern over core substantive dilemmas — the lack of real protection of human rights and the failure to meet international standards — the real subtext is the fact that civil society has not been mainstreamed as it should be. Lack of such mainstreaming undermines ASEAN’s own call for a more people-centred community.\r\n\r\nCivil society organisations, which have historically played a vital role in advancing the protection of human rights globally, and the media (traditional and new), must continue and intensify their push for more transparency in the ASEAN human rights regime, for the respect of international commitments already binding upon ASEAN states, for the respect for universal standards under the UN Charter and the Universal Declaration of Human Rights and for real protection of fundamental rights.\r\n\r\nWhen it comes to the development of human rights in the region, the lack of genuine consultation with CSOs by ASEAN’s member governments reflects the marginalisation of one of the important sectors within the member states. A formal consultation mechanism is vital to the protection of human rights in the region and to the creation of a more people-centred ASEAN.\r\n\r\n<strong><em>*Dr James Gomez and Dr Robin Ramcharan are authors of the paper “The Protection of Human Rights in Southeast Asia: Improving the Effectiveness of Civil Society Advocacy”.</em> </strong>', 'ASEAN needs formal civil society engagement mechanism on human rights', 'Written by Dr. James Gomez and Dr. Robin Ramcharan, this article first appeared on 19 November 2012 in The Malaysian Insider.', 'publish', 'closed', 'closed', '', 'asean-needs-formal-civil-society-engagement-mechanism-on-human-rights', '', '', '2016-02-15 08:56:55', '2016-02-15 08:56:55', '', 0, 'http://asiacentre.co.th/?p=2367', 0, 'post', '', 0),
(2369, 3, '2016-02-15 08:03:53', '2016-02-15 08:03:53', '<em>James Gomez and Robin Ramcharan</em>\r\n\r\n19 November 2012, The Malaysian Insider\r\n\r\nUnless appropriate formal and equitable engagement mechanisms are put in place, civil society will be not be in a position to effectively advocate for and ensure the protection of human rights in the region. This is the lesson to be gleaned from the adoption of the ASEAN Human Rights Declaration (AHRD) yesterday (November 18) during the ASEAN Summit in Phnom Penh, Cambodia.\r\n\r\nThe inability of civil society organisations (CSOs) to meaningfully engage with members of ASEAN over the establishment of institutional and normative human rights frameworks to date explains the limited effectiveness of their advocacy in securing a real protection mechanism for the people of ASEAN.\r\n\r\nMuch of the discussion emerging from yesterday’s release of AHRD has focused on the criticism by CSOs over the lack of adherence to international human rights standards and the rejoinder by ASEAN governmental representative that the tone of the current AHRD is what is politically feasible now within the regional grouping. But the root problem remains the lack of access of CSOs to the inter-governmental process that has crafted institutional mechanisms and the AHRD.\r\n\r\nOver the last two years, CSOs seeking to advance the protection of human rights in the nascent ASEAN human rights regime have been confronted with a regional association and member governments that are still deeply wedded to the principle of non-interference and the primacy of national laws.\r\n\r\nBeginning with the ASEAN Charter in 2008, which promised the establishment of a human rights body, CSOs have been pressuring member governments to adopt a mechanism that would speak to international standards and include a protection mechanism. At each step towards formalising a regional mechanism, for example in 2009 in the run up to the drafting of the Terms of Reference for the AICHR and now in 2012 in the drafting of AHRD, CSOs have tried their level best to engage with ASEAN but in vain.\r\n\r\nOn the adoption of the ADHR in Phnom Penh on November 18, CSO criticisms of the declaration continued unabated. While Singapore’s Representative to the AICHR, Chang Heng Chee, hailed the advent of the “peer-review” mechanism and the ADHR as “the best that could be done” in the social and political context, the CSO exclusion from the process of crafting a human rights regime remains a blatant fact.\r\n\r\nSome 60 CSOs wrote to ASEAN leaders requesting the postponement of the signing given serious flaws in the document. Echoing strongly their comments, the UN High Commissioner for Human Rights, Navi Pillay, also called for the same and has stated: “I am surprised and disappointed that the draft declaration has not been made public and that civil society has not been consulted in the drafting of the document.”\r\n\r\nPoignant criticisms have pointed to AHRD failings to meet existing international standards and the risks of creating a sub-standard level of rights protection in the region.\r\n\r\nPillay has cited as an example the provision on the right to life which, she said, should not be contingent on domestic laws that can be used to justify state-sponsored violence. Further, ASEAN governments want the enjoyment of rights to be balanced with the “performance of duties” and be subject to “national and regional contexts”.\r\n\r\nRights in the region therefore stand to be restricted on a wide range of grounds, including “national security” and “public morality”. The declaration is further criticised for having too many loopholes that may permit states to bypass international standards. Even Surin Pitsuwan, speaking at the ASEAN Summit in Phnom Penh, admitted: “This document can be improved upon.”\r\n\r\nOn such substantive matters critical to the well-being of all ASEAN citizens, CSOs have been confronted with ASEAN member-states’ strategy of selective and limited engagement with CSOs to date over the establishment of a human rights regime in the region. The entire project of crafting a human rights regime is pursued purely as an inter-governmental activity.\r\n\r\nWith no institutionalised mechanism for consultation, CSO engagement has only been accommodated on a piece-meal basis and only because of the tireless advocacy, persistence and pressure by regional CSOs. This state of affairs has neutralised CSOs’ ability to advocate successfully for the protection of human rights in the region.\r\n\r\nSuch a purely inter-governmental approach is entirely out of step with how inter-governmental organisations such as the UN, the EU and the OAS conduct their own inter-governmental activities. In those mechanisms civil society is mainstreamed into the human rights processes.\r\n\r\nIn addition to concern over core substantive dilemmas — the lack of real protection of human rights and the failure to meet international standards — the real subtext is the fact that civil society has not been mainstreamed as it should be. Lack of such mainstreaming undermines ASEAN’s own call for a more people-centred community.\r\n\r\nCivil society organisations, which have historically played a vital role in advancing the protection of human rights globally, and the media (traditional and new), must continue and intensify their push for more transparency in the ASEAN human rights regime, for the respect of international commitments already binding upon ASEAN states, for the respect for universal standards under the UN Charter and the Universal Declaration of Human Rights and for real protection of fundamental rights.\r\n\r\nWhen it comes to the development of human rights in the region, the lack of genuine consultation with CSOs by ASEAN’s member governments reflects the marginalisation of one of the important sectors within the member states. A formal consultation mechanism is vital to the protection of human rights in the region and to the creation of a more people-centred ASEAN.\r\n\r\n<strong><em>*Dr James Gomez and Dr Robin Ramcharan are authors of the paper “The Protection of Human Rights in Southeast Asia: Improving the Effectiveness of Civil Society Advocacy”.</em> </strong>', 'ASEAN needs formal civil society engagement mechanism on human rights', '', 'inherit', 'closed', 'closed', '', '2367-revision-v1', '', '', '2016-02-15 08:03:53', '2016-02-15 08:03:53', '', 2367, 'http://asiacentre.co.th/other/2367-revision-v1/', 0, 'revision', '', 0),
(2370, 3, '2016-02-15 08:50:03', '2016-02-15 08:50:03', '<img class="wp-image-2345 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12108978_1065266116825949_7572381867275093488_n.jpg" alt="12108978_1065266116825949_7572381867275093488_n" width="199" height="149" />Asia Centre hosted Institute of Human Rights and Peace Studies, Mahidol University student Yasuyuki Kato on 19th October 2015. Kato presented his thesis; "Irregular Foreigners'' Right to Health in Japan: An Analysis from the Perspectives of the International Covenant on Economic, Social and Cultural Rights".\r\n\r\n<img class="wp-image-2344 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12118729_1065266103492617_3215442545566282906_n.jpg" alt="12118729_1065266103492617_3215442545566282906_n" width="221" height="150" /><img class="wp-image-2343 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12140656_1065266113492616_5681783030573671012_n.jpg" alt="12140656_1065266113492616_5681783030573671012_n" width="198" height="148" />Kato''s research provided insight into some of the challenges that irregular migrants in Japan face when accessing healthcare services. The seminar also discussed the duties of the Japanese government with regards to the provision of adequate healthcare services as well as their differentiated obligations towards citizens and non-citizens.', 'Irregular Foreigners'' Right to Health in Japan', '', 'inherit', 'closed', 'closed', '', '2342-revision-v1', '', '', '2016-02-15 08:50:03', '2016-02-15 08:50:03', '', 2342, 'http://asiacentre.co.th/other/2342-revision-v1/', 0, 'revision', '', 0),
(2371, 3, '2016-02-15 08:55:26', '2016-02-15 08:55:26', 'Unless appropriate formal and equitable engagement mechanisms are put in place, civil society will be not be in a position to effectively advocate for and ensure the protection of human rights in the region. This is the lesson to be gleaned from the adoption of the ASEAN Human Rights Declaration (AHRD) yesterday (November 18) during the ASEAN Summit in Phnom Penh, Cambodia.\n\nThe inability of civil society organisations (CSOs) to meaningfully engage with members of ASEAN over the establishment of institutional and normative human rights frameworks to date explains the limited effectiveness of their advocacy in securing a real protection mechanism for the people of ASEAN.\n\nMuch of the discussion emerging from yesterday’s release of AHRD has focused on the criticism by CSOs over the lack of adherence to international human rights standards and the rejoinder by ASEAN governmental representative that the tone of the current AHRD is what is politically feasible now within the regional grouping. But the root problem remains the lack of access of CSOs to the inter-governmental process that has crafted institutional mechanisms and the AHRD.\n\nOver the last two years, CSOs seeking to advance the protection of human rights in the nascent ASEAN human rights regime have been confronted with a regional association and member governments that are still deeply wedded to the principle of non-interference and the primacy of national laws.\n\nBeginning with the ASEAN Charter in 2008, which promised the establishment of a human rights body, CSOs have been pressuring member governments to adopt a mechanism that would speak to international standards and include a protection mechanism. At each step towards formalising a regional mechanism, for example in 2009 in the run up to the drafting of the Terms of Reference for the AICHR and now in 2012 in the drafting of AHRD, CSOs have tried their level best to engage with ASEAN but in vain.\n\nOn the adoption of the ADHR in Phnom Penh on November 18, CSO criticisms of the declaration continued unabated. While Singapore’s Representative to the AICHR, Chang Heng Chee, hailed the advent of the “peer-review” mechanism and the ADHR as “the best that could be done” in the social and political context, the CSO exclusion from the process of crafting a human rights regime remains a blatant fact.\n\nSome 60 CSOs wrote to ASEAN leaders requesting the postponement of the signing given serious flaws in the document. Echoing strongly their comments, the UN High Commissioner for Human Rights, Navi Pillay, also called for the same and has stated: “I am surprised and disappointed that the draft declaration has not been made public and that civil society has not been consulted in the drafting of the document.”\n\nPoignant criticisms have pointed to AHRD failings to meet existing international standards and the risks of creating a sub-standard level of rights protection in the region.\n\nPillay has cited as an example the provision on the right to life which, she said, should not be contingent on domestic laws that can be used to justify state-sponsored violence. Further, ASEAN governments want the enjoyment of rights to be balanced with the “performance of duties” and be subject to “national and regional contexts”.\n\nRights in the region therefore stand to be restricted on a wide range of grounds, including “national security” and “public morality”. The declaration is further criticised for having too many loopholes that may permit states to bypass international standards. Even Surin Pitsuwan, speaking at the ASEAN Summit in Phnom Penh, admitted: “This document can be improved upon.”\n\nOn such substantive matters critical to the well-being of all ASEAN citizens, CSOs have been confronted with ASEAN member-states’ strategy of selective and limited engagement with CSOs to date over the establishment of a human rights regime in the region. The entire project of crafting a human rights regime is pursued purely as an inter-governmental activity.\n\nWith no institutionalised mechanism for consultation, CSO engagement has only been accommodated on a piece-meal basis and only because of the tireless advocacy, persistence and pressure by regional CSOs. This state of affairs has neutralised CSOs’ ability to advocate successfully for the protection of human rights in the region.\n\nSuch a purely inter-governmental approach is entirely out of step with how inter-governmental organisations such as the UN, the EU and the OAS conduct their own inter-governmental activities. In those mechanisms civil society is mainstreamed into the human rights processes.\n\nIn addition to concern over core substantive dilemmas — the lack of real protection of human rights and the failure to meet international standards — the real subtext is the fact that civil society has not been mainstreamed as it should be. Lack of such mainstreaming undermines ASEAN’s own call for a more people-centred community.\n\nCivil society organisations, which have historically played a vital role in advancing the protection of human rights globally, and the media (traditional and new), must continue and intensify their push for more transparency in the ASEAN human rights regime, for the respect of international commitments already binding upon ASEAN states, for the respect for universal standards under the UN Charter and the Universal Declaration of Human Rights and for real protection of fundamental rights.\n\nWhen it comes to the development of human rights in the region, the lack of genuine consultation with CSOs by ASEAN’s member governments reflects the marginalisation of one of the important sectors within the member states. A formal consultation mechanism is vital to the protection of human rights in the region and to the creation of a more people-centred ASEAN.\n\n<strong><em>*Dr James Gomez and Dr Robin Ramcharan are authors of the paper “The Protection of Human Rights in Southeast Asia: Improving the Effectiveness of Civil Society Advocacy”.</em> </strong>', 'ASEAN needs formal civil society engagement mechanism on human rights', 'Written by Dr. James Gomez and Dr. Robin Ramcharan, this article first appeared on 19 November 2012 in The Malaysian Insider.', 'inherit', 'closed', 'closed', '', '2367-autosave-v1', '', '', '2016-02-15 08:55:26', '2016-02-15 08:55:26', '', 2367, 'http://asiacentre.co.th/other/2367-autosave-v1/', 0, 'revision', '', 0),
(2372, 3, '2016-02-15 08:56:11', '2016-02-15 08:56:11', 'Unless appropriate formal and equitable engagement mechanisms are put in place, civil society will be not be in a position to effectively advocate for and ensure the protection of human rights in the region. This is the lesson to be gleaned from the adoption of the ASEAN Human Rights Declaration (AHRD) yesterday (November 18) during the ASEAN Summit in Phnom Penh, Cambodia.\r\n\r\nThe inability of civil society organisations (CSOs) to meaningfully engage with members of ASEAN over the establishment of institutional and normative human rights frameworks to date explains the limited effectiveness of their advocacy in securing a real protection mechanism for the people of ASEAN.\r\n\r\nMuch of the discussion emerging from yesterday’s release of AHRD has focused on the criticism by CSOs over the lack of adherence to international human rights standards and the rejoinder by ASEAN governmental representative that the tone of the current AHRD is what is politically feasible now within the regional grouping. But the root problem remains the lack of access of CSOs to the inter-governmental process that has crafted institutional mechanisms and the AHRD.\r\n\r\nOver the last two years, CSOs seeking to advance the protection of human rights in the nascent ASEAN human rights regime have been confronted with a regional association and member governments that are still deeply wedded to the principle of non-interference and the primacy of national laws.\r\n\r\nBeginning with the ASEAN Charter in 2008, which promised the establishment of a human rights body, CSOs have been pressuring member governments to adopt a mechanism that would speak to international standards and include a protection mechanism. At each step towards formalising a regional mechanism, for example in 2009 in the run up to the drafting of the Terms of Reference for the AICHR and now in 2012 in the drafting of AHRD, CSOs have tried their level best to engage with ASEAN but in vain.\r\n\r\nOn the adoption of the ADHR in Phnom Penh on November 18, CSO criticisms of the declaration continued unabated. While Singapore’s Representative to the AICHR, Chang Heng Chee, hailed the advent of the “peer-review” mechanism and the ADHR as “the best that could be done” in the social and political context, the CSO exclusion from the process of crafting a human rights regime remains a blatant fact.\r\n\r\nSome 60 CSOs wrote to ASEAN leaders requesting the postponement of the signing given serious flaws in the document. Echoing strongly their comments, the UN High Commissioner for Human Rights, Navi Pillay, also called for the same and has stated: “I am surprised and disappointed that the draft declaration has not been made public and that civil society has not been consulted in the drafting of the document.”\r\n\r\nPoignant criticisms have pointed to AHRD failings to meet existing international standards and the risks of creating a sub-standard level of rights protection in the region.\r\n\r\nPillay has cited as an example the provision on the right to life which, she said, should not be contingent on domestic laws that can be used to justify state-sponsored violence. Further, ASEAN governments want the enjoyment of rights to be balanced with the “performance of duties” and be subject to “national and regional contexts”.\r\n\r\nRights in the region therefore stand to be restricted on a wide range of grounds, including “national security” and “public morality”. The declaration is further criticised for having too many loopholes that may permit states to bypass international standards. Even Surin Pitsuwan, speaking at the ASEAN Summit in Phnom Penh, admitted: “This document can be improved upon.”\r\n\r\nOn such substantive matters critical to the well-being of all ASEAN citizens, CSOs have been confronted with ASEAN member-states’ strategy of selective and limited engagement with CSOs to date over the establishment of a human rights regime in the region. The entire project of crafting a human rights regime is pursued purely as an inter-governmental activity.\r\n\r\nWith no institutionalised mechanism for consultation, CSO engagement has only been accommodated on a piece-meal basis and only because of the tireless advocacy, persistence and pressure by regional CSOs. This state of affairs has neutralised CSOs’ ability to advocate successfully for the protection of human rights in the region.\r\n\r\nSuch a purely inter-governmental approach is entirely out of step with how inter-governmental organisations such as the UN, the EU and the OAS conduct their own inter-governmental activities. In those mechanisms civil society is mainstreamed into the human rights processes.\r\n\r\nIn addition to concern over core substantive dilemmas — the lack of real protection of human rights and the failure to meet international standards — the real subtext is the fact that civil society has not been mainstreamed as it should be. Lack of such mainstreaming undermines ASEAN’s own call for a more people-centred community.\r\n\r\nCivil society organisations, which have historically played a vital role in advancing the protection of human rights globally, and the media (traditional and new), must continue and intensify their push for more transparency in the ASEAN human rights regime, for the respect of international commitments already binding upon ASEAN states, for the respect for universal standards under the UN Charter and the Universal Declaration of Human Rights and for real protection of fundamental rights.\r\n\r\nWhen it comes to the development of human rights in the region, the lack of genuine consultation with CSOs by ASEAN’s member governments reflects the marginalisation of one of the important sectors within the member states. A formal consultation mechanism is vital to the protection of human rights in the region and to the creation of a more people-centred ASEAN.\r\n\r\n<strong><em>*Dr James Gomez and Dr Robin Ramcharan are authors of the paper “The Protection of Human Rights in Southeast Asia: Improving the Effectiveness of Civil Society Advocacy”.</em> </strong>', 'ASEAN needs formal civil society engagement mechanism on human rights', 'Written by Dr. James Gomez and Dr. Robin Ramcharan, this article first appeared on 19 November 2012 in The Malaysian Insider.', 'inherit', 'closed', 'closed', '', '2367-revision-v1', '', '', '2016-02-15 08:56:11', '2016-02-15 08:56:11', '', 2367, 'http://asiacentre.co.th/other/2367-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2373, 3, '2016-02-15 09:17:57', '2016-02-15 09:17:57', 'ASEAN’s evolving human rights regime is shaped by three competing discourses. These are the human rights policies of national governments, advocacy positions promoted by both global and local civil society and the call for alignment with international human rights standards and procedures by inter-governmental organizations.\n\nIn this contest, the national governmental discourse has significantly impacted the tone of democracy and human rights now etched onto key documents such as the ASEAN Charter, ASEAN Inter-Governmental Commission of Human Rights (AICHR) Terms of Reference (TOR) and ASEAN Human Rights Declaration (AHRD). It continues to do so as the human rights regime evolves.\n\nThe result thus far, is a rather weak “protection” regime within ASEAN’s human rights framework.\n\nIn Southeast Asia, these three discourses offer two approaches to protection. First is “promotion,” based on the traditional, consensual “ASEAN way” – this is the discourse of national governments. Second is “protection,” based on quasi-judicial processes that also involve civil society and that engage domestic judicial authorities in seeking redress and remedies for victims of violations of rights – this is the discourse of local and global civil society and inter-governmental organizations.\n\nThe current human rights regime in Southeast Asia evolved following the 1993 Vienna Conference at which all States reaffirmed the universality of human rights. Concerted grassroots and international pressure contributed to moving Southeast Asian governments toward the current framework. Throughout the process, from 1993 to the present, these “universal” standards have found their way, albeit reluctantly, into ASEAN’s key documents pertaining to democracy and human rights.\n\nOfficial documents and statements from ASEAN, its member states, the AICHR, civil society actors and documents submitted to the Universal Periodic Review, Office of the High Commission of Human Rights (OHCHR) and the United Nations reveal a tension between “promotion” and “protection.”\n\nA review of the ASEAN Charter, AICHR’s TOR and the AHRD shows that since 1993 the development of a ‘protection” regime within AICHR has been influenced by the “ASEAN way” and ASEAN diplomatic culture that can be ascertained through some key practices.\n\nOne, a majority of AICHR representatives appear to act on behalf of their governments as opposed to advancing a credible peer review human rights system. Moreover, some have not had the requisite training.\n\nTwo, civil society organizations advocating for a robust protection system were consulted minimally on the margins and essentially excluded from the different formative stages of the ASEAN human rights regime.\n\nThree, while ASEAN states engage with international human rights monitoring systems, however grudgingly, their adherence to universal standards leaves a lot to be desired.\n\nFinally, regime security and power preservation take precedence over human rights for the region’s incumbent political elites.\n\nThe three discourses highlighted above represent Southeast Asia’s engagement with global human rights discourse.\n\nThe discourse from national governments as it pertains to human rights protection has resulted in a watered down version of key democracy and human rights related instruments in ASEAN when compared with other regions.\n\nOverall these competing discourses reveal Southeast Asia’s slow progress towards a more liberal democratic form of governance and rule of law as enshrined in international human rights standards.\n\nNevertheless, given that the AHRD and AICHR are “home-grown,” ASEAN governments cannot in future claim that human rights are an external imposition.\n\nAnalysts of the development of regional human right mechanisms need to take note of these discourses, in particular the counter-discourse from national governments, and their impact on the implementation of a protection mechanism within the regional human rights framework.\n\n<em><strong>Drs. James Gomez and Robin Ramcharan</strong> are co-authors of “Evaluating Competing ‘Democratic’ Discourses: The Impact on Human Rights Protection in Southeast Asia” in the Journal of Current Southeast Asian Affairs, (Vol 33, No. 3). <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/" target="_blank">Download the document here</a>.</em>', 'The ASEAN Way and Human Rights', 'The  ASEAN way affects the protection aspect of human rights in Dr James Gomez and Dr Robin Ramcharan, this article first appeared on 19 February 2015 in New Mandala.', 'inherit', 'closed', 'closed', '', '2363-autosave-v1', '', '', '2016-02-15 09:17:57', '2016-02-15 09:17:57', '', 2363, 'http://asiacentre.co.th/other/2363-autosave-v1/', 0, 'revision', '', 0),
(2374, 3, '2016-02-15 08:59:56', '2016-02-15 08:59:56', 'ASEAN’s evolving human rights regime is shaped by three competing discourses. These are the human rights policies of national governments, advocacy positions promoted by both global and local civil society and the call for alignment with international human rights standards and procedures by inter-governmental organizations.\r\n\r\nIn this contest, the national governmental discourse has significantly impacted the tone of democracy and human rights now etched onto key documents such as the ASEAN Charter, ASEAN Inter-Governmental Commission of Human Rights (AICHR) Terms of Reference (TOR) and ASEAN Human Rights Declaration (AHRD). It continues to do so as the human rights regime evolves.\r\n\r\nThe result thus far, is a rather weak “protection” regime within ASEAN’s human rights framework.\r\n\r\nIn Southeast Asia, these three discourses offer two approaches to protection. First is “promotion,” based on the traditional, consensual “ASEAN way” – this is the discourse of national governments. Second is “protection,” based on quasi-judicial processes that also involve civil society and that engage domestic judicial authorities in seeking redress and remedies for victims of violations of rights – this is the discourse of local and global civil society and inter-governmental organizations.\r\n\r\nThe current human rights regime in Southeast Asia evolved following the 1993 Vienna Conference at which all States reaffirmed the universality of human rights. Concerted grassroots and international pressure contributed to moving Southeast Asian governments toward the current framework. Throughout the process, from 1993 to the present, these “universal” standards have found their way, albeit reluctantly, into ASEAN’s key documents pertaining to democracy and human rights.\r\n\r\nOfficial documents and statements from ASEAN, its member states, the AICHR, civil society actors and documents submitted to the Universal Periodic Review, Office of the High Commission of Human Rights (OHCHR) and the United Nations reveal a tension between “promotion” and “protection.”\r\n\r\nA review of the ASEAN Charter, AICHR’s TOR and the AHRD shows that since 1993 the development of a ‘protection” regime within AICHR has been influenced by the “ASEAN way” and ASEAN diplomatic culture that can be ascertained through some key practices.\r\n\r\nOne, a majority of AICHR representatives appear to act on behalf of their governments as opposed to advancing a credible peer review human rights system. Moreover, some have not had the requisite training.\r\n\r\nTwo, civil society organizations advocating for a robust protection system were consulted minimally on the margins and essentially excluded from the different formative stages of the ASEAN human rights regime.\r\n\r\nThree, while ASEAN states engage with international human rights monitoring systems, however grudgingly, their adherence to universal standards leaves a lot to be desired.\r\n\r\nFinally, regime security and power preservation take precedence over human rights for the region’s incumbent political elites.\r\n\r\nThe three discourses highlighted above represent Southeast Asia’s engagement with global human rights discourse.\r\n\r\nThe discourse from national governments as it pertains to human rights protection has resulted in a watered down version of key democracy and human rights related instruments in ASEAN when compared with other regions.\r\n\r\nOverall these competing discourses reveal Southeast Asia’s slow progress towards a more liberal democratic form of governance and rule of law as enshrined in international human rights standards.\r\n\r\nNevertheless, given that the AHRD and AICHR are “home-grown,” ASEAN governments cannot in future claim that human rights are an external imposition.\r\n\r\nAnalysts of the development of regional human right mechanisms need to take note of these discourses, in particular the counter-discourse from national governments, and their impact on the implementation of a protection mechanism within the regional human rights framework.\r\n\r\n<em><strong>Drs. James Gomez and Robin Ramcharan</strong> are co-authors of “Evaluating Competing ‘Democratic’ Discourses: The Impact on Human Rights Protection in Southeast Asia” in the Journal of Current Southeast Asian Affairs, (Vol 33, No. 3). <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/" target="_blank">Download the document here</a>.</em>', 'The ASEAN Way and Human Rights', 'Written by Dr James Gomez and Dr Robin Ramcharan, this articles first appeared on 19 February 2015 in New Mandala.', 'inherit', 'closed', 'closed', '', '2363-revision-v1', '', '', '2016-02-15 08:59:56', '2016-02-15 08:59:56', '', 2363, 'http://asiacentre.co.th/other/2363-revision-v1/', 0, 'revision', '', 0),
(2375, 3, '2016-02-15 09:01:39', '2016-02-15 09:01:39', 'Southeast Asia is marked by a fragmented and shifting state of democratic development. Much of this fragmentation can be explained by conflict over political values concerning the choice of governance systems, degree of participation and level of accountability.\r\n\r\nIn ASEAN, it is this lack of shared “democratic” values that has impacted the protection capacity of the ASEAN Inter-Governmental Commission of Human Rights (AICHR). This is the principal finding of a special issue of the <em>Journal of Current Southeast Asian Affairs</em> titled “Democracy and Human Rights in Southeast Asia”.\r\n\r\nPublished by the German Institute of Global and Area Studies’ Institute of Asian Studies, this new volume brings together six researchers who examine how ASEAN’s political framework shaped the establishment of the region’s human rights mechanism.\r\n\r\nSince the 2007 Charter, ASEAN has been pursing democratic forms of governance, rule of law and the attendant fundamental human rights through “community-building” in many areas. However a “community” presupposes the development of common values among its member-states and among its citizens.\r\n\r\nBut the papers in the volume reveal that ASEAN’s people-centered approach to regional integration is problematic due to the absence in practice of a community firmly anchored to democratic principles. In fact, member states had divergent reasons for adopting the Charter and the AICHR.\r\n\r\nFor instance, weaker and less secure states, with the authoritarian and military regimes, are not comfortable with the push towards a human rights regime that is aligned to international standards.\r\n\r\nAs a result, the adoption of democratic terminology in its documents and the establishment of a human right mechanism has not allowed ASEAN to move away from its non-interference position to a more interventionist stance among the member states.\r\n\r\nCloser investigation shows that unless the quality of democracy in all ten countries improve through the adoption of shared democratic values, the human rights regime is unlikely to improve substantially. On the academic front existing perspectives from realist, constructivist and acculturalist perspectives preclude a single theoretical explanation.\r\n\r\nThe region is no exception to the global march of democracy that has taken place in recent decades but in the case of the protection capacity of ASEAN’s human rights regime, distinctions between democracy in form and substance must be noted.\r\n\r\nThe papers in the collection are aimed at policy makers, practitioners and students of politics, democracy and human rights in Asia and elsewhere. It is intended to stimulate further debate and discussion on ASEAN’s evolving human rights regime.\r\n\r\n<strong><em>James Gomez and Robin Ramcharan co-edited the latest issue of the Journal of Current Southeast Asian Affairs entitled “Democracy and Human Rights in Southeast Asia”. All papers in the collection are available for download at<a href="http://www.giga-hamburg.de/en/news/asean-democracy">http://www.giga-hamburg.de/en/news/asean-democracy</a></em></strong>', 'Democratic values and human rights in ASEAN', 'Written by Dr James Gomez and Dr Robin Ramcharan, this articles first appeared on 9 February 2015 in the Asian Sentinel.', 'inherit', 'closed', 'closed', '', '2365-revision-v1', '', '', '2016-02-15 09:01:39', '2016-02-15 09:01:39', '', 2365, 'http://asiacentre.co.th/other/2365-revision-v1/', 0, 'revision', '', 0),
(2376, 3, '2016-02-15 09:02:30', '2016-02-15 09:02:30', 'ASEAN’s evolving human rights regime is shaped by three competing discourses. These are the human rights policies of national governments, advocacy positions promoted by both global and local civil society and the call for alignment with international human rights standards and procedures by inter-governmental organizations.\r\n\r\nIn this contest, the national governmental discourse has significantly impacted the tone of democracy and human rights now etched onto key documents such as the ASEAN Charter, ASEAN Inter-Governmental Commission of Human Rights (AICHR) Terms of Reference (TOR) and ASEAN Human Rights Declaration (AHRD). It continues to do so as the human rights regime evolves.\r\n\r\nThe result thus far, is a rather weak “protection” regime within ASEAN’s human rights framework.\r\n\r\nIn Southeast Asia, these three discourses offer two approaches to protection. First is “promotion,” based on the traditional, consensual “ASEAN way” – this is the discourse of national governments. Second is “protection,” based on quasi-judicial processes that also involve civil society and that engage domestic judicial authorities in seeking redress and remedies for victims of violations of rights – this is the discourse of local and global civil society and inter-governmental organizations.\r\n\r\nThe current human rights regime in Southeast Asia evolved following the 1993 Vienna Conference at which all States reaffirmed the universality of human rights. Concerted grassroots and international pressure contributed to moving Southeast Asian governments toward the current framework. Throughout the process, from 1993 to the present, these “universal” standards have found their way, albeit reluctantly, into ASEAN’s key documents pertaining to democracy and human rights.\r\n\r\nOfficial documents and statements from ASEAN, its member states, the AICHR, civil society actors and documents submitted to the Universal Periodic Review, Office of the High Commission of Human Rights (OHCHR) and the United Nations reveal a tension between “promotion” and “protection.”\r\n\r\nA review of the ASEAN Charter, AICHR’s TOR and the AHRD shows that since 1993 the development of a ‘protection” regime within AICHR has been influenced by the “ASEAN way” and ASEAN diplomatic culture that can be ascertained through some key practices.\r\n\r\nOne, a majority of AICHR representatives appear to act on behalf of their governments as opposed to advancing a credible peer review human rights system. Moreover, some have not had the requisite training.\r\n\r\nTwo, civil society organizations advocating for a robust protection system were consulted minimally on the margins and essentially excluded from the different formative stages of the ASEAN human rights regime.\r\n\r\nThree, while ASEAN states engage with international human rights monitoring systems, however grudgingly, their adherence to universal standards leaves a lot to be desired.\r\n\r\nFinally, regime security and power preservation take precedence over human rights for the region’s incumbent political elites.\r\n\r\nThe three discourses highlighted above represent Southeast Asia’s engagement with global human rights discourse.\r\n\r\nThe discourse from national governments as it pertains to human rights protection has resulted in a watered down version of key democracy and human rights related instruments in ASEAN when compared with other regions.\r\n\r\nOverall these competing discourses reveal Southeast Asia’s slow progress towards a more liberal democratic form of governance and rule of law as enshrined in international human rights standards.\r\n\r\nNevertheless, given that the AHRD and AICHR are “home-grown,” ASEAN governments cannot in future claim that human rights are an external imposition.\r\n\r\nAnalysts of the development of regional human right mechanisms need to take note of these discourses, in particular the counter-discourse from national governments, and their impact on the implementation of a protection mechanism within the regional human rights framework.\r\n\r\n<em><strong>Drs. James Gomez and Robin Ramcharan</strong> are co-authors of “Evaluating Competing ‘Democratic’ Discourses: The Impact on Human Rights Protection in Southeast Asia” in the Journal of Current Southeast Asian Affairs, (Vol 33, No. 3). <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/" target="_blank">Download the document here</a>.</em>', 'The ASEAN Way and Human Rights', 'Written by Dr James Gomez and Dr Robin Ramcharan, this article first appeared on 19 February 2015 in New Mandala.', 'inherit', 'closed', 'closed', '', '2363-revision-v1', '', '', '2016-02-15 09:02:30', '2016-02-15 09:02:30', '', 2363, 'http://asiacentre.co.th/other/2363-revision-v1/', 0, 'revision', '', 0),
(2377, 3, '2016-02-15 09:11:31', '2016-02-15 09:11:31', 'Southeast Asia is marked by a fragmented and shifting state of democratic development. Much of this fragmentation can be explained by conflict over political values concerning the choice of governance systems, degree of participation and level of accountability.\r\n\r\nIn ASEAN, it is this lack of shared “democratic” values that has impacted the protection capacity of the ASEAN Inter-Governmental Commission of Human Rights (AICHR). This is the principal finding of a special issue of the <em>Journal of Current Southeast Asian Affairs</em> titled “Democracy and Human Rights in Southeast Asia”.\r\n\r\nPublished by the German Institute of Global and Area Studies’ Institute of Asian Studies, this new volume brings together six researchers who examine how ASEAN’s political framework shaped the establishment of the region’s human rights mechanism.\r\n\r\nSince the 2007 Charter, ASEAN has been pursing democratic forms of governance, rule of law and the attendant fundamental human rights through “community-building” in many areas. However a “community” presupposes the development of common values among its member-states and among its citizens.\r\n\r\nBut the papers in the volume reveal that ASEAN’s people-centered approach to regional integration is problematic due to the absence in practice of a community firmly anchored to democratic principles. In fact, member states had divergent reasons for adopting the Charter and the AICHR.\r\n\r\nFor instance, weaker and less secure states, with the authoritarian and military regimes, are not comfortable with the push towards a human rights regime that is aligned to international standards.\r\n\r\nAs a result, the adoption of democratic terminology in its documents and the establishment of a human right mechanism has not allowed ASEAN to move away from its non-interference position to a more interventionist stance among the member states.\r\n\r\nCloser investigation shows that unless the quality of democracy in all ten countries improve through the adoption of shared democratic values, the human rights regime is unlikely to improve substantially. On the academic front existing perspectives from realist, constructivist and acculturalist perspectives preclude a single theoretical explanation.\r\n\r\nThe region is no exception to the global march of democracy that has taken place in recent decades but in the case of the protection capacity of ASEAN’s human rights regime, distinctions between democracy in form and substance must be noted.\r\n\r\nThe papers in the collection are aimed at policy makers, practitioners and students of politics, democracy and human rights in Asia and elsewhere. It is intended to stimulate further debate and discussion on ASEAN’s evolving human rights regime.\r\n\r\n<strong><em>James Gomez and Robin Ramcharan co-edited the latest issue of the Journal of Current Southeast Asian Affairs entitled “Democracy and Human Rights in Southeast Asia”. All papers in the collection are available for download at<a href="http://www.giga-hamburg.de/en/news/asean-democracy">http://www.giga-hamburg.de/en/news/asean-democracy</a></em></strong>', 'Democratic values and human rights in ASEAN', 'Written by Dr James Gomez and Dr Robin Ramcharan, this article first appeared on 9 February 2015 in the Asian Sentinel.', 'inherit', 'closed', 'closed', '', '2365-revision-v1', '', '', '2016-02-15 09:11:31', '2016-02-15 09:11:31', '', 2365, 'http://asiacentre.co.th/other/2365-revision-v1/', 0, 'revision', '', 0),
(2378, 3, '2016-02-15 09:13:59', '2016-02-15 09:13:59', 'The hallmark of a good national human rights institution (NHRI) is the effective “protection” of human rights. A review of Southeast Asia’s six NHRIs shows their weak record in providing such services and their capacity to bring about redress and compensation to human rights complaints.\r\n\r\nIn the past, the region’s NHRIs received “A” ratings from the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC). Five NHRIs, except Timor- Leste, have been subject to regular reviews by the ICC for their conformity with the <a href="http://www.ohchr.org/EN/ProfessionalInterest/Pages/StatusOfNationalInstitutions.aspx">Paris Principles</a>, which provide a global standard to measure and enhance the effectiveness of NHRIs.\r\n\r\nHowever, closer scrutiny of the effectiveness of their protection roles is now warranted as the positive “ratings” of some commissions have been threatened. This was hinted at, with the ICC threatening to downgrade Malaysia’s Commission as early as 2008 due to concerns over the independence of this body.\r\n\r\nA downgrade for Malaysia remains a possibility as necessary changes to increase its investigative powers were rejected by the Government in August 2015. The rejected changes included the election of commissioners by parliament, allowing it to appear as amicus curiae — “friends of the court” — in human rights cases, and the power to visit detention centres unannounced without first seeking authorisation.\r\n\r\nIn 2015, a similar concern was raised over Thailand’s National Human Rights Commission. In early 2016, Thailand’s NHRI was downgraded due to its failure to address longstanding “functional and structural problems”. These are set to continue under military rule and amid discussions on a new constitution.\r\n\r\nWe assessed the record of NHRIs in Timor-Leste, Indonesia, Malaysia, Myanmar, Philippines, and Thailand by reviewing key documents such as annual reports, submissions to United Nations human rights mechanisms, and third-party evaluations that recorded the activity and performances of these institutions.\r\n\r\nThe assessment was spurred by the fact that the ASEAN Intergovernmental Commission on Human Rights (AICHR) created in 2010, in its current form, focuses mostly on the promotion of human rights. AICHR’s protection function, critical to a human rights mechanism, has been shown by several studies to be inadequate.\r\n\r\nGiven the emerging works on NHRIs in Asia and Southeast Asia in particular, our assessment was undertaken to determine whether ASEAN countries with NHRIs (Timor-Leste excluded) complement AICHR by filling the gap of “protection” in the regional mechanism.\r\n\r\nA review of the mandates of Southeast Asian NHRIs shows that in each country institutions were established as a result of political change to a more democratic regime, international pressure and the need to ensure human rights protection in the immediate aftermath of significant abuses.\r\n\r\nThus, the laws drafted to establish the different national institutions do seek to empower these entities to perform proper investigations of human rights abuses.\r\n\r\nWe do see some instances of Commissioners taking progressive interpretations of their mandates. However, the institutions as a whole continue to fall short regarding their protection function. We see varying degrees of protective capacity, from soft (Myanmar) to hard (Indonesia, Philippines, Malaysia, Thailand, Timor-Leste).\r\n\r\nAn examination of their performance from available primary sources over the past five years demonstrates three key findings. One, NHRIs are dependent on the political climate in each state.\r\n\r\nTwo, their quasi-judicial investigative processes are lacking in the follow-through that is necessary for the advancement of justice, not only for the parties in individual cases but more generally for the advancement of human rights consistent with international human rights standards.\r\n\r\nThree, NHRIs do not seem to be capable of securing remedies or advancing this cause for victims of violations of rights; evidence of this is lacking.\r\n\r\nThe review undertaken shows the actual practice of protection by NHRI’s leaves a lot to be desired. Just like the AICHR, the NHRIs are not yet able to perform the protection function effectively. This renders the overall human rights protection architecture in Southeast Asia rather weak and in need of improvement and enhancement.\r\n\r\nIn this context, international scrutiny of the protection of human rights in Southeast Asian States’ under the Universal Period Review (UPR) process of the UN Human Rights Council (HRC) is vital.\r\n\r\nUnder the UPR process, States submit reports on the state of human rights protection in their respective countries to the HRC, which then issues recommendations that are either “accepted” or “noted” by the state under review.\r\n\r\nOne avenue for furthering protection is monitoring of the implementation of accepted recommendations and tracking developments around those rejected recommendations arising from the UPR process.\r\n\r\nThe element of “protection” needs to align through the national, regional and international human rights framework.\r\n\r\n<strong><em>James Gomez and Robin Ramcharan are authors of “<a href="https://www.academia.edu/21642453/The_protection_capacity_of_National_human_rights_institutions_in_Southeast_Asia">The ‘protection’ capacity of national human rights institutions in Southeast Asia</a>”, February 2016, Working Paper Series, Southeast Asia Research Centre, College of Liberal Arts and Social Sciences, City University, Hong Kong.</em></strong>', 'Region’s human rights watchdogs lack bite', 'Are Southeast Asia’s national human rights institutions protecting anyone? A new report by Dr. James Gomez and Dr. Robin Ramcharan gives a bleak assessment (15 February 2016, New Mandala)', 'publish', 'closed', 'closed', '', 'regions-human-rights-watchdogs-lack-bite', '', '', '2016-02-18 06:34:25', '2016-02-18 06:34:25', '', 0, 'http://asiacentre.co.th/?p=2378', 0, 'post', '', 0),
(2379, 3, '2016-02-15 09:13:59', '2016-02-15 09:13:59', 'The hallmark of a good national human rights institution (NHRI) is the effective “protection” of human rights. A review of Southeast Asia’s six NHRIs shows their weak record in providing such services and their capacity to bring about redress and compensation to human rights complaints.\r\n\r\nIn the past, the region’s NHRIs received “A” ratings from the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC). Five NHRIs, except Timor- Leste, have been subject to regular reviews by the ICC for their conformity with the <a href="http://www.ohchr.org/EN/ProfessionalInterest/Pages/StatusOfNationalInstitutions.aspx">Paris Principles</a>, which provide a global standard to measure and enhance the effectiveness of NHRIs.\r\n\r\nHowever, closer scrutiny of the effectiveness of their protection roles is now warranted as the positive “ratings” of some commissions have been threatened. This was hinted at, with the ICC threatening to downgrade Malaysia’s Commission as early as 2008 due to concerns over the independence of this body.\r\n\r\nA downgrade for Malaysia remains a possibility as necessary changes to increase its investigative powers were rejected by the Government in August 2015. The rejected changes included the election of commissioners by parliament, allowing it to appear as amicus curiae — “friends of the court” — in human rights cases, and the power to visit detention centres unannounced without first seeking authorisation.\r\n\r\nIn 2015, a similar concern was raised over Thailand’s National Human Rights Commission. In early 2016, Thailand’s NHRI was downgraded due to its failure to address longstanding “functional and structural problems”. These are set to continue under military rule and amid discussions on a new constitution.\r\n\r\nWe assessed the record of NHRIs in Timor-Leste, Indonesia, Malaysia, Myanmar, Philippines, and Thailand by reviewing key documents such as annual reports, submissions to United Nations human rights mechanisms, and third-party evaluations that recorded the activity and performances of these institutions.\r\n\r\nThe assessment was spurred by the fact that the ASEAN Intergovernmental Commission on Human Rights (AICHR) created in 2010, in its current form, focuses mostly on the promotion of human rights. AICHR’s protection function, critical to a human rights mechanism, has been shown by several studies to be inadequate.\r\n\r\nGiven the emerging works on NHRIs in Asia and Southeast Asia in particular, our assessment was undertaken to determine whether ASEAN countries with NHRIs (Timor-Leste excluded) complement AICHR by filling the gap of “protection” in the regional mechanism.\r\n\r\nA review of the mandates of Southeast Asian NHRIs shows that in each country institutions were established as a result of political change to a more democratic regime, international pressure and the need to ensure human rights protection in the immediate aftermath of significant abuses.\r\n\r\nThus, the laws drafted to establish the different national institutions do seek to empower these entities to perform proper investigations of human rights abuses.\r\n\r\nWe do see some instances of Commissioners taking progressive interpretations of their mandates. However, the institutions as a whole continue to fall short regarding their protection function. We see varying degrees of protective capacity, from soft (Myanmar) to hard (Indonesia, Philippines, Malaysia, Thailand, Timor-Leste).\r\n\r\nAn examination of their performance from available primary sources over the past five years demonstrates three key findings. One, NHRIs are dependent on the political climate in each state.\r\n\r\nTwo, their quasi-judicial investigative processes are lacking in the follow-through that is necessary for the advancement of justice, not only for the parties in individual cases but more generally for the advancement of human rights consistent with international human rights standards.\r\n\r\nThree, NHRIs do not seem to be capable of securing remedies or advancing this cause for victims of violations of rights; evidence of this is lacking.\r\n\r\nThe review undertaken shows the actual practice of protection by NHRI’s leaves a lot to be desired. Just like the AICHR, the NHRIs are not yet able to perform the protection function effectively. This renders the overall human rights protection architecture in Southeast Asia rather weak and in need of improvement and enhancement.\r\n\r\nIn this context, international scrutiny of the protection of human rights in Southeast Asian States’ under the Universal Period Review (UPR) process of the UN Human Rights Council (HRC) is vital.\r\n\r\nUnder the UPR process, States submit reports on the state of human rights protection in their respective countries to the HRC, which then issues recommendations that are either “accepted” or “noted” by the state under review.\r\n\r\nOne avenue for furthering protection is monitoring of the implementation of accepted recommendations and tracking developments around those rejected recommendations arising from the UPR process.\r\n\r\nThe element of “protection” needs to align through the national, regional and international human rights framework.\r\n\r\n<strong><em>James Gomez and Robin Ramcharan are authors of “<a href="https://www.academia.edu/21642453/The_protection_capacity_of_National_human_rights_institutions_in_Southeast_Asia">The ‘protection’ capacity of national human rights institutions in Southeast Asia</a>”, February 2016, Working Paper Series, Southeast Asia Research Centre, College of Liberal Arts and Social Sciences, City University, Hong Kong.</em></strong>', '', 'Are Southeast Asia’s national human rights institutions protecting anyone? A new report by Dr. James Gomez and Dr. Robin Ramcharan gives a bleak assessment (15 February 2016, New Mandala)', 'inherit', 'closed', 'closed', '', '2378-revision-v1', '', '', '2016-02-15 09:13:59', '2016-02-15 09:13:59', '', 2378, 'http://asiacentre.co.th/other/2378-revision-v1/', 0, 'revision', '', 0),
(2380, 3, '2016-02-15 09:14:33', '2016-02-15 09:14:33', 'The hallmark of a good national human rights institution (NHRI) is the effective “protection” of human rights. A review of Southeast Asia’s six NHRIs shows their weak record in providing such services and their capacity to bring about redress and compensation to human rights complaints.\r\n\r\nIn the past, the region’s NHRIs received “A” ratings from the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC). Five NHRIs, except Timor- Leste, have been subject to regular reviews by the ICC for their conformity with the <a href="http://www.ohchr.org/EN/ProfessionalInterest/Pages/StatusOfNationalInstitutions.aspx">Paris Principles</a>, which provide a global standard to measure and enhance the effectiveness of NHRIs.\r\n\r\nHowever, closer scrutiny of the effectiveness of their protection roles is now warranted as the positive “ratings” of some commissions have been threatened. This was hinted at, with the ICC threatening to downgrade Malaysia’s Commission as early as 2008 due to concerns over the independence of this body.\r\n\r\nA downgrade for Malaysia remains a possibility as necessary changes to increase its investigative powers were rejected by the Government in August 2015. The rejected changes included the election of commissioners by parliament, allowing it to appear as amicus curiae — “friends of the court” — in human rights cases, and the power to visit detention centres unannounced without first seeking authorisation.\r\n\r\nIn 2015, a similar concern was raised over Thailand’s National Human Rights Commission. In early 2016, Thailand’s NHRI was downgraded due to its failure to address longstanding “functional and structural problems”. These are set to continue under military rule and amid discussions on a new constitution.\r\n\r\nWe assessed the record of NHRIs in Timor-Leste, Indonesia, Malaysia, Myanmar, Philippines, and Thailand by reviewing key documents such as annual reports, submissions to United Nations human rights mechanisms, and third-party evaluations that recorded the activity and performances of these institutions.\r\n\r\nThe assessment was spurred by the fact that the ASEAN Intergovernmental Commission on Human Rights (AICHR) created in 2010, in its current form, focuses mostly on the promotion of human rights. AICHR’s protection function, critical to a human rights mechanism, has been shown by several studies to be inadequate.\r\n\r\nGiven the emerging works on NHRIs in Asia and Southeast Asia in particular, our assessment was undertaken to determine whether ASEAN countries with NHRIs (Timor-Leste excluded) complement AICHR by filling the gap of “protection” in the regional mechanism.\r\n\r\nA review of the mandates of Southeast Asian NHRIs shows that in each country institutions were established as a result of political change to a more democratic regime, international pressure and the need to ensure human rights protection in the immediate aftermath of significant abuses.\r\n\r\nThus, the laws drafted to establish the different national institutions do seek to empower these entities to perform proper investigations of human rights abuses.\r\n\r\nWe do see some instances of Commissioners taking progressive interpretations of their mandates. However, the institutions as a whole continue to fall short regarding their protection function. We see varying degrees of protective capacity, from soft (Myanmar) to hard (Indonesia, Philippines, Malaysia, Thailand, Timor-Leste).\r\n\r\nAn examination of their performance from available primary sources over the past five years demonstrates three key findings. One, NHRIs are dependent on the political climate in each state.\r\n\r\nTwo, their quasi-judicial investigative processes are lacking in the follow-through that is necessary for the advancement of justice, not only for the parties in individual cases but more generally for the advancement of human rights consistent with international human rights standards.\r\n\r\nThree, NHRIs do not seem to be capable of securing remedies or advancing this cause for victims of violations of rights; evidence of this is lacking.\r\n\r\nThe review undertaken shows the actual practice of protection by NHRI’s leaves a lot to be desired. Just like the AICHR, the NHRIs are not yet able to perform the protection function effectively. This renders the overall human rights protection architecture in Southeast Asia rather weak and in need of improvement and enhancement.\r\n\r\nIn this context, international scrutiny of the protection of human rights in Southeast Asian States’ under the Universal Period Review (UPR) process of the UN Human Rights Council (HRC) is vital.\r\n\r\nUnder the UPR process, States submit reports on the state of human rights protection in their respective countries to the HRC, which then issues recommendations that are either “accepted” or “noted” by the state under review.\r\n\r\nOne avenue for furthering protection is monitoring of the implementation of accepted recommendations and tracking developments around those rejected recommendations arising from the UPR process.\r\n\r\nThe element of “protection” needs to align through the national, regional and international human rights framework.\r\n\r\n<strong><em>James Gomez and Robin Ramcharan are authors of “<a href="https://www.academia.edu/21642453/The_protection_capacity_of_National_human_rights_institutions_in_Southeast_Asia">The ‘protection’ capacity of national human rights institutions in Southeast Asia</a>”, February 2016, Working Paper Series, Southeast Asia Research Centre, College of Liberal Arts and Social Sciences, City University, Hong Kong.</em></strong>', 'Region’s human rights watchdogs lack bite', 'Are Southeast Asia’s national human rights institutions protecting anyone? A new report by Dr. James Gomez and Dr. Robin Ramcharan gives a bleak assessment (15 February 2016, New Mandala)', 'inherit', 'closed', 'closed', '', '2378-revision-v1', '', '', '2016-02-15 09:14:33', '2016-02-15 09:14:33', '', 2378, 'http://asiacentre.co.th/other/2378-revision-v1/', 0, 'revision', '', 0),
(2381, 3, '2016-02-15 09:18:23', '2016-02-15 09:18:23', 'ASEAN’s evolving human rights regime is shaped by three competing discourses. These are the human rights policies of national governments, advocacy positions promoted by both global and local civil society and the call for alignment with international human rights standards and procedures by inter-governmental organizations.\r\n\r\nIn this contest, the national governmental discourse has significantly impacted the tone of democracy and human rights now etched onto key documents such as the ASEAN Charter, ASEAN Inter-Governmental Commission of Human Rights (AICHR) Terms of Reference (TOR) and ASEAN Human Rights Declaration (AHRD). It continues to do so as the human rights regime evolves.\r\n\r\nThe result thus far, is a rather weak “protection” regime within ASEAN’s human rights framework.\r\n\r\nIn Southeast Asia, these three discourses offer two approaches to protection. First is “promotion,” based on the traditional, consensual “ASEAN way” – this is the discourse of national governments. Second is “protection,” based on quasi-judicial processes that also involve civil society and that engage domestic judicial authorities in seeking redress and remedies for victims of violations of rights – this is the discourse of local and global civil society and inter-governmental organizations.\r\n\r\nThe current human rights regime in Southeast Asia evolved following the 1993 Vienna Conference at which all States reaffirmed the universality of human rights. Concerted grassroots and international pressure contributed to moving Southeast Asian governments toward the current framework. Throughout the process, from 1993 to the present, these “universal” standards have found their way, albeit reluctantly, into ASEAN’s key documents pertaining to democracy and human rights.\r\n\r\nOfficial documents and statements from ASEAN, its member states, the AICHR, civil society actors and documents submitted to the Universal Periodic Review, Office of the High Commission of Human Rights (OHCHR) and the United Nations reveal a tension between “promotion” and “protection.”\r\n\r\nA review of the ASEAN Charter, AICHR’s TOR and the AHRD shows that since 1993 the development of a ‘protection” regime within AICHR has been influenced by the “ASEAN way” and ASEAN diplomatic culture that can be ascertained through some key practices.\r\n\r\nOne, a majority of AICHR representatives appear to act on behalf of their governments as opposed to advancing a credible peer review human rights system. Moreover, some have not had the requisite training.\r\n\r\nTwo, civil society organizations advocating for a robust protection system were consulted minimally on the margins and essentially excluded from the different formative stages of the ASEAN human rights regime.\r\n\r\nThree, while ASEAN states engage with international human rights monitoring systems, however grudgingly, their adherence to universal standards leaves a lot to be desired.\r\n\r\nFinally, regime security and power preservation take precedence over human rights for the region’s incumbent political elites.\r\n\r\nThe three discourses highlighted above represent Southeast Asia’s engagement with global human rights discourse.\r\n\r\nThe discourse from national governments as it pertains to human rights protection has resulted in a watered down version of key democracy and human rights related instruments in ASEAN when compared with other regions.\r\n\r\nOverall these competing discourses reveal Southeast Asia’s slow progress towards a more liberal democratic form of governance and rule of law as enshrined in international human rights standards.\r\n\r\nNevertheless, given that the AHRD and AICHR are “home-grown,” ASEAN governments cannot in future claim that human rights are an external imposition.\r\n\r\nAnalysts of the development of regional human right mechanisms need to take note of these discourses, in particular the counter-discourse from national governments, and their impact on the implementation of a protection mechanism within the regional human rights framework.\r\n\r\n<em><strong>Drs. James Gomez and Robin Ramcharan</strong> are co-authors of “Evaluating Competing ‘Democratic’ Discourses: The Impact on Human Rights Protection in Southeast Asia” in the Journal of Current Southeast Asian Affairs, (Vol 33, No. 3). <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/" target="_blank">Download the document here</a>.</em>', 'The ASEAN Way and Human Rights', 'The  ASEAN way affects the protection aspect of human rights in Southeast Asia, Dr James Gomez and Dr Robin Ramcharan, explain how. (19 February 2015, New Mandala)', 'inherit', 'closed', 'closed', '', '2363-revision-v1', '', '', '2016-02-15 09:18:23', '2016-02-15 09:18:23', '', 2363, 'http://asiacentre.co.th/other/2363-revision-v1/', 0, 'revision', '', 0),
(2382, 3, '2016-02-15 09:37:23', '2016-02-15 09:37:23', '', 'Learning', '', 'publish', 'closed', 'closed', '', 'learning', '', '', '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 0, 'http://asiacentre.co.th/?p=2382', 14, 'nav_menu_item', '', 0),
(2390, 5, '2016-02-17 04:30:37', '2016-02-17 04:30:37', '', 'upr_logo', '', 'inherit', 'closed', 'closed', '', 'upr_logo', '', '', '2016-02-17 04:30:37', '2016-02-17 04:30:37', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/upr_logo.jpg', 0, 'attachment', 'image/jpeg', 0),
(2391, 5, '2016-02-17 04:31:21', '2016-02-17 04:31:21', '', 'upr', '', 'inherit', 'closed', 'closed', '', 'upr', '', '', '2016-02-17 04:31:21', '2016-02-17 04:31:21', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/upr.jpg', 0, 'attachment', 'image/jpeg', 0),
(2392, 3, '2016-02-17 04:35:15', '2016-02-17 04:35:15', '', 'Human Rights from Creative Commons', '', 'inherit', 'closed', 'closed', '', 'human-rights-from-creative-commons', '', '', '2016-02-17 04:35:15', '2016-02-17 04:35:15', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/Human-Rights-from-Creative-Commons.jpg', 0, 'attachment', 'image/jpeg', 0),
(2393, 3, '2016-02-17 04:46:59', '2016-02-17 04:46:59', '', '640px-Four_freedoms_human_rights', '', 'inherit', 'closed', 'closed', '', '640px-four_freedoms_human_rights', '', '', '2016-02-17 04:46:59', '2016-02-17 04:46:59', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/640px-Four_freedoms_human_rights.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2394, 3, '2016-02-19 08:36:36', '2016-02-19 08:36:36', 'The UPR is a universal mechanism under the Human Rights Council that<img class="size-full wp-image-2390 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/upr_logo.jpg" alt="upr_logo" width="130" height="170" /> reviews the human rights situation in all 193 UN Member States once every four and a half years. By May 2016, all Southeast Asian states would have undergone two review cycles of their respective human rights situations under the UPR process. The region is politically diverse with member states varying in their national human rights protection systems, ratification of UN human rights instruments and level of civil society engagement. In relation to the UPR process, a key issue is how it contributes to the advancement of human rights in the region and what role it plays in relation to the ASEAN Intergovernmental Commission on Human Rights (AICHR) and national human rights institutions (NHRIs).\n<p class="remove-margin-top remove-margin-bottom"><strong>Themes</strong></p>\n<p class="remove-margin-top remove-margin-bottom">This conference seeks to critically examine the UPR process and its impact on Southeast Asian States.  Key themes that will be treated are:</p>\n<p class="remove-margin-top remove-margin-bottom">1. Effectiveness of the UPR in addressing human rights protection gaps within Southeast Asia\n2. States adherence to UPR recommendations for improving the protection capacities of AICHR</p>\n<p class="remove-margin-top remove-margin-bottom">3. States adherence to UPR recommendations for improving the protection capacities of NHRIs.</p>\n<p class="remove-margin-top remove-margin-bottom">4. Development of an intra-regional linkages to formally engage with the UPR process</p>\n<p class="remove-margin-top remove-margin-bottom">5. Challenges faced by civil society in engaging with the UPR process</p>\n<p class="remove-margin-top">6. Other related themes</p>\n<p class="remove-margin-top remove-margin-bottom"><strong>Objectives </strong>\nThis conference aims to achieve the following objectives:\nConvene researchers working on human rights in Southeast Asia\nExchange views among the authors researching the UPR process in Southeast Asia\nPublish the outcomes in a special issue journal and/or an edited book\nContribute to the academic literature on the UPR and human rights in Southeast Asia.</p>\n<strong><img class=" wp-image-2391 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/upr.jpg" alt="upr" width="319" height="212" /></strong>\n<p class="remove-margin-top remove-margin-bottom"><strong>Conference Structure</strong></p>\n<p class="remove-margin-top remove-margin-bottom">The conference will consist of thematic panels, country specific discussions and a final plenary session which will be open to civil society organisations and the academic community to facilitate knowledge sharing and networking opportunities.</p>\n&nbsp;\n\n<strong>Conference Fee</strong>\nA conference fee of USD$200 will be charged to all participant, this will go towards covering the cost of the venue, tea breaks &amp; lunch on both days and organising the conference. There will be an early bird discount rate of USD$150 for registration and full payment made before 15 August 2016.\n\n<strong>Submission Guidelines</strong>\nThose who wish to attend or present a paper are invited to submit an abstract of 300 words along with a short biographical paragraph, in English to contact@asiacentre.co.th\n\n<strong>Deadlines</strong>\nAbstract Submission: open now until 30 May 2016\nNotification of acceptance of abstracts: 15 June 2016\nPayment of conference fees: 20 June 2016 (For Early Bird Discount)\n21 June 2016 onwards (Regular Rate)\nFull paper submission: 15 August 2016\n<p class="clear-margins"><strong>Programme Outline</strong></p>\n<p class="clear-margins">Day 1 (15 September 2016): 9am to 5pm</p>\n<p class="clear-margins">Day 2 (16 September 2016): 9am to 5pm</p>\n<p class="clear-margins">Day 3 (17 September 2016): 9am to 12noon</p>\n<strong>Conveners:</strong> Professors James Gomez &amp; Robin Ramcharan\n<strong>Host:</strong> Asia Centre, Bangkok, Thailand', 'Universal Periodic Review in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2328-autosave-v1', '', '', '2016-02-19 08:36:36', '2016-02-19 08:36:36', '', 2328, 'http://asiacentre.co.th/other/2328-autosave-v1/', 0, 'revision', '', 0),
(2397, 5, '2016-02-23 09:05:05', '2016-02-23 09:05:05', '<span style="font-weight: 400;">The Writing Institute helps individuals to write effectively in the English Language for a variety of purposes, audiences, and contexts. The Institute focuses on two groups of individuals (1) students and (2) academics. Services are tailored to the needs of the individuals, whether they are native English speakers or individuals writing in English as a Second Language. </span>\n\n<span style="font-weight: 400;">Students learn skills to equip them to write research proposals, their capstone papers, independent study papers, </span><span style="font-weight: 400;">theses </span><span style="font-weight: 400;">and other assignments, while academics receive the relevant coaching to help them write </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and prepare manuscripts for academic publications.</span>\n\n<span style="font-weight: 400;">The Institute also provides editorial services for proofreading and copy editing of all types of academic documents for submission to universities and publishers. Our editors have tertiary qualifications and extensive editorial experience. We welcome drop-in consultations at the Asia Centre to discuss writing assignments as well as have written work proofread and edited. </span>\n\n&nbsp;\n\n<b>Writing Clinics</b>\n\n<b>1) For Students</b>\n\n<span style="font-weight: 400;">This is an intensive course which aims to develop and expand the academic writing skills required to produce articles, reports and dissertations in English. The course will review the fundamentals of grammar and vocabulary and will teach students to organise their ideas in language that is effective and appropriate for academic work. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. Attention will be paid to developing the skills needed to write a thesis; including crafting a thesis statement, critical reading of academic articles, research and summary skills as well as citing sources.</span>\n\n<b>2) For Academics</b>\n\n<span style="font-weight: 400;">This is a special coaching clinic for academics who are looking to improve the quality, persuasiveness and originality of their academic writing.  Participants will receive coaching in with greater clarity and purpose as well as in editing and critically reviewing their work, with a view to publication. It is suitable for academics and graduate students who are producing articles for journals, research papers for conferences as well as contributing content to books and other publications. The coaching clinic will also tackle the skills needed to edit collected works and special issues of journals. Participants will also receive coaching on how to deal with publishers as well as the pre-publication processes of copy editing, proofreading and proper referencing.</span>\n\n&nbsp;\n\n<b>Editorial Services </b>\n\n<b>1) For Students</b>\n\n<span style="font-weight: 400;">The Writing Institute provides proofreading and editing services to students for a wide range of writing assignments including motivation letters, statements of purpose, essays, capstone papers, independent studies, theses, and as well as abstracts and papers for conferences. The Writing Institute works closely with the student to ensure the final document reflects a high level of proficiency in the English language, is consistent with academic conventions, employs effective tone and voice and is structured in a cogent manner. Students will also be able to drop in for one on one consultations with an assigned editor who can provide coaching throughout the writing process.</span>\n\n<b>2) For Academics</b>\n\n<span style="font-weight: 400;">The Institute provides a range of supporting services for academics to prepare their work for publication as well as enhance the overall quality of their academic writing. Editorial services such as copyediting and proofreading are provided for </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and manuscripts intended for academic publication. </span><span style="font-weight: 400;">Our editors are well equipped to assist academics who are native English speakers as well as those for whom English is a Second Language. </span>\n\n&nbsp;\n\n<b>Research Methodology Workshops</b>\n\n<span style="font-weight: 400;">To achieve good results, academic writing needs to be grounded in sound research methodology. </span><span style="font-weight: 400;">The research methodology clinic outlines the fundamentals of doing research from designing a research project to data collection and analysis. The workshops are ideal for postgraduates embarking on their Masters and Doctoral theses who are looking for coaching as they develop their research ideas. For academics, the workshops serve firstly as a refresher and secondly as an opportunity to design and execute an advanced research project with the objective of submitting an academic publication.</span>\n\n&nbsp;\n\n<b>Educational Consultancy</b>\n\n<span style="font-weight: 400;">The Writing Institute provides consultancy services to educational institutions on academic matters. We advise on strategic planning, internalisation, inter-institution memorandums, development of international curriculum, staff capacity training, student exchanges, internships, short courses, summer camps, accreditation and quality assurance issues. We </span><span style="font-weight: 400;">undertake external curriculum and programme reviews and can serve as external examiners and participate in review committees including</span><span style="font-weight: 400;"> compiling and preparing quality assurance reports.</span>', 'Writing Institute', '', 'inherit', 'closed', 'closed', '', '2331-autosave-v1', '', '', '2016-02-23 09:05:05', '2016-02-23 09:05:05', '', 2331, 'http://asiacentre.co.th/other/2331-autosave-v1/', 0, 'revision', '', 0),
(2398, 5, '2016-02-17 06:03:56', '2016-02-17 06:03:56', '<span style="font-weight: 400;">The Writing Institute helps individuals to write effectively in the English Language for a variety of purposes, audiences, and contexts. The Institute focuses on two groups of individuals (1) students and (2) academics. Services are tailored to the needs of the individuals, whether they are native English speakers or individuals writing in English as a Second Language. </span>\r\n\r\n<span style="font-weight: 400;">Students learn skills to equip them to write research proposals, their capstone papers, independent study papers, </span><span style="font-weight: 400;">theses </span><span style="font-weight: 400;">and other assignments, while academics receive the relevant coaching to help them write </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and prepare manuscripts for academic publications.</span>\r\n\r\n<span style="font-weight: 400;">The Institute also provides editorial services for proofreading and copy editing of all types of academic documents for submission to universities and publishers. Our editors have tertiary qualifications and extensive editorial experience. We welcome drop-in consultations at the Asia Centre to discuss writing assignments as well as have written work proofread and edited. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Writing Clinics</b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive course which aims to develop and expand the academic writing skills required to produce articles, reports and dissertations in English. The course will review the fundamentals of grammar and vocabulary and will teach students to organise their ideas in language that is effective and appropriate for academic work. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. Attention will be paid to developing the skills needed to write a thesis; including crafting a thesis statement, critical reading of academic articles, research and summary skills as well as citing sources.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">This is a special coaching clinic for academics who are looking to improve the quality, persuasiveness and originality of their academic writing.  Participants will receive coaching in with greater clarity and purpose as well as in editing and critically reviewing their work, with a view to publication. It is suitable for academics and graduate students who are producing articles for journals, research papers for conferences as well as contributing content to books and other publications. The coaching clinic will also tackle the skills needed to edit collected works and special issues of journals. Participants will also receive coaching on how to deal with publishers as well as the pre-publication processes of copy editing, proofreading and proper referencing.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Editorial Services </b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides proofreading and editing services to students for a wide range of writing assignments including motivation letters, statements of purpose, essays, capstone papers, independent studies, theses, and as well as abstracts and papers for conferences. The Writing Institute works closely with the student to ensure the final document reflects a high level of proficiency in the English language, is consistent with academic conventions, employs effective tone and voice and is structured in a cogent manner. Students will also be able to drop in for one on one consultations with an assigned editor who can provide coaching throughout the writing process.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">The Institute provides a range of supporting services for academics to prepare their work for publication as well as enhance the overall quality of their academic writing. Editorial services such as copyediting and proofreading are provided for </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and manuscripts intended for academic publication. </span><span style="font-weight: 400;">Our editors are well equipped to assist academics who are native English speakers as well as those for whom English is a Second Language. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Research Methodology Workshops</b>\r\n\r\n<span style="font-weight: 400;">To achieve good results academic writing needs to be grounded in sound research methodology. </span><span style="font-weight: 400;">The research methodology clinic outlines the fundamentals of doing research from designing a research project to data collection and analysis. The workshops are ideal for postgraduates embarking on their Masters and Doctoral theses who are looking for coaching as they develop their research ideas. For academics, the workshops serves firstly as a refresher and secondly as an opportunity to design and execute an advanced research project with the objective of submitting an academic publication.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Educational Consultancy</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides consultancy services to educational institutions on academic matters. We advise on strategic planning, internalisation, inter-institution memorandums, development of international curriculum, staff capacity training, student exchanges, internships, short courses, summer camps, accreditation and quality assurance issues. We </span><span style="font-weight: 400;">undertake external curriculum and programme reviews and can serve as external examiners and participate in review committees including</span><span style="font-weight: 400;"> compiling and preparing quality assurance reports.</span>', 'Writing Institute', '', 'inherit', 'closed', 'closed', '', '2331-revision-v1', '', '', '2016-02-17 06:03:56', '2016-02-17 06:03:56', '', 2331, 'http://asiacentre.co.th/other/2331-revision-v1/', 0, 'revision', '', 0),
(2400, 3, '2016-02-18 02:18:06', '2016-02-18 02:18:06', 'The Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\r\n\r\nIt provides consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\r\n\r\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-02-18 02:18:06', '2016-02-18 02:18:06', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2401, 3, '2016-02-18 02:20:36', '2016-02-18 02:20:36', '', 'About', '', 'publish', 'closed', 'closed', '', 'about', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 0, 'http://asiacentre.co.th/?p=2401', 2, 'nav_menu_item', '', 0),
(2402, 3, '2016-02-18 02:25:18', '2016-02-18 02:25:18', ' ', '', '', 'publish', 'closed', 'closed', '', '2402', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 0, 'http://asiacentre.co.th/?p=2402', 3, 'nav_menu_item', '', 0),
(2405, 3, '2016-02-19 07:43:15', '2016-02-19 07:43:15', '<img class="size-full wp-image-1963 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/asia-centre-logo1.png" alt="asia-centre-logo" width="245" height="75" />Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region.\nIt provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="120" height="90" />development,communications and outreach,research and publications, and development and technical assistance.\n\nAsia Centre connects peoples and regions through collaborative partnership<img class="wp-image-2294 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="169" height="205" /> with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\n\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-autosave-v1', '', '', '2016-02-19 07:43:15', '2016-02-19 07:43:15', '', 18, 'http://asiacentre.co.th/other/18-autosave-v1/', 0, 'revision', '', 0),
(2406, 3, '2016-02-19 07:43:21', '2016-02-19 07:43:21', '<img class="size-full wp-image-1963 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/asia-centre-logo1.png" alt="asia-centre-logo" width="245" height="75" />Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region.\r\nIt provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="120" height="90" />development,communications and outreach,research and publications, and development and technical assistance.\r\n\r\nAsia Centre connects peoples and regions through collaborative partnership<img class="wp-image-2294 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="169" height="205" /> with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\r\n\r\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-02-19 07:43:21', '2016-02-19 07:43:21', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2407, 3, '2016-02-19 07:53:27', '2016-02-19 07:53:27', '<img class="size-full wp-image-1963 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/asia-centre-logo1.png" alt="asia-centre-logo" width="245" height="75" />Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region.\r\nIt provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="120" height="90" />development,communications and outreach,research and publications, and development and technical assistance.\r\n\r\nAsia Centre connects peoples and regions through collaborative partnership<img class="wp-image-2294 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="169" height="205" />\r\nwith educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\r\n\r\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-02-19 07:53:27', '2016-02-19 07:53:27', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2408, 5, '2016-02-19 08:49:05', '2016-02-19 08:49:05', '<b>A Political Utopia called Singapore: </b><b>Will the PAP stay in power another 50 years?</b>\r\n\r\n<b>\r\n</b><img class=" wp-image-2410 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Singapore-Election-Ballot-Box.jpg" alt="Singapore Election Ballot Box" width="285" height="167" />\r\n\r\nSince its independence in 1965, Singapore has been continuously governed by the People''s Action Party (PAP) as it won every General Election. In the 2011 General Election, the PAP won 60.1% of the valid votes the lowest in its entire election history fueling discussion of political change in the city-state.  But in the 2015 General Election, the PAP dramatically increased their vote share to  69.9% of the valid ballots cast, surprising even some of its own party candidates. Is the PAP''s landslide victory at the recent polls irrefutable proof that Singaporeans still want the PAP to stay in power indefinitely? Has the PAP won elections fair and square?  Jeannette, an opposition politician who contested against the PAP candidate in both the 2011 and 2015 General Election, offers her perspective of politics in Singapore.\r\n\r\n&nbsp;\r\n\r\n<b>Speaker</b>\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2409 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Jeanette.png" alt="Jeanette" width="216" height="185" />Jeannette Aruldoss is a lawyer and opposition politician from Singapore.  She entered politics in 2009 when she joined an opposition political party.  She subsequently ran at the 2011 General Election as a candidate of the National Solidarity Party (NSP) against the incumbent PAP Member of Parliament at the Single Member Constituency seat of Mountbatten (Mountbatten SMC).</span>\r\n\r\n<span style="font-weight: 400;">Jeannette served as NSP’s Vice-President from July 2011 to October 2013 and as NSP’s Secretary General from October 2013 to January 2015.  At the 2015 General Election, Jeannette returned to contest the seat at Mountbatten SMC, this time as a candidate of the Singapore People’s Party.</span>\r\n\r\n<span style="font-weight: 400;">Jeannette, 52 is a full-time practising lawyer of 27 years'' standing.  She is happily married to a non-lawyer and has four children aged 18 to 26.  She shares her socio-political views at her blog at </span><a href="http://jeannettechongaruldoss.blogspot.sg/"><span style="font-weight: 400;">http://jeannettechongaruldoss.blogspot.sg/</span></a>\r\n\r\n&nbsp;', 'A Political Utopia Called Singapore', '', 'publish', 'closed', 'closed', '', 'a-political-utopia-called-singapore', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2408', 0, 'event', '', 0),
(2409, 5, '2016-02-19 08:39:45', '2016-02-19 08:39:45', '', 'Jeanette', '', 'inherit', 'closed', 'closed', '', 'jeanette', '', '', '2016-02-19 08:39:45', '2016-02-19 08:39:45', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/Jeanette.png', 0, 'attachment', 'image/png', 0),
(2410, 5, '2016-02-19 08:47:42', '2016-02-19 08:47:42', '', 'Singapore Election Ballot Box', '', 'inherit', 'closed', 'closed', '', 'singapore-election-ballot-box', '', '', '2016-02-19 08:47:42', '2016-02-19 08:47:42', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/02/Singapore-Election-Ballot-Box.jpg', 0, 'attachment', 'image/jpeg', 0),
(2412, 5, '2016-02-19 08:50:43', '2016-02-19 08:50:43', '<b>A Political Utopia called Singapore: </b><b>Will the PAP stay in power another 50 years?</b>\r\n\r\n<b>\r\n</b><img class=" wp-image-2410 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Singapore-Election-Ballot-Box.jpg" alt="Singapore Election Ballot Box" width="285" height="167" />\r\n\r\nSince its independence in 1965, Singapore has been continuously governed by the People''s Action Party (PAP) as it won every General Election. In the 2011 General Election, the PAP won 60.1% of the valid votes the lowest in its entire election history fueling discussion of political change in the city-state.  But in the 2015 General Election, the PAP dramatically improved their mandate to govern by winning 69.9% of the valid votes surprising even some of its own party candidates. Is the PAP''s landslide victory at the recent polls irrefutable proof that Singaporeans still want the PAP to stay in power indefinitely? Has the PAP won elections fair and square?  Jeannette, an opposition politician who contested against the PAP candidate in both the 2011 and 2015 General Election, offers her perspective of politics in Singapore.\r\n\r\n<b>Speaker</b>\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2409 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Jeanette.png" alt="Jeanette" width="216" height="185" />Jeannette Aruldoss is a lawyer and opposition politician from Singapore.  She entered politics in 2009 when she joined an opposition political party.  She subsequently ran at the 2011 General Election as a candidate of the National Solidarity Party (NSP) against the incumbent PAP Member of Parliament at the Single Member Constituency seat of Mountbatten (Mountbatten SMC).</span>\r\n\r\n<span style="font-weight: 400;">Jeannette served as NSP’s Vice-President from July 2011 to October 2013 and as NSP’s Secretary General from October 2013 to January 2015.  At the 2015 General Election, Jeannette returned to contest the seat at Mountbatten SMC, this time as a candidate of the Singapore People’s Party.</span>\r\n\r\n<span style="font-weight: 400;">Jeannette, 52 is a full-time practising lawyer of 27 years'' standing.  She is happily married to a non-lawyer and has four children aged 18 to 26.  She shares her socio-political views at her blog at </span><a href="http://jeannettechongaruldoss.blogspot.sg/"><span style="font-weight: 400;">http://jeannettechongaruldoss.blogspot.sg/</span></a>', 'A Political Utopia Called Singapore', '', 'publish', 'closed', 'closed', '', 'political-utopia-called-singapore', '', '', '2016-02-19 08:50:43', '2016-02-19 08:50:43', '', 0, 'http://asiacentre.co.th/?p=2412', 0, 'post', '', 0),
(2413, 5, '2016-02-19 08:50:39', '2016-02-19 08:50:39', '<b>A Political Utopia called Singapore: </b><b>Will the PAP stay in power another 50 years?</b>\r\n\r\n<b>\r\n</b><img class=" wp-image-2410 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Singapore-Election-Ballot-Box.jpg" alt="Singapore Election Ballot Box" width="285" height="167" />\r\n\r\nSince its independence in 1965, Singapore has been continuously governed by the People''s Action Party (PAP) as it won every General Election. In the 2011 General Election, the PAP won 60.1% of the valid votes the lowest in its entire election history fueling discussion of political change in the city-state.  But in the 2015 General Election, the PAP dramatically improved their mandate to govern by winning 69.9% of the valid votes surprising even some of its own party candidates. Is the PAP''s landslide victory at the recent polls irrefutable proof that Singaporeans still want the PAP to stay in power indefinitely? Has the PAP won elections fair and square?  Jeannette, an opposition politician who contested against the PAP candidate in both the 2011 and 2015 General Election, offers her perspective of politics in Singapore.\r\n\r\n<b>Speaker</b>\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2409 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Jeanette.png" alt="Jeanette" width="216" height="185" />Jeannette Aruldoss is a lawyer and opposition politician from Singapore.  She entered politics in 2009 when she joined an opposition political party.  She subsequently ran at the 2011 General Election as a candidate of the National Solidarity Party (NSP) against the incumbent PAP Member of Parliament at the Single Member Constituency seat of Mountbatten (Mountbatten SMC).</span>\r\n\r\n<span style="font-weight: 400;">Jeannette served as NSP’s Vice-President from July 2011 to October 2013 and as NSP’s Secretary General from October 2013 to January 2015.  At the 2015 General Election, Jeannette returned to contest the seat at Mountbatten SMC, this time as a candidate of the Singapore People’s Party.</span>\r\n\r\n<span style="font-weight: 400;">Jeannette, 52 is a full-time practising lawyer of 27 years'' standing.  She is happily married to a non-lawyer and has four children aged 18 to 26.  She shares her socio-political views at her blog at </span><a href="http://jeannettechongaruldoss.blogspot.sg/"><span style="font-weight: 400;">http://jeannettechongaruldoss.blogspot.sg/</span></a>', 'A Political Utopia Called Singapore', '', 'inherit', 'closed', 'closed', '', '2412-revision-v1', '', '', '2016-02-19 08:50:39', '2016-02-19 08:50:39', '', 2412, 'http://asiacentre.co.th/other/2412-revision-v1/', 0, 'revision', '', 0),
(2414, 5, '2016-02-19 09:01:29', '2016-02-19 09:01:29', '<b>A Political Utopia called Singapore: </b><b>Will the PAP stay in power another 50 years?</b>\n\n<b>\n</b><img class=" wp-image-2410 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Singapore-Election-Ballot-Box.jpg" alt="Singapore Election Ballot Box" width="285" height="167" />\n\nSince its independence in 1965, Singapore has been continuously governed by the People''s Action Party (PAP) as it won every General Election. In the 2011 General Election, the PAP won 60.1% of the valid votes the lowest in its entire election history fueling discussion of political change in the city-state.  But in the 2015 General Election, the PAP dramatically increased their vote share to  69.9% of the valid ballots cast, surprising even some of its own party candidates. Is the PAP''s landslide victory at the recent polls irrefutable proof that Singaporeans still want the PAP to stay in power indefinitely? Has the PAP won elections fair and square?  Jeannette, an opposition politician who contested against the PAP candidate in both the 2011 and 2015 General Election, offers her perspective of politics in Singapore.\n\n&nbsp;\n\n<b>Speaker</b>\n\n<span style="font-weight: 400;"><img class=" wp-image-2409 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Jeanette.png" alt="Jeanette" width="216" height="185" />Jeannette Aruldoss is a lawyer and opposition politician from Singapore.  She entered politics in 2009 when she joined an opposition political party.  She subsequently ran at the 2011 General Election as a candidate of the National Solidarity Party (NSP) against the incumbent PAP Member of Parliament at the Single Member Constituency seat of Mountbatten (Mountbatten SMC).</span>\n\n<span style="font-weight: 400;">Jeannette served as NSP’s Vice-President from July 2011 to October 2013 and as NSP’s Secretary General from October 2013 to January 2015.  At the 2015 General Election, Jeannette returned to contest the seat at Mountbatten SMC, this time as a candidate of the Singapore People’s Party.</span>\n\n<span style="font-weight: 400;">Jeannette, 52 is a full-time practising lawyer of 27 years'' standing.  She is happily married to a non-lawyer and has four children aged 18 to 26.  She shares her socio-political views at her blog at </span><a href="http://jeannettechongaruldoss.blogspot.sg/"><span style="font-weight: 400;">http://jeannettechongaruldoss.blogspot.sg/</span></a>\n\n&nbsp;', 'A Political Utopia Called Singapore', '', 'inherit', 'closed', 'closed', '', '2408-autosave-v1', '', '', '2016-02-19 09:01:29', '2016-02-19 09:01:29', '', 2408, 'http://asiacentre.co.th/other/2408-autosave-v1/', 0, 'revision', '', 0),
(2418, 5, '2016-02-23 08:39:04', '2016-02-23 08:39:04', '<img class="size-full wp-image-1963 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/asia-centre-logo1.png" alt="asia-centre-logo" width="245" height="75" />Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region.\r\nIt provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="120" height="90" />development, communications and outreach, research and publications, and development and technical assistance.\r\n\r\nAsia Centre connects peoples and regions through collaborative partnership<img class="wp-image-2294 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/12496040_1121278991224661_8208051164535300385_o.jpg" alt="12496040_1121278991224661_8208051164535300385_o" width="169" height="205" />\r\nwith educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\r\n\r\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in the region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-02-23 08:39:04', '2016-02-23 08:39:04', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2419, 5, '2016-12-16 11:13:31', '2016-12-16 11:13:31', '<p style="text-align: justify;">The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.</p>\n\n<h2 style="text-align: justify;">Dr. Robin Ramcharan - Chairman</h2>\n<p style="text-align: justify;"><img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked in the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D. and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow at the Centre for International Peace and Security Studies at McGill University and the University of Montreal.</p>\n\n<h2 style="text-align: justify;"><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\n<p style="text-align: justify;">Dr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, an M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.</p>\n\n<h2 style="text-align: justify;"></h2>\n<h2 style="text-align: justify;"><strong>Nobuo Hayashi - Member</strong></h2>\n<p style="text-align: justify;"><img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, the conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular, recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).</p>\n\n<h2 style="text-align: justify;"></h2>\n<h2 style="text-align: justify;"><strong>Dr. Sorpong Peou - Member</strong></h2>\n<p style="text-align: justify;"><img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />BA (University of Waterloo, Canada); MA and Ph.D. (York University, Canada). Currently Professor and Chair, Department of Politics and Public Administration, Ryerson University, Toronto, Canada. Formerly Chair of the Department of Political Science, University of Winnipeg (Manitoba); Chair of the Advisory and Recruitment Committee for The Manitoba Chair of Global Governance Studies – a joint program between the University of Winnipeg and the University of Manitoba. Prior to these academic appointments, Professor of International Security at Sophia University in Tokyo (Japan); Canada-ASEAN Fellow as well as Fellow at the Institute of Southeast Asian Studies (Singapore). Academic fields of expertise: security and democracy studies, with the regional focus on the Asia-Pacific. Service: Editorial boards of <i>Rethinking Peace and Conflict Studies</i> (Palgrave Macmillan) and the peer-reviewed journal <i>Asian Politics &amp; Policy</i> (Wiley-Blackwell); regional editor of a peer-reviewed journal - <i>The Asian Journal of Peacebuilding</i> (Seoul National University Press, South Korea). Also Distinguished Senior Fellow at the Cambodian Institute for Peace and Cooperation, Distinguished Visiting Scholar at the Cambodian Development Research Institute, and a member of an International Country Experts Network on UN Peacekeeping.</p>\n\n<h2 style="text-align: justify;"></h2>\n<h2 style="text-align: justify;"><strong>Professor Jonathan Woodier – Member</strong></h2>\n<p style="text-align: justify;"><img class=" wp-image-3206 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/Woodier-e1481886453190-447x480.jpg" alt="woodier" width="201" height="216" />PhD (UQ), M.A. (HKU), BA (Hons). A media and communications professional specializing in brand building and organizational transformation, Jonathan is currently a professor at the Sol International School of Media and Communications Arts at Woosong University, South Korea, and an Associate Fellow of the Strategic Communications Centre at King’s College, London. For the last 25 years Jonathan has been working with narratives across multiple businesses in Asia Pacific, EMEA and the Americas. With a background in multi-platform journalism and a proven track record of helping companies effectively create authentic conversations with their stakeholders, he has supported leading brands in growing their businesses in highly-regulated industries while raising levels of motivation and good governance.</p>\n<h2 style="text-align: justify;"></h2>\n&nbsp;<h2 style="text-align: justify;"><strong>Dr. Ross Worthington – Member</strong></h2>\n<p style="text-align: justify;"><img class="wp-image-2121 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and works experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development, he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.</p>\n\n<h2 style="text-align: justify;"></h2>\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-autosave-v1', '', '', '2016-12-16 11:13:31', '2016-12-16 11:13:31', '', 2113, 'http://asiacentre.co.th/other/2113-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2420, 5, '2016-02-23 08:42:11', '2016-02-23 08:42:11', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Dr. Robin Ramcharan - Chairman</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked in the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D. and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow at the Centre for International Peace and Security Studies at McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, an M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, the conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular, recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />BA (University of Waterloo, Canada); MA and Ph.D. (York University, Canada). Currently Professor and Chair, Department of Politics and Public Administration, Ryerson University, Toronto, Canada. Formerly Chair of the Department of Political Science, University of Winnipeg (Manitoba); Chair of the Advisory and Recruitment Committee for The Manitoba Chair of Global Governance Studies – a joint program between the University of Winnipeg and the University of Manitoba. Prior to these academic appointments, Professor of International Security at Sophia University in Tokyo (Japan); Canada-ASEAN Fellow as well as Fellow at the Institute of Southeast Asian Studies (Singapore). Academic fields of expertise: security and democracy studies, with the regional focus on the Asia-Pacific. Major books: <i>Human Security Studies: Theories, Methods and Themes </i>(World Scientific and Imperial College Press, 2014<i>)</i>; <i>Peace and Security in the Asia-Pacific </i>(Praeger 2010), <i>Human Security in East Asia: Challenges for Collaborative Action</i>, ed.<i> </i>(Routledge 2008), <i>International Democracy Assistance for Peacebuilding: Cambodia and Beyond</i>(Palgrave Macmillan 2007), <i>Intervention and Change in Cambodia: Toward Democracy</i> (St. Martin’s Press, Institute of Southeast Asian Studies and Silkworms, 2001) &amp; <i>Conflict Neutralization in the Cambodia War: From Battlefield to Ballot-box</i> (Oxford University Press, 1997). Service: Editorial boards of <i>Rethinking Peace and Conflict Studies</i> (Palgrave Macmillan) and the peer-reviewed journal <i>Asian Politics &amp; Policy</i> (Wiley-Blackwell); regional editor of a peer-reviewed journal - <i>The Asian Journal of Peacebuilding</i> (Seoul National University Press, South Korea). Also Distinguished Senior Fellow at the Cambodian Institute for Peace and Cooperation, Distinguished Visiting Scholar at the Cambodian Development Research Institute, and a member of an International Country Experts Network on UN Peacekeeping.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and works experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development, he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2016-02-23 08:42:11', '2016-02-23 08:42:11', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(2421, 5, '2016-02-23 08:45:48', '2016-02-23 08:45:48', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="alignleft wp-image-2149" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is a professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his Ph.D. and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="alignright wp-image-2152" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="alignleft wp-image-2148" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2016-02-23 08:45:48', '2016-02-23 08:45:48', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2422, 5, '2016-02-23 08:46:38', '2016-02-23 08:46:38', '<b><a href="http://aipglobal.co/"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-02-23 08:46:38', '2016-02-23 08:46:38', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2423, 5, '2016-02-23 08:53:22', '2016-02-23 08:53:22', 'Asia Centre is a human rights consultancy that operates as an online social enterprise.\n\nIt provides expert advice and technical support globally to not-for-profit organizations, inter-governmental organizations, national institutions, research institutes, tertiary institutions and social enterprises that make up the human rights community.\n\nAt the core of our strength is 20 years of experience in human rights research, policy advice, tertiary teaching, training and professional development in the Asia-Pacific region.\n\nBacked by substantive fieldwork and institutional experience, our understanding of the economic, political and social traditions in the Asia-Pacific region ensures expert service to our clients.\n\nOur services are designed to be affordable, of high quality and tailored to our clients'' needs. We take pride in the timely delivery of assignments.\n\nPlease feel free to contact us if you want to explore collaborative opportunities.', 'Home', '', 'inherit', 'closed', 'closed', '', '701-autosave-v1', '', '', '2016-02-23 08:53:22', '2016-02-23 08:53:22', '', 701, 'http://asiacentre.co.th/other/701-autosave-v1/', 0, 'revision', '', 0),
(2424, 5, '2016-02-23 08:53:29', '2016-02-23 08:53:29', 'Asia Centre is a human rights consultancy that operates as an online social enterprise.\r\n\r\nIt provides expert advice and technical support globally to not-for-profit organizations, inter-governmental organizations, national institutions, research institutes, tertiary institutions and social enterprises that make up the human rights community.\r\n\r\nAt the core of our strength is 20 years of experience in human rights research, policy advice, tertiary teaching, training and professional development in the Asia-Pacific region.\r\n\r\nBacked by substantive fieldwork and institutional experience, our understanding of the economic, political and social traditions in the Asia-Pacific region ensures expert service to our clients.\r\n\r\nOur services are designed to be affordable, of high quality and tailored to our clients'' needs. We take pride in the timely delivery of assignments.\r\n\r\nPlease feel free to contact us if you want to explore collaborative opportunities.', 'Home', '', 'inherit', 'closed', 'closed', '', '701-revision-v1', '', '', '2016-02-23 08:53:29', '2016-02-23 08:53:29', '', 701, 'http://asiacentre.co.th/other/701-revision-v1/', 0, 'revision', '', 0),
(2425, 5, '2016-02-23 08:56:54', '2016-02-23 08:56:54', '<h2><strong>International Education Programme (IEP)</strong></h2>\r\nThe International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.\r\n\r\n&nbsp;\r\n<h2><strong>IEP Bangkok (Thailand)</strong></h2>\r\nIEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organisations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.\r\n\r\n&nbsp;\r\n<h2><strong>Programme Structure</strong></h2>\r\nIEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Methods</strong></h2>\r\nIEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.\r\n\r\n&nbsp;\r\n<h2><strong>Teaching Materials </strong></h2>\r\nThe course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.\r\n\r\n&nbsp;\r\n\r\nFor more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2016-02-23 08:56:54', '2016-02-23 08:56:54', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(2426, 5, '2016-02-23 09:05:09', '2016-02-23 09:05:09', '<span style="font-weight: 400;">The Writing Institute helps individuals to write effectively in the English Language for a variety of purposes, audiences, and contexts. The Institute focuses on two groups of individuals (1) students and (2) academics. Services are tailored to the needs of the individuals, whether they are native English speakers or individuals writing in English as a Second Language. </span>\r\n\r\n<span style="font-weight: 400;">Students learn skills to equip them to write research proposals, their capstone papers, independent study papers, </span><span style="font-weight: 400;">theses </span><span style="font-weight: 400;">and other assignments, while academics receive the relevant coaching to help them write </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and prepare manuscripts for academic publications.</span>\r\n\r\n<span style="font-weight: 400;">The Institute also provides editorial services for proofreading and copy editing of all types of academic documents for submission to universities and publishers. Our editors have tertiary qualifications and extensive editorial experience. We welcome drop-in consultations at the Asia Centre to discuss writing assignments as well as have written work proofread and edited. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Writing Clinics</b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive course which aims to develop and expand the academic writing skills required to produce articles, reports and dissertations in English. The course will review the fundamentals of grammar and vocabulary and will teach students to organise their ideas in language that is effective and appropriate for academic work. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. Attention will be paid to developing the skills needed to write a thesis; including crafting a thesis statement, critical reading of academic articles, research and summary skills as well as citing sources.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">This is a special coaching clinic for academics who are looking to improve the quality, persuasiveness and originality of their academic writing.  Participants will receive coaching in with greater clarity and purpose as well as in editing and critically reviewing their work, with a view to publication. It is suitable for academics and graduate students who are producing articles for journals, research papers for conferences as well as contributing content to books and other publications. The coaching clinic will also tackle the skills needed to edit collected works and special issues of journals. Participants will also receive coaching on how to deal with publishers as well as the pre-publication processes of copy editing, proofreading and proper referencing.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Editorial Services </b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides proofreading and editing services to students for a wide range of writing assignments including motivation letters, statements of purpose, essays, capstone papers, independent studies, theses, and as well as abstracts and papers for conferences. The Writing Institute works closely with the student to ensure the final document reflects a high level of proficiency in the English language, is consistent with academic conventions, employs effective tone and voice and is structured in a cogent manner. Students will also be able to drop in for one on one consultations with an assigned editor who can provide coaching throughout the writing process.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">The Institute provides a range of supporting services for academics to prepare their work for publication as well as enhance the overall quality of their academic writing. Editorial services such as copyediting and proofreading are provided for </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and manuscripts intended for academic publication. </span><span style="font-weight: 400;">Our editors are well equipped to assist academics who are native English speakers as well as those for whom English is a Second Language. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Research Methodology Workshops</b>\r\n\r\n<span style="font-weight: 400;">To achieve good results, academic writing needs to be grounded in sound research methodology. </span><span style="font-weight: 400;">The research methodology clinic outlines the fundamentals of doing research from designing a research project to data collection and analysis. The workshops are ideal for postgraduates embarking on their Masters and Doctoral theses who are looking for coaching as they develop their research ideas. For academics, the workshops serve firstly as a refresher and secondly as an opportunity to design and execute an advanced research project with the objective of submitting an academic publication.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Educational Consultancy</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides consultancy services to educational institutions on academic matters. We advise on strategic planning, internalisation, inter-institution memorandums, development of international curriculum, staff capacity training, student exchanges, internships, short courses, summer camps, accreditation and quality assurance issues. We </span><span style="font-weight: 400;">undertake external curriculum and programme reviews and can serve as external examiners and participate in review committees including</span><span style="font-weight: 400;"> compiling and preparing quality assurance reports.</span>', 'Writing Institute', '', 'inherit', 'closed', 'closed', '', '2331-revision-v1', '', '', '2016-02-23 09:05:09', '2016-02-23 09:05:09', '', 2331, 'http://asiacentre.co.th/other/2331-revision-v1/', 0, 'revision', '', 0),
(2427, 5, '2016-02-23 09:10:20', '2016-02-23 09:10:20', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy-oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate an exchange of knowledge between the peoples of Asia and the rest of the world.\r\n<h4>Academic Services</h4>\r\nThe Centre’s academics specialize in the teaching of academic writing, critical thinking and study strategies, communication studies, international relations, international law, political science and research methodology at tertiary institutions for undergraduate and post-graduate degrees.\r\n\r\nAdditionally, we provide advice to students on their capstone papers, independent study projects, master and doctoral theses and we undertake proofreading.\r\n\r\nOur academic services, inclusive of research, are available for both academic and not- academic clients. We undertake research work for commissioned projects such as occasional papers, baseline studies, specialist reports and policy briefs. For academics, we can advise on research projects, grant applications and finalizing manuscripts for academic publications.\r\n\r\nFor tertiary institutions, we can advise on accreditation matters and consult on compiling quality assurance reports. We undertake external curriculum review, serve as external examiners and participate in review committees.\r\n<h4>NGO Services</h4>\r\nWe provide technical assistance and advice to non-governmental organizations and donor agencies supporting the non-profit sector. We seek to facilitate knowledge transfer between experts and civil society practitioners in Asia and the rest of the world.\r\n\r\nThis assistance includes advising in the following key areas: context assessments and political analyses for intervention strategies, communications strategies, grants &amp; loan applications, project monitoring &amp; evaluation, technical writing and documentation.\r\n<h4>Professional Development Services</h4>\r\nWe conduct professional development services on areas such as leadership, advocacy campaigns, strategic planning, online communications and performance management. We can produce course syllabi and training programs based on our client needs. This can also include training of trainers.\r\n\r\nOur trainers and facilitators come from our list of in-house consultants who are selected based on the clients’ training needs. To this end, the Centre’s experts are experienced in imparting knowledge to adult learners. We are experienced in self-directed learning where learners acquire knowledge through problem solving and task oriented exercises.\r\n<h4>Expert Advisory Service</h4>\r\nThe Centre''s experts can provide professional knowledge via speaking engagements as guest lecturers and speakers at academic, civil society and public events and provide advice on specific policy areas. These can include participation at conferences, meetings, media briefings and interviews.', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-revision-v1', '', '', '2016-02-23 09:10:20', '2016-02-23 09:10:20', '', 1937, 'http://asiacentre.co.th/other/1937-revision-v1/', 0, 'revision', '', 0),
(2428, 5, '2016-02-25 07:54:19', '2016-02-25 07:54:19', '<span style="font-weight: 400;">The Writing Institute helps individuals to write effectively in the English Language for a variety of purposes, audiences and contexts. The Institute focuses on two groups of individuals (1) students and (2) academics. Services are tailored to the needs of the individuals, whether they are native English speakers or individuals writing in English as a Second Language. </span>\r\n\r\n<span style="font-weight: 400;">Students learn skills to equip them to write research proposals, their capstone papers, independent study papers, </span><span style="font-weight: 400;">theses </span><span style="font-weight: 400;">and other assignments, while academics receive the relevant coaching to help them write </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and prepare manuscripts for academic publications.</span>\r\n\r\n<span style="font-weight: 400;">The Institute also provides editorial services for proofreading and copy editing of all types of academic documents for submission to universities and publishers. Our editors have tertiary qualifications and extensive editorial experience. We welcome drop-in consultations at the Asia Centre to discuss writing assignments as well as have written work proofread and edited. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Writing Clinics</b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive course which aims to develop and expand the academic writing skills required to produce articles, reports and dissertations in English. The course will review the fundamentals of grammar and vocabulary and will teach students to organise their ideas in language that is effective and appropriate for academic work. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. Attention will be paid to developing the skills needed to write a thesis; including crafting a thesis statement, critical reading of academic articles, research and summary skills as well as citing sources.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">This is a special coaching clinic for academics who are looking to improve the quality, persuasiveness and originality of their academic writing.  Participants will receive coaching in with greater clarity and purpose as well as in editing and critically reviewing their work, with a view to publication. It is suitable for academics and graduate students who are producing articles for journals, research papers for conferences as well as contributing content to books and other publications. The coaching clinic will also tackle the skills needed to edit collected works and special issues of journals. Participants will also receive coaching on how to deal with publishers as well as the pre-publication processes of copy editing, proofreading and proper referencing.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Editorial Services </b>\r\n\r\n<b>1) For Students</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides proofreading and editing services to students for a wide range of writing assignments including motivation letters, statements of purpose, essays, capstone papers, independent studies, theses, and as well as abstracts and papers for conferences. The Writing Institute works closely with the student to ensure the final document reflects a high level of proficiency in the English language, is consistent with academic conventions, employs effective tone and voice and is structured in a cogent manner. Students will also be able to drop in for one on one consultations with an assigned editor who can provide coaching throughout the writing process.</span>\r\n\r\n<b>2) For Academics</b>\r\n\r\n<span style="font-weight: 400;">The Institute provides a range of supporting services for academics to prepare their work for publication as well as enhance the overall quality of their academic writing. Editorial services such as copyediting and proofreading are provided for </span><span style="font-weight: 400;">research proposals, grant applications, journal articles, book chapters, monographs and manuscripts intended for academic publication. </span><span style="font-weight: 400;">Our editors are well equipped to assist academics who are native English speakers as well as those for whom English is a Second Language. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Research Methodology Workshops</b>\r\n\r\n<span style="font-weight: 400;">To achieve good results, academic writing needs to be grounded in sound research methodology. </span><span style="font-weight: 400;">The research methodology clinic outlines the fundamentals of doing research from designing a research project to data collection and analysis. The workshops are ideal for postgraduates embarking on their Masters and Doctoral theses who are looking for coaching as they develop their research ideas. For academics, the workshops serve firstly as a refresher and secondly as an opportunity to design and execute an advanced research project with the objective of submitting an academic publication.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Educational Consultancy</b>\r\n\r\n<span style="font-weight: 400;">The Writing Institute provides consultancy services to educational institutions on academic matters. We advise on strategic planning, internalisation, inter-institution memorandums, development of international curriculum, staff capacity training, student exchanges, internships, short courses, summer camps, accreditation and quality assurance issues. We </span><span style="font-weight: 400;">undertake external curriculum and programme reviews and can serve as external examiners and participate in review committees including</span><span style="font-weight: 400;"> compiling and preparing quality assurance reports.</span>', 'Writing Institute', '', 'inherit', 'closed', 'closed', '', '2331-revision-v1', '', '', '2016-02-25 07:54:19', '2016-02-25 07:54:19', '', 2331, 'http://asiacentre.co.th/other/2331-revision-v1/', 0, 'revision', '', 0),
(2431, 6, '2016-02-25 09:30:44', '2016-02-25 09:30:44', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host upto 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n\r\nFlexible room layouts (classroom, round table, theatre, networking)\r\n<ul>\r\n	<li>Flexible room layouts (classroom, round table, theatre, networking)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,100</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,400</td>\r\n<td width="73">5,400</td>\r\n<td width="73">10,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">7,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">60</td>\r\n<td style="text-align: center;" width="79">40</td>\r\n<td style="text-align: center;" width="81">25</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-02-25 09:30:44', '2016-02-25 09:30:44', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2432, 6, '2016-02-25 09:31:32', '2016-02-25 09:31:32', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host upto 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (classroom, round table, theatre, networking)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,100</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,400</td>\r\n<td width="73">5,400</td>\r\n<td width="73">10,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">7,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">60</td>\r\n<td style="text-align: center;" width="79">40</td>\r\n<td style="text-align: center;" width="81">25</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-02-25 09:31:32', '2016-02-25 09:31:32', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2433, 6, '2016-02-29 05:29:01', '2016-02-29 05:29:01', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (classroom, round table, theatre, networking)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,100</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,400</td>\r\n<td width="73">5,400</td>\r\n<td width="73">10,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">7,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="76"><strong>Layout</strong></td>\r\n<td width="75"><strong>Theatre</strong></td>\r\n<td width="79"><strong>Classroom</strong></td>\r\n<td width="81"><strong>Conference</strong></td>\r\n<td width="81"><strong>Boardroom</strong></td>\r\n<td width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">60</td>\r\n<td style="text-align: center;" width="79">40</td>\r\n<td style="text-align: center;" width="81">25</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-02-29 05:29:01', '2016-02-29 05:29:01', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2435, 6, '2016-03-04 08:05:18', '2016-03-04 08:05:18', '', 'Classroom-1', '', 'inherit', 'closed', 'closed', '', 'classroom-1', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2436, 6, '2016-03-04 08:05:34', '2016-03-04 08:05:34', '', 'Classroom-1-1', '', 'inherit', 'closed', 'closed', '', 'classroom-1-1', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-1-1.jpg', 1, 'attachment', 'image/jpeg', 0),
(2438, 6, '2016-03-04 08:05:44', '2016-03-04 08:05:44', '', 'Classroom-2-1', '', 'inherit', 'closed', 'closed', '', 'classroom-2-1', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-2-1.jpg', 2, 'attachment', 'image/jpeg', 0),
(2439, 6, '2016-03-04 08:05:56', '2016-03-04 08:05:56', '', 'Classroom-2-3', '', 'inherit', 'closed', 'closed', '', 'classroom-2-3', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-2-3.jpg', 3, 'attachment', 'image/jpeg', 0),
(2440, 6, '2016-03-04 08:05:59', '2016-03-04 08:05:59', '', 'Classroom-3', '', 'inherit', 'closed', 'closed', '', 'classroom-3', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-3.jpg', 4, 'attachment', 'image/jpeg', 0),
(2441, 6, '2016-03-04 08:06:01', '2016-03-04 08:06:01', '', 'Classroom-3-1', '', 'inherit', 'closed', 'closed', '', 'classroom-3-1', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-3-1.jpg', 5, 'attachment', 'image/jpeg', 0),
(2442, 6, '2016-03-04 08:06:03', '2016-03-04 08:06:03', '', 'Classroom-3-2', '', 'inherit', 'closed', 'closed', '', 'classroom-3-2', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-3-2.jpg', 6, 'attachment', 'image/jpeg', 0),
(2443, 6, '2016-03-04 08:06:08', '2016-03-04 08:06:08', '', 'Classroom-4', '', 'inherit', 'closed', 'closed', '', 'classroom-4', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-4.jpg', 7, 'attachment', 'image/jpeg', 0),
(2444, 6, '2016-03-04 08:06:12', '2016-03-04 08:06:12', '', 'Classroom-5', '', 'inherit', 'closed', 'closed', '', 'classroom-5', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-5.jpg', 8, 'attachment', 'image/jpeg', 0),
(2445, 6, '2016-03-04 08:06:14', '2016-03-04 08:06:14', '', 'Classroom-6', '', 'inherit', 'closed', 'closed', '', 'classroom-6', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-6.jpg', 9, 'attachment', 'image/jpeg', 0),
(2446, 6, '2016-03-04 08:06:26', '2016-03-04 08:06:26', '', 'Round Table-1', '', 'inherit', 'closed', 'closed', '', 'round-table-1', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Round-Table-1.jpg', 10, 'attachment', 'image/jpeg', 0),
(2447, 6, '2016-03-04 08:06:35', '2016-03-04 08:06:35', '', 'Round Table-6', '', 'inherit', 'closed', 'closed', '', 'round-table-6', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Round-Table-6.jpg', 11, 'attachment', 'image/jpeg', 0),
(2448, 6, '2016-03-04 08:06:38', '2016-03-04 08:06:38', '', 'Round Table-5', '', 'inherit', 'closed', 'closed', '', 'round-table-5', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Round-Table-5.jpg', 12, 'attachment', 'image/jpeg', 0),
(2449, 6, '2016-03-04 08:06:42', '2016-03-04 08:06:42', '', 'Round Table-3', '', 'inherit', 'closed', 'closed', '', 'round-table-3', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Round-Table-3.jpg', 13, 'attachment', 'image/jpeg', 0),
(2450, 6, '2016-03-04 08:06:46', '2016-03-04 08:06:46', '', 'Theatre', '', 'inherit', 'closed', 'closed', '', 'theatre', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Theatre.jpg', 14, 'attachment', 'image/jpeg', 0),
(2451, 6, '2016-03-04 08:06:49', '2016-03-04 08:06:49', '', 'Theatre-2', '', 'inherit', 'closed', 'closed', '', 'theatre-2', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Theatre-2.jpg', 15, 'attachment', 'image/jpeg', 0),
(2452, 6, '2016-03-04 08:07:20', '2016-03-04 08:07:20', '', 'Discussion Room-1', '', 'inherit', 'closed', 'closed', '', 'discussion-room-1', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Discussion-Room-1.jpg', 16, 'attachment', 'image/jpeg', 0),
(2453, 6, '2016-03-04 08:07:26', '2016-03-04 08:07:26', '', 'Lounge-1', '', 'inherit', 'closed', 'closed', '', 'lounge-1', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Lounge-1.jpg', 17, 'attachment', 'image/jpeg', 0),
(2454, 6, '2016-03-04 08:07:28', '2016-03-04 08:07:28', '', 'Lounge-2', '', 'inherit', 'closed', 'closed', '', 'lounge-2', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Lounge-2.jpg', 18, 'attachment', 'image/jpeg', 0),
(2455, 6, '2016-03-04 08:07:35', '2016-03-04 08:07:35', '', 'Entrance-5', '', 'inherit', 'closed', 'closed', '', 'entrance-5', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Entrance-5.jpg', 22, 'attachment', 'image/jpeg', 0),
(2456, 6, '2016-03-04 08:07:37', '2016-03-04 08:07:37', '', 'Entrance-6', '', 'inherit', 'closed', 'closed', '', 'entrance-6', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Entrance-6.jpg', 23, 'attachment', 'image/jpeg', 0),
(2457, 6, '2016-03-04 08:07:46', '2016-03-04 08:07:46', '', 'Entrance-4', '', 'inherit', 'closed', 'closed', '', 'entrance-4', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Entrance-4.jpg', 24, 'attachment', 'image/jpeg', 0),
(2458, 6, '2016-03-04 08:07:48', '2016-03-04 08:07:48', '', 'Entrance-3', '', 'inherit', 'closed', 'closed', '', 'entrance-3', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Entrance-3.jpg', 25, 'attachment', 'image/jpeg', 0),
(2459, 6, '2016-03-04 08:07:54', '2016-03-04 08:07:54', '', 'Podium', '', 'inherit', 'closed', 'closed', '', 'podium', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Podium.jpg', 26, 'attachment', 'image/jpeg', 0),
(2460, 6, '2016-03-04 08:07:56', '2016-03-04 08:07:56', '', 'Fully Equiped Sound System', '', 'inherit', 'closed', 'closed', '', 'fully-equiped-sound-system', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Fully-Equiped-Sound-System.jpg', 27, 'attachment', 'image/jpeg', 0),
(2461, 6, '2016-03-04 08:08:03', '2016-03-04 08:08:03', '', 'Switch-Curtain, Sound', '', 'inherit', 'closed', 'closed', '', 'switch-curtain-sound', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Switch-Curtain-Sound.jpg', 28, 'attachment', 'image/jpeg', 0),
(2462, 6, '2016-03-04 08:08:05', '2016-03-04 08:08:05', '', 'View-1', '', 'inherit', 'closed', 'closed', '', 'view-1', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/View-1.jpg', 29, 'attachment', 'image/jpeg', 0),
(2463, 6, '2016-03-04 08:08:14', '2016-03-04 08:08:14', '', 'Cinema Screen-1', '', 'inherit', 'closed', 'closed', '', 'cinema-screen-1', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Cinema-Screen-1.jpg', 30, 'attachment', 'image/jpeg', 0),
(2464, 6, '2016-03-04 08:08:16', '2016-03-04 08:08:16', '', 'Cinema Screen-2', '', 'inherit', 'closed', 'closed', '', 'cinema-screen-2', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Cinema-Screen-2.jpg', 31, 'attachment', 'image/jpeg', 0),
(2465, 6, '2016-03-04 08:08:17', '2016-03-04 08:08:17', '', 'Chairs-1', '', 'inherit', 'closed', 'closed', '', 'chairs-1', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Chairs-1.jpg', 32, 'attachment', 'image/jpeg', 0),
(2466, 6, '2016-03-04 08:08:19', '2016-03-04 08:08:19', '', 'Chairs-3', '', 'inherit', 'closed', 'closed', '', 'chairs-3', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Chairs-3.jpg', 33, 'attachment', 'image/jpeg', 0),
(2467, 6, '2016-03-04 08:08:21', '2016-03-04 08:08:21', '', 'Chairs-2', '', 'inherit', 'closed', 'closed', '', 'chairs-2', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Chairs-2.jpg', 34, 'attachment', 'image/jpeg', 0),
(2468, 6, '2016-03-04 08:08:27', '2016-03-04 08:08:27', '', 'Entrance-1', '', 'inherit', 'closed', 'closed', '', 'entrance-1', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Entrance-1.jpg', 35, 'attachment', 'image/jpeg', 0),
(2469, 6, '2016-03-04 08:08:29', '2016-03-04 08:08:29', '', 'Entrance-2', '', 'inherit', 'closed', 'closed', '', 'entrance-2', '', '', '2016-12-29 11:56:05', '2016-12-29 04:56:05', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Entrance-2.jpg', 36, 'attachment', 'image/jpeg', 0),
(2470, 6, '2016-03-04 08:08:31', '2016-03-04 08:08:31', '', 'Meeting Table', '', 'inherit', 'closed', 'closed', '', 'meeting-table', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Meeting-Table.jpg', 21, 'attachment', 'image/jpeg', 0),
(2471, 6, '2016-12-23 16:29:44', '2016-12-23 16:29:44', '<a href="http://asiacentre.co.th/spaces/">Find out more</a>\r\n\r\n<a href="http://asiacentre.co.th/spaces/">Book Now</a>', 'ASIA Centre Space Gallery', '', 'publish', 'closed', 'closed', '', 'asiacentre-space-gallery', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 0, 'http://asiacentre.co.th/?post_type=gallery&#038;p=2471', 0, 'gallery', '', 0),
(2476, 6, '2016-03-04 08:16:02', '2016-03-04 08:16:02', '', 'Classroom-3', '', 'inherit', 'closed', 'closed', '', 'classroom-3-3', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Classroom-3-3.jpg', 20, 'attachment', 'image/jpeg', 0),
(2483, 6, '2016-03-04 08:16:30', '2016-03-04 08:16:30', '', 'Round Table-4', '', 'inherit', 'closed', 'closed', '', 'round-table-4', '', '', '2016-12-29 11:56:04', '2016-12-29 04:56:04', '', 2471, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Round-Table-4.jpg', 19, 'attachment', 'image/jpeg', 0),
(2507, 6, '2016-03-08 07:27:33', '2016-03-08 07:27:33', '', 'Asia-Centre-Logo-Square-Color', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo-square-color', '', '', '2016-03-08 07:27:33', '2016-03-08 07:27:33', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Asia-Centre-Logo-Square-Color.jpg', 0, 'attachment', 'image/jpeg', 0),
(2510, 6, '2017-01-23 17:08:31', '2017-01-23 10:08:31', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\n\n[separator style="regular"]\n\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\n<ul>\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\n 	<li>Private lockers and lounge area</li>\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\n</ul>\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\n\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\n\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\n\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\n\n[separator style="regular"]\n<h4>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</h4>\nเปิดให้บริการ รายครึ่งวัน, รายวัน, รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ เหมาะสำหรับการประชุมบริษัท การประชุมส่วนตัว การอบรม การสัมมนา งานเสวนา การประชุมเชิงปฏิบัติการ Workshop การสาธิตสินค้า งานเปิดตัวสินค้า หนังสือ งานฉายภาพยนต์ ฯลฯ\n<ul>\n 	<li>รายละเอียดภายในห้อง\n* ตู้เก็บของ Build-in / โทรศัพท์ ฟรีอินเตอร์เน็ต Wi-Fi\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\n</ul>\n&nbsp;\n<ul>\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\n* ระบบรักษาความปลอดภัย 24. ชม.\n* ที่จอดรถ\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\n</ul>\n[separator style="regular"]\n\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\n\n[separator style="regular"]\n\n<strong>WEEKDAY RATES</strong>\n<table class="table table-striped" style="height: 292px;" width="746">\n<tbody>\n<tr>\n<td width="83"><strong>Room Type</strong></td>\n<td width="51"><strong>1 hour</strong></td>\n<td width="84"><strong>Half day</strong></td>\n<td width="78"><strong>Full day</strong></td>\n<td width="73"><strong>Evening</strong></td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong> </strong></td>\n<td width="51"><em>Min.3 hrs\n</em><em>(8-5pm) </em></td>\n<td width="84">08.00-12.00\nor 13.00-17.00</td>\n<td width="78">08.00-17.00</td>\n<td width="73">17.00-21.00</td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong>Seminar Room</strong></td>\n<td width="51">1,400</td>\n<td width="84">4,000</td>\n<td width="78">7,500</td>\n<td width="73">6,500</td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong>Discussion room</strong></td>\n<td width="51">750</td>\n<td width="84">1,500</td>\n<td width="78">2,500</td>\n<td width="73">NA</td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong>Both Rooms</strong></td>\n<td width="51">1,500</td>\n<td width="84">4,500</td>\n<td width="78">8,500</td>\n<td width="73">7,000</td>\n<td width="73"></td>\n</tr>\n</tbody>\n</table>\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\n<table class="table table-striped" width="441">\n<tbody>\n<tr>\n<td width="83"><strong>Room Type</strong></td>\n<td width="51"><strong>1 hour</strong></td>\n<td width="84"><strong>Half day</strong></td>\n<td width="78"><strong>Full day</strong></td>\n<td width="73"><strong>Evening</strong></td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong> </strong></td>\n<td width="51"><em>Min.3 hrs\n</em><em>(8-5pm)</em></td>\n<td width="84">08.00-12.00\nor 13.00-17.00</td>\n<td width="78">08.00-17.00</td>\n<td width="73">17.00-21.00</td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong>Seminar Room</strong></td>\n<td width="51">2,400</td>\n<td width="84">7,000</td>\n<td width="78">14,000</td>\n<td width="73">8,500</td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong>Discussion Room</strong></td>\n<td width="51">NA</td>\n<td width="84">NA</td>\n<td width="78">NA</td>\n<td width="73">NA</td>\n<td width="73"></td>\n</tr>\n<tr>\n<td width="83"><strong>Both Rooms</strong></td>\n<td width="51">2,800</td>\n<td width="84">8,500</td>\n<td width="78">16,000</td>\n<td width="73">10,500</td>\n<td width="73"></td>\n</tr>\n</tbody>\n</table>\n<h3><strong>Room Capacity</strong></h3>\n<table class="table table-striped">\n<tbody>\n<tr>\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\n</tr>\n<tr>\n<td width="76"><strong>Number </strong></td>\n<td style="text-align: center;" width="75">40</td>\n<td style="text-align: center;" width="79">30</td>\n<td style="text-align: center;" width="81">24</td>\n<td style="text-align: center;" width="81">15</td>\n<td style="text-align: center;" width="59">4</td>\n</tr>\n</tbody>\n</table>\n* Additional chairs available on request\n<h3><strong>Office Suite</strong></h3>\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\n<table class="table table-striped">\n<tbody>\n<tr>\n<td width="116"><strong>Office Suite</strong></td>\n<td width="50"><strong>Weekly</strong></td>\n<td width="54"><strong>Monthly</strong></td>\n<td width="44"><strong>Yearly</strong></td>\n</tr>\n<tr>\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\n<td width="50">10,000</td>\n<td width="54">30,000</td>\n<td width="44">25,000</td>\n</tr>\n<tr>\n<td width="116"><strong>Sharing (1 desk)</strong></td>\n<td width="50">3,000</td>\n<td width="54">10,000</td>\n<td width="44">8,000</td>\n</tr>\n<tr>\n<td width="116"></td>\n<td width="50"></td>\n<td width="54"></td>\n<td width="44"></td>\n</tr>\n</tbody>\n</table>\n<strong>REMARKS: </strong>\n<ul>\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\n 	<li>Full advance payment to confirm booking.</li>\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\n</ul>\n<a name="bookingform"></a>\n[separator style="regular"]\n<h1><strong>Space Booking Form</strong></h1>\n[formidable id=3]\n\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-autosave-v1', '', '', '2017-01-23 17:08:31', '2017-01-23 10:08:31', '', 1918, 'http://asiacentre.co.th/other/1918-autosave-v1/', 0, 'revision', '', 0),
(2513, 6, '2016-03-11 04:17:42', '2016-03-11 04:17:42', '', 'Asia Centre-BTS Phayathai', '', 'inherit', 'closed', 'closed', '', 'asia-centre-bts-phayathai', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Asia-Centre-BTS-Phayathai.jpeg', 4, 'attachment', 'image/jpeg', 0),
(2515, 6, '2016-03-11 04:17:51', '2016-03-11 04:17:51', '', 'Asia Centre-Entrance1', '', 'inherit', 'closed', 'closed', '', 'asia-centre-entrance1', '', '', '2016-03-11 04:17:51', '2016-03-11 04:17:51', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Asia-Centre-Entrance1.jpeg', 0, 'attachment', 'image/jpeg', 0),
(2516, 6, '2016-03-11 04:17:57', '2016-03-11 04:17:57', '', 'Asia Centre-Entrance2', '', 'inherit', 'closed', 'closed', '', 'asia-centre-entrance2', '', '', '2016-10-12 09:11:19', '2016-10-12 09:11:19', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Asia-Centre-Entrance2.jpeg', 0, 'attachment', 'image/jpeg', 0),
(2518, 6, '2016-03-11 04:18:07', '2016-03-11 04:18:07', '', 'Asia Centre-Phayathai Plaza', '', 'inherit', 'closed', 'closed', '', 'asia-centre-phayathai-plaza', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Asia-Centre-Phayathai-Plaza.jpeg', 5, 'attachment', 'image/jpeg', 0),
(2521, 5, '2016-03-14 06:55:05', '2016-03-14 06:55:05', '', 'auke', '', 'inherit', 'closed', 'closed', '', 'auke', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 2136, 'http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg', 4, 'attachment', 'image/jpeg', 0),
(2522, 5, '2016-03-14 06:58:04', '2016-03-14 06:58:04', '<b><a href="http://aipglobal.co/"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://auke.ee/en/"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n   <a href="http://auke.ee/en/"> <strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 06:58:04', '2016-03-14 06:58:04', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2523, 5, '2016-03-14 06:58:51', '2016-03-14 06:58:51', '', 'logo', '', 'inherit', 'closed', 'closed', '', 'logo', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 2136, 'http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg', 3, 'attachment', 'image/jpeg', 0),
(2524, 5, '2016-03-14 07:03:23', '2016-03-14 07:03:23', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="438" height="72" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:03:23', '2016-03-14 07:03:23', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2525, 5, '2016-03-14 07:03:56', '2016-03-14 07:03:56', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="438" height="72" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:03:56', '2016-03-14 07:03:56', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2526, 5, '2016-03-14 07:04:26', '2016-03-14 07:04:26', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:04:26', '2016-03-14 07:04:26', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2527, 5, '2016-03-14 07:04:45', '2016-03-14 07:04:45', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:04:45', '2016-03-14 07:04:45', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2528, 5, '2016-03-14 07:04:59', '2016-03-14 07:04:59', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:04:59', '2016-03-14 07:04:59', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2529, 5, '2016-03-14 07:05:17', '2016-03-14 07:05:17', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n&nbsp;\r\n\r\n</div>\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:05:17', '2016-03-14 07:05:17', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2530, 5, '2016-03-14 07:05:41', '2016-03-14 07:05:41', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="alignleft wp-image-2276" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:05:41', '2016-03-14 07:05:41', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2531, 5, '2016-03-14 07:06:10', '2016-03-14 07:06:10', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:06:10', '2016-03-14 07:06:10', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2532, 5, '2016-03-14 07:06:40', '2016-03-14 07:06:40', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><img class="alignnone size-full wp-image-2521 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/auke.jpg" alt="auke" width="313" height="115" /></a>\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-14 07:06:40', '2016-03-14 07:06:40', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2533, 5, '2016-03-15 02:47:21', '2016-03-15 02:47:21', '', 'Auke3', '', 'inherit', 'closed', 'closed', '', 'auke3', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 2136, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Auke3.jpg', 2, 'attachment', 'image/jpeg', 0),
(2534, 5, '2016-03-15 02:48:13', '2016-03-15 02:48:13', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong><img class="wp-image-2533 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Auke3-1140x1140.jpg" alt="Auke3" width="214" height="214" />Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-15 02:48:13', '2016-03-15 02:48:13', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2535, 5, '2016-03-15 02:50:15', '2016-03-15 02:50:15', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong><img class="wp-image-2533 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Auke3-1140x1140.jpg" alt="Auke3" width="214" height="214" /></strong></a>\r\n\r\n&nbsp;\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-03-15 02:50:15', '2016-03-15 02:50:15', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2536, 6, '2016-03-15 09:38:54', '2016-03-15 09:38:54', '', 'How to get Asia Centre', '', 'inherit', 'closed', 'closed', '', 'how-to-get-asia-centre', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2016/03/How-to-get-Asia-Centre.jpg', 3, 'attachment', 'image/jpeg', 0),
(2537, 6, '2016-03-15 09:45:47', '2016-03-15 09:45:47', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<img class="wp-image-2536 alignnone" src="http://asiacentre.co.th/wp-content/uploads/2016/03/How-to-get-Asia-Centre-1140x390.jpg" alt="How to get Asia Centre" width="940" height="321" /><strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="alignnone wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="670" height="247" />\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-03-15 09:45:47', '2016-03-15 09:45:47', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2538, 6, '2016-03-15 09:57:27', '2016-03-15 09:57:27', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<img class="alignnone wp-image-2536 " src="http://asiacentre.co.th/wp-content/uploads/2016/03/How-to-get-Asia-Centre.jpg" alt="How to get Asia Centre" width="788" height="269" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="wp-image-2217 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="635" height="234" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-03-15 09:57:27', '2016-03-15 09:57:27', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2540, 6, '2016-03-15 10:32:28', '2016-03-15 10:32:28', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<img class="alignnone size-medium wp-image-2539" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-03-15 10:32:28', '2016-03-15 10:32:28', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2541, 6, '2016-03-15 11:05:56', '2016-03-15 11:05:56', '', 'Direction to Asia Centre', '', 'inherit', 'closed', 'closed', '', 'direction-to-asia-centre-2', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1.jpg', 2, 'attachment', 'image/jpeg', 0),
(2542, 6, '2016-03-15 11:07:31', '2016-03-15 11:07:31', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n&nbsp;\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-03-15 11:07:31', '2016-03-15 11:07:31', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2543, 6, '2016-03-15 11:09:50', '2016-03-15 11:09:50', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n	<li>Go out through Exit 1 and walk down the stairs</li>\r\n	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-03-15 11:09:50', '2016-03-15 11:09:50', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2545, 5, '2016-03-17 10:03:58', '2016-03-17 10:03:58', '<span style="font-weight: 400;">The “Kachin conflict” at its heart is a political one. Even though the <img class="wp-image-2550 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/03/1238820_1135688193117074_3493690549020337119_n.jpg" alt="1238820_1135688193117074_3493690549020337119_n" width="182" height="214" />term “Kachin conflict” invariably leads to it being framed and discussed as an ethnic conflict, obscuring the politics at play. This was the main point made by Dr Karin Dean, our guest speaker, at the second installment of the Asia Centre Seminar series.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The seminar navigating the participants through the intricacies of the “Kachin conflict” in Myanmar, because to be Kachin can mean more than one thing- as the term does not represent a particular homogenous ethnic group united towards a particular purpose.</span>\r\n\r\n<img class="alignnone size-full wp-image-2548" src="http://asiacentre.co.th/wp-content/uploads/2016/03/10394868_1135688579783702_2696966684464241378_n.jpg" alt="10394868_1135688579783702_2696966684464241378_n" width="480" height="292" />\r\n\r\n<span style="font-weight: 400;">The seminar attracted an audience of over 50 individual from diverse backgrounds, each with different entry points into the discussion; from members of the Kachin community to students and academics researching on Myanmar and members of the general public who were interested in learning more about Southeast Asia’s new hot topic country. </span>\r\n\r\n<img class="alignnone size-full wp-image-2547" src="http://asiacentre.co.th/wp-content/uploads/2016/03/8377_1135688779783682_209742658531093273_n.jpg" alt="8377_1135688779783682_209742658531093273_n" width="480" height="322" />\r\n\r\nHer presentation was followed by in interactive dialogue session which saw members of the Kachin community sharing their personal perspectives, questions from the audience as well as discussion on some of the contentious issues raised.\r\n\r\n<img class="alignnone size-full wp-image-2549" src="http://asiacentre.co.th/wp-content/uploads/2016/03/12742831_1135688383117055_4856394100844368184_n.jpg" alt="12742831_1135688383117055_4856394100844368184_n" width="480" height="239" />\r\n\r\n<span style="font-weight: 400;">If the politics of Southeast Asia interests you, do join us for our next session, this weekend - A Political Utopia Called Singapore - Saturday 19th March 2016, 9.30am to 12noon. For more information click </span><a href="http://asiacentre.co.th/event/a-political-utopia-called-singapore/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">.</span>\r\n\r\nImages courtesy of Lance Woodruff.', 'The Politics Of Conflict', '', 'publish', 'closed', 'closed', '', 'the-politics-of-conflict', '', '', '2016-03-17 10:18:28', '2016-03-17 10:18:28', '', 0, 'http://asiacentre.co.th/?p=2545', 0, 'post', '', 0),
(2546, 5, '2016-03-17 10:03:27', '2016-03-17 10:03:27', '<span style="font-weight: 400;">The “Kachin conflict” at its heart is a political one. Even though the term “Kachin conflict” invariably leads to it being framed and discussed as an ethnic conflict, obscuring the politics at play. This was the main point made by Dr Karin Dean, our guest speaker, at the second installment of the Asia Centre Seminar series.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The seminar navigating the participants through the intricacies of the “Kachin conflict” in Myanmar, because to be Kachin can mean more than one thing- as the term does not represent a particular homogenous ethnic group united towards a particular purpose.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The seminar attracted an audience of over 50 individual from diverse backgrounds, each with different entry points into the discussion; from members of the Kachin community to students and academics researching on Myanmar and members of the general public who were interested in learning more about Southeast Asia’s new hot topic country. </span>\r\n\r\n&nbsp;\r\n\r\nHer presentation was followed by in interactive dialogue session which saw members of the Kachin community sharing their personal perspectives, questions from the audience as well as discussion on some of the contentious issues raised.\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">If the politics of Southeast Asia interests you, do join us for our next session, this weekend - A Political Utopia Called Singapore - Saturday 19th March 2016, 9.30am to 12noon. For more information click </span><a href="http://asiacentre.co.th/event/a-political-utopia-called-singapore/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">.</span>\r\n\r\n&nbsp;', 'The Politics Of Conflict', '', 'inherit', 'closed', 'closed', '', '2545-revision-v1', '', '', '2016-03-17 10:03:27', '2016-03-17 10:03:27', '', 2545, 'http://asiacentre.co.th/other/2545-revision-v1/', 0, 'revision', '', 0),
(2547, 5, '2016-03-17 10:07:08', '2016-03-17 10:07:08', '', '8377_1135688779783682_209742658531093273_n', '', 'inherit', 'closed', 'closed', '', '8377_1135688779783682_209742658531093273_n', '', '', '2016-03-17 10:18:28', '2016-03-17 10:18:28', '', 2545, 'http://asiacentre.co.th/wp-content/uploads/2016/03/8377_1135688779783682_209742658531093273_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2548, 5, '2016-03-17 10:07:09', '2016-03-17 10:07:09', '', '10394868_1135688579783702_2696966684464241378_n', '', 'inherit', 'closed', 'closed', '', '10394868_1135688579783702_2696966684464241378_n', '', '', '2016-03-17 10:18:28', '2016-03-17 10:18:28', '', 2545, 'http://asiacentre.co.th/wp-content/uploads/2016/03/10394868_1135688579783702_2696966684464241378_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(2549, 5, '2016-03-17 10:07:10', '2016-03-17 10:07:10', '', '12742831_1135688383117055_4856394100844368184_n', '', 'inherit', 'closed', 'closed', '', '12742831_1135688383117055_4856394100844368184_n', '', '', '2016-03-17 10:18:28', '2016-03-17 10:18:28', '', 2545, 'http://asiacentre.co.th/wp-content/uploads/2016/03/12742831_1135688383117055_4856394100844368184_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(2550, 5, '2016-03-17 10:07:10', '2016-03-17 10:07:10', '', '1238820_1135688193117074_3493690549020337119_n', '', 'inherit', 'closed', 'closed', '', '1238820_1135688193117074_3493690549020337119_n', '', '', '2016-03-17 10:18:28', '2016-03-17 10:18:28', '', 2545, 'http://asiacentre.co.th/wp-content/uploads/2016/03/1238820_1135688193117074_3493690549020337119_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(2552, 5, '2016-03-17 10:09:43', '2016-03-17 10:09:43', '', '12321583_1135688509783709_5050390669660545527_n', '', 'inherit', 'closed', 'closed', '', '12321583_1135688509783709_5050390669660545527_n', '', '', '2016-03-17 10:09:43', '2016-03-17 10:09:43', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/03/12321583_1135688509783709_5050390669660545527_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2553, 5, '2016-03-17 10:11:35', '2016-03-17 10:11:35', '<span style="font-weight: 400;">The “Kachin conflict” at its heart is a political one. Even though the <img class="wp-image-2550 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/03/1238820_1135688193117074_3493690549020337119_n.jpg" alt="1238820_1135688193117074_3493690549020337119_n" width="182" height="214" />term “Kachin conflict” invariably leads to it being framed and discussed as an ethnic conflict, obscuring the politics at play. This was the main point made by Dr Karin Dean, our guest speaker, at the second installment of the Asia Centre Seminar series.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The seminar navigating the participants through the intricacies of the “Kachin conflict” in Myanmar, because to be Kachin can mean more than one thing- as the term does not represent a particular homogenous ethnic group united towards a particular purpose.</span>\r\n\r\n<img class="alignnone size-full wp-image-2548" src="http://asiacentre.co.th/wp-content/uploads/2016/03/10394868_1135688579783702_2696966684464241378_n.jpg" alt="10394868_1135688579783702_2696966684464241378_n" width="480" height="292" />\r\n\r\n<span style="font-weight: 400;">The seminar attracted an audience of over 50 individual from diverse backgrounds, each with different entry points into the discussion; from members of the Kachin community to students and academics researching on Myanmar and members of the general public who were interested in learning more about Southeast Asia’s new hot topic country. </span>\r\n\r\n<img class="alignnone size-full wp-image-2547" src="http://asiacentre.co.th/wp-content/uploads/2016/03/8377_1135688779783682_209742658531093273_n.jpg" alt="8377_1135688779783682_209742658531093273_n" width="480" height="322" />\r\n\r\nHer presentation was followed by in interactive dialogue session which saw members of the Kachin community sharing their personal perspectives, questions from the audience as well as discussion on some of the contentious issues raised.\r\n\r\n<img class="alignnone size-full wp-image-2549" src="http://asiacentre.co.th/wp-content/uploads/2016/03/12742831_1135688383117055_4856394100844368184_n.jpg" alt="12742831_1135688383117055_4856394100844368184_n" width="480" height="239" />\r\n\r\n<span style="font-weight: 400;">If the politics of Southeast Asia interests you, do join us for our next session, this weekend - A Political Utopia Called Singapore - Saturday 19th March 2016, 9.30am to 12noon. For more information click </span><a href="http://asiacentre.co.th/event/a-political-utopia-called-singapore/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">.</span>\r\n\r\n&nbsp;', 'The Politics Of Conflict', '', 'inherit', 'closed', 'closed', '', '2545-revision-v1', '', '', '2016-03-17 10:11:35', '2016-03-17 10:11:35', '', 2545, 'http://asiacentre.co.th/other/2545-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2554, 5, '2016-03-17 10:18:28', '2016-03-17 10:18:28', '<span style="font-weight: 400;">The “Kachin conflict” at its heart is a political one. Even though the <img class="wp-image-2550 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/03/1238820_1135688193117074_3493690549020337119_n.jpg" alt="1238820_1135688193117074_3493690549020337119_n" width="182" height="214" />term “Kachin conflict” invariably leads to it being framed and discussed as an ethnic conflict, obscuring the politics at play. This was the main point made by Dr Karin Dean, our guest speaker, at the second installment of the Asia Centre Seminar series.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The seminar navigating the participants through the intricacies of the “Kachin conflict” in Myanmar, because to be Kachin can mean more than one thing- as the term does not represent a particular homogenous ethnic group united towards a particular purpose.</span>\r\n\r\n<img class="alignnone size-full wp-image-2548" src="http://asiacentre.co.th/wp-content/uploads/2016/03/10394868_1135688579783702_2696966684464241378_n.jpg" alt="10394868_1135688579783702_2696966684464241378_n" width="480" height="292" />\r\n\r\n<span style="font-weight: 400;">The seminar attracted an audience of over 50 individual from diverse backgrounds, each with different entry points into the discussion; from members of the Kachin community to students and academics researching on Myanmar and members of the general public who were interested in learning more about Southeast Asia’s new hot topic country. </span>\r\n\r\n<img class="alignnone size-full wp-image-2547" src="http://asiacentre.co.th/wp-content/uploads/2016/03/8377_1135688779783682_209742658531093273_n.jpg" alt="8377_1135688779783682_209742658531093273_n" width="480" height="322" />\r\n\r\nHer presentation was followed by in interactive dialogue session which saw members of the Kachin community sharing their personal perspectives, questions from the audience as well as discussion on some of the contentious issues raised.\r\n\r\n<img class="alignnone size-full wp-image-2549" src="http://asiacentre.co.th/wp-content/uploads/2016/03/12742831_1135688383117055_4856394100844368184_n.jpg" alt="12742831_1135688383117055_4856394100844368184_n" width="480" height="239" />\r\n\r\n<span style="font-weight: 400;">If the politics of Southeast Asia interests you, do join us for our next session, this weekend - A Political Utopia Called Singapore - Saturday 19th March 2016, 9.30am to 12noon. For more information click </span><a href="http://asiacentre.co.th/event/a-political-utopia-called-singapore/"><span style="font-weight: 400;">here</span></a><span style="font-weight: 400;">.</span>\r\n\r\nImages courtesy of Lance Woodruff.', 'The Politics Of Conflict', '', 'inherit', 'closed', 'closed', '', '2545-revision-v1', '', '', '2016-03-17 10:18:28', '2016-03-17 10:18:28', '', 2545, 'http://asiacentre.co.th/other/2545-revision-v1/', 0, 'revision', '', 0),
(2556, 5, '2016-03-18 06:01:01', '2016-03-18 06:01:01', '<img class="alignnone size-full wp-image-2557" src="http://asiacentre.co.th/wp-content/uploads/2016/03/FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280670752.jpg" alt="FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr" width="617" height="308" />\r\n\r\nIn late 2015, Alexandra Demetrianova, a journalist, traveled to Africa to report on the ritual of ''entering femininity'' and gaining social status within the Masai community. The practice involves female gentile mutation (FGM) of infants and young girls. FGM occurs by virtue of tradition and for religious reasons and takes place in different regions. The latest UN estimations show that approximately 8,500 women and girls are harmed by FGM daily and around 140 million women and girls worldwide are victims of FGM. Alexandra Demetrianova, will share her impressions of the issue and reflects on how it is reported and documented in different regions. She will be joined by a panel of speakers who have been active in <span class="text_exposed_show">documenting and reporting on the practice.\r\n</span>\r\n\r\n<strong>About the Speaker:</strong>\r\n<div class="_4-u2 _24vz _4-u8">\r\n<div class="_2qgs">\r\n<div id="id_56eb97c4dd7f76049872254" class="text_exposed_root text_exposed"><span class="text_exposed_show"><img class="wp-image-2147 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="145" height="160" />Alexandra Demetrianova <em>is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea, and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.</em></span></div>\r\n</div>\r\n</div>\r\n<div class="_4-u2 _24vz _4-u8"></div>', 'Entering Femininity: Reporting Rituals and Violations', '', 'publish', 'closed', 'closed', '', '2556', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2556', 0, 'event', '', 0),
(2557, 5, '2016-03-18 05:55:14', '2016-03-18 05:55:14', '', 'FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr', '', 'inherit', 'closed', 'closed', '', 'fmg_amnesty_tcp_genital-mutilation_photo-courtesy-of-layalk-via-flickr', '', '', '2016-03-18 05:55:14', '2016-03-18 05:55:14', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/03/FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr.jpg', 0, 'attachment', 'image/jpeg', 0),
(2559, 6, '2016-03-18 08:21:36', '2016-03-18 08:21:36', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (classroom, round table, theatre, networking)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,100</td>\r\n<td width="84">3,600</td>\r\n<td width="78">6,400</td>\r\n<td width="73">5,400</td>\r\n<td width="73">10,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">7,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Meeting Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Classroom</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Round table</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Networking</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">30+10</td>\r\n<td style="text-align: center;" width="79">30+10</td>\r\n<td style="text-align: center;" width="81">40</td>\r\n<td style="text-align: center;" width="81">60</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-03-18 08:21:36', '2016-03-18 08:21:36', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2561, 5, '2016-03-23 03:25:41', '2016-03-23 03:25:41', '', '10509541_1149847311701162_6408657329684323979_n', '', 'inherit', 'closed', 'closed', '', '10509541_1149847311701162_6408657329684323979_n', '', '', '2016-03-23 03:25:41', '2016-03-23 03:25:41', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/03/10509541_1149847311701162_6408657329684323979_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2565, 5, '2016-03-23 03:38:05', '2016-03-23 03:38:05', '<img class="wp-image-2561 size-full alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/10509541_1149847311701162_6408657329684323979_n-e1458703606947.jpg" alt="10509541_1149847311701162_6408657329684323979_n" width="320" height="180" />Singapore is not the political utopia that it projects itself to be. Beneath the veneer, lies a dystopia of political repression, self-censorship and culture of fear. This was the nub of Jeannette Aruldoss’ presentation at Asia Centre on 19 March 2016.\r\n\r\nAruldoss, a lawyer and an opposition candidate of two election campaigns, shared some of her personal experiences from campaigning in 2011 and 2015 and provided a succinct overview of the political system and raised questions about its efficacy.\r\n\r\nThe lingering question after the latest elections of 2015 was if politics in Singapore was going to change, or would be status quo with the current ruling party being in power indefinitely? And if the Singapore citizen wants the current ruling party, should there be opposition efforts aimed at bringing about change?\r\n\r\nSome 30 odd attendees came with a healthy dose of scepticism as well as support for the city-state. Jeannette Aruldoss’ cutting critique of the PAP’s landslide victory in the 2015 elections both engaged and provoked questions from the mixed audience during the lively Q&amp;A session.\r\n\r\nIn the April edition of the Asia Centre Seminar Series, we explore the practice of female genital mutilation(FGM) and how it is documented and portrayed in the media. Entering Femininity: Reporting Rituals &amp; Violations happens on 30th April (Saturday) from 9.30am to 12noon at Asia Centre. For more details click <a href="http://asiacentre.co.th/event/2556/">here</a>.', 'Singapore: A Political Dystopia for Democracy', '', 'publish', 'closed', 'closed', '', 'singapore-a-political-dystopia-for-democracy', '', '', '2016-03-23 03:39:29', '2016-03-23 03:39:29', '', 0, 'http://asiacentre.co.th/?p=2565', 0, 'post', '', 0),
(2566, 5, '2016-03-23 03:35:09', '2016-03-23 03:35:09', '', '10509541_1149847311701162_6408657329684323979_n', '', 'inherit', 'closed', 'closed', '', '10509541_1149847311701162_6408657329684323979_n-2', '', '', '2016-03-23 03:39:29', '2016-03-23 03:39:29', '', 2565, 'http://asiacentre.co.th/wp-content/uploads/2016/03/10509541_1149847311701162_6408657329684323979_n-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2567, 5, '2016-03-23 03:37:42', '2016-03-23 03:37:42', '<img class="wp-image-2561 size-full alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/10509541_1149847311701162_6408657329684323979_n-e1458703606947.jpg" alt="10509541_1149847311701162_6408657329684323979_n" width="320" height="180" />Singapore is not the political utopia that it projects itself to be. Beneath the veneer, lies a dystopia of political repression, self-censorship and culture of fear. This was the nub of Jeannette Aruldoss’ presentation at Asia Centre on 19 March 2016.\r\n\r\nAruldoss, a lawyer and an opposition candidate of two election campaigns, shared some of her personal experiences from campaigning in 2011 and 2015 and provided a succinct overview of the political system and raised questions about its efficacy.\r\n\r\nThe lingering question after the latest elections of 2015 was if politics in Singapore was going to change, or would be status quo with the current ruling party being in power indefinitely? And if the Singapore citizen wants the current ruling party, should there be opposition efforts aimed at bringing about change?\r\n\r\nSome 30 odd attendees came with a healthy dose of scepticism as well as support for the city-state. Jeannette Aruldoss’ cutting critique of the PAP’s landslide victory in the 2015 elections both engaged and provoked questions from the mixed audience during the lively Q&amp;A session.\r\n\r\nIn the April edition of the Asia Centre Seminar Series, we explore the practice of female genital mutilation(FGM) and how it is documented and portrayed in the media. Entering Femininity: Reporting Rituals &amp; Violations happens on 30th April (Saturday) from 9.30am to 12noon at Asia Centre. For more details click here.', 'Singapore: A Political Dystopia for Democracy', '', 'inherit', 'closed', 'closed', '', '2565-revision-v1', '', '', '2016-03-23 03:37:42', '2016-03-23 03:37:42', '', 2565, 'http://asiacentre.co.th/other/2565-revision-v1/', 0, 'revision', '', 0),
(2568, 5, '2016-03-23 03:39:29', '2016-03-23 03:39:29', '<img class="wp-image-2561 size-full alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/10509541_1149847311701162_6408657329684323979_n-e1458703606947.jpg" alt="10509541_1149847311701162_6408657329684323979_n" width="320" height="180" />Singapore is not the political utopia that it projects itself to be. Beneath the veneer, lies a dystopia of political repression, self-censorship and culture of fear. This was the nub of Jeannette Aruldoss’ presentation at Asia Centre on 19 March 2016.\r\n\r\nAruldoss, a lawyer and an opposition candidate of two election campaigns, shared some of her personal experiences from campaigning in 2011 and 2015 and provided a succinct overview of the political system and raised questions about its efficacy.\r\n\r\nThe lingering question after the latest elections of 2015 was if politics in Singapore was going to change, or would be status quo with the current ruling party being in power indefinitely? And if the Singapore citizen wants the current ruling party, should there be opposition efforts aimed at bringing about change?\r\n\r\nSome 30 odd attendees came with a healthy dose of scepticism as well as support for the city-state. Jeannette Aruldoss’ cutting critique of the PAP’s landslide victory in the 2015 elections both engaged and provoked questions from the mixed audience during the lively Q&amp;A session.\r\n\r\nIn the April edition of the Asia Centre Seminar Series, we explore the practice of female genital mutilation(FGM) and how it is documented and portrayed in the media. Entering Femininity: Reporting Rituals &amp; Violations happens on 30th April (Saturday) from 9.30am to 12noon at Asia Centre. For more details click <a href="http://asiacentre.co.th/event/2556/">here</a>.', 'Singapore: A Political Dystopia for Democracy', '', 'inherit', 'closed', 'closed', '', '2565-revision-v1', '', '', '2016-03-23 03:39:29', '2016-03-23 03:39:29', '', 2565, 'http://asiacentre.co.th/other/2565-revision-v1/', 0, 'revision', '', 0),
(2570, 5, '2016-04-01 09:41:27', '0000-00-00 00:00:00', '<b>Course Description</b>\n\n<span style="font-weight: 400;">This is an introductory course for university students which aims to develop the academic writing skills required to produce articles, essays, reports and dissertations in English. The course will help students to organise their ideas using effective language and an appropriate academic tone. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. </span>\n\n&nbsp;\n\n<b>Course Objectives</b>\n\n<span style="font-weight: 400;">The course aims to help students build a foundation upon which to develop their academic writing skills and produce content  that is concise, engaging and well-sourced. </span>\n\n&nbsp;\n\n<b>Learning Outcomes</b>\n\n<span style="font-weight: 400;">At the end of the course students will understand and be able to</span>\n<ul>\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Use of appropriate academic language</span></li>\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Produce effective, logical and coherent text</span></li>\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write effective thesis statements and well-developed substantive paragraphs</span></li>\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write an essay/op-ed</span></li>\n</ul>\n&nbsp;\n\n<b>Course Format</b>\n\n<span style="font-weight: 400;">The course combines lecture and discussion, complemented by activities including writing, text analysis, and redrafting and editorial exercises. The workshop also promotes learning through interaction.</span>\n\n&nbsp;\n\n<b>Course Schedule</b>\n\n<span style="font-weight: 400;">This is an intensive 2 day course that will be conducted from 9.00 am to 4.00 pm.</span>\n<table style="height: 327px;" width="607">\n<tbody>\n<tr>\n<td colspan="3"><span style="font-weight: 400;">DAY 1</span></td>\n</tr>\n<tr>\n<td><span style="font-weight: 400;">9am -12noon</span>\n\n<span style="font-weight: 400;">Session 1</span></td>\n<td><span style="font-weight: 400;">12-1pm</span>\n\n<span style="font-weight: 400;">Lunch</span></td>\n<td><span style="font-weight: 400;">1-4pm</span>\n\n<span style="font-weight: 400;">Session 2</span></td>\n</tr>\n<tr>\n<td colspan="3"><span style="font-weight: 400;">DAY 2</span></td>\n</tr>\n<tr>\n<td><span style="font-weight: 400;">9am -12noon</span>\n\n<span style="font-weight: 400;">Session 1</span></td>\n<td><span style="font-weight: 400;">12-1pm</span>\n\n<span style="font-weight: 400;">Lunch</span></td>\n<td><span style="font-weight: 400;">1-4pm</span>\n\n<span style="font-weight: 400;">Session 2</span></td>\n</tr>\n</tbody>\n</table>\n&nbsp;\n\n<b>Fees  </b>\n\n<span style="font-weight: 400;">3500 baht per student</span>\n\n&nbsp;\n\n<b>Venue</b>\n\n<span style="font-weight: 400;">Asia Centre</span>\n\n<span style="font-weight: 400;">128/183 Phayathai Plaza Building (17th Floor), </span>\n\n<span style="font-weight: 400;">Phayathai Road, Thung-Phayathai, Rachatewi</span>\n\n<span style="font-weight: 400;">Bangkok 10400 Thailand</span>\n\n&nbsp;\n\n<b>Contact Information</b>\n\n<a href="mailto:info@asiacentre.co.th" target="_blank">info@asiacentre.co.th</a>\n\n&nbsp;\n\n<span style="font-weight: 400;">To register please click<a href="https://docs.google.com/forms/d/1Q_iGzvSG5k_AVaAMU7aPasGVnupABwL6t2lwIwlBC6M/viewform" target="_blank"> here</a>.</span>\n\n<span style="font-weight: 400;"> </span>\n\n&nbsp;', 'Academic Writing Clinic', '', 'draft', 'closed', 'closed', '', 'academic-writing-clinic', '', '', '2016-04-01 09:41:27', '2016-04-01 09:41:27', '', 0, 'http://asiacentre.co.th/?p=2570', 0, 'post', '', 0),
(2571, 5, '2016-04-01 09:37:58', '2016-04-01 09:37:58', '<b>Course Description</b>\r\n\r\n<span style="font-weight: 400;">This is an introductory course for university students which aims to develop the academic writing skills required to produce articles, essays, reports and dissertations in English. The course will help students to organise their ideas using effective language and an appropriate academic tone. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. </span>\r\n\r\n<b>Course Objectives</b>\r\n\r\n<span style="font-weight: 400;">The course aims to help students build a foundation upon which to develop their academic writing skills and produce content  that is concise, engaging and well-sourced. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Learning Outcomes</b>\r\n\r\n<span style="font-weight: 400;">At the end of the course students will understand and be able to</span>\r\n<ul>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Use of appropriate academic language</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Produce effective, logical and coherent text</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write effective thesis statements and well-developed substantive paragraphs</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write an essay/op-ed</span></li>\r\n</ul>\r\n<b>Course Format</b>\r\n\r\n<span style="font-weight: 400;">The course combines lecture and discussion, complemented by activities including writing, text analysis, and redrafting and editorial exercises. The workshop also promotes learning through interaction.</span>\r\n\r\n<b>Course Schedule</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive 2 day course that will be conducted from 9.00 am to 4.00 pm.</span>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 1</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 2</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<b>Fees  </b>\r\n\r\n<span style="font-weight: 400;">3500 baht per student</span>\r\n\r\n&nbsp;\r\n\r\n<b>Venue</b>\r\n\r\n<span style="font-weight: 400;">Asia Centre</span>\r\n\r\n<span style="font-weight: 400;">128/183 Phayathai Plaza Building (17th Floor), </span>\r\n\r\n<span style="font-weight: 400;">Phayathai Road, Thung-Phayathai, Rachatewi</span>\r\n\r\n<span style="font-weight: 400;">Bangkok 10400 Thailand</span>\r\n\r\n&nbsp;\r\n\r\n<b>Contact Information</b>\r\n\r\n<a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">To register please click<a href="https://docs.google.com/forms/d/1Q_iGzvSG5k_AVaAMU7aPasGVnupABwL6t2lwIwlBC6M/viewform"> here</a>.</span>\r\n\r\n<span style="font-weight: 400;"> </span>\r\n\r\n&nbsp;', 'Academic Writing Clinic', '', 'inherit', 'closed', 'closed', '', '2570-revision-v1', '', '', '2016-04-01 09:37:58', '2016-04-01 09:37:58', '', 2570, 'http://asiacentre.co.th/other/2570-revision-v1/', 0, 'revision', '', 0),
(2572, 5, '2016-04-01 09:39:45', '2016-04-01 09:39:45', '<b>Course Description</b>\r\n\r\n<span style="font-weight: 400;">This is an introductory course for university students which aims to develop the academic writing skills required to produce articles, essays, reports and dissertations in English. The course will help students to organise their ideas using effective language and an appropriate academic tone. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece. </span>\r\n\r\n<b>Course Objectives</b>\r\n\r\n<span style="font-weight: 400;">The course aims to help students build a foundation upon which to develop their academic writing skills and produce content  that is concise, engaging and well-sourced. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Learning Outcomes</b>\r\n\r\n<span style="font-weight: 400;">At the end of the course students will understand and be able to</span>\r\n<ul>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Use of appropriate academic language</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Produce effective, logical and coherent text</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write effective thesis statements and well-developed substantive paragraphs</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write an essay/op-ed</span></li>\r\n</ul>\r\n<b>Course Format</b>\r\n\r\n<span style="font-weight: 400;">The course combines lecture and discussion, complemented by activities including writing, text analysis, and redrafting and editorial exercises. The workshop also promotes learning through interaction.</span>\r\n\r\n<b>Course Schedule</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive 2 day course that will be conducted from 9.00 am to 4.00 pm.</span>\r\n<table style="height: 327px;" width="607">\r\n<tbody>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 1</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 2</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n&nbsp;\r\n\r\n<b>Fees  </b>\r\n\r\n<span style="font-weight: 400;">3500 baht per student</span>\r\n\r\n&nbsp;\r\n\r\n<b>Venue</b>\r\n\r\n<span style="font-weight: 400;">Asia Centre</span>\r\n\r\n<span style="font-weight: 400;">128/183 Phayathai Plaza Building (17th Floor), </span>\r\n\r\n<span style="font-weight: 400;">Phayathai Road, Thung-Phayathai, Rachatewi</span>\r\n\r\n<span style="font-weight: 400;">Bangkok 10400 Thailand</span>\r\n\r\n&nbsp;\r\n\r\n<b>Contact Information</b>\r\n\r\n<a href="mailto:info@asiacentre.co.th" target="_blank">info@asiacentre.co.th</a>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">To register please click<a href="https://docs.google.com/forms/d/1Q_iGzvSG5k_AVaAMU7aPasGVnupABwL6t2lwIwlBC6M/viewform" target="_blank"> here</a>.</span>\r\n\r\n<span style="font-weight: 400;"> </span>\r\n\r\n&nbsp;', 'Academic Writing Clinic', '', 'inherit', 'closed', 'closed', '', '2570-revision-v1', '', '', '2016-04-01 09:39:45', '2016-04-01 09:39:45', '', 2570, 'http://asiacentre.co.th/other/2570-revision-v1/', 0, 'revision', '', 0),
(2573, 5, '2016-04-01 10:06:14', '2016-04-01 10:06:14', '<b>\r\nCourse Description<img class="wp-image-2574 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/04/academic_writing.jpg" alt="academic_writing" width="255" height="197" /></b>\r\n\r\n<span style="font-weight: 400;">This is an introductory course for university students which aims to develop the academic writing skills required to produce articles, essays, reports and dissertations in English. The course will help students to organise their ideas using effective language and an appropriate academic tone. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece.</span>\r\n\r\n<b>Course Objectives</b>\r\n\r\n<span style="font-weight: 400;">The course aims to help students build a foundation upon which to develop their academic writing skills and produce content  that is concise, engaging and well-sourced.</span>\r\n\r\n<b>Learning Outcomes</b>\r\n\r\n<span style="font-weight: 400;">At the end of the course students will understand and be able to</span>\r\n<ul>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Use of appropriate academic language</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Produce effective, logical and coherent text</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write effective thesis statements and well-developed substantive paragraphs</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write an essay/op-ed</span></li>\r\n</ul>\r\n<b>Course Format</b>\r\n\r\n<span style="font-weight: 400;">The course combines lecture and discussion, complemented by activities including writing, text analysis, and redrafting and editorial exercises. The workshop also promotes learning through interaction.</span>\r\n\r\n<b>Course Schedule</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive 2 day course that will be conducted from 9.00 am to 4.00 pm.</span>\r\n<table style="height: 327px;" width="607">\r\n<tbody>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 1</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 2</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<b>Fees  </b>\r\n\r\n<span style="font-weight: 400;">3500 baht per student</span>\r\n\r\n<b>Venue</b>\r\n\r\n<span style="font-weight: 400;"><a href="http://asiacentre.co.th/contact-us/location/" target="_blank">Asia Centre</a></span>\r\n\r\n<b>Contact Information</b>\r\n\r\n<a href="mailto:info@asiacentre.co.th" target="_blank">info@asiacentre.co.th</a>\r\n\r\n<span style="font-weight: 400;">To register please click<a href="https://docs.google.com/forms/d/1Q_iGzvSG5k_AVaAMU7aPasGVnupABwL6t2lwIwlBC6M/viewform" target="_blank"> here</a>.</span>', 'Academic Writing Clinic', '', 'publish', 'closed', 'closed', '', 'academic-writing-clinic', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2573', 0, 'event', '', 0),
(2574, 5, '2016-04-01 10:10:38', '2016-04-01 10:10:38', '', 'academic_writing', '', 'inherit', 'closed', 'closed', '', 'academic_writing', '', '', '2016-04-01 10:10:38', '2016-04-01 10:10:38', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/04/academic_writing.jpg', 0, 'attachment', 'image/jpeg', 0),
(2575, 5, '2016-04-01 10:11:15', '2016-04-01 10:11:15', '<b>\r\nCourse Description<img class="wp-image-2574 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/04/academic_writing.jpg" alt="academic_writing" width="255" height="197" /></b>\r\n\r\n<span style="font-weight: 400;">This is an introductory course for university students which aims to develop the academic writing skills required to produce articles, essays, reports and dissertations in English. The course will help students to organise their ideas using effective language and an appropriate academic tone. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece.</span>\r\n\r\n<b>Course Objectives</b>\r\n\r\n<span style="font-weight: 400;">The course aims to help students build a foundation upon which to develop their academic writing skills and produce content  that is concise, engaging and well-sourced.</span>\r\n\r\n<b>Learning Outcomes</b>\r\n\r\n<span style="font-weight: 400;">At the end of the course students will understand and be able to</span>\r\n<ul>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Use of appropriate academic language</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Produce effective, logical and coherent text</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write effective thesis statements and well-developed substantive paragraphs</span></li>\r\n	<li style="font-weight: 400;"><span style="font-weight: 400;">Write an essay/op-ed</span></li>\r\n</ul>\r\n<b>Course Format</b>\r\n\r\n<span style="font-weight: 400;">The course combines lecture and discussion, complemented by activities including writing, text analysis, and redrafting and editorial exercises. The workshop also promotes learning through interaction.</span>\r\n\r\n<b>Course Schedule</b>\r\n\r\n<span style="font-weight: 400;">This is an intensive 2 day course that will be conducted from 9.00 am to 4.00 pm.</span>\r\n<table style="height: 327px;" width="607">\r\n<tbody>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 1</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n<tr>\r\n<td colspan="3"><span style="font-weight: 400;">DAY 2</span></td>\r\n</tr>\r\n<tr>\r\n<td><span style="font-weight: 400;">9am -12noon</span>\r\n\r\n<span style="font-weight: 400;">Session 1</span></td>\r\n<td><span style="font-weight: 400;">12-1pm</span>\r\n\r\n<span style="font-weight: 400;">Lunch</span></td>\r\n<td><span style="font-weight: 400;">1-4pm</span>\r\n\r\n<span style="font-weight: 400;">Session 2</span></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<b>Fees  </b>\r\n\r\n<span style="font-weight: 400;">3500 baht per student</span>\r\n\r\n<b>Venue</b>\r\n\r\n<span style="font-weight: 400;"><a href="http://asiacentre.co.th/contact-us/location/" target="_blank">Asia Centre</a></span>\r\n\r\n<b>Contact Information</b>\r\n\r\n<a href="mailto:info@asiacentre.co.th" target="_blank">info@asiacentre.co.th</a>\r\n\r\n<span style="font-weight: 400;">To register please click<a href="https://docs.google.com/forms/d/1Q_iGzvSG5k_AVaAMU7aPasGVnupABwL6t2lwIwlBC6M/viewform" target="_blank"> here</a>.</span>', 'Academic Writing Clinic', '', 'inherit', 'closed', 'closed', '', '2573-autosave-v1', '', '', '2016-04-01 10:11:15', '2016-04-01 10:11:15', '', 2573, 'http://asiacentre.co.th/other/2573-autosave-v1/', 0, 'revision', '', 0),
(2580, 5, '2016-04-04 10:13:56', '2016-04-04 10:13:56', '<span style="font-weight: 400;">\r\n<img class=" wp-image-2581 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/scales-1140x599.jpg" alt="scales" width="320" height="168" />Cause lawyering explores the practice of law as a force for social good; to empower the marginalised and vulnerable segments of society. </span>\r\n\r\n<span style="font-weight: 400;">As such </span><span style="font-weight: 400;">cause lawyering plays a crucial and strategic role in the protection, promotion and fulfillment of human rights in Southeast Asia. Championing the rule of law, representing the interests of vulnerable individuals and communities and providing access to remedies for abuses and violations; lawyers are a linchpin in ensuring social justice. </span>\r\n\r\n<span style="font-weight: 400;">In this edition of the Asia Centre Seminar Series we sit down in conversation with lawyers from the region to better understand how the work they do and challenges they face.</span>\r\n\r\n&nbsp;\r\n\r\nThe seminar will also feature the Bangkok launch of Kampong Boy, a critically acclaimed autobiography of M.Ravi; an advocate from Singapore.\r\n\r\nDo like the Facebook <a href="https://www.facebook.com/events/243660835982431/" target="_blank">event page</a> and stay tuned, we will be announcing the panelists shortly.', 'Cause Lawyering: In Conversation With Regional Advocates', '', 'publish', 'closed', 'closed', '', 'cause-lawyering-in-conversation-with-regional-advocates', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2580', 0, 'event', '', 0),
(2581, 5, '2016-04-04 10:10:25', '2016-04-04 10:10:25', '', 'scales', '', 'inherit', 'closed', 'closed', '', 'scales', '', '', '2016-04-04 10:10:25', '2016-04-04 10:10:25', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/04/scales.jpg', 0, 'attachment', 'image/jpeg', 0),
(2583, 5, '2016-04-08 06:33:54', '2016-04-08 06:33:54', '', 'UPR Conference Call-page-001', '', 'inherit', 'closed', 'closed', '', 'upr-conference-call-page-001', '', '', '2016-04-08 06:33:54', '2016-04-08 06:33:54', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/04/UPR-Conference-Call-page-001.jpg', 0, 'attachment', 'image/jpeg', 0),
(2585, 6, '2016-04-08 10:06:55', '2016-04-08 10:06:55', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (classroom, round table, theatre, networking)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,200</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,000</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">7,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Classroom</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Round table</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Networking</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">30+10</td>\r\n<td style="text-align: center;" width="79">30+10</td>\r\n<td style="text-align: center;" width="81">40</td>\r\n<td style="text-align: center;" width="81">60</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-04-08 10:06:55', '2016-04-08 10:06:55', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2586, 6, '2016-04-08 10:41:12', '2016-04-08 10:41:12', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (classroom, round table, theatre, networking)</li>\r\n	<li>High-speed internet access, skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Classroom</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Round table</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Networking</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">30+10</td>\r\n<td style="text-align: center;" width="79">30+10</td>\r\n<td style="text-align: center;" width="81">40</td>\r\n<td style="text-align: center;" width="81">60</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-04-08 10:41:12', '2016-04-08 10:41:12', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2588, 6, '2016-04-18 02:21:49', '2016-04-18 02:21:49', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">3,500</td>\r\n<td width="73">5,500</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"><strong>Full Day &amp; Evening</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73">08.00-21.00</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73">20,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">1,650</td>\r\n<td width="84">5,000</td>\r\n<td width="78">10,000</td>\r\n<td width="73">5,500</td>\r\n<td width="73">12,000</td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73">25,000</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Classroom</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Round table</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Networking</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Meeting</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">30+10</td>\r\n<td style="text-align: center;" width="79">30+10</td>\r\n<td style="text-align: center;" width="81">40</td>\r\n<td style="text-align: center;" width="81">60</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-04-18 02:21:49', '2016-04-18 02:21:49', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2589, 6, '2016-04-18 02:50:56', '2016-04-18 02:50:56', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">N/C</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">N/C</td>\r\n<td width="84">N/C</td>\r\n<td width="78">N/C</td>\r\n<td width="73">N/C</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>All payment must be made at least 2 weeks in advance. Room will only be confirmed upon receipt of the full payment for your event.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-04-18 02:50:56', '2016-04-18 02:50:56', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2590, 6, '2016-04-18 02:58:57', '2016-04-18 02:58:57', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n	<li>Private lockers and lounge area</li>\r\n	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">N/C</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">N/C</td>\r\n<td width="84">N/C</td>\r\n<td width="78">N/C</td>\r\n<td width="73">N/C</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n	<li>Full advance payment to confirm booking.</li>\r\n	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-04-18 02:58:57', '2016-04-18 02:58:57', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2592, 5, '2016-04-19 07:07:28', '2016-04-19 07:07:28', '', 'jk', '', 'inherit', 'closed', 'closed', '', 'jk', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg', 0, 'attachment', 'image/jpeg', 0),
(2593, 5, '2016-12-16 11:02:03', '2016-12-16 11:02:03', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n<h2></h2>\r\n<h2>Ahmed Abid</h2>\r\n<img class="wp-image-2638 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Abid-15.jpg" width="160" height="234" />\r\n\r\nAhmed Abid is a filmmaker and adjunct faculty with the University of Liberal Arts Bangladesh (ULAB), Media Studies and Journalism department. He has produced and directed films on rights-based issues around the world. Some of his key directorial work include <a href="http://www.thedreamingvendorsfilm.com/" target="_blank">The Dreaming Vendors</a> (Bangladesh-Thailand), Votes Echoing Hope (Afghanistan) and Click to Protect, Change to Connect (Brazil-Thailand). Ahmed was the artistic director of the first travelling film festival in Thailand. He has also conducted extensive academic research on media in South and Southeast Asia.  Ahmed has worked in Bangladesh, Cambodia, India, Singapore, Thailand and Jordan; and received training in Italy and the Netherlands. He has taught at the Department of Communications &amp; New Media (CNM), National University of Singapore and worked at its CARE Lab as a Research Assistant. Ahmed holds two Master of Arts degrees; one in Philosophy (University of Dhaka, Bangladesh) and one in Media and Social Development (Mahidol University, Thailand). He also holds a diploma in Cinema from the European-Inter University Centre (EIUC).\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Jay Koh</strong></h2>\r\n<img class=" wp-image-2592 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg" alt="jk" width="193" height="217" />Jay Koh (Doctor Fine Art) is an artist-curator, trained in cross-disciplinary artistic research and active as an independent consultant and evaluator. Jay’s recent research was as a member of the Asian Arts and Performance Consortium funded by the Academy of Finland. He is the founder of iFIMA (international Forum for InterMedia Arts). In 1995 in collaboration with Chu Yuan, he initiated a number of public participative and socially engaged art projects across Europe and Asia; such as the Open Academy program in Hanoi, Hue, Ulaanbaatar and Yangon. Jay’s book <a href="http://www.ifima.net/ALPP%20preview%20sm.pdf" target="_blank"><i>Art-Led Participative Processes: Dialogue &amp; Subjectivity within Performances in the Everyday</i> </a>(University of the Arts Helsinki, 2015; SRID/Gerakbudaya, 2016) discusses holistic and ethical art processes in working relationship, and seeks affirmation across sectors and disciplines. Jay contributes writings for platforms such as Asia Art Archive and Irish Arts Newsletter. His most recent is for BRACK’s MAG, Singapore.\r\n\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="wp-image-2152 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="wp-image-2148 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-autosave-v1', '', '', '2016-12-16 11:02:03', '2016-12-16 11:02:03', '', 2144, 'http://asiacentre.co.th/other/2144-autosave-v1/', 0, 'revision', '', 0),
(2594, 5, '2016-04-19 07:14:55', '2016-04-19 07:14:55', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Jay Koh</strong></h2>\r\n<img class=" wp-image-2592 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg" alt="jk" width="193" height="217" />Jay Koh (Doctor Fine Art) is an artist-curator, trained in cross-disciplinary artistic research and active as an independent consultant and evaluator. Jay’s recent research was as a member of the Asian Arts and Performance Consortium funded by the Academy of Finland. He is the founder of iFIMA (international Forum for InterMedia Arts). In 1995 in collaboration with Chu Yuan, he initiated a number of public participative and socially engaged art projects across Europe and Asia; such as the Open Academy program in Hanoi, Hue, Ulaanbaatar and Yangon. Jay’s book <i>Art-Led Participative Processes: Dialogue &amp; Subjectivity within Performances in the Everyday</i> (University of the Arts Helsinki, 2015; SRID/Gerakbudaya, 2016) discusses holistic and ethical art processes in working relationship, and seeks affirmation across sectors and disciplines. Jay contributes writings for platforms such as Asia Art Archive and Irish Arts Newsletter. His most recent is for BRACK’s MAG, Singapore.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="wp-image-2149 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is a professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his Ph.D. and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="wp-image-2152 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="wp-image-2148 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2016-04-19 07:14:55', '2016-04-19 07:14:55', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2595, 5, '2016-04-19 07:47:53', '2016-04-19 07:47:53', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Jay Koh</strong></h2>\r\n<img class=" wp-image-2592 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg" alt="jk" width="193" height="217" />Jay Koh (Doctor Fine Art) is an artist-curator, trained in cross-disciplinary artistic research and active as an independent consultant and evaluator. Jay’s recent research was as a member of the Asian Arts and Performance Consortium funded by the Academy of Finland. He is the founder of iFIMA (international Forum for InterMedia Arts). In 1995 in collaboration with Chu Yuan, he initiated a number of public participative and socially engaged art projects across Europe and Asia; such as the Open Academy program in Hanoi, Hue, Ulaanbaatar and Yangon. Jay’s book <a href="http://www.ifima.net/ALPP%20preview%20sm.pdf" target="_blank"><i>Art-Led Participative Processes: Dialogue &amp; Subjectivity within Performances in the Everyday</i> </a>(University of the Arts Helsinki, 2015; SRID/Gerakbudaya, 2016) discusses holistic and ethical art processes in working relationship, and seeks affirmation across sectors and disciplines. Jay contributes writings for platforms such as Asia Art Archive and Irish Arts Newsletter. His most recent is for BRACK’s MAG, Singapore.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="wp-image-2149 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is a professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his Ph.D. and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="wp-image-2152 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="wp-image-2148 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2016-04-19 07:47:53', '2016-04-19 07:47:53', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2596, 5, '2016-04-19 10:49:32', '2016-04-19 10:49:32', '<span style="font-weight: 400;">\r\n<img class=" wp-image-2581 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/scales-1140x599.jpg" alt="scales" width="320" height="168" />Cause lawyering explores the practice of law as a force for social good; to empower the marginalised and vulnerable segments of society. </span>\r\n\r\n<span style="font-weight: 400;">As such </span><span style="font-weight: 400;">cause lawyering plays a crucial and strategic role in the protection, promotion and fulfillment of human rights in Southeast Asia. Championing the rule of law, representing the interests of vulnerable individuals and communities and providing access to remedies for abuses and violations; lawyers are a linchpin in ensuring social justice. </span>\r\n\r\n<span style="font-weight: 400;">In this edition of the Asia Centre Seminar Series we sit down in conversation with lawyers from the region to better understand how the work they do and challenges they face.</span>\r\n\r\nThe seminar will also feature the Bangkok launch of Kampong Boy, a critically acclaimed autobiography of M.Ravi; an advocate from Singapore.\r\n\r\n&nbsp;\r\n\r\nDo like the Facebook <a href="https://www.facebook.com/events/243660835982431/" target="_blank">event page</a> and stay tuned, we will be announcing the panelists shortly.', 'Cause Lawyering: In Conversation With Regional Advocates', '', 'inherit', 'closed', 'closed', '', '2580-autosave-v1', '', '', '2016-04-19 10:49:32', '2016-04-19 10:49:32', '', 2580, 'http://asiacentre.co.th/other/2580-autosave-v1/', 0, 'revision', '', 0),
(2597, 5, '2016-04-21 07:29:20', '2016-04-21 07:29:20', '<img class=" wp-image-2599 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/04/imdb-copy-e1461225880574.jpg" alt="imdb-copy" width="471" height="295" />\r\n\r\n<strong>Malaysia’s Single­party Dominance:Can it Survive the IMDB Financial Scandal?</strong>\r\n\r\nA momentous financial scandal broke in Malaysia in mid­ 2015. It has involved a strategic development company, 1MDB (One Malaysia Development Corp), owned by the Ministry of Finance and with an advisory board chaired by the Prime Minister and First Finance Minister, Najib Tun Razak. 1MDB’s losses are unprecedented in their amounts, by some estimates ranging upwards of US$15bn. International media coverage and investigations are unprecedented too in their tracing some of the missing funds directly into Najib’s personal accounts. Mass protests over the scandal have taken place, demanding that Najib resign. Elites have split, with former Prime Minister Mahathir Mohamad mobilizing a ‘Save Malaysia Movement’. 1MDB has thus been cast by journalists as the ‘death knell’ for Najib fueling widespread expectations over his ouster, perhaps coinciding with major reforms.\r\n\r\nThis seminar begins by enumerating the institutional sources or political stability in Malaysia, especially the United Malays National Organization (UMNO), the country’s dominant party. Next, it charts the extraordinary pressures on Najib, and the regime and that 1MDB has unleashed. But it concludes by showing how Najib, by making ruthless new use of institutions, has survived in office and deepened authoritarian rule.\r\n\r\n&nbsp;\r\n\r\n<strong>About the Speaker:</strong>\r\n\r\n<img class=" wp-image-2600 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/william-case.jpg" alt="william case" width="143" height="196" />WILLIAM CASE <em>is Professor in the Department of Asian and International Studies and former Director of the Southeast Asia Research Centre (SEARC) at City University of Hong Kong. His research interests include comparative politics and the politics of Southeast Asia. He has published extensively on Southeast Asian politics and political economy in academic journals and media outlets. His most recent book, edited, is Routledge Handbook of Democratization in Southeast Asia</em>.', 'Stress Testing Single-Party Dominance in Malaysia', '', 'publish', 'closed', 'closed', '', 'malaysias-single%c2%ad-party-dominance-can-it-survive-the-imdb-financial-scandal', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2597', 0, 'event', '', 0),
(2598, 5, '2016-04-21 08:57:13', '2016-04-21 08:57:13', '<img class=" wp-image-2599 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/04/imdb-copy-e1461225880574.jpg" alt="imdb-copy" width="471" height="295" />\n\nMalaysia’s Single­party Dominance:Can it Survive the IMDB Financial Scandal?\n\nA momentous financial scandal broke in Malaysia in mid­ 2015. It has involved a strategic development company, 1MDB (One Malaysia Development Corp), owned by the Ministry of Finance and with an advisory board chaired by the Prime Minister and First Finance Minister, Najib Tun Razak. 1MDB’s losses are unprecedented in their amounts, by some estimates ranging upwards of US$15bn. International media coverage and investigations are unprecedented too in their tracing some of the missing funds directly into Najib’s personal accounts. Mass protests over the scandal have taken place, demanding that Najib resign. Elites have split, with former Prime Minister Mahathir Mohamad mobilizing a ‘Save Malaysia Movement’. 1MDB has thus been cast by journalists as the ‘death knell’ for Najib fueling widespread expectations over his ouster, perhaps coinciding with major reforms.\n\nThis seminar begins by enumerating the institutional sources or political stability in Malaysia, especially the United Malays National Organization (UMNO), the country’s dominant party. Next, it charts the extraordinary pressures on Najib, and the regime and that 1MDB has unleashed. But it concludes by showing how Najib, by making ruthless new use of institutions, has survived in office and deepened authoritarian rule.\n\n&nbsp;\n\n<strong>About the Speaker:</strong>\n\n<img class=" wp-image-2600 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/william-case.jpg" alt="william case" width="143" height="196" />WILLIAM CASE <em>is Professor in the Department of Asian and International Studies and former Director of the Southeast Asia Research Centre (SEARC) at City University of Hong Kong. His research interests include comparative politics and the politics of Southeast Asia. He has published extensively on Southeast Asian politics and political economy in academic journals and media outlets. His most recent book, edited, is Routledge Handbook of Democratization in Southeast Asia</em>.', 'Stress Testing Single-Party Dominance in Malaysia', '', 'inherit', 'closed', 'closed', '', '2597-autosave-v1', '', '', '2016-04-21 08:57:13', '2016-04-21 08:57:13', '', 2597, 'http://asiacentre.co.th/other/2597-autosave-v1/', 0, 'revision', '', 0),
(2599, 5, '2016-04-21 08:04:07', '2016-04-21 08:04:07', '', 'imdb-copy', '', 'inherit', 'closed', 'closed', '', 'imdb-copy', '', '', '2016-04-21 08:04:07', '2016-04-21 08:04:07', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/04/imdb-copy.jpg', 0, 'attachment', 'image/jpeg', 0),
(2600, 5, '2016-04-21 08:45:39', '2016-04-21 08:45:39', '', 'william case', '', 'inherit', 'closed', 'closed', '', 'william-case', '', '', '2016-04-21 08:45:39', '2016-04-21 08:45:39', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/04/william-case.jpg', 0, 'attachment', 'image/jpeg', 0),
(2601, 5, '2016-04-21 08:50:07', '2016-04-21 08:50:07', '<img class="alignnone size-full wp-image-2557" src="http://asiacentre.co.th/wp-content/uploads/2016/03/FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr-e1458280670752.jpg" alt="FMG_Amnesty_TCP_Genital-Mutilation_Photo-courtesy-Of-Layalk-Via-Flickr" width="617" height="308" />\n\nIn late 2015, Alexandra Demetrianova, a journalist, traveled to Africa to report on the ritual of ''entering femininity'' and gaining social status within the Masai community. The practice involves female gentile mutation (FGM) of infants and young girls. FGM occurs by virtue of tradition and for religious reasons and takes place in different regions. The latest UN estimations show that approximately 8,500 women and girls are harmed by FGM daily and around 140 million women and girls worldwide are victims of FGM. Alexandra Demetrianova, will share her impressions of the issue and reflects on how it is reported and documented in different regions. She will be joined by a panel of speakers who have been active in <span class="text_exposed_show">documenting and reporting on the practice.\n</span>\n\n<strong>About the Speaker:</strong>\n<div class="_4-u2 _24vz _4-u8">\n<div class="_2qgs">\n<div id="id_56eb97c4dd7f76049872254" class="text_exposed_root text_exposed"><span class="text_exposed_show"><img class="wp-image-2147 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="145" height="160" />Alexandra Demetrianova <em>is a freelance journalist and former Southeast Asia/Asia correspondent for Slovak Radio – the public broadcaster in Slovakia. For four years she has been covering Thailand and the wider region for radio and major Slovak press titles. As a sole Slovak correspondent in Asia, she has also focused on commentary and analysis of China, Japan, Korea, and India. Alexandra studied journalism and mass media at Comenius University and later Pan-European University in Bratislava, Slovakia, where she achieved Bachelor of Arts in 2010. She went on to do a Master''s degree at Thammasat University in Bangkok, where she extended her work to academic research and event projects.</em></span></div>\n</div>\n</div>\n<div class="_4-u2 _24vz _4-u8"></div>', 'Entering Femininity: Reporting Rituals and Violations', '', 'inherit', 'closed', 'closed', '', '2556-autosave-v1', '', '', '2016-04-21 08:50:07', '2016-04-21 08:50:07', '', 2556, 'http://asiacentre.co.th/other/2556-autosave-v1/', 0, 'revision', '', 0),
(2604, 1, '2016-04-22 09:33:36', '2016-04-22 09:33:36', '', 'gerak', '', 'inherit', 'closed', 'closed', '', 'gerak', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 2136, 'http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png', 0, 'attachment', 'image/png', 0),
(2606, 5, '2016-04-30 09:57:42', '0000-00-00 00:00:00', 'This conference seeks to engage with art and cultural practitioners and researchers in the Southeast Asian region to deepen understanding and deliberate on methodologies of working in public with people-centred processes. It aims to nurture criticality and investigate processes and structures in a constructive manner and develop cross-sector collaborations. These panels and workshops will expand on participants’ capabilities in areas such as arts &amp; health, holistic research, and social entrepreneurship.', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'draft', 'closed', 'closed', '', 'working-with-people-centred-processes-art-education-cross-sector-collaboration', '', '', '2016-04-30 09:57:42', '2016-04-30 09:57:42', '', 0, 'http://asiacentre.co.th/?p=2606', 0, 'post', '', 0),
(2607, 5, '2016-04-30 09:56:49', '2016-04-30 09:56:49', '', 'Working with People-centred Processes: Art, Education and Cross-sector Collaboration', '', 'inherit', 'closed', 'closed', '', '2606-revision-v1', '', '', '2016-04-30 09:56:49', '2016-04-30 09:56:49', '', 2606, 'http://asiacentre.co.th/other/2606-revision-v1/', 0, 'revision', '', 0),
(2608, 5, '2016-04-30 09:57:34', '2016-04-30 09:57:34', 'This conference seeks to engage with art and cultural practitioners and researchers in the Southeast Asian region to deepen understanding and deliberate on methodologies of working in public with people-centred processes. It aims to nurture criticality and investigate processes and structures in a constructive manner and develop cross-sector collaborations. These panels and workshops will expand on participants’ capabilities in areas such as arts &amp; health, holistic research, and social entrepreneurship.', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '2606-revision-v1', '', '', '2016-04-30 09:57:34', '2016-04-30 09:57:34', '', 2606, 'http://asiacentre.co.th/other/2606-revision-v1/', 0, 'revision', '', 0),
(2609, 5, '2016-04-30 10:51:44', '2016-04-30 10:51:44', '<p style="text-align: justify;"><b>Open Call – Conference &amp; Workshop</b></p>\r\n<p class="c4" style="text-align: justify;"><span class="c0">Increasingly universities and institutions around the world are recognising the value of<img class="alignright wp-image-2610" src="http://asiacentre.co.th/wp-content/uploads/2016/04/OAUB-2010.jpg" alt="OAUB 2010" width="366" height="238" /> a holistic arts education that integrates a dynamic process of social engagement, public participation with others and the community. In Asia this movement of socially engaged, public participative and community art is gaining traction, albeit with different agendas at play with some universities initiating courses, the Art &amp; Society Research Centre in Tokyo (</span><span class="c19 c12"><a class="c5" href="https://www.google.com/url?q=http://searesearchlab.org/&amp;sa=D&amp;ust=1473050593568000&amp;usg=AFQjCNFOOHHCDB_ExaKw55C-eT1D0zslmg">http://searesearchlab.org/</a></span><span class="c0">) initiating a lab on Socially Engaged/Community Art, and the National Arts Council of Singapore creating a department for Community and the Arts. We are also seeing more cross-disciplinary research and collaboration between artists, health workers, theatre groups, NGOs and the academia on art and cultural projects.</span></p>\r\n<p class="c4" style="text-align: justify;"><span class="c0">Enhanced engagement and cross-sectoral collaborations are designed to stir civic consciousness and foster open social structures (even as possible instrumentalisation of art and domesticating activities take place) through public participation and engagement. Key to the effective achievement of such aims is the sharing of knowledge and experiences and the building of networks, and of a knowledge and experience archive or memory pool to continually build onto and draw learning from. This conference aims to convene these knowledge by bringing together practitioners from across ASEAN to share their experiences of cross sectoral collaboration and of using participative art as open and reciprocal processes for community engagement. This pooling of knowledge can foster the development of regional frameworks for community engagement that will be beneficial to arts and community knowledge creation, and to cross sector collaboration between the arts and other sectors such as health, education and advocacy in the region. Another important aspect of such activities would be on the issue of sustainability to be explored under the rubric of social entrepreneurship.</span></p>\r\n<p class="c4" style="text-align: justify;"><strong><span class="c0 c9">Objective</span></strong></p>\r\n<p class="c4" style="text-align: justify;"><span class="c0">ASEAN level regional conference to share dynamic knowledge and build a comprehensive learning base on cross sector research and collaboration using art as open and reciprocal processes for social and community engagement.</span></p>\r\n<p class="c4" style="text-align: justify;"><span class="c12 c21">This event and activities will inform a forthcoming publication in 2017.</span></p>\r\n<p class="c4" style="text-align: justify;"><strong><span class="c0 c9">Outcomes</span></strong></p>\r\n\r\n<ol class="c14 lst-kix_cwlakjkge8vw-0 start" style="text-align: justify;" start="1">\r\n 	<li class="c1"><span class="c0">Participants will improve their capability to articulate, negotiate and critique </span>frameworks and processes for public engaging activities and policies.</li>\r\n 	<li class="c1"><span class="c0">Participants will acquire additional knowledge and competence to engage </span>across cultures, disciplines and sectors, including acceptance of knowledge from the vernacular and the everyday.</li>\r\n 	<li class="c1"><span class="c0">Networks for sustainable collaborations will be constructed and strengthened </span>through sharing ownership of knowledge and experience.</li>\r\n 	<li class="c1"><span class="c0">Social enterprises knowledge and fund-raising initiatives can be examined and explore to realise regional collaborations.</span></li>\r\n 	<li class="c1"><span class="c0">ASEAN level research capability can be expanded to develop cross-sectors projects and know-how in the professional fields of social cross sector enterprises, such as in Arts &amp; Health, Arts in Prison, Arts in Education, etc.</span></li>\r\n</ol>\r\n<p class="c4" style="text-align: justify;"><span class="c0"> </span></p>\r\n<p class="c4" style="text-align: justify;"><strong><span class="c0 c9">Participation</span></strong></p>\r\n<p class="c4" style="text-align: justify;"><span class="c0">This conference aims to facilitate cross sector collaboration and thus is open to participants from various fields including arts, social enterprises and cultural groups, NGOs, theatre groups, students and artists. Speakers will present their particular experiences in engaging the public, in building a constructive praxis and cross sector collaboration using art in their home country. They will share the frameworks and methodologies used as well as the challenges they have faced in executing their respective projects.</span></p>\r\n<p class="c4" style="text-align: justify;"><strong>\r\nParticipation size: </strong>40 pax</p>\r\n<p style="text-align: justify;"><strong>Available places: </strong>20 pax, limited scholarships are available for participants from Southeast Asia, please apply by 15 September 2016.</p>\r\n<p style="text-align: justify;">----------------------------<strong>UPDATES</strong>--------------------------</p>\r\n<p style="text-align: justify;">Here is the latest information on:</p>\r\n<p style="text-align: justify;"><a href="https://www.facebook.com/permalink.php?story_fbid=171812916596976&amp;id=100013048050810" target="_blank">List of Participants</a></p>\r\n<p style="text-align: justify;"><a href="https://www.facebook.com/permalink.php?story_fbid=171812359930365&amp;id=100013048050810" target="_blank">Abstracts &amp; Bios</a></p>\r\n<p style="text-align: justify;"><a href="https://www.facebook.com/permalink.php?story_fbid=171812499930351&amp;id=100013048050810" target="_blank">Panel Presentations &amp; Programme</a></p>\r\n<p style="text-align: justify;">----------------------------------------------------------------------------</p>\r\n<p style="text-align: justify;"><strong>Conference fees</strong></p>\r\n<p style="text-align: justify;"><em><strong>For Participants</strong></em></p>\r\n<p style="text-align: justify;">Early bird – 100 USD till 15 July       Normal – 150 USD</p>\r\n<p class="wsite-content-title" style="text-align: justify;"><em><strong>For Discussants </strong>  </em></p>\r\n<p class="wsite-content-title" style="text-align: justify;">You can also attend the conference as a discussant to listen to the research being presented, participate in the discussions and engage with the participants/presenters. There is a conference package of USD$150 which will give you access to all four days of the conference. We are also offering a daily rate of USD$40 for those you would like to attend individual days.</p>\r\n<p class="wsite-content-title" style="text-align: justify;">Conference fees can be payed in two ways:</p>\r\n\r\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<input name="hosted_button_id" type="hidden" value="HRU9HKUVPPJLA" /></form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="Conference Fee (For Participants)" /><span style="color: #0000ff;"><strong>Conference Fee (For Participants)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Early Bird">Early Bird $100.00 USD</option>\r\n<option value="Regular">Regular $150.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name="currency_code" type="hidden" value="USD" /><input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n<img src="https://www.paypalobjects.com/th_TH/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />\r\n\r\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<input name="hosted_button_id" type="hidden" value="H2KTCQYMYH4BC" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="Conference Fee (For Discussants)" /><span style="color: #0000ff;"><strong>Conference Fee (For Discussants)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Daily Rate">Daily Rate $40.00 USD</option>\r\n<option value="Conference Package">Conference Package $150.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n<img src="https://www.paypalobjects.com/th_TH/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />\r\n\r\n</form>\r\n<p style="text-align: justify;"><img class=" wp-image-2651 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/performance_payments.png" alt="performance_payments" width="197" height="68" /></p>\r\n<p style="text-align: justify;">*Please be aware that the conference fee is non-refundable.\r\n**All costs regarding the transfer of the conference fee (Transfer fees) are to be covered by the applicant.</p>\r\n<p style="text-align: justify;"><strong>How to respond to this Open Call:</strong></p>\r\n<p style="text-align: justify;">Participants who wish to attend should send a short biography of not over 350 words on registration or as early as possible to ifima7[at] gmail.com and choose one of the following roles of participation.</p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li>As Discussant – “To live means to participate in dialogue: to ask questions…”.</li>\r\n 	<li>As Presenter – Please provide a text and context of your presentation, with a description of processes and methodology, not exceeding 900 words. During the conference, your presentation will be limited to 15 mins. You should include discussion of a case study or project, focusing on context, intention, processes or methodology and the learning achieved.</li>\r\n 	<li>As Respondent - You will be consulted and be assigned to a panel. During the conference, you will respond to one or more of the presentations.</li>\r\n</ul>\r\n<p style="text-align: justify;"><strong>Convenor:</strong> Dr Jay Koh, artist-curator &amp; researcher, director of iFIMA (international Forum for InterMedia Art, author of <a href="http://www.ifima.net/ALPPpreviewsm.pdf" target="_blank">Art-Led Participative Processes</a>.</p>\r\n<p style="text-align: justify;"><strong>Regional partner:</strong> <a href="http://www.brack.sg/" target="_blank">BRACK, Singapore</a></p>\r\n<p style="text-align: justify;"><strong>Venue:</strong> <a href="http://asiacentre.co.th" target="_blank">Asia Centre, Bangkok</a></p>\r\n<p style="text-align: justify;">Note: The convenor and organisers reserve the right to decide on the final selection and designation of participants.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'publish', 'closed', 'closed', '', 'working-with-people-centred-processes-art-education-cross-sector-collaboration', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2609', 0, 'event', '', 0),
(2610, 5, '2016-04-30 10:34:17', '2016-04-30 10:34:17', '', 'OAUB 2010', '', 'inherit', 'closed', 'closed', '', 'oaub-2010', '', '', '2016-04-30 10:34:17', '2016-04-30 10:34:17', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/04/OAUB-2010.jpg', 0, 'attachment', 'image/jpeg', 0),
(2611, 5, '2016-09-30 02:48:54', '2016-09-30 02:48:54', '<b>Open Call – Conference &amp; Workshop</b>\r\n<p class="c4"><span class="c0">Increasingly universities and institutions around the world are recognising the value of<img class="alignright wp-image-2610" src="http://asiacentre.co.th/wp-content/uploads/2016/04/OAUB-2010.jpg" alt="OAUB 2010" width="366" height="238" /> a holistic arts education that integrates a dynamic process of social engagement, public participation with others and the community. In Asia this movement of socially engaged, public participative and community art is gaining traction, albeit with different agendas at play with some universities initiating courses, the Art &amp; Society Research Centre in Tokyo (</span><span class="c19 c12"><a class="c5" href="https://www.google.com/url?q=http://searesearchlab.org/&amp;sa=D&amp;ust=1473050593568000&amp;usg=AFQjCNFOOHHCDB_ExaKw55C-eT1D0zslmg">http://searesearchlab.org/</a></span><span class="c0">) initiating a lab on Socially Engaged/Community Art, and the National Arts Council of Singapore creating a department for Community and the Arts. We are also seeing more cross-disciplinary research and collaboration between artists, health workers, theatre groups, NGOs and the academia on art and cultural projects.</span></p>\r\n<p class="c4"><span class="c0">Enhanced engagement and cross-sectoral collaborations are designed to stir civic consciousness and foster open social structures (even as possible instrumentalisation of art and domesticating activities take place) through public participation and engagement. Key to the effective achievement of such aims is the sharing of knowledge and experiences and the building of networks, and of a knowledge and experience archive or memory pool to continually build onto and draw learning from. This conference aims to convene these knowledge by bringing together practitioners from across ASEAN to share their experiences of cross sectoral collaboration and of using participative art as open and reciprocal processes for community engagement. This pooling of knowledge can foster the development of regional frameworks for community engagement that will be beneficial to arts and community knowledge creation, and to cross sector collaboration between the arts and other sectors such as health, education and advocacy in the region. Another important aspect of such activities would be on the issue of sustainability to be explored under the rubric of social entrepreneurship.</span></p>\r\n<p class="c4"><strong><span class="c0 c9">Objective</span></strong></p>\r\n<p class="c4"><span class="c0">ASEAN level regional conference to share dynamic knowledge and build a comprehensive learning base on cross sector research and collaboration using art as open and reciprocal processes for social and community engagement.</span></p>\r\n<p class="c4"><span class="c12 c21">This event and activities will inform a forthcoming publication in 2017.</span></p>\r\n<p class="c4"><strong><span class="c0 c9">Outcomes</span></strong></p>\r\n\r\n<ol class="c14 lst-kix_cwlakjkge8vw-0 start" start="1">\r\n 	<li class="c1"><span class="c0">Participants will improve their capability to articulate, negotiate and critique </span>frameworks and processes for public engaging activities and policies.</li>\r\n 	<li class="c1"><span class="c0">Participants will acquire additional knowledge and competence to engage </span>across cultures, disciplines and sectors, including acceptance of knowledge from the vernacular and the everyday.</li>\r\n 	<li class="c1"><span class="c0">Networks for sustainable collaborations will be constructed and strengthened </span>through sharing ownership of knowledge and experience.</li>\r\n 	<li class="c1"><span class="c0">Social enterprises knowledge and fund-raising initiatives can be examined and explore to realise regional collaborations.</span></li>\r\n 	<li class="c1"><span class="c0">ASEAN level research capability can be expanded to develop cross-sectors projects and know-how in the professional fields of social cross sector enterprises, such as in Arts &amp; Health, Arts in Prison, Arts in Education, etc.</span></li>\r\n</ol>\r\n<p class="c4"><span class="c0"> </span></p>\r\n<p class="c4"><strong><span class="c0 c9">Participation</span></strong></p>\r\n<p class="c4"><span class="c0">This conference aims to facilitate cross sector collaboration and thus is open to participants from various fields including arts, social enterprises and cultural groups, NGOs, theatre groups, students and artists. Speakers will present their particular experiences in engaging the public, in building a constructive praxis and cross sector collaboration using art in their home country. They will share the frameworks and methodologies used as well as the challenges they have faced in executing their respective projects.</span></p>\r\n<p class="c4"><strong>\r\nParticipation size: </strong>40 pax</p>\r\n<strong>Available places: </strong>20 pax, limited scholarships are available for participants from Southeast Asia, please apply by 15 September 2016.\r\n\r\n&nbsp;\r\n\r\n----------------------------<strong>UPDATES</strong>--------------------------\r\n\r\nHere is the latest information on:\r\n\r\n<a href="https://www.facebook.com/permalink.php?story_fbid=171812916596976&amp;id=100013048050810" target="_blank">List of Participants</a>\r\n\r\n<a href="https://www.facebook.com/permalink.php?story_fbid=171812359930365&amp;id=100013048050810" target="_blank">Abstracts &amp; Bios</a>\r\n\r\n<a href="https://www.facebook.com/permalink.php?story_fbid=171812499930351&amp;id=100013048050810" target="_blank">Panel Presentations &amp; Programme</a>\r\n\r\n----------------------------------------------------------------------------\r\n\r\n<strong>Conference fees</strong>\r\n\r\n<em><strong>For Participants</strong></em>\r\n\r\nEarly bird – 100 USD till 15 July       Normal – 150 USD\r\n<p class="wsite-content-title"><em><strong>For Discussants </strong>  </em></p>\r\n<p class="wsite-content-title">You can also attend the conference as a discussant to listen to the research being presented, participate in the discussions and engage with the participants/presenters. There is a conference package of USD$150 which will give you access to all four days of the conference. We are also offering a daily rate of USD$40 for those you would like to attend individual days.</p>\r\n<p class="wsite-content-title">Conference fees can be payed in two ways:</p>\r\n\r\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal">1. Directly to the bank account <strong>according to the instructions</strong> that will be listed on the<strong> invoice</strong>\r\n2. <strong>Online payment </strong>using Secured Credit Card Payment\r\n<input name="hosted_button_id" type="hidden" value="HRU9HKUVPPJLA" /></form>\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><strong><span style="color: #0000ff;">Conference Fee (For Participants)</span></strong></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Early Bird">Early Bird $100.00 USD</option>\r\n<option value="Regular">Regular $150.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n\r\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="hosted_button_id" type="hidden" value="H2KTCQYMYH4BC" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="Conference Fee (For Participants)" /><span style="color: #0000ff;"><strong>Conference Fee (For Discussants)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Conference Package">Conference Package $150.00 USD</option>\r\n<option value="Daily Rate">Daily Rate $40.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name="currency_code" type="hidden" value="USD" /><input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" /><img src="https://www.paypalobjects.com/th_TH/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />\r\n\r\n</form><img class=" wp-image-2651 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/performance_payments.png" alt="performance_payments" width="197" height="68" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n*Please be aware that the conference fee is non-refundable.\r\n**All costs regarding the transfer of the conference fee (Transfer fees) are to be covered by the applicant.\r\n\r\n&nbsp;\r\n\r\n<strong>How to respond to this Open Call:</strong>\r\n\r\nParticipants who wish to attend should send a short biography of not over 350 words on registration or as early as possible to ifima7[at] gmail.com and choose one of the following roles of participation.\r\n<ul>\r\n 	<li>As Discussant – “To live means to participate in dialogue: to ask questions…”.</li>\r\n 	<li>As Presenter – Please provide a text and context of your presentation, with a description of processes and methodology, not exceeding 900 words. During the conference, your presentation will be limited to 15 mins. You should include discussion of a case study or project, focusing on context, intention, processes or methodology and the learning achieved.</li>\r\n 	<li>As Respondent - You will be consulted and be assigned to a panel. During the conference, you will respond to one or more of the presentations.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Convenor:</strong> Dr Jay Koh, artist-curator &amp; researcher, director of iFIMA (international Forum for InterMedia Art, author of <a href="http://www.ifima.net/ALPPpreviewsm.pdf" target="_blank">Art-Led Participative Processes</a>.\r\n\r\n<strong>Regional partner:</strong> <a href="http://www.brack.sg/" target="_blank">BRACK, Singapore</a>\r\n\r\n<strong>Venue:</strong> <a href="http://asiacentre.co.th" target="_blank">Asia Centre, Bangkok</a>\r\n\r\n&nbsp;\r\n\r\nNote: The convenor and organisers reserve the right to decide on the final selection and designation of participants.', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '2609-autosave-v1', '', '', '2016-09-30 02:48:54', '2016-09-30 02:48:54', '', 2609, 'http://asiacentre.co.th/other/2609-autosave-v1/', 0, 'revision', '', 0),
(2613, 5, '2016-05-15 15:07:30', '2016-05-15 15:07:30', '<b><a href="http://aipglobal.co/" target="_blank"><img class="alignright wp-image-2139 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong><img class="wp-image-2533 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Auke3-1140x1140.jpg" alt="Auke3" width="214" height="214" /></strong></a>\r\n\r\n&nbsp;\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><strong>Gerakbudaya Enterprise</strong></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><img class="alignright size-full wp-image-2604" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="300" height="86" /></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya Enterprise Sdn. Bhd.</a> distributes books that embody social awareness, critical and alternative perspectives, and the hidden histories of Malaysia, Southeast Asia and the wider world we live in.             GB is dedicated to circulating timely and important books, breaking down artificial barriers between writers/thinkers in institutions and everyone else, and generating informed discussions of important issues in our lives by providing different views and fresh insights.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-05-15 15:07:30', '2016-05-15 15:07:30', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2614, 5, '2016-05-21 00:04:52', '2016-05-21 00:04:52', '', '13230673_10156840745450307_1623548805_o', '', 'inherit', 'closed', 'closed', '', '13230673_10156840745450307_1623548805_o', '', '', '2016-05-21 00:12:08', '2016-05-21 00:12:08', '', 2618, 'http://asiacentre.co.th/wp-content/uploads/2016/05/13230673_10156840745450307_1623548805_o.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2615, 5, '2016-05-21 00:07:00', '2016-05-21 00:07:00', '', 'Screen Shot 2016-05-21 at 7.06.34 AM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-05-21-at-7-06-34-am', '', '', '2016-05-21 00:22:04', '2016-05-21 00:22:04', '', 2618, 'http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png', 0, 'attachment', 'image/png', 0),
(2616, 5, '2016-05-21 00:07:43', '2016-05-21 00:07:43', '', '13224345_10156837166920307_243753405_o-2', '', 'inherit', 'closed', 'closed', '', '13224345_10156837166920307_243753405_o-2', '', '', '2016-05-21 00:14:02', '2016-05-21 00:14:02', '', 2618, 'http://asiacentre.co.th/wp-content/uploads/2016/05/13224345_10156837166920307_243753405_o-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2617, 5, '2016-05-21 00:07:46', '2016-05-21 00:07:46', '', '13242308_10156837166915307_771615932_o-2', '', 'inherit', 'closed', 'closed', '', '13242308_10156837166915307_771615932_o-2', '', '', '2016-05-21 00:22:04', '2016-05-21 00:22:04', '', 2618, 'http://asiacentre.co.th/wp-content/uploads/2016/05/13242308_10156837166915307_771615932_o-2.jpg', 1, 'attachment', 'image/jpeg', 0),
(2618, 5, '2016-05-21 00:22:04', '2016-05-21 00:22:04', '<span style="font-weight: 400;">Asia Centre has signed a partnership with Malaysian </span><span style="font-weight: 400;">Publisher <a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya</a> to be its regional\r\nrepresentative in Thailand. Moving forward, Asia Centre will commission, edit, launch a publication series, distribute and sell books on Southeast Asian studies.</span>\r\n\r\n<span style="font-weight: 400;"> </span>\r\n\r\n[caption id="attachment_2616" align="aligncenter" width="518"]<img class="wp-image-2616" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224345_10156837166920307_243753405_o-2-1140x855.jpg" alt="13224345_10156837166920307_243753405_o-2" width="518" height="388" /> Gerakbudaya office in Malaysia.[/caption]\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2619 alignnone" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224331_10156840745480307_1071113168_o.jpg" alt="13224331_10156840745480307_1071113168_o" width="371" height="495" /> </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The publication series will explore critical issues impacting Southeast Asia as well as the region’s linkages to the rest of the world. The aim is to contribute to research and discussions on regional matters which are alternative and can highlight new and important issues to a wider audience.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2614" align="alignleft" width="387"]<img class="wp-image-2614" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13230673_10156840745450307_1623548805_o-1140x855.jpg" alt="13230673_10156840745450307_1623548805_o" width="387" height="290" /> A selection of Gerakbudaya books available at Asia Centre.[/caption]\r\n\r\nThe Centre will also act as a bookshop and has started featuring a selection of Gerakbudaya books. These will be on sale during office hours at the Centre’s premises and during its activities. There are also plans to develop a web portal for e-books.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Gerakbudaya publishers and distributes books that spark social awareness and critical discourse on Southeast Asia. </span><span style="font-weight: 400;">Its very name Gerakbudaya represents the movement (gerak) of culture and ideas (budaya) through books. It is Gerakbudaya’s first foray outside of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2615" align="alignleft" width="379"]<img class="wp-image-2615" src="http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png" alt="Screen Shot 2016-05-21 at 7.06.34 AM" width="379" height="243" /> Mr. Chong Ton Sin or “Pak Chong”. Picture from Penang Monthly.[/caption]\r\n\r\n<span style="font-weight: 400;">The man behind Gerakbudaya, </span><span style="font-weight: 400;"> Mr. </span><span style="font-weight: 400;">Chong Ton Sin  or “Pak Chong” as he is more commonly known, has been in the business for over 20 years with over 300 publications under his belt. </span>\r\n\r\nYou can read more about Gerakbudaya Enterprises at our <a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank">Partners page</a>.\r\n\r\n&nbsp;', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya', '', 'publish', 'closed', 'closed', '', 'asia-centre-regional-representative-for-malaysian-publisher-gerakbudaya', '', '', '2016-05-21 00:22:04', '2016-05-21 00:22:04', '', 0, 'http://asiacentre.co.th/?p=2618', 0, 'post', '', 0),
(2619, 5, '2016-05-21 00:11:00', '2016-05-21 00:11:00', '', '13224331_10156840745480307_1071113168_o', '', 'inherit', 'closed', 'closed', '', '13224331_10156840745480307_1071113168_o', '', '', '2016-05-21 00:11:42', '2016-05-21 00:11:42', '', 2618, 'http://asiacentre.co.th/wp-content/uploads/2016/05/13224331_10156840745480307_1071113168_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(2620, 5, '2016-05-21 00:11:34', '2016-05-21 00:11:34', '<span style="font-weight: 400;">Asia Centre has signed a partnership with Malaysian Publisher Gerakbudaya to be its regional\r\nrepresentative in Thailand. Moving forward, Asia Centre will commission, edit, launch a publication series, distribute and sell books on Southeast Asian studies. </span>\r\n\r\n<span style="font-weight: 400;">The publication series will explore critical issues impacting Southeast Asia as well as the region’s linkages to the rest of the world. The aim is to contribute to research and discussions on regional matters which are alternative and can highlight new and important issues to a wider audience. </span>\r\n\r\n<span style="font-weight: 400;">The Centre will also act as a bookshop and has started featuring </span><span style="font-weight: 400;">a selection of Gerakbudaya books. These will be on sale during office hours at the Centre’s premises and during its activities. There are also plans to develop a web portal for e-books.</span>\r\n\r\n<span style="font-weight: 400;">Gerakbudaya publishers and distributes books that spark social awareness and critical discourse on Southeast Asia. </span><span style="font-weight: 400;">Its very name Gerakbudaya represents the movement (gerak) of culture and ideas (budaya) through books. It is Gerakbudaya’s first foray outside of Malaysia.</span>\r\n\r\n[caption id="attachment_2615" align="alignleft" width="345"]<img class="wp-image-2615" src="http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png" alt="Screen Shot 2016-05-21 at 7.06.34 AM" width="345" height="221" /> Mr. Chong Ton Sin or “Pak Chong”. Picture from Penang Monthly.[/caption]\r\n\r\n<span style="font-weight: 400;">The man behind Gerakbudaya, </span><span style="font-weight: 400;"> Mr. </span><span style="font-weight: 400;">Chong Ton Sin  or “Pak Chong” as he is more commonly known, has been in the business for over 20 years with over 300 publications under his belt.</span>\r\n\r\n&nbsp;', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya', '', 'inherit', 'closed', 'closed', '', '2618-revision-v1', '', '', '2016-05-21 00:11:34', '2016-05-21 00:11:34', '', 2618, 'http://asiacentre.co.th/other/2618-revision-v1/', 0, 'revision', '', 0),
(2621, 5, '2016-05-21 00:13:02', '2016-05-21 00:13:02', '<span style="font-weight: 400;"><img class="alignright  wp-image-2619" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224331_10156840745480307_1071113168_o.jpg" alt="13224331_10156840745480307_1071113168_o" width="235" height="314" />Asia Centre has signed a partnership with Malaysian Publisher Gerakbudaya to be its regional\r\nrepresentative in Thailand. Moving forward, Asia Centre will commission, edit, launch a publication series, distribute and sell books on Southeast Asian studies. </span>\r\n\r\n<span style="font-weight: 400;">The publication series will explore critical issues impacting Southeast Asia as well as the region’s linkages to the rest of the world. The aim is to contribute to research and discussions on regional matters which are alternative and can highlight new and important issues to a wider audience. </span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2614" align="alignleft" width="387"]<img class="wp-image-2614" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13230673_10156840745450307_1623548805_o-1140x855.jpg" alt="13230673_10156840745450307_1623548805_o" width="387" height="290" /> A selection of Gerakbudaya books available at Asia Centre.[/caption]\r\n\r\n<span style="font-weight: 400;">The Centre will also act as a bookshop and has started featuring </span><span style="font-weight: 400;">a selection of Gerakbudaya books. These will be on sale during office hours at the Centre’s premises and during its activities. There are also plans to develop a web portal for e-books.</span>\r\n\r\n<span style="font-weight: 400;">Gerakbudaya publishers and distributes books that spark social awareness and critical discourse on Southeast Asia. </span><span style="font-weight: 400;">Its very name Gerakbudaya represents the movement (gerak) of culture and ideas (budaya) through books. It is Gerakbudaya’s first foray outside of Malaysia.</span>\r\n\r\n[caption id="attachment_2615" align="alignleft" width="379"]<img class="wp-image-2615" src="http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png" alt="Screen Shot 2016-05-21 at 7.06.34 AM" width="379" height="243" /> Mr. Chong Ton Sin or “Pak Chong”. Picture from Penang Monthly.[/caption]\r\n\r\n<span style="font-weight: 400;">The man behind Gerakbudaya, </span><span style="font-weight: 400;"> Mr. </span><span style="font-weight: 400;">Chong Ton Sin  or “Pak Chong” as he is more commonly known, has been in the business for over 20 years with over 300 publications under his belt.</span>\r\n\r\n&nbsp;', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya', '', 'inherit', 'closed', 'closed', '', '2618-revision-v1', '', '', '2016-05-21 00:13:02', '2016-05-21 00:13:02', '', 2618, 'http://asiacentre.co.th/other/2618-revision-v1/', 0, 'revision', '', 0),
(2622, 5, '2016-05-21 00:17:07', '2016-05-21 00:17:07', '<span style="font-weight: 400;">\r\nAsia Centre has signed a partnership with Malaysian Publisher Gerakbudaya to be its regional\r\nrepresentative in Thailand. Moving forward, Asia Centre will commission, edit, launch a publication series, distribute and sell books on Southeast Asian studies.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2616" align="alignright" width="331"]<img class="wp-image-2616" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224345_10156837166920307_243753405_o-2-1140x855.jpg" alt="13224345_10156837166920307_243753405_o-2" width="331" height="248" /> Gerakbudaya office in Malaysia.[/caption]\r\n\r\n<span style="font-weight: 400;">\r\n<img class="wp-image-2619 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224331_10156840745480307_1071113168_o.jpg" alt="13224331_10156840745480307_1071113168_o" width="248" height="331" /> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The publication series will explore critical issues impacting Southeast Asia as well as the region’s linkages to the rest of the world. The aim is to contribute to research and discussions on regional matters which are alternative and can highlight new and important issues to a wider audience.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2614" align="alignleft" width="387"]<img class="wp-image-2614" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13230673_10156840745450307_1623548805_o-1140x855.jpg" alt="13230673_10156840745450307_1623548805_o" width="387" height="290" /> A selection of Gerakbudaya books available at Asia Centre.[/caption]\r\n\r\nThe Centre will also act as a bookshop and has started featuring a selection of Gerakbudaya books. These will be on sale during office hours at the Centre’s premises and during its activities. There are also plans to develop a web portal for e-books.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Gerakbudaya publishers and distributes books that spark social awareness and critical discourse on Southeast Asia. </span><span style="font-weight: 400;">Its very name Gerakbudaya represents the movement (gerak) of culture and ideas (budaya) through books. It is Gerakbudaya’s first foray outside of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2615" align="alignleft" width="379"]<img class="wp-image-2615" src="http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png" alt="Screen Shot 2016-05-21 at 7.06.34 AM" width="379" height="243" /> Mr. Chong Ton Sin or “Pak Chong”. Picture from Penang Monthly.[/caption]\r\n\r\n<span style="font-weight: 400;">The man behind Gerakbudaya, </span><span style="font-weight: 400;"> Mr. </span><span style="font-weight: 400;">Chong Ton Sin  or “Pak Chong” as he is more commonly known, has been in the business for over 20 years with over 300 publications under his belt.</span>\r\n\r\n&nbsp;', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya', '', 'inherit', 'closed', 'closed', '', '2618-revision-v1', '', '', '2016-05-21 00:17:07', '2016-05-21 00:17:07', '', 2618, 'http://asiacentre.co.th/other/2618-revision-v1/', 0, 'revision', '', 0),
(2623, 5, '2016-05-21 00:19:57', '2016-05-21 00:19:57', '<span style="font-weight: 400;">Asia Centre has signed a partnership with Malaysian </span><span style="font-weight: 400;">Publishe<img class="alignright  wp-image-2604" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="328" height="94" />r <a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya</a> to be its regional\r\nrepresentative in Thailand. Moving forward, Asia Centre will commission, edit, launch a publication series, distribute and sell books on Southeast Asian studies.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2616" align="alignright" width="331"]<img class="wp-image-2616" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224345_10156837166920307_243753405_o-2-1140x855.jpg" alt="13224345_10156837166920307_243753405_o-2" width="331" height="248" /> Gerakbudaya office in Malaysia.[/caption]\r\n\r\n<span style="font-weight: 400;">\r\n<img class="wp-image-2619 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224331_10156840745480307_1071113168_o.jpg" alt="13224331_10156840745480307_1071113168_o" width="248" height="331" /> </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The publication series will explore critical issues impacting Southeast Asia as well as the region’s linkages to the rest of the world. The aim is to contribute to research and discussions on regional matters which are alternative and can highlight new and important issues to a wider audience.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2614" align="alignleft" width="387"]<img class="wp-image-2614" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13230673_10156840745450307_1623548805_o-1140x855.jpg" alt="13230673_10156840745450307_1623548805_o" width="387" height="290" /> A selection of Gerakbudaya books available at Asia Centre.[/caption]\r\n\r\nThe Centre will also act as a bookshop and has started featuring a selection of Gerakbudaya books. These will be on sale during office hours at the Centre’s premises and during its activities. There are also plans to develop a web portal for e-books.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Gerakbudaya publishers and distributes books that spark social awareness and critical discourse on Southeast Asia. </span><span style="font-weight: 400;">Its very name Gerakbudaya represents the movement (gerak) of culture and ideas (budaya) through books. It is Gerakbudaya’s first foray outside of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2615" align="alignleft" width="379"]<img class="wp-image-2615" src="http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png" alt="Screen Shot 2016-05-21 at 7.06.34 AM" width="379" height="243" /> Mr. Chong Ton Sin or “Pak Chong”. Picture from Penang Monthly.[/caption]\r\n\r\n<span style="font-weight: 400;">The man behind Gerakbudaya, </span><span style="font-weight: 400;"> Mr. </span><span style="font-weight: 400;">Chong Ton Sin  or “Pak Chong” as he is more commonly known, has been in the business for over 20 years with over 300 publications under his belt. </span>\r\n\r\nYou can read more about Gerakbudaya Enterprises at our <a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank">Partners page</a>.\r\n\r\n&nbsp;', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya', '', 'inherit', 'closed', 'closed', '', '2618-revision-v1', '', '', '2016-05-21 00:19:57', '2016-05-21 00:19:57', '', 2618, 'http://asiacentre.co.th/other/2618-revision-v1/', 0, 'revision', '', 0),
(2624, 5, '2016-05-21 00:20:54', '2016-05-21 00:20:54', '<span style="font-weight: 400;">Asia Centre has signed a partnership with Malaysian </span><span style="font-weight: 400;">Publisher <a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya</a> to be its regional\r\nrepresentative in Thailand. Moving forward, Asia Centre will commission, edit, launch a publication series, distribute and sell books on Southeast Asian studies.</span>\r\n\r\n<span style="font-weight: 400;"> </span>\r\n\r\n[caption id="attachment_2616" align="alignright" width="518"]<img class="wp-image-2616" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224345_10156837166920307_243753405_o-2-1140x855.jpg" alt="13224345_10156837166920307_243753405_o-2" width="518" height="388" /> Gerakbudaya office in Malaysia.[/caption]\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2619 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224331_10156840745480307_1071113168_o.jpg" alt="13224331_10156840745480307_1071113168_o" width="371" height="495" /> </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The publication series will explore critical issues impacting Southeast Asia as well as the region’s linkages to the rest of the world. The aim is to contribute to research and discussions on regional matters which are alternative and can highlight new and important issues to a wider audience.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2614" align="alignleft" width="387"]<img class="wp-image-2614" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13230673_10156840745450307_1623548805_o-1140x855.jpg" alt="13230673_10156840745450307_1623548805_o" width="387" height="290" /> A selection of Gerakbudaya books available at Asia Centre.[/caption]\r\n\r\nThe Centre will also act as a bookshop and has started featuring a selection of Gerakbudaya books. These will be on sale during office hours at the Centre’s premises and during its activities. There are also plans to develop a web portal for e-books.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Gerakbudaya publishers and distributes books that spark social awareness and critical discourse on Southeast Asia. </span><span style="font-weight: 400;">Its very name Gerakbudaya represents the movement (gerak) of culture and ideas (budaya) through books. It is Gerakbudaya’s first foray outside of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2615" align="alignleft" width="379"]<img class="wp-image-2615" src="http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png" alt="Screen Shot 2016-05-21 at 7.06.34 AM" width="379" height="243" /> Mr. Chong Ton Sin or “Pak Chong”. Picture from Penang Monthly.[/caption]\r\n\r\n<span style="font-weight: 400;">The man behind Gerakbudaya, </span><span style="font-weight: 400;"> Mr. </span><span style="font-weight: 400;">Chong Ton Sin  or “Pak Chong” as he is more commonly known, has been in the business for over 20 years with over 300 publications under his belt. </span>\r\n\r\nYou can read more about Gerakbudaya Enterprises at our <a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank">Partners page</a>.\r\n\r\n&nbsp;', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya', '', 'inherit', 'closed', 'closed', '', '2618-revision-v1', '', '', '2016-05-21 00:20:54', '2016-05-21 00:20:54', '', 2618, 'http://asiacentre.co.th/other/2618-revision-v1/', 0, 'revision', '', 0),
(2625, 5, '2016-05-21 00:21:16', '2016-05-21 00:21:16', '<span style="font-weight: 400;">Asia Centre has signed a partnership with Malaysian </span><span style="font-weight: 400;">Publisher <a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya</a> to be its regional\r\nrepresentative in Thailand. Moving forward, Asia Centre will commission, edit, launch a publication series, distribute and sell books on Southeast Asian studies.</span>\r\n\r\n<span style="font-weight: 400;"> </span>\r\n\r\n[caption id="attachment_2616" align="aligncenter" width="518"]<img class="wp-image-2616" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224345_10156837166920307_243753405_o-2-1140x855.jpg" alt="13224345_10156837166920307_243753405_o-2" width="518" height="388" /> Gerakbudaya office in Malaysia.[/caption]\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2619 alignnone" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13224331_10156840745480307_1071113168_o.jpg" alt="13224331_10156840745480307_1071113168_o" width="371" height="495" /> </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The publication series will explore critical issues impacting Southeast Asia as well as the region’s linkages to the rest of the world. The aim is to contribute to research and discussions on regional matters which are alternative and can highlight new and important issues to a wider audience.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2614" align="alignleft" width="387"]<img class="wp-image-2614" src="http://asiacentre.co.th/wp-content/uploads/2016/05/13230673_10156840745450307_1623548805_o-1140x855.jpg" alt="13230673_10156840745450307_1623548805_o" width="387" height="290" /> A selection of Gerakbudaya books available at Asia Centre.[/caption]\r\n\r\nThe Centre will also act as a bookshop and has started featuring a selection of Gerakbudaya books. These will be on sale during office hours at the Centre’s premises and during its activities. There are also plans to develop a web portal for e-books.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Gerakbudaya publishers and distributes books that spark social awareness and critical discourse on Southeast Asia. </span><span style="font-weight: 400;">Its very name Gerakbudaya represents the movement (gerak) of culture and ideas (budaya) through books. It is Gerakbudaya’s first foray outside of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2615" align="alignleft" width="379"]<img class="wp-image-2615" src="http://asiacentre.co.th/wp-content/uploads/2016/05/Screen-Shot-2016-05-21-at-7.06.34-AM.png" alt="Screen Shot 2016-05-21 at 7.06.34 AM" width="379" height="243" /> Mr. Chong Ton Sin or “Pak Chong”. Picture from Penang Monthly.[/caption]\r\n\r\n<span style="font-weight: 400;">The man behind Gerakbudaya, </span><span style="font-weight: 400;"> Mr. </span><span style="font-weight: 400;">Chong Ton Sin  or “Pak Chong” as he is more commonly known, has been in the business for over 20 years with over 300 publications under his belt. </span>\r\n\r\nYou can read more about Gerakbudaya Enterprises at our <a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank">Partners page</a>.\r\n\r\n&nbsp;', 'Asia Centre: Regional Representative for Malaysian Publisher Gerakbudaya', '', 'inherit', 'closed', 'closed', '', '2618-revision-v1', '', '', '2016-05-21 00:21:16', '2016-05-21 00:21:16', '', 2618, 'http://asiacentre.co.th/other/2618-revision-v1/', 0, 'revision', '', 0),
(2627, 5, '2016-06-02 04:34:22', '2016-06-02 04:34:22', '<strong>Course Description</strong>\r\n\r\n<strong><img class="alignright wp-image-2628" src="http://asiacentre.co.th/wp-content/uploads/2016/06/rsch.jpg" alt="rsch" width="331" height="220" /></strong>\r\n\r\nThis is an introductory course for university students which aims to develop the academic writing skills required to produce articles, essays, reports and dissertations in English. The course will help students to organise their ideas using effective language and an appropriate academic tone. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece.\r\n<div class="col-lg-12 col-md-12">\r\n<div class="news-body clearfix">\r\n\r\n<strong>Course Objectives</strong>\r\n\r\nThe course aims to help students build a foundation upon which to develop their academic writing skills and produce content  that is concise, engaging and well-sourced.\r\n\r\n<strong>Learning Outcomes</strong>\r\n\r\nAt the end of the course students will understand and be able to\r\n<ul>\r\n 	<li>Use of appropriate academic language</li>\r\n 	<li>Produce effective, logical and coherent text</li>\r\n 	<li>Write effective thesis statements and well-developed substantive paragraphs</li>\r\n 	<li>Write an essay/op-ed</li>\r\n</ul>\r\n<strong>Course Format</strong>\r\n\r\nThe course combines lecture and discussion, complemented by activities including writing, text analysis, and redrafting and editorial exercises. The workshop also promotes learning through interaction.\r\n\r\n<strong>Course Schedule</strong>\r\n\r\nThis is an intensive 2 day course that will be conducted from 9.00 am to 4.00 pm.\r\n<table width="607">\r\n<tbody>\r\n<tr>\r\n<td colspan="3">DAY 1</td>\r\n</tr>\r\n<tr>\r\n<td>9am -12noonSession 1</td>\r\n<td>12-1pmLunch</td>\r\n<td>1-4pmSession 2</td>\r\n</tr>\r\n<tr>\r\n<td colspan="3">DAY 2</td>\r\n</tr>\r\n<tr>\r\n<td>9am -12noonSession 1</td>\r\n<td>12-1pmLunch</td>\r\n<td>1-4pmSession 2</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>Fees  </strong>\r\n\r\n3500 baht per student\r\n\r\n<strong>Venue</strong>\r\n\r\n<a href="http://asiacentre.co.th/contact-us/location/" target="_blank">Asia Centre</a>\r\n\r\n<strong>Contact Information</strong>\r\n\r\n<a href="mailto:info@asiacentre.co.th" target="_blank">info@asiacentre.co.th</a>\r\n\r\nTo register please click<a href="https://docs.google.com/forms/d/1_gS4T11n8BGi0ZpDuLF2Wo2K23iFdjEZ9vAbVjS0xlQ/viewform" target="_blank"> here</a>. Payment must be made in full by 20th July in order to confirm your place.\r\n\r\n</div>\r\n<a href="https://www.facebook.com/events/310521779279729/" target="_blank">Facebook Page</a>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n&nbsp;', 'Academic Writing Clinic', '', 'publish', 'closed', 'closed', '', 'academic-writing-clinic-2', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2627', 0, 'event', '', 0),
(2628, 5, '2016-06-02 04:24:41', '2016-06-02 04:24:41', '', 'rsch', '', 'inherit', 'closed', 'closed', '', 'rsch', '', '', '2016-06-02 04:24:41', '2016-06-02 04:24:41', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/rsch.jpg', 0, 'attachment', 'image/jpeg', 0),
(2630, 6, '2016-06-08 03:20:19', '2016-06-08 03:20:19', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,000</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">10,000</td>\r\n<td width="78">19,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-08 03:20:19', '2016-06-08 03:20:19', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2632, 5, '2016-06-09 09:08:27', '2016-06-09 09:08:27', 'SEA Junction &amp; Asia Centre are proud to announce a panel discussion titled <em>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</em>\r\n\r\n&nbsp;\r\n\r\nIn Southeast Asia many countries have experienced and continue to experience human rights <img class=" wp-image-2633 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Map-of-SE-Asia_04.jpg" alt="Map-of-SE-Asia_04" width="307" height="205" />violations. Yet, with the possible exception of Cambodia, the perpetrators have not been brought to justice and efforts to find out the truth and ascertain responsibilities have proven elusive. The journalists and human rights defenders\r\nho fight for accountability too often become victims themselves. At the same time, all across the region there are movements challenging denial and impunity, and employing various strategies to demand accountability. New generations are<span class="text_exposed_show"> also emerging with a desire for knowing and reckoning with the past in order to shape a rights-based future for their country. </span><span class="text_exposed_show">\r\nWhile the contexts and abuses may differ, there are common spaces and strategies to tap on. This panel will focus on efforts at accountability in the region and will consider some of the following questions. What strategies are being employed? What choices and compromises; if any, are being made? What alliances are being formed? What is the synergy between efforts at the national, regional and international levels? What are the hopes in the midst of obstacles to ensure justice?</span>\r\n\r\nModerator: Rosalia Sciortino, Founder and Executive Director SEA Junction\r\n\r\n<span class="text_exposed_show">Speakers: </span><span class="text_exposed_show">\r\nGaluh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR)\r\nConfronting enduring impunity in Indonesia and Timor Leste</span>\r\n\r\nAung Khaing Min, Advocacy and Research Officer Burma Partnership\r\nReconciliation and Transitional Justice in Myanmar\r\n\r\nEdgardo Legaspi, Executive Director, Southeast Asian Press Alliance\r\nEnding the cycle of impunity for crimes against journalists in Southeast Asia\r\n\r\nThis event will also feature the presentation of the book “Enduring Impunity” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n<span class="text_exposed_show">\r\nIn the afternoon at 5pm SEA Junction, will be launched at the Bangkok Art and Cultural Center. Please see <a href="http://www.seajunction.org/">www.seajunction.org</a>  for more details.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>About SEA Junction<img class=" wp-image-2635 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="322" height="169" /></strong>\r\n\r\n<em>“SEA Junction”: OUR venue to connect on Southeast Asia</em>\r\nSEA Junction aims to foster understanding and appreciation of Southeast Asia in all its socio-cultural dimensions --from arts and lifestyles to economy and development-- by enhancing public access to knowledge resources and by promoting exchanges among students, practitioners and Southeast Asia lovers. Located at the Bangkok Arts and Culture Centre (BACC) in Bangkok, Thailand,  SEA Junction will start functioning  on 25 June 2016. For more information see <a href="http://www.seajunction.org/" target="_blank" rel="noreferrer">www.seajunction.org</a>', 'Confronting Elusiveness: Demanding Accountability in Southeast Asia', '', 'publish', 'closed', 'closed', '', 'confronting-elusiveness-demanding-accountability-in-southeast-asia', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2632', 0, 'event', '', 0),
(2633, 5, '2016-06-09 08:42:52', '2016-06-09 08:42:52', '', 'Map-of-SE-Asia_04', '', 'inherit', 'closed', 'closed', '', 'map-of-se-asia_04', '', '', '2016-06-09 08:42:52', '2016-06-09 08:42:52', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/Map-of-SE-Asia_04.jpg', 0, 'attachment', 'image/jpeg', 0),
(2634, 5, '2016-06-09 09:03:39', '2016-06-09 09:03:39', '', 'logosmaller', '', 'inherit', 'closed', 'closed', '', 'logosmaller', '', '', '2016-06-09 09:03:39', '2016-06-09 09:03:39', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/logosmaller.png', 0, 'attachment', 'image/png', 0),
(2635, 5, '2016-06-09 09:06:22', '2016-06-09 09:06:22', '', 'Screen Shot 2016-06-09 at 4.06.02 PM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-06-09-at-4-06-02-pm', '', '', '2016-06-28 07:26:38', '2016-06-28 07:26:38', '', 2667, 'http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png', 0, 'attachment', 'image/png', 0),
(2637, 5, '2016-06-14 09:20:31', '2016-06-14 09:20:31', '', '13411659_1207574492595110_7290071945552310544_o', '', 'inherit', 'closed', 'closed', '', '13411659_1207574492595110_7290071945552310544_o', '', '', '2016-06-14 09:20:31', '2016-06-14 09:20:31', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13411659_1207574492595110_7290071945552310544_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(2638, 5, '2016-06-15 11:43:43', '2016-06-15 11:43:43', '', 'Abid 15', '??????????????', 'inherit', 'closed', 'closed', '', 'abid-15', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/wp-content/uploads/2016/06/Abid-15.jpg', 1, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2639, 5, '2016-06-15 11:52:09', '2016-06-15 11:52:09', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n<h2></h2>\r\n<h2>Ahmed Abid</h2>\r\n<img class="wp-image-2638 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Abid-15.jpg" width="160" height="234" />\r\n\r\nAhmed Abid is a filmmaker and adjunct faculty with the University of Liberal Arts Bangladesh (ULAB), Media Studies and Journalism department. He has produced and directed films on rights-based issues around the world. Some of his key directorial work include <a href="http://www.thedreamingvendorsfilm.com/" target="_blank">The Dreaming Vendors</a> (Bangladesh-Thailand), Votes Echoing Hope (Afghanistan) and Click to Protect, Change to Connect (Brazil-Thailand). Ahmed was the artistic director of the first travelling film festival in Thailand. He has also conducted extensive academic research on media in South and Southeast Asia.  Ahmed has worked in Bangladesh, Cambodia, India, Singapore, Thailand and Jordan; and received training in Italy and the Netherlands. He has taught at the Department of Communications &amp; New Media (CNM), National University of Singapore and worked its CARE Lab as a Research Assistant. Ahmed holds two Master of Arts degrees; one in Philosophy (University of Dhaka, Bangladesh) and one in Media and Social Development (Mahidol University, Thailand). He also holds a diploma in Cinema from the European-Inter University Centre (EIUC).\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Jay Koh</strong></h2>\r\n<img class=" wp-image-2592 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg" alt="jk" width="193" height="217" />Jay Koh (Doctor Fine Art) is an artist-curator, trained in cross-disciplinary artistic research and active as an independent consultant and evaluator. Jay’s recent research was as a member of the Asian Arts and Performance Consortium funded by the Academy of Finland. He is the founder of iFIMA (international Forum for InterMedia Arts). In 1995 in collaboration with Chu Yuan, he initiated a number of public participative and socially engaged art projects across Europe and Asia; such as the Open Academy program in Hanoi, Hue, Ulaanbaatar and Yangon. Jay’s book <a href="http://www.ifima.net/ALPP%20preview%20sm.pdf" target="_blank"><i>Art-Led Participative Processes: Dialogue &amp; Subjectivity within Performances in the Everyday</i> </a>(University of the Arts Helsinki, 2015; SRID/Gerakbudaya, 2016) discusses holistic and ethical art processes in working relationship, and seeks affirmation across sectors and disciplines. Jay contributes writings for platforms such as Asia Art Archive and Irish Arts Newsletter. His most recent is for BRACK’s MAG, Singapore.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="wp-image-2149 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is a professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his Ph.D. and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="wp-image-2152 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="wp-image-2148 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2016-06-15 11:52:09', '2016-06-15 11:52:09', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2640, 5, '2016-06-15 13:01:35', '2016-06-15 13:01:35', 'Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span>\r\n<h2></h2>\r\n<h2>Ahmed Abid</h2>\r\n<img class="wp-image-2638 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Abid-15.jpg" width="160" height="234" />\r\n\r\nAhmed Abid is a filmmaker and adjunct faculty with the University of Liberal Arts Bangladesh (ULAB), Media Studies and Journalism department. He has produced and directed films on rights-based issues around the world. Some of his key directorial work include <a href="http://www.thedreamingvendorsfilm.com/" target="_blank">The Dreaming Vendors</a> (Bangladesh-Thailand), Votes Echoing Hope (Afghanistan) and Click to Protect, Change to Connect (Brazil-Thailand). Ahmed was the artistic director of the first travelling film festival in Thailand. He has also conducted extensive academic research on media in South and Southeast Asia.  Ahmed has worked in Bangladesh, Cambodia, India, Singapore, Thailand and Jordan; and received training in Italy and the Netherlands. He has taught at the Department of Communications &amp; New Media (CNM), National University of Singapore and worked at its CARE Lab as a Research Assistant. Ahmed holds two Master of Arts degrees; one in Philosophy (University of Dhaka, Bangladesh) and one in Media and Social Development (Mahidol University, Thailand). He also holds a diploma in Cinema from the European-Inter University Centre (EIUC).\r\n\r\n&nbsp;\r\n<h2>Jason Briggs</h2>\r\n<img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.\r\n\r\n&nbsp;\r\n<h2><strong>Alexandra Demetrianova</strong></h2>\r\n<img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.\r\n\r\nCurrently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.\r\n\r\nAs a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.\r\n\r\nIn her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.\r\n\r\n&nbsp;\r\n<h2>Dr. Kenneth Houston</h2>\r\n<img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.\r\n\r\n&nbsp;\r\n<h2><strong>Yasuyuki Kato</strong></h2>\r\n<img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Jay Koh</strong></h2>\r\n<img class=" wp-image-2592 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg" alt="jk" width="193" height="217" />Jay Koh (Doctor Fine Art) is an artist-curator, trained in cross-disciplinary artistic research and active as an independent consultant and evaluator. Jay’s recent research was as a member of the Asian Arts and Performance Consortium funded by the Academy of Finland. He is the founder of iFIMA (international Forum for InterMedia Arts). In 1995 in collaboration with Chu Yuan, he initiated a number of public participative and socially engaged art projects across Europe and Asia; such as the Open Academy program in Hanoi, Hue, Ulaanbaatar and Yangon. Jay’s book <a href="http://www.ifima.net/ALPP%20preview%20sm.pdf" target="_blank"><i>Art-Led Participative Processes: Dialogue &amp; Subjectivity within Performances in the Everyday</i> </a>(University of the Arts Helsinki, 2015; SRID/Gerakbudaya, 2016) discusses holistic and ethical art processes in working relationship, and seeks affirmation across sectors and disciplines. Jay contributes writings for platforms such as Asia Art Archive and Irish Arts Newsletter. His most recent is for BRACK’s MAG, Singapore.\r\n\r\n&nbsp;\r\n<h2>Dr. Gustavo A. Olivares Marcos</h2>\r\n<img class="wp-image-2149 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Gustavo-A.-Olivares-Marcos.png" alt="Gustavo A. Olivares Marcos" width="175" height="233" />\r\n\r\nDr. Gustavo A. Olivares Marcos is a professor of international economic relations at the Postgraduate School of the National University of San Marcos in Lima, Peru, and executive director of ILAGOB (Instituto Latinoamericano para la Gobernanza Global). He received his Ph.D. and MPhil (DES) degrees in international relations, with specialization in international law, from the Geneva Graduate Institute of International Studies (HEI). He studied law in Lima, Geneva and London, has been a visiting research fellow and scholar at The Hague Academy of International Law, London School of Economics and Political Science and Columbia University Law School and School of International and Public Affairs (SIPA). Prof. Olivares works as an independent consultant on trade policy for various governments in Latin America and East Asia as well as several European consulting firms, NGOs and international organisations including the International Trade Centre, the World Trade Organisation and the United Nations Conference on Trade and Development.\r\n\r\n&nbsp;\r\n<h2>Simon Osborne</h2>\r\n<img class="wp-image-2152 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<img class="wp-image-2148 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2016-06-15 13:01:35', '2016-06-15 13:01:35', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(2643, 6, '2016-06-23 03:06:59', '2016-06-23 03:06:59', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-23 03:06:59', '2016-06-23 03:06:59', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2644, 6, '2016-06-23 07:23:35', '2016-06-23 07:23:35', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\nFor more information in Thai please visit our Thai Facebook page\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-23 07:23:35', '2016-06-23 07:23:35', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2645, 6, '2016-06-23 07:25:36', '2016-06-23 07:25:36', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-23 07:25:36', '2016-06-23 07:25:36', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2646, 6, '2016-06-23 07:26:00', '2016-06-23 07:26:00', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n&nbsp;\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: center;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-23 07:26:00', '2016-06-23 07:26:00', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2647, 6, '2016-06-23 07:28:27', '2016-06-23 07:28:27', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n&nbsp;\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-23 07:28:27', '2016-06-23 07:28:27', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2648, 6, '2016-06-23 07:28:47', '2016-06-23 07:28:47', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-23 07:28:47', '2016-06-23 07:28:47', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2649, 6, '2016-06-23 07:29:36', '2016-06-23 07:29:36', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n&nbsp;\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (2 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">5,000</td>\r\n<td width="54">15,000</td>\r\n<td width="44">13,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-06-23 07:29:36', '2016-06-23 07:29:36', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2651, 6, '2016-06-23 11:38:08', '2016-06-23 11:38:08', '', 'performance_payments', '', 'inherit', 'closed', 'closed', '', 'performance_payments', '', '', '2016-06-23 11:38:08', '2016-06-23 11:38:08', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/performance_payments.png', 0, 'attachment', 'image/png', 0),
(2652, 6, '2016-08-25 09:54:35', '2016-08-25 09:54:35', 'The Universal Periodic Review (UPR) is a mechanism under the Human Rights Council that reviews the human rights situation in all 193 UN Member States once every four and a half years. All Southeast Asian states have undergone two review cycles of their respective human rights situations under the process. <span style="font-weight: 400;">But what is the impact of the UPR on human rights in the region? And does the focus on constructive dialogue and the state-centric nature of the process help improve the situation?</span>\n\n<img class=" wp-image-2391 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/upr.jpg" alt="upr" width="319" height="212" />The region is politically diverse with member states varying in their national human rights protection systems, ratification of UN human rights instruments and level of civil society engagement. In relation to the UPR process, a key issue is how it contributes to the advancement of human rights in the region and what role it plays in relation to the ASEAN Intergovernmental Commission on Human Rights (AICHR) and national human rights institutions (NHRIs).This conference seeks to critically examine the UPR process through evidence-based research to evaluate its impact on Southeast Asian states and societies.\n\n&nbsp;\n<p class="remove-margin-top remove-margin-bottom"><strong>Themes</strong></p>\n<p class="remove-margin-top remove-margin-bottom"><span style="font-weight: 400;">Key themes that will be treated are:</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">1. Effectiveness of the UPR in addressing human rights protection gaps within Southeast Asia</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">2. States adherence to UPR recommendations for improving the protection capacities of AICHR</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">3. States adherence to UPR recommendations for improving the protection capacities of NHRIs.</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">4. Development of an intra-regional linkage to formally engage with the UPR process</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">5. Challenges faced by civil society in engaging with the UPR process</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">6. Other related themes</span></p>\n&nbsp;\n<p class="remove-margin-top remove-margin-bottom"><strong>Objectives</strong></p>\n<p class="remove-margin-top remove-margin-bottom"><span style="font-weight: 400;">This conference aims to achieve the following objectives:</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">1. Convene researchers working on human rights in Southeast Asia</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">2. Exchange views among the authors researching the UPR process in Southeast Asia</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">3. Publish the outcomes in a special issue journal and/or an edited book</span><span style="font-weight: 400;">\n</span><span style="font-weight: 400;">4. Contribute to the academic literature on the UPR and human rights in Southeast Asia</span></p>\n&nbsp;\n<p class="remove-margin-top remove-margin-bottom"><strong>Conference Structure</strong></p>\n<p class="remove-margin-top remove-margin-bottom"><span style="font-weight: 400;">The conference will consist of thematic panels, country-specific discussions and a final plenary session which will be open to civil society groups, international organisations, government officials and the academic community to facilitate knowledge sharing and networking opportunities.</span></p>\n&nbsp;\n<p class="wsite-content-title"><strong>Conference Fees</strong></p>\n<p class="wsite-content-title"><strong>For Presenters        </strong><strong>                                                              </strong>\nThis is a self-funded conference hence a fee of USD$200 will be charged to all presenters, this will go towards covering the cost of the venue, equipment and logistics, coffee breaks on all days, certificates for presenters, and conference communications. There will be an early bird discount rate of USD$150 for registration and full payment made before 31 July 2016. We are also offering a special student rate of USD$75.</p>\n<p class="wsite-content-title"><strong>For Participants         </strong></p>\n<p class="wsite-content-title">You can also attend the conference as a participant to listen to the research being presented, participate in the discussions and engage with the researchers. There is single day rate of USD$75 and a conference package of $150 which will allow you to attend both days of the conference, the welcome dinner and the open plenary on Saturday. Students can pay a discounted rate of USD$40 for single day attendance or USD$75 to attend both days of the conference, the welcome dinner and the open plenary on Saturday. Coffee breaks and lunch are provided.</p>\n\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\n<div class="paragraph">Conference fee can be payed in two ways:\n1. Directly to the bank account <strong>according to the instructions</strong> that will be listed on the<strong> invoice</strong>\n2. <strong>Online payment </strong>using Secured Credit Card Payment</div>\n</form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\n<input name="hosted_button_id" type="hidden" value="4HDXGNH8U8KAL" />\n<table>\n<tbody>\n<tr>\n<td><input name="on0" type="hidden" value="UPR Conference Fee (For Presenters)" /><strong><span style="color: #0000ff;">UPR Conference Fee (For Presenters)</span></strong></td>\n</tr>\n<tr>\n<td><select name="os0">\n<option value="Regular">Regular $200.00 USD</option>\n<option value="Early bird">Early bird $150.00 USD</option>\n<option value="Student">Student $75.00 USD</option>\n</select></td>\n</tr>\n</tbody>\n</table>\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\n\n</form>aaaaaaaaaaaaaaaaaaaaaaa\n\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\n<input name="hosted_button_id" type="hidden" value="3VFLRWGWVXYEW" />\n<table>\n<tbody>\n<tr>\n<td><input name="on0" type="hidden" value="UPR Conference Fee (For Participants)" />UPR Conference Fee (For Participants)</td>\n</tr>\n<tr>\n<td><select name="os0">\n<option value="Single Day">Single Day $75.00 USD</option>\n<option value="Conference Package">Conference Package $150.00 USD</option>\n<option value="Single Day-Student">Single Day-Student $40.00 USD</option>\n<option value="Student Package">Student Package $75.00 USD</option>\n</select></td>\n</tr>\n</tbody>\n</table>\n<input name="currency_code" type="hidden" value="USD" />\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\n<img src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />\n\n</form>&nbsp;\n\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"></form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="hosted_button_id" type="hidden" value="4HDXGNH8U8KAL" />\n\n</form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><img src="https://www.paypalobjects.com/en_GB/i/scr/pixel.gif" alt="" width="1" height="1" border="0" /><img class="alignleft" src="https://www.paypalobjects.com/webstatic/mktg/logo/PP_AcceptanceMarkTray-NoDiscover_243x40.png" alt="Buy now with PayPal" width="170" height="28" /> <!-- PayPal Logo -->\n\n</form>&nbsp;\n\n*Please be aware that all conference fees are not refundable.\n**All costs regarding the transfer of the registration fee (Transfer fees) are to be covered by the applicant.\n\n<strong>Submission Guidelines</strong>\n<span style="font-weight: 400;">Those wishing to present papers are invited to submit an abstract of 300 words along with a short biographical paragraph, in English to contact@asiacentre.co.th</span>\n\n<strong>Deadlines</strong>\n<ul>\n 	<li><strong>Deadline for abstract submission has been extended to 15 August 2016</strong></li>\n 	<li>Full paper submission: 1 September 2016</li>\n</ul>\n&nbsp;\n<p class="clear-margins"><strong>Programme Outline</strong></p>\n<p class="clear-margins"><img class="alignright size-medium wp-image-2824" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-1140x1612.jpg" alt="Draft Programme" width="1140" height="1612" /> <img class="alignright size-medium wp-image-2825" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-Day-2-1140x1612.jpg" alt="Draft Programme Day 2" width="1140" height="1612" /></p>\n&nbsp;\n\nFor information on the open plenary on 17th September 2017 please click here.\n\nDo share this conference on <a href="https://www.facebook.com/events/1784604575095088/" target="_blank">Facebook</a>!\n\n<strong>Conveners:</strong> Professors James Gomez &amp; Robin Ramcharan\n\n<strong>Host:</strong> Asia Centre, Bangkok, Thailand\n\n<strong><img class="alignright size-medium wp-image-2707" src="http://asiacentre.co.th/wp-content/uploads/2016/07/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614.jpg" alt="UPR in Southeast Asia- Conference Call - Final Deadline" width="1140" height="1614" /></strong><code></code>', 'Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment', '', 'inherit', 'closed', 'closed', '', '2328-autosave-v1', '', '', '2016-08-25 09:54:35', '2016-08-25 09:54:35', '', 2328, 'http://asiacentre.co.th/other/2328-autosave-v1/', 0, 'revision', '', 0),
(2653, 5, '2016-06-27 02:38:46', '2016-06-27 02:38:46', 'On Thursday 23 June 2016, the United Kingdom held a referendum to gauge support for\r\n<img class="alignright wp-image-2654" src="http://asiacentre.co.th/wp-content/uploads/2016/06/BREXIT-1140x697.jpg" alt="BREXIT" width="434" height="265" />its continued membership of the European Union.\r\n\r\n&nbsp;\r\n\r\n51.9% voted to leave the EU, 48.1%, voted to remain in the EU.\r\n\r\n&nbsp;\r\n\r\nThe detailed results showed that England (but not London) and Wales voted to leave while the majority in Scotland and Northern Ireland, as well as 96% of Gibraltar, voted to remain. The referendum is only advisory, hence a decision to invoke Article 50 of the Treaty on European Union to leave the EU has to be formally taken by the British Parliament. In the meantime, a range of views and analysis have started to emerge around Brexit. While consequences for British and global politics and economics have also arisen.\r\n\r\n&nbsp;\r\n\r\nAsia Centre will convene a roundtable to take stock of these emerging views and discuss the implications one month following the historic referendum. A panel of academics will provide a multi-dimensional view of the Brexit in a roundtable setting where both panelists and participants will try to make sense of the larger implications for the United Kingdom, Europe and Asia.\r\n\r\n&nbsp;\r\n\r\nModerator:\r\n\r\n<img class=" wp-image-2665 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.36.29-PM-1.png" alt="Screen Shot 2016-06-27 at 12.36.29 PM" width="262" height="352" />\r\n\r\nPanelists:\r\n\r\n<img class="wp-image-2661 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.16.26-PM.png" alt="Screen Shot 2016-06-27 at 12.16.26 PM" width="597" height="369" />\r\n\r\n<img class="size-full wp-image-2708 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-07-14-at-4.06.21-PM.png" alt="Screen Shot 2016-07-14 at 4.06.21 PM" width="590" height="348" />\r\n\r\n&nbsp;\r\n\r\nThis is a free event. Asia Centre operates on a non-profit basis, we welcome contributions to help cover the cost of holding this event.\r\n\r\nRegistration\r\n<a href="https://docs.google.com/forms/d/1i7wL5R_FlWj5PdLBDO0qm_fIiG8uZtvzRMkqm68hvyg/viewform" target="_blank" rel="nofollow nofollow">https://docs.google.com/<wbr />forms/d/<wbr />1i7wL5R_FlWj5PdLBDO0qm_fIiG<wbr />8uZtvzRMkqm68hvyg/viewform</a>\r\n\r\nVenue: Asia Centre', 'Brexit & Its Implications: An Asia Centre Roundtable', '', 'publish', 'closed', 'closed', '', 'brexit-its-implications-an-asia-centre-roundtable', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2653', 0, 'event', '', 0),
(2654, 5, '2016-06-27 02:24:41', '2016-06-27 02:24:41', '', 'BREXIT', '', 'inherit', 'closed', 'closed', '', 'brexit', '', '', '2016-06-27 02:24:41', '2016-06-27 02:24:41', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/BREXIT.jpg', 0, 'attachment', 'image/jpeg', 0),
(2655, 5, '2016-07-14 09:06:48', '2016-07-14 09:06:48', 'On Thursday 23 June 2016, the United Kingdom held a referendum to gauge support for\n<img class="alignright wp-image-2654" src="http://asiacentre.co.th/wp-content/uploads/2016/06/BREXIT-1140x697.jpg" alt="BREXIT" width="434" height="265" />its continued membership of the European Union.\n\n&nbsp;\n\n51.9% voted to leave the EU, 48.1%, voted to remain in the EU.\n\n&nbsp;\n\nThe detailed results showed that England (but not London) and Wales voted to leave while the majority in Scotland and Northern Ireland, as well as 96% of Gibraltar, voted to remain. The referendum is only advisory, hence a decision to invoke Article 50 of the Treaty on European Union to leave the EU has to be formally taken by the British Parliament. In the meantime, a range of views and analysis have started to emerge around Brexit. While consequences for British and global politics and economics have also arisen.\n\n&nbsp;\n\nAsia Centre will convene a roundtable to take stock of these emerging views and discuss the implications one month following the historic referendum. A panel of academics will provide a multi-dimensional view of the Brexit in a roundtable setting where both panelists and participants will try to make sense of the larger implications for the United Kingdom, Europe and Asia.\n\n&nbsp;\n\nModerator:\n\n<img class=" wp-image-2665 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.36.29-PM-1.png" alt="Screen Shot 2016-06-27 at 12.36.29 PM" width="262" height="352" />\n\nPanelists:\n\n<img class="wp-image-2661 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.16.26-PM.png" alt="Screen Shot 2016-06-27 at 12.16.26 PM" width="597" height="369" />\n\n&nbsp;\n\n&nbsp;\n\nThis is a free event. Asia Centre operates on a non-profit basis, we welcome contributions to help cover the cost of holding this event.\n\nRegistration\n<a href="https://docs.google.com/forms/d/1i7wL5R_FlWj5PdLBDO0qm_fIiG8uZtvzRMkqm68hvyg/viewform" target="_blank" rel="nofollow nofollow">https://docs.google.com/<wbr />forms/d/<wbr />1i7wL5R_FlWj5PdLBDO0qm_fIiG<wbr />8uZtvzRMkqm68hvyg/viewform</a>\n\nVenue: Asia Centre', 'Brexit & Its Implications: An Asia Centre Roundtable', '', 'inherit', 'closed', 'closed', '', '2653-autosave-v1', '', '', '2016-07-14 09:06:48', '2016-07-14 09:06:48', '', 2653, 'http://asiacentre.co.th/other/2653-autosave-v1/', 0, 'revision', '', 0),
(2657, 5, '2016-06-27 03:52:08', '2016-06-27 03:52:08', '', '13523655_10157003280205307_82205617_o', '', 'inherit', 'closed', 'closed', '', '13523655_10157003280205307_82205617_o', '', '', '2016-06-27 03:52:08', '2016-06-27 03:52:08', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13523655_10157003280205307_82205617_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(2660, 5, '2016-06-27 05:00:47', '2016-06-27 05:00:47', '', '13509681_10157003279515307_1474960354_o', '', 'inherit', 'closed', 'closed', '', '13509681_10157003279515307_1474960354_o-3', '', '', '2016-06-27 05:00:47', '2016-06-27 05:00:47', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13509681_10157003279515307_1474960354_o-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2661, 5, '2016-06-27 05:18:22', '2016-06-27 05:18:22', '', 'Screen Shot 2016-06-27 at 12.16.26 PM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-06-27-at-12-16-26-pm', '', '', '2016-06-27 05:18:22', '2016-06-27 05:18:22', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.16.26-PM.png', 0, 'attachment', 'image/png', 0),
(2662, 5, '2016-06-27 05:27:02', '2016-06-27 05:27:02', '', '1394142_10151974405743832_1507090755_n', '', 'inherit', 'closed', 'closed', '', '1394142_10151974405743832_1507090755_n', '', '', '2016-12-27 03:46:39', '2016-12-27 03:46:39', '', 300, 'http://asiacentre.co.th/wp-content/uploads/2016/06/1394142_10151974405743832_1507090755_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2663, 5, '2016-06-27 05:28:41', '2016-06-27 05:28:41', '', 'Screen Shot 2016-06-27 at 12.28.00 PM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-06-27-at-12-28-00-pm', '', '', '2016-06-27 05:28:41', '2016-06-27 05:28:41', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.28.00-PM.png', 0, 'attachment', 'image/png', 0),
(2665, 5, '2016-06-27 05:37:43', '2016-06-27 05:37:43', '', 'Screen Shot 2016-06-27 at 12.36.29 PM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-06-27-at-12-36-29-pm-2', '', '', '2016-06-27 05:37:43', '2016-06-27 05:37:43', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-27-at-12.36.29-PM-1.png', 0, 'attachment', 'image/png', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2666, 5, '2016-07-14 08:00:56', '2016-07-14 08:00:56', '<strong>Course Description</strong>\r\n\r\n<strong><img class="alignright wp-image-2628" src="http://asiacentre.co.th/wp-content/uploads/2016/06/rsch.jpg" alt="rsch" width="331" height="220" /></strong>\r\n\r\nThis is an introductory course for university students which aims to develop the academic writing skills required to produce articles, essays, reports and dissertations in English. The course will help students to organise their ideas using effective language and an appropriate academic tone. Students will also sharpen their skills in structuring information and linking ideas into a coherent flowing piece.\r\n<div class="col-lg-12 col-md-12">\r\n<div class="news-body clearfix">\r\n\r\n<strong>Course Objectives</strong>\r\n\r\nThe course aims to help students build a foundation upon which to develop their academic writing skills and produce content  that is concise, engaging and well-sourced.\r\n\r\n<strong>Learning Outcomes</strong>\r\n\r\nAt the end of the course students will understand and be able to\r\n<ul>\r\n 	<li>Use of appropriate academic language</li>\r\n 	<li>Produce effective, logical and coherent text</li>\r\n 	<li>Write effective thesis statements and well-developed substantive paragraphs</li>\r\n 	<li>Write an essay/op-ed</li>\r\n</ul>\r\n<strong>Course Format</strong>\r\n\r\nThe course combines lecture and discussion, complemented by activities including writing, text analysis, and redrafting and editorial exercises. The workshop also promotes learning through interaction.\r\n\r\n<strong>Course Schedule</strong>\r\n\r\nThis is an intensive 2 day course that will be conducted from 9.00 am to 4.00 pm.\r\n<table width="607">\r\n<tbody>\r\n<tr>\r\n<td colspan="3">DAY 1</td>\r\n</tr>\r\n<tr>\r\n<td>9am -12noonSession 1</td>\r\n<td>12-1pmLunch</td>\r\n<td>1-4pmSession 2</td>\r\n</tr>\r\n<tr>\r\n<td colspan="3">DAY 2</td>\r\n</tr>\r\n<tr>\r\n<td>9am -12noonSession 1</td>\r\n<td>12-1pmLunch</td>\r\n<td>1-4pmSession 2</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>Fees  </strong>\r\n\r\n3500 baht per student\r\n\r\n<strong>Venue</strong>\r\n\r\n<a href="http://asiacentre.co.th/contact-us/location/" target="_blank">Asia Centre</a>\r\n\r\n<strong>Contact Information</strong>\r\n\r\n<a href="mailto:info@asiacentre.co.th" target="_blank">info@asiacentre.co.th</a>\r\n\r\nTo register please click<a href="https://docs.google.com/forms/d/1_gS4T11n8BGi0ZpDuLF2Wo2K23iFdjEZ9vAbVjS0xlQ/viewform" target="_blank"> here</a>. Payment must be made in full by 20th July in order to confirm your place.\r\n\r\n</div>\r\n<a href="https://www.facebook.com/events/310521779279729/" target="_blank">Facebook Page</a>\r\n\r\n&nbsp;\r\n\r\n</div>\r\n&nbsp;', 'Academic Writing Clinic', '', 'inherit', 'closed', 'closed', '', '2627-autosave-v1', '', '', '2016-07-14 08:00:56', '2016-07-14 08:00:56', '', 2627, 'http://asiacentre.co.th/other/2627-autosave-v1/', 0, 'revision', '', 0),
(2667, 5, '2016-06-28 07:03:00', '2016-06-28 07:03:00', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event <strong>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2670 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />\r\n\r\nThe speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective countries human rights violators went on to occupy positions in different human rights mechanisms which watered the whole idea of holding such violators accountable.\r\n\r\n&nbsp;\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2668" align="alignleft" width="162"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="162" height="222" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank"><img class="wp-image-2635 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center. Asia Centre wishes them success.', 'Impunity waters down accountability in Southeast Asia', '', 'publish', 'closed', 'closed', '', 'impunity-waters-down-accountability-in-southeast-asia', '', '', '2016-06-28 07:26:38', '2016-06-28 07:26:38', '', 0, 'http://asiacentre.co.th/?p=2667', 0, 'post', '', 0),
(2668, 5, '2016-06-28 06:50:08', '2016-06-28 06:50:08', '', 'ENDURING-IMPUNIY', '', 'inherit', 'closed', 'closed', '', 'enduring-impuniy', '', '', '2016-06-28 07:26:38', '2016-06-28 07:26:38', '', 2667, 'http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY.jpg', 1, 'attachment', 'image/jpeg', 0),
(2669, 5, '2016-06-28 06:53:51', '2016-06-28 06:53:51', '', '13497966_1217100084975884_6777376889908211101_o', '', 'inherit', 'closed', 'closed', '', '13497966_1217100084975884_6777376889908211101_o', '', '', '2016-06-28 07:26:38', '2016-06-28 07:26:38', '', 2667, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o.jpg', 2, 'attachment', 'image/jpeg', 0),
(2670, 5, '2016-06-28 06:53:52', '2016-06-28 06:53:52', '', '13522799_1217100138309212_2027423706937307920_o', '', 'inherit', 'closed', 'closed', '', '13522799_1217100138309212_2027423706937307920_o', '', '', '2016-06-28 07:26:38', '2016-06-28 07:26:38', '', 2667, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o.jpg', 3, 'attachment', 'image/jpeg', 0),
(2671, 5, '2016-06-28 06:57:01', '2016-06-28 06:57:01', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event Confronting Elusiveness: Demanding Accountability in Southeast Asia.\r\n<img class="wp-image-2670 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />\r\n\r\n&nbsp;\r\n\r\nThe speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective\r\ncountries human rights violators went on to occupy positions in different human rights mechanism which watered the whole idea of holding such violators accountable.\r\n\r\n&nbsp;\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2668" align="alignleft" width="171"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="171" height="234" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank"><img class="alignright size-medium wp-image-2670" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-1140x855.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="1140" height="855" /></a><a href="http://seajunction.org" target="_blank">SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center. Asia Centre wishes them success.\r\n\r\n<img class="wp-image-2635 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />', 'Impunity waters down accountability in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2667-revision-v1', '', '', '2016-06-28 06:57:01', '2016-06-28 06:57:01', '', 2667, 'http://asiacentre.co.th/other/2667-revision-v1/', 0, 'revision', '', 0),
(2672, 5, '2016-06-28 06:58:34', '2016-06-28 06:58:34', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event <strong>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</strong>\r\n\r\n&nbsp;\r\n<img class="wp-image-2670 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />\r\n\r\n&nbsp;\r\n\r\nThe speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective\r\ncountries human rights violators went on to occupy positions in different human rights mechanism which watered the whole idea of holding such violators accountable.\r\n\r\n&nbsp;\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2668" align="alignleft" width="171"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="171" height="234" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank">SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center.\r\n\r\n<img class="wp-image-2635 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />Asia Centre wishes them success.', 'Impunity waters down accountability in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2667-revision-v1', '', '', '2016-06-28 06:58:34', '2016-06-28 06:58:34', '', 2667, 'http://asiacentre.co.th/other/2667-revision-v1/', 0, 'revision', '', 0),
(2673, 5, '2016-06-28 07:00:49', '2016-06-28 07:00:49', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event <strong>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2670 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />\r\n\r\n&nbsp;\r\n\r\nThe speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective\r\ncountries human rights violators went on to occupy positions in different human rights mechanisms which watered the whole idea of holding such violators accountable.\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n[caption id="attachment_2668" align="alignleft" width="162"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="162" height="222" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank"><img class="wp-image-2635 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center. Asia Centre wishes them success.', 'Impunity waters down accountability in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2667-revision-v1', '', '', '2016-06-28 07:00:49', '2016-06-28 07:00:49', '', 2667, 'http://asiacentre.co.th/other/2667-revision-v1/', 0, 'revision', '', 0),
(2674, 5, '2016-06-28 07:01:19', '2016-06-28 07:01:19', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event <strong>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2670 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective\r\ncountries human rights violators went on to occupy positions in different human rights mechanisms which watered the whole idea of holding such violators accountable.\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n[caption id="attachment_2668" align="alignleft" width="162"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="162" height="222" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank"><img class="wp-image-2635 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center. Asia Centre wishes them success.', 'Impunity waters down accountability in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2667-revision-v1', '', '', '2016-06-28 07:01:19', '2016-06-28 07:01:19', '', 2667, 'http://asiacentre.co.th/other/2667-revision-v1/', 0, 'revision', '', 0),
(2675, 5, '2016-06-28 07:01:53', '2016-06-28 07:01:53', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event <strong>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</strong>\r\n\r\n<img class="wp-image-2670 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />The speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective countries human rights violators went on to occupy positions in different human rights mechanisms which watered the whole idea of holding such violators accountable.\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n[caption id="attachment_2668" align="alignleft" width="162"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="162" height="222" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank"><img class="wp-image-2635 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center. Asia Centre wishes them success.', 'Impunity waters down accountability in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2667-revision-v1', '', '', '2016-06-28 07:01:53', '2016-06-28 07:01:53', '', 2667, 'http://asiacentre.co.th/other/2667-revision-v1/', 0, 'revision', '', 0),
(2676, 5, '2016-06-28 07:02:27', '2016-06-28 07:02:27', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event <strong>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</strong>\r\n\r\n<img class="wp-image-2670 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />The speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective countries human rights violators went on to occupy positions in different human rights mechanisms which watered the whole idea of holding such violators accountable.\r\n\r\n&nbsp;\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n[caption id="attachment_2668" align="alignleft" width="162"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="162" height="222" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank"><img class="wp-image-2635 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center. Asia Centre wishes them success.', 'Impunity waters down accountability in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2667-revision-v1', '', '', '2016-06-28 07:02:27', '2016-06-28 07:02:27', '', 2667, 'http://asiacentre.co.th/other/2667-revision-v1/', 0, 'revision', '', 0),
(2677, 5, '2016-06-28 07:02:48', '2016-06-28 07:02:48', 'The provision of impunity to human rights violators is the biggest challenge for ensuring accountability. This was the general conclusion of the panelists at the event <strong>Confronting Elusiveness: Demanding Accountability in Southeast Asia.</strong>\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2670 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13522799_1217100138309212_2027423706937307920_o-e1467096886922-1140x623.jpg" alt="13522799_1217100138309212_2027423706937307920_o" width="636" height="348" />\r\n\r\nThe speakers from Indonesia, Philippines and Myanmar highlighted how in each of their respective countries human rights violators went on to occupy positions in different human rights mechanisms which watered the whole idea of holding such violators accountable.\r\n\r\n&nbsp;\r\n\r\nSpeakers featured at the event included, Galuh Wandita, Co-founder and Director at Asia Justice and Rights (AJAR), Aung Khaing Min, Advocacy and Research Officer Burma Partnership and Edgardo Legaspi, Executive Director, Southeast Asian Press Alliance.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2669" align="alignright" width="254"]<img class="wp-image-2669" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13497966_1217100084975884_6777376889908211101_o-1140x855.jpg" alt="13497966_1217100084975884_6777376889908211101_o" width="254" height="191" /> SEA Junction Executive Director Rosalia Sciortino[/caption]\r\n\r\nSome 30 people attended the activity which was held as an inaugural panel of SEA Junction hosted by Asia Centre. Its founding executive-director Rosalia Sciortino, moderated the panel discussion.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2668" align="alignleft" width="162"]<img class="wp-image-2668" src="http://asiacentre.co.th/wp-content/uploads/2016/06/ENDURING-IMPUNIY-1140x1562.jpg" alt="ENDURING-IMPUNIY" width="162" height="222" /> Download available <a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/">here</a>[/caption]\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThe event also featured the presentation of the book “<a href="http://asia-ajar.org/2015/11/enduring-impunity-women-surviving-atrocities-in-the-absence-of-justice/" target="_blank">Enduring Impunity</a>” a compilation of stories of women survivors in Indonesia, Timor Leste and Myanmar.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://seajunction.org" target="_blank"><img class="wp-image-2635 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Screen-Shot-2016-06-09-at-4.06.02-PM.png" alt="Screen Shot 2016-06-09 at 4.06.02 PM" width="237" height="124" />SEA Junction</a> was launched later in the day at the Bangkok Art and Cultural Center. Asia Centre wishes them success.', 'Impunity waters down accountability in Southeast Asia', '', 'inherit', 'closed', 'closed', '', '2667-revision-v1', '', '', '2016-06-28 07:02:48', '2016-06-28 07:02:48', '', 2667, 'http://asiacentre.co.th/other/2667-revision-v1/', 0, 'revision', '', 0),
(2678, 5, '2016-05-15 09:51:06', '2016-05-15 09:51:06', 'Entering Femininity: Reporting Rituals and Violations seminar at Asia Centre attempted to open the topic of female genital mutilation (FGM) for a Bangkok audience. Organised by Alexander Demetrianova, an Asia Centre Associate, the seminar discussed FGM as a violation of child’s and women’s rights by international law and health standards.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2679" align="alignleft" width="418"]<img class="wp-image-2679" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13082517_1182274798458413_5088535181471000755_n-2.jpg" alt="13082517_1182274798458413_5088535181471000755_n-2" width="418" height="235" /> Alexander Demetrianova discussing the practice of ''emorata'' by the Maasai.[/caption]\r\n\r\nWorldwide more than 300 million girls and women are “cut” under different interpretations and in different severity. But in most cases, FGM is a very important ritual, ancestral knowledge and practice. It allows girls to gain a status in their community and further enables them to elevate to other positions in life of a woman – to marry and have children. So FGM more than anything else, defines femininity and women.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2681" align="alignright" width="448"]<img class="wp-image-2681" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13123060_1183424575010102_656530940472674724_o-1140x647.jpg" alt="13123060_1183424575010102_656530940472674724_o" width="448" height="254" /> Skype interview with Gabrielle Paluch.[/caption]\r\n\r\nHowever, informed consent is in the absolute majority of cases not given by the very young, often infant, girls to be circumcised. Across Africa, parts of Middle East and even Southeast Asia, even much older women, who had been cut years ago, know only as much as their culture and tradition have taught them about female circumcision. It is an integral part of life, marriage, sexuality and community, but most advocates for female circumcision are not aware of the great health issues and harm it brings to women and girls. The session also featured a live Skype interview with multi-media journalist Gabrielle Paluch who shared her experience researching and reporting on FGM in Southern Thailand.\r\n\r\n&nbsp;\r\n\r\nThe Bangkok audience at the seminar concluded that in order to eradicate the cut and mutilation, communities and cultures need to re-examine and transform the way they understand femininity and role of women. To preserve women’s right to take informed decisions about their own bodies, there is a need to break the taboo and open FGM for further discussion. A critical discussion about this practice is a taboo in most countries where it is prevalent, hence Asia Centre was pleased to host this talk to discuss the topic.', 'Entering Femininity: Reporting Rituals and Violations', '', 'publish', 'closed', 'closed', '', 'entering-femininity-reporting-rituals-and-violations', '', '', '2016-07-26 06:38:24', '2016-07-26 06:38:24', '', 0, 'http://asiacentre.co.th/?p=2678', 0, 'post', '', 0),
(2679, 5, '2016-06-29 09:43:17', '2016-06-29 09:43:17', '', '13082517_1182274798458413_5088535181471000755_n-2', '', 'inherit', 'closed', 'closed', '', '13082517_1182274798458413_5088535181471000755_n-2', '', '', '2016-07-26 06:38:24', '2016-07-26 06:38:24', '', 2678, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13082517_1182274798458413_5088535181471000755_n-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2680, 5, '2016-06-29 09:43:20', '2016-06-29 09:43:20', '', '13087044_1182274555125104_5491962876800857670_o', '', 'inherit', 'closed', 'closed', '', '13087044_1182274555125104_5491962876800857670_o', '', '', '2016-07-26 06:38:24', '2016-07-26 06:38:24', '', 2678, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13087044_1182274555125104_5491962876800857670_o.jpg', 1, 'attachment', 'image/jpeg', 0),
(2681, 5, '2016-06-29 09:43:23', '2016-06-29 09:43:23', '', '13123060_1183424575010102_656530940472674724_o', '', 'inherit', 'closed', 'closed', '', '13123060_1183424575010102_656530940472674724_o', '', '', '2016-07-26 06:38:24', '2016-07-26 06:38:24', '', 2678, 'http://asiacentre.co.th/wp-content/uploads/2016/06/13123060_1183424575010102_656530940472674724_o.jpg', 2, 'attachment', 'image/jpeg', 0),
(2682, 5, '2016-06-29 09:49:12', '2016-06-29 09:49:12', 'Entering Femininity: Reporting Rituals and Violations seminar at Asia Centre attempted to open the topic of female genital mutilation (FGM) for Bangkok audience. Organised by Alexander Demetrianova, an Asia Centre Associate, the seminar discussed FGM as a violation of child’s and women’s rights by international law and health standards.\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2679 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13082517_1182274798458413_5088535181471000755_n-2.jpg" alt="13082517_1182274798458413_5088535181471000755_n-2" width="418" height="235" />Worldwide more than 300 million girls and women are “cut” under different interpretations and in different severity. But in most cases, FGM is a very important ritual, ancestral knowledge and practice. It allows girls to gain a status in their community and further enables them to elevate to other positions in life of a woman – to marry and have children. So FGM more than anything else, defines femininity and women.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2681" align="alignright" width="448"]<img class="wp-image-2681" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13123060_1183424575010102_656530940472674724_o-1140x647.jpg" alt="13123060_1183424575010102_656530940472674724_o" width="448" height="254" /> Skype interview with Gabrielle Paluch.[/caption]\r\n\r\nHowever, informed consent is in absolute majority of cases not given by the very young, often infant, girls to be circumcised. Across Africa, parts of Middle East and even Southeast Asia, even much older women, who had been cut years ago, known only as much as their culture and tradition have taught them about female circumcision. It is an integral part of life, marriage, sexuality and community, but most advocates for female circumcision are not aware of the great health issues and harm it brings to women and girls. The session also featured a live Skype interview with multi-media journalist Gabrielle Paluch who shared her experience researching and reporting on FGM in Southern Thailand.\r\n\r\n&nbsp;\r\n\r\nThe Bangkok audience at the seminar concluded that in order to eradicate the cut and mutilation, communities and cultures need to re-examine and transform the way they understand femininity and role of women. To preserve women’s right to take informed decisions about their own bodies, there is a need to break the taboo and open FGM for further discussion. A critical discussion about this practice is a taboo in most countries, where it is prevalent hence Asia Centre was pleased to host this talk to discuss the topic.', 'Entering Femininity: Reporting Rituals and Violations', '', 'inherit', 'closed', 'closed', '', '2678-revision-v1', '', '', '2016-06-29 09:49:12', '2016-06-29 09:49:12', '', 2678, 'http://asiacentre.co.th/other/2678-revision-v1/', 0, 'revision', '', 0),
(2683, 5, '2016-06-29 09:51:06', '2016-06-29 09:51:06', 'Entering Femininity: Reporting Rituals and Violations seminar at Asia Centre attempted to open the topic of female genital mutilation (FGM) for a Bangkok audience. Organised by Alexander Demetrianova, an Asia Centre Associate, the seminar discussed FGM as a violation of child’s and women’s rights by international law and health standards.\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2679 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13082517_1182274798458413_5088535181471000755_n-2.jpg" alt="13082517_1182274798458413_5088535181471000755_n-2" width="418" height="235" />Worldwide more than 300 million girls and women are “cut” under different interpretations and in different severity. But in most cases, FGM is a very important ritual, ancestral knowledge and practice. It allows girls to gain a status in their community and further enables them to elevate to other positions in life of a woman – to marry and have children. So FGM more than anything else, defines femininity and women.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2681" align="alignright" width="448"]<img class="wp-image-2681" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13123060_1183424575010102_656530940472674724_o-1140x647.jpg" alt="13123060_1183424575010102_656530940472674724_o" width="448" height="254" /> Skype interview with Gabrielle Paluch.[/caption]\r\n\r\nHowever, informed consent is in the absolute majority of cases not given by the very young, often infant, girls to be circumcised. Across Africa, parts of Middle East and even Southeast Asia, even much older women, who had been cut years ago, know only as much as their culture and tradition have taught them about female circumcision. It is an integral part of life, marriage, sexuality and community, but most advocates for female circumcision are not aware of the great health issues and harm it brings to women and girls. The session also featured a live Skype interview with multi-media journalist Gabrielle Paluch who shared her experience researching and reporting on FGM in Southern Thailand.\r\n\r\n&nbsp;\r\n\r\nThe Bangkok audience at the seminar concluded that in order to eradicate the cut and mutilation, communities and cultures need to re-examine and transform the way they understand femininity and role of women. To preserve women’s right to take informed decisions about their own bodies, there is a need to break the taboo and open FGM for further discussion. A critical discussion about this practice is a taboo in most countries where it is prevalent, hence Asia Centre was pleased to host this talk to discuss the topic.', 'Entering Femininity: Reporting Rituals and Violations', '', 'inherit', 'closed', 'closed', '', '2678-revision-v1', '', '', '2016-06-29 09:51:06', '2016-06-29 09:51:06', '', 2678, 'http://asiacentre.co.th/other/2678-revision-v1/', 0, 'revision', '', 0),
(2684, 5, '2016-06-29 09:53:11', '2016-06-29 09:53:11', 'Entering Femininity: Reporting Rituals and Violations seminar at Asia Centre attempted to open the topic of female genital mutilation (FGM) for a Bangkok audience. Organised by Alexander Demetrianova, an Asia Centre Associate, the seminar discussed FGM as a violation of child’s and women’s rights by international law and health standards.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2679" align="alignleft" width="418"]<img class="wp-image-2679" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13082517_1182274798458413_5088535181471000755_n-2.jpg" alt="13082517_1182274798458413_5088535181471000755_n-2" width="418" height="235" /> Alexander Demetrianova discussing the practice of ''emorata'' by the Maasai.[/caption]\r\n\r\nWorldwide more than 300 million girls and women are “cut” under different interpretations and in different severity. But in most cases, FGM is a very important ritual, ancestral knowledge and practice. It allows girls to gain a status in their community and further enables them to elevate to other positions in life of a woman – to marry and have children. So FGM more than anything else, defines femininity and women.\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_2681" align="alignright" width="448"]<img class="wp-image-2681" src="http://asiacentre.co.th/wp-content/uploads/2016/06/13123060_1183424575010102_656530940472674724_o-1140x647.jpg" alt="13123060_1183424575010102_656530940472674724_o" width="448" height="254" /> Skype interview with Gabrielle Paluch.[/caption]\r\n\r\nHowever, informed consent is in the absolute majority of cases not given by the very young, often infant, girls to be circumcised. Across Africa, parts of Middle East and even Southeast Asia, even much older women, who had been cut years ago, know only as much as their culture and tradition have taught them about female circumcision. It is an integral part of life, marriage, sexuality and community, but most advocates for female circumcision are not aware of the great health issues and harm it brings to women and girls. The session also featured a live Skype interview with multi-media journalist Gabrielle Paluch who shared her experience researching and reporting on FGM in Southern Thailand.\r\n\r\n&nbsp;\r\n\r\nThe Bangkok audience at the seminar concluded that in order to eradicate the cut and mutilation, communities and cultures need to re-examine and transform the way they understand femininity and role of women. To preserve women’s right to take informed decisions about their own bodies, there is a need to break the taboo and open FGM for further discussion. A critical discussion about this practice is a taboo in most countries where it is prevalent, hence Asia Centre was pleased to host this talk to discuss the topic.', 'Entering Femininity: Reporting Rituals and Violations', '', 'inherit', 'closed', 'closed', '', '2678-revision-v1', '', '', '2016-06-29 09:53:11', '2016-06-29 09:53:11', '', 2678, 'http://asiacentre.co.th/other/2678-revision-v1/', 0, 'revision', '', 0),
(2685, 5, '2016-06-30 02:59:54', '2016-06-30 02:59:54', 'Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region. It provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="335" height="251" />development, communications and outreach, research and publications, and development and technical assistance.\r\n\r\nAsia Centre connects peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\r\n\r\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in the region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-06-30 02:59:54', '2016-06-30 02:59:54', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2686, 5, '2016-07-04 10:07:59', '2016-07-04 10:07:59', '<strong>Silvia Waldbach</strong>\r\n\r\n<img class=" wp-image-3106 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/silvia1-600x331.jpg" alt="silvia1" width="261" height="144" />Silvia Waldbach is doing a research internship at Asia Centre from September to December 2016. The focus of her research is on national human rights institutions in Southeast Asia and their engagement with the Universal Periodic Review process. She is in the last year of a bachelors degree in International Cultural and Business Studies, with focus on Southeast Asia, at the University of Passau, Germany.\r\n\r\nShe decided to do an internship at Asia Centre because she wants to deepen her knowledge of contemporary Southeast Asian issues and improve her research, writing and organizing skills. She also enjoys working in an international work environment with various kinds of stakeholders from international and local civil society, to academia and the private sector. In her free time, Silvia likes spending time in nature, going to concerts, travelling and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Anna Jeffries</strong>\r\n\r\n<strong><img class="wp-image-3108 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Anna-600x339.jpg" alt="anna" width="265" height="150" /></strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2016 for a research internship\r\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Interns', '', 'publish', 'closed', 'closed', '', 'interns', '', '', '2016-11-29 04:01:27', '2016-11-29 04:01:27', '', 18, 'http://asiacentre.co.th/?page_id=2686', 0, 'page', '', 0),
(2687, 5, '2016-07-04 10:07:59', '2016-07-04 10:07:59', '', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-07-04 10:07:59', '2016-07-04 10:07:59', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2692, 5, '2016-07-04 10:13:49', '2016-07-04 10:13:49', ' ', '', '', 'publish', 'closed', 'closed', '', '2692', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 18, 'http://asiacentre.co.th/other/2692/', 8, 'nav_menu_item', '', 0),
(2700, 5, '2016-07-04 10:22:58', '2016-07-04 10:22:58', 'Anna Jeffries is here at Asia Centre from July through September 2016 for a research internship on human rights.  Her focus in on the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee.  She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-07-04 10:22:58', '2016-07-04 10:22:58', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2701, 5, '2016-07-04 10:23:59', '2016-07-04 10:23:59', '', 'Bio Picture', '', 'inherit', 'closed', 'closed', '', 'bio-picture-2', '', '', '2016-11-29 04:01:27', '2016-11-29 04:01:27', '', 2686, 'http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1.jpg', 1, 'attachment', 'image/jpeg', 0),
(2702, 5, '2016-07-04 10:26:24', '2016-07-04 10:26:24', '<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright  wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus in on the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-07-04 10:26:24', '2016-07-04 10:26:24', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2703, 5, '2016-07-04 11:34:35', '2016-07-04 11:34:35', '<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus in on the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, AIPGlobal.\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-07-04 11:34:35', '2016-07-04 11:34:35', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2704, 5, '2016-07-04 11:37:28', '2016-07-04 11:37:28', '<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus in on the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-07-04 11:37:28', '2016-07-04 11:37:28', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2705, 5, '2016-07-05 05:31:03', '2016-07-05 05:31:03', '<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-07-05 05:31:03', '2016-07-05 05:31:03', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2707, 5, '2016-07-12 06:11:26', '2016-07-12 06:11:26', '', 'UPR in Southeast Asia- Conference Call - Final Deadline', '', 'inherit', 'closed', 'closed', '', 'upr-in-southeast-asia-conference-call-final-deadline', '', '', '2017-01-20 17:01:48', '2017-01-20 10:01:48', '', 3473, 'http://asiacentre.co.th/wp-content/uploads/2016/07/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline.jpg', 0, 'attachment', 'image/jpeg', 0),
(2708, 5, '2016-07-14 09:07:07', '2016-07-14 09:07:07', '', 'Screen Shot 2016-07-14 at 4.06.21 PM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-07-14-at-4-06-21-pm', '', '', '2016-07-14 09:07:07', '2016-07-14 09:07:07', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-07-14-at-4.06.21-PM.png', 0, 'attachment', 'image/png', 0),
(2709, 5, '2016-07-18 09:55:29', '2016-07-18 09:55:29', '<span style="font-weight: 400;"><img class="alignright wp-image-2712" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13659163_1230554846963741_5829662882208383_n.jpg" alt="13659163_1230554846963741_5829662882208383_n" width="233" height="311" />Having established a presence and network in Bangkok in its first year, in its second year Asia Centre turns to its programmatic focus. This will centre on human rights policy analysis covering key regional and international institutions. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">These are  the national human rights institutions, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the Universal Periodic Review (UPR) of the United Nations Human Rights Council. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Asia Centre’s focus on human rights policy was highlighted during its one year anniversary\r\ncommemorations with Bangkok based academics and civil society representatives. This provided an opportunity to catch up and thank all those associated with the Centre in the last one year.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Established in July 2015, Asia Centre spent July 2015 - Dec 2015 setting up its office at Phayathai Plaza. During that period, the Centre focused on its legal and financial registration in Thailand as well as the renovation and setting up of its physical premises. Various individuals were also identified to serve on the Advisory Board, as Centre Associates and to make up the Management Team. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In the next phase - January to June 2016 - the Centre promoted its presence in Bangkok through the Asia Centre Seminars that generated interest among academia, NGOs and students. During this period, the Centre also set up meetings and explored opportunities for collaboration with numerous NGOs, social enterprises, businesses as well as  university departments and faculties. These partnerships are currently helping to promote Asia Centre beyond its Bangkok base.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">As the candle was blown out marking Asia Centre’s first year in operation, the Centre is grateful for the support received thus far. It has been a strong start. We look forward with confidence to our second year. </span>\r\n\r\n&nbsp;', 'Asia Centre to Focus on Human Rights Policy Analysis', '', 'publish', 'closed', 'closed', '', 'asia-centre-to-focus-on-human-rights-policy-analysis', '', '', '2016-07-18 09:56:03', '2016-07-18 09:56:03', '', 0, 'http://asiacentre.co.th/?p=2709', 0, 'post', '', 0),
(2710, 5, '2016-07-18 09:51:58', '2016-07-18 09:51:58', '', '13707687_10154339567788832_2587654188097978361_n', '', 'inherit', 'closed', 'closed', '', '13707687_10154339567788832_2587654188097978361_n', '', '', '2016-07-18 09:56:03', '2016-07-18 09:56:03', '', 2709, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13707687_10154339567788832_2587654188097978361_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2711, 5, '2016-07-18 09:52:37', '2016-07-18 09:52:37', '<span style="font-weight: 400;">Having established a presence and network in Bangkok in its first year, in its second year Asia Centre turns to its programmatic focus. This will centre on human rights policy analysis covering key regional and international institutions. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">These are  the national human rights institutions, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the Universal Periodic Review (UPR) of the United Nations Human Rights Council. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Asia Centre’s focus on human rights policy was highlighted during its one year anniversary <img class="alignright  wp-image-2710" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13707687_10154339567788832_2587654188097978361_n.jpg" alt="13707687_10154339567788832_2587654188097978361_n" width="418" height="313" />commemorations with Bangkok based academics and civil society representatives. This provided an opportunity to catch up and thank all those associated with the Centre in the last one year.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Established in July 2015, Asia Centre spent July 2015 - Dec 2015 setting up its office at Phayathai Plaza. During that period, the Centre focused on its legal and financial registration in Thailand as well as the renovation and setting up of its physical premises. Various individuals were also identified to serve on the Advisory Board, as Centre Associates and to make up the Management Team. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In the next phase - January to June 2016 - the Centre promoted its presence in Bangkok through the Asia Centre Seminars that generated interest among academia, NGOs and students. During this period, the Centre also set up meetings and explored opportunities for collaboration with numerous NGOs, social enterprises, businesses as well as  university departments and faculties. These partnerships are currently helping to promote Asia Centre beyond its Bangkok base.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">As the candle was blown out marking Asia Centre’s first year in operation, the Centre is grateful for the support received thus far. It has been a strong start. We look forward with confidence to our second year. </span>\r\n\r\n&nbsp;', 'Asia Centre to Focus on Human Rights Policy Analysis', '', 'inherit', 'closed', 'closed', '', '2709-revision-v1', '', '', '2016-07-18 09:52:37', '2016-07-18 09:52:37', '', 2709, 'http://asiacentre.co.th/other/2709-revision-v1/', 0, 'revision', '', 0),
(2712, 5, '2016-07-18 09:53:55', '2016-07-18 09:53:55', '', '13659163_1230554846963741_5829662882208383_n', '', 'inherit', 'closed', 'closed', '', '13659163_1230554846963741_5829662882208383_n', '', '', '2016-07-18 09:56:03', '2016-07-18 09:56:03', '', 2709, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13659163_1230554846963741_5829662882208383_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(2713, 5, '2016-07-18 09:54:23', '2016-07-18 09:54:23', '<span style="font-weight: 400;"><img class="alignright  wp-image-2712" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13659163_1230554846963741_5829662882208383_n.jpg" alt="13659163_1230554846963741_5829662882208383_n" width="259" height="346" />Having established a presence and network in Bangkok in its first year, in its second year Asia Centre turns to its programmatic focus. This will centre on human rights policy analysis covering key regional and international institutions. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">These are  the national human rights institutions, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the Universal Periodic Review (UPR) of the United Nations Human Rights Council. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Asia Centre’s focus on human rights policy was highlighted during its one year anniversary\r\ncommemorations with Bangkok based academics and civil society representatives. This provided an opportunity to catch up and thank all those associated with the Centre in the last one year.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Established in July 2015, Asia Centre spent July 2015 - Dec 2015 setting up its office at Phayathai Plaza. During that period, the Centre focused on its legal and financial registration in Thailand as well as the renovation and setting up of its physical premises. Various individuals were also identified to serve on the Advisory Board, as Centre Associates and to make up the Management Team. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In the next phase - January to June 2016 - the Centre promoted its presence in Bangkok through the Asia Centre Seminars that generated interest among academia, NGOs and students. During this period, the Centre also set up meetings and explored opportunities for collaboration with numerous NGOs, social enterprises, businesses as well as  university departments and faculties. These partnerships are currently helping to promote Asia Centre beyond its Bangkok base.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">As the candle was blown out marking Asia Centre’s first year in operation, the Centre is grateful for the support received thus far. It has been a strong start. We look forward with confidence to our second year. </span>\r\n\r\n&nbsp;', 'Asia Centre to Focus on Human Rights Policy Analysis', '', 'inherit', 'closed', 'closed', '', '2709-revision-v1', '', '', '2016-07-18 09:54:23', '2016-07-18 09:54:23', '', 2709, 'http://asiacentre.co.th/other/2709-revision-v1/', 0, 'revision', '', 0),
(2714, 5, '2016-07-18 09:55:29', '2016-07-18 09:55:29', '<span style="font-weight: 400;"><img class="alignright  wp-image-2712" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13659163_1230554846963741_5829662882208383_n.jpg" alt="13659163_1230554846963741_5829662882208383_n" width="248" height="330" />Having established a presence and network in Bangkok in its first year, in its second year Asia Centre turns to its programmatic focus. This will centre on human rights policy analysis covering key regional and international institutions. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">These are  the national human rights institutions, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the Universal Periodic Review (UPR) of the United Nations Human Rights Council. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Asia Centre’s focus on human rights policy was highlighted during its one year anniversary\r\ncommemorations with Bangkok based academics and civil society representatives. This provided an opportunity to catch up and thank all those associated with the Centre in the last one year.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Established in July 2015, Asia Centre spent July 2015 - Dec 2015 setting up its office at Phayathai Plaza. During that period, the Centre focused on its legal and financial registration in Thailand as well as the renovation and setting up of its physical premises. Various individuals were also identified to serve on the Advisory Board, as Centre Associates and to make up the Management Team. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In the next phase - January to June 2016 - the Centre promoted its presence in Bangkok through the Asia Centre Seminars that generated interest among academia, NGOs and students. During this period, the Centre also set up meetings and explored opportunities for collaboration with numerous NGOs, social enterprises, businesses as well as  university departments and faculties. These partnerships are currently helping to promote Asia Centre beyond its Bangkok base.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">As the candle was blown out marking Asia Centre’s first year in operation, the Centre is grateful for the support received thus far. It has been a strong start. We look forward with confidence to our second year. </span>\r\n\r\n&nbsp;', 'Asia Centre to Focus on Human Rights Policy Analysis', '', 'inherit', 'closed', 'closed', '', '2709-revision-v1', '', '', '2016-07-18 09:55:29', '2016-07-18 09:55:29', '', 2709, 'http://asiacentre.co.th/other/2709-revision-v1/', 0, 'revision', '', 0),
(2715, 5, '2016-07-18 09:56:03', '2016-07-18 09:56:03', '<span style="font-weight: 400;"><img class="alignright wp-image-2712" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13659163_1230554846963741_5829662882208383_n.jpg" alt="13659163_1230554846963741_5829662882208383_n" width="233" height="311" />Having established a presence and network in Bangkok in its first year, in its second year Asia Centre turns to its programmatic focus. This will centre on human rights policy analysis covering key regional and international institutions. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">These are  the national human rights institutions, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the Universal Periodic Review (UPR) of the United Nations Human Rights Council. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Asia Centre’s focus on human rights policy was highlighted during its one year anniversary\r\ncommemorations with Bangkok based academics and civil society representatives. This provided an opportunity to catch up and thank all those associated with the Centre in the last one year.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Established in July 2015, Asia Centre spent July 2015 - Dec 2015 setting up its office at Phayathai Plaza. During that period, the Centre focused on its legal and financial registration in Thailand as well as the renovation and setting up of its physical premises. Various individuals were also identified to serve on the Advisory Board, as Centre Associates and to make up the Management Team. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In the next phase - January to June 2016 - the Centre promoted its presence in Bangkok through the Asia Centre Seminars that generated interest among academia, NGOs and students. During this period, the Centre also set up meetings and explored opportunities for collaboration with numerous NGOs, social enterprises, businesses as well as  university departments and faculties. These partnerships are currently helping to promote Asia Centre beyond its Bangkok base.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">As the candle was blown out marking Asia Centre’s first year in operation, the Centre is grateful for the support received thus far. It has been a strong start. We look forward with confidence to our second year. </span>\r\n\r\n&nbsp;', 'Asia Centre to Focus on Human Rights Policy Analysis', '', 'inherit', 'closed', 'closed', '', '2709-revision-v1', '', '', '2016-07-18 09:56:03', '2016-07-18 09:56:03', '', 2709, 'http://asiacentre.co.th/other/2709-revision-v1/', 0, 'revision', '', 0),
(2716, 5, '2016-05-15 09:38:26', '2016-05-15 09:38:26', '<span style="font-weight: 400;">Malaysian Prime Minister Najib has survived the fallout <img class="wp-image-2717 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg" alt="13174221_1190404337645459_3710002666741059499_n-3" width="384" height="216" />from the 1MDB scandal and is likely to\r\ncontinue in power despite the widespread feeling that it would lead to his ouster. This was Professor William Case assessment of the financial scandal that has dominated Malaysian politics since mid 2015.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">\r\nThe Asia Centre roundtable on 10th May 2016, entitled Stress Testing Single-Party Dominance in Malaysia, saw over a dozen people gather after lunch to discuss the changes precipitated by the 1MDB scandal and how Nabjib\r\nhas managed to weather the storm. Professor Case,a well-known Malaysian studies scholar, provided the latest updates on the situation and shared his analysis. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2718 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg" alt="13226717_1190404417645451_7033552345152260822_n-2" width="428" height="241" /></span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">At the center of the scandal is </span><span style="font-weight: 400;">missing funds that were traced directly into Najib’s personal accounts. The reports led to mass protests, demands for Najibs resignation and the formation of new coalitions against Najib. Chief among the anti-Najib camp, is former Prime Minister Mahathir Mohamad mobilizing a ‘Save Malaysia Movement’ for a political challenge. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In spite of the momentum against Najib, the observations at the roundtable was that the dominance of UMNO as a patronage machine prevails in ensuring Najib’s survival and continued dominance. </span><span style="font-weight: 400;">According to Prof. Case, the stable authoritarianism practised by the state and the resilience of institutions like UMNO have effectively countered the destabilising pressures created by the scandal.</span>', 'Authoritarian Instituitions Help Najib Weather 1MDB Storm', '', 'publish', 'closed', 'closed', '', 'authoritarian-instituitions-help-najib-weather-1mdb-storm', '', '', '2016-07-26 06:44:43', '2016-07-26 06:44:43', '', 0, 'http://asiacentre.co.th/?p=2716', 0, 'post', '', 0),
(2717, 5, '2016-07-22 09:40:45', '2016-07-22 09:40:45', '', '13174221_1190404337645459_3710002666741059499_n-3', '', 'inherit', 'closed', 'closed', '', '13174221_1190404337645459_3710002666741059499_n-3', '', '', '2016-07-26 06:44:43', '2016-07-26 06:44:43', '', 2716, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(2718, 5, '2016-07-22 09:41:31', '2016-07-22 09:41:31', '', '13226717_1190404417645451_7033552345152260822_n-2', '', 'inherit', 'closed', 'closed', '', '13226717_1190404417645451_7033552345152260822_n-2', '', '', '2016-07-26 06:44:43', '2016-07-26 06:44:43', '', 2716, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg', 1, 'attachment', 'image/jpeg', 0),
(2719, 5, '2016-07-22 09:41:54', '2016-07-22 09:41:54', '<span style="font-weight: 400;">Malaysian Prime Minister Najib has survived the fallout from the 1MDB scandal and is likely to continue in power despite the widespread feeling that it would lead to his ouster. This was Professor William Case assessment of the financial scandal that has dominated Malaysian politics since mid 2015.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class="alignright  wp-image-2717" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg" alt="13174221_1190404337645459_3710002666741059499_n-3" width="384" height="216" />The Asia Centre roundtable on 10th May 2016, entitled Stress Testing Single-Party Dominance  in Malaysia, saw over a dozen people gather after lunch to discuss the changes precipitated by the 1MDB scandal and how Nabjib\r\nhas managed to weather the storm. Professor Case,a well-known Malaysian studies scholar, provided the latest updates on the situation and shared his analysis. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2718 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg" alt="13226717_1190404417645451_7033552345152260822_n-2" width="428" height="241" /></span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">At the center of the scandal is </span><span style="font-weight: 400;">missing funds that were traced directly into Najib’s personal accounts. The reports led to mass protests, demands for Najibs resignation and the formation of new coalitions against Najib. Chief among the anti-Najib camp, is former Prime Minister Mahathir Mohamad mobilizing a ‘Save Malaysia Movement’ for a political challenge. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In spite of the momentum against Najib, the observations at the roundtable was that the dominance of UMNO as a patronage machine prevails in ensuring Najib’s survival and continued dominance. </span><span style="font-weight: 400;">According to Prof. Case, the stable authoritarianism practised by the state and the resilience of institutions like UMNO have effectively countered the destabilising pressures created by the scandal.</span>', 'Authoritarian Instituitions Help Najib Weather 1MDB Storm', '', 'inherit', 'closed', 'closed', '', '2716-revision-v1', '', '', '2016-07-22 09:41:54', '2016-07-22 09:41:54', '', 2716, 'http://asiacentre.co.th/other/2716-revision-v1/', 0, 'revision', '', 0),
(2720, 5, '2016-07-22 09:45:49', '2016-07-22 09:45:49', '<span style="font-weight: 400;">Malaysian Prime Minister Najib has survived the fallout <img class="wp-image-2717 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg" alt="13174221_1190404337645459_3710002666741059499_n-3" width="384" height="216" />from the 1MDB scandal and is likely to\ncontinue in power despite the widespread feeling that it would lead to his ouster. This was Professor William Case assessment of the financial scandal that has dominated Malaysian politics since mid 2015.</span>\n\n&nbsp;\n\n<span style="font-weight: 400;">\nThe Asia Centre roundtable on 10th May 2016, entitled Stress Testing Single-Party Dominance in Malaysia, saw over a dozen people gather after lunch to discuss the changes precipitated by the 1MDB scandal and how Nabjib\nhas managed to weather the storm. Professor Case,a well-known Malaysian studies scholar, provided the latest updates on the situation and shared his analysis. </span>\n\n&nbsp;\n\n<span style="font-weight: 400;"><img class=" wp-image-2718 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg" alt="13226717_1190404417645451_7033552345152260822_n-2" width="428" height="241" /></span>\n\n&nbsp;\n\n<span style="font-weight: 400;">At the center of the scandal is </span><span style="font-weight: 400;">missing funds that were traced directly into Najib’s personal accounts. The reports led to mass protests, demands for Najibs resignation and the formation of new coalitions against Najib. Chief among the anti-Najib camp, is former Prime Minister Mahathir Mohamad mobilizing a ‘Save Malaysia Movement’ for a political challenge. </span>\n\n&nbsp;\n\n<span style="font-weight: 400;">In spite of the momentum against Najib, the observations at the roundtable was that the dominance of UMNO as a patronage machine prevails in ensuring Najib’s survival and continued dominance. </span><span style="font-weight: 400;">According to Prof. Case, the stable authoritarianism practised by the state and the resilience of institutions like UMNO have effectively countered the destabilising pressures created by the scandal.</span>', 'Authoritarian Instituitions Help Najib Weather 1MDB Storm', '', 'inherit', 'closed', 'closed', '', '2716-autosave-v1', '', '', '2016-07-22 09:45:49', '2016-07-22 09:45:49', '', 2716, 'http://asiacentre.co.th/other/2716-autosave-v1/', 0, 'revision', '', 0),
(2721, 5, '2016-07-22 09:44:46', '2016-07-22 09:44:46', '<span style="font-weight: 400;">Malaysian Prime Minister Najib has survived the fallout from the 1MDB scandal and is likely to continue in power despite the widespread feeling that it would lead to his ouster. This was Professor William Case assessment of the financial scandal that has dominated Malaysian politics since mid 2015.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class="alignright wp-image-2717" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg" alt="13174221_1190404337645459_3710002666741059499_n-3" width="384" height="216" />The Asia Centre roundtable on 10th May 2016, entitled Stress Testing Single-Party Dominance in Malaysia, saw over a dozen people gather after lunch to discuss the changes precipitated by the 1MDB scandal and how Nabjib\r\nhas managed to weather the storm. Professor Case,a well-known Malaysian studies scholar, provided the latest updates on the situation and shared his analysis. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2718 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg" alt="13226717_1190404417645451_7033552345152260822_n-2" width="428" height="241" /></span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">At the center of the scandal is </span><span style="font-weight: 400;">missing funds that were traced directly into Najib’s personal accounts. The reports led to mass protests, demands for Najibs resignation and the formation of new coalitions against Najib. Chief among the anti-Najib camp, is former Prime Minister Mahathir Mohamad mobilizing a ‘Save Malaysia Movement’ for a political challenge. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In spite of the momentum against Najib, the observations at the roundtable was that the dominance of UMNO as a patronage machine prevails in ensuring Najib’s survival and continued dominance. </span><span style="font-weight: 400;">According to Prof. Case, the stable authoritarianism practised by the state and the resilience of institutions like UMNO have effectively countered the destabilising pressures created by the scandal.</span>', 'Authoritarian Instituitions Help Najib Weather 1MDB Storm', '', 'inherit', 'closed', 'closed', '', '2716-revision-v1', '', '', '2016-07-22 09:44:46', '2016-07-22 09:44:46', '', 2716, 'http://asiacentre.co.th/other/2716-revision-v1/', 0, 'revision', '', 0),
(2722, 5, '2016-07-22 09:45:57', '2016-07-22 09:45:57', '<span style="font-weight: 400;">Malaysian Prime Minister Najib has survived the fallout <img class="wp-image-2717 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13174221_1190404337645459_3710002666741059499_n-3.jpg" alt="13174221_1190404337645459_3710002666741059499_n-3" width="384" height="216" />from the 1MDB scandal and is likely to\r\ncontinue in power despite the widespread feeling that it would lead to his ouster. This was Professor William Case assessment of the financial scandal that has dominated Malaysian politics since mid 2015.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">\r\nThe Asia Centre roundtable on 10th May 2016, entitled Stress Testing Single-Party Dominance in Malaysia, saw over a dozen people gather after lunch to discuss the changes precipitated by the 1MDB scandal and how Nabjib\r\nhas managed to weather the storm. Professor Case,a well-known Malaysian studies scholar, provided the latest updates on the situation and shared his analysis. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2718 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13226717_1190404417645451_7033552345152260822_n-2.jpg" alt="13226717_1190404417645451_7033552345152260822_n-2" width="428" height="241" /></span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">At the center of the scandal is </span><span style="font-weight: 400;">missing funds that were traced directly into Najib’s personal accounts. The reports led to mass protests, demands for Najibs resignation and the formation of new coalitions against Najib. Chief among the anti-Najib camp, is former Prime Minister Mahathir Mohamad mobilizing a ‘Save Malaysia Movement’ for a political challenge. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">In spite of the momentum against Najib, the observations at the roundtable was that the dominance of UMNO as a patronage machine prevails in ensuring Najib’s survival and continued dominance. </span><span style="font-weight: 400;">According to Prof. Case, the stable authoritarianism practised by the state and the resilience of institutions like UMNO have effectively countered the destabilising pressures created by the scandal.</span>', 'Authoritarian Instituitions Help Najib Weather 1MDB Storm', '', 'inherit', 'closed', 'closed', '', '2716-revision-v1', '', '', '2016-07-22 09:45:57', '2016-07-22 09:45:57', '', 2716, 'http://asiacentre.co.th/other/2716-revision-v1/', 0, 'revision', '', 0),
(2723, 5, '2016-05-17 09:58:34', '2016-05-17 09:58:34', '<span style="font-weight: 400;">Cause lawyers set themselves apart in their profession by using the law as tool for social justice.\r\nThey protect the rights of marginalised communities and bridge the gap between law as it is written in the books and the law as it is lived and experienced. </span>\r\n\r\n<img class=" wp-image-2724 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13244637_1192143484138211_8491340487285207073_n-2.jpg" alt="13244637_1192143484138211_8491340487285207073_n-2" width="439" height="247" />\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">This was how our panelists described the linchpin role that cause lawyers play in advocating for justice. </span><i><span style="font-weight: 400;">Cause Lawyering: In Conversation With Regional Advocates </span></i><span style="font-weight: 400;">was held on 14 May 2016 and attracted about 20 participants. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Mr. Henning Glaser, Director of the  German-Southeast Asia Centre of Excellence for Public Policy and Good Governance at Thammasat University provided an overview of how lawyers work to achieve justice for marginalised communities. </span><span style="font-weight: 400;"> </span><span style="font-weight: 400;">The panel also explored on the role that lawyers and advocates play on the issue of the death penalty, with </span><span style="font-weight: 400;">human rights lawyer and anti-death penalty advocate M.Ravi sharing his personal experiences fighting against Singapore’s draconian death penalty laws. Akanit Horatanakun from Amnesty International Thailand providing an update on the use of the death penalty in Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2725 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13237877_1192143364138223_8699701757944548731_n-2.jpg" alt="13237877_1192143364138223_8699701757944548731_n-2" width="414" height="233" />\r\n\r\n<span style="font-weight: 400;">The event </span><span style="font-weight: 400;">also saw the Bangkok </span><span style="font-weight: 400;">launch of </span><span style="font-weight: 400;">M Ravi’s critically acclaimed autobiography </span><i><span style="font-weight: 400;">Kampong Boy.</span></i><span style="font-weight: 400;"> His book, Kampong Boy,was shortlisted for the 2014 Singapore Literature Prize. It is on sale at Asia Centre.</span>\r\n\r\n&nbsp;', 'Cause Lawyering: Advocating For Justice', '', 'publish', 'closed', 'closed', '', 'cause-lawyering-advocating-for-justice', '', '', '2016-07-26 06:45:08', '2016-07-26 06:45:08', '', 0, 'http://asiacentre.co.th/?p=2723', 0, 'post', '', 0),
(2724, 5, '2016-07-22 09:56:40', '2016-07-22 09:56:40', '', '13244637_1192143484138211_8491340487285207073_n-2', '', 'inherit', 'closed', 'closed', '', '13244637_1192143484138211_8491340487285207073_n-2', '', '', '2016-07-26 06:45:08', '2016-07-26 06:45:08', '', 2723, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13244637_1192143484138211_8491340487285207073_n-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2725, 5, '2016-07-22 09:57:37', '2016-07-22 09:57:37', '', '13237877_1192143364138223_8699701757944548731_n-2', '', 'inherit', 'closed', 'closed', '', '13237877_1192143364138223_8699701757944548731_n-2', '', '', '2016-07-26 06:45:08', '2016-07-26 06:45:08', '', 2723, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13237877_1192143364138223_8699701757944548731_n-2.jpg', 1, 'attachment', 'image/jpeg', 0),
(2726, 5, '2016-07-22 09:58:01', '2016-07-22 09:58:01', '<span style="font-weight: 400;">Cause lawyers set themselves apart in their profession by using the law as tool for social justice.\r\nThey protect the rights of marginalised communities and bridge the gap between law as it is written in the books and the law as it is lived and experienced. </span>\r\n\r\n<img class=" wp-image-2724 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13244637_1192143484138211_8491340487285207073_n-2.jpg" alt="13244637_1192143484138211_8491340487285207073_n-2" width="439" height="247" />\r\n\r\n<span style="font-weight: 400;">This was how our panelists described the linchpin role that cause lawyers play in advocating for justice. </span><i><span style="font-weight: 400;">Cause Lawyering: In Conversation With Regional Advocates </span></i><span style="font-weight: 400;">was held on 14 May 2016 and attracted about 20 participants. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Mr. Henning Glaser, Director of the  German-Southeast Asia Centre of Excellence for Public Policy and Good Governance at Thammasat University provided an overview of how lawyers work to achieve justice for marginalised communities. </span><span style="font-weight: 400;"> </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The panel also explored on the role that lawyers and advocates play on the issue of the death penalty, with </span><span style="font-weight: 400;">human rights lawyer and anti-death penalty advocate M.Ravi sharing his personal experiences fighting against Singapore’s draconian death penalty laws. Akanit Horatanakun from Amnesty International Thailand providing an update on the use of the death penalty in Thailand.</span>\r\n\r\n<img class=" wp-image-2725 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13237877_1192143364138223_8699701757944548731_n-2.jpg" alt="13237877_1192143364138223_8699701757944548731_n-2" width="414" height="233" />\r\n\r\n<span style="font-weight: 400;">The event </span><span style="font-weight: 400;">also saw the Bangkok </span><span style="font-weight: 400;">launch of </span><span style="font-weight: 400;">M Ravi’s critically acclaimed autobiography </span><i><span style="font-weight: 400;">Kampong Boy.</span></i><span style="font-weight: 400;"> His book, Kampong Boy,was shortlisted for the 2014 Singapore Literature Prize. It is on sale at Asia Centre.</span>\r\n\r\n&nbsp;', 'Cause Lawyering: Advocating For Justice', '', 'inherit', 'closed', 'closed', '', '2723-revision-v1', '', '', '2016-07-22 09:58:01', '2016-07-22 09:58:01', '', 2723, 'http://asiacentre.co.th/other/2723-revision-v1/', 0, 'revision', '', 0),
(2727, 5, '2016-07-22 09:58:34', '2016-07-22 09:58:34', '<span style="font-weight: 400;">Cause lawyers set themselves apart in their profession by using the law as tool for social justice.\r\nThey protect the rights of marginalised communities and bridge the gap between law as it is written in the books and the law as it is lived and experienced. </span>\r\n\r\n<img class=" wp-image-2724 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13244637_1192143484138211_8491340487285207073_n-2.jpg" alt="13244637_1192143484138211_8491340487285207073_n-2" width="439" height="247" />\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">This was how our panelists described the linchpin role that cause lawyers play in advocating for justice. </span><i><span style="font-weight: 400;">Cause Lawyering: In Conversation With Regional Advocates </span></i><span style="font-weight: 400;">was held on 14 May 2016 and attracted about 20 participants. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Mr. Henning Glaser, Director of the  German-Southeast Asia Centre of Excellence for Public Policy and Good Governance at Thammasat University provided an overview of how lawyers work to achieve justice for marginalised communities. </span><span style="font-weight: 400;"> </span><span style="font-weight: 400;">The panel also explored on the role that lawyers and advocates play on the issue of the death penalty, with </span><span style="font-weight: 400;">human rights lawyer and anti-death penalty advocate M.Ravi sharing his personal experiences fighting against Singapore’s draconian death penalty laws. Akanit Horatanakun from Amnesty International Thailand providing an update on the use of the death penalty in Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2725 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13237877_1192143364138223_8699701757944548731_n-2.jpg" alt="13237877_1192143364138223_8699701757944548731_n-2" width="414" height="233" />\r\n\r\n<span style="font-weight: 400;">The event </span><span style="font-weight: 400;">also saw the Bangkok </span><span style="font-weight: 400;">launch of </span><span style="font-weight: 400;">M Ravi’s critically acclaimed autobiography </span><i><span style="font-weight: 400;">Kampong Boy.</span></i><span style="font-weight: 400;"> His book, Kampong Boy,was shortlisted for the 2014 Singapore Literature Prize. It is on sale at Asia Centre.</span>\r\n\r\n&nbsp;', 'Cause Lawyering: Advocating For Justice', '', 'inherit', 'closed', 'closed', '', '2723-revision-v1', '', '', '2016-07-22 09:58:34', '2016-07-22 09:58:34', '', 2723, 'http://asiacentre.co.th/other/2723-revision-v1/', 0, 'revision', '', 0),
(2728, 5, '2016-02-20 08:14:35', '2016-02-20 08:14:35', '<span style="font-weight: 400;">On 17 Feb 2016, the Asia Centre team sat down with Marianne Dutkiewicz, an </span><span style="font-weight: 400;">Asia Pacific Leadership Program Fellow with the</span><span style="font-weight: 400;"> the East-West Center in Hawaii, for a peek into the future.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Marianne shared with us a planning tool <img class="alignright wp-image-2730" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg" alt="12742839_1131304393555454_4755732837999469162_n" width="324" height="243" />developed by the East- West Center to help individuals and organisations think strategically about their futures. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The management team along with Centre Associate Dr. Jay Koh mapped out how different variables could impact Asia Centre’s growth and development over the course of 3 to 5 years. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2731 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg" alt="12745406_1131304506888776_7488563555071341490_n" width="309" height="232" />The Futures Planning Workshop was an excellent way for the team to better understand and evaluate the concept behind the Centre, its mixed financing model and trajectory for its development. </span>\r\n\r\nMarianne facilitated the discussion into the best and worst case scenarios for Asia Centre. We each shared our goals for the Centre as well as the obstacles that we might face along the way.\r\n\r\n&nbsp;\r\n\r\nDiscussions centred on the sustainability of the Asia Centre idea and one thing that we settled on, was that because Asia Centre owns the space, we have the capacity to innovate and use the space as a resource. This cements the Centre’s independence, survivability and gives us a strong foundation from which we can develop.', 'Futures Planning: Charting Asia Centre’s Course', '', 'publish', 'closed', 'closed', '', 'futures-planning-charting-asia-centres-course', '', '', '2016-07-26 09:52:01', '2016-07-26 09:52:01', '', 0, 'http://asiacentre.co.th/?p=2728', 0, 'post', '', 0),
(2729, 5, '2016-07-26 08:18:07', '2016-07-26 08:18:07', '', '12705587_1131304350222125_1313265168233955617_n', '', 'inherit', 'closed', 'closed', '', '12705587_1131304350222125_1313265168233955617_n', '', '', '2016-07-26 09:52:01', '2016-07-26 09:52:01', '', 2728, 'http://asiacentre.co.th/wp-content/uploads/2016/07/12705587_1131304350222125_1313265168233955617_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2730, 5, '2016-07-26 08:18:10', '2016-07-26 08:18:10', '', '12742839_1131304393555454_4755732837999469162_n', '', 'inherit', 'closed', 'closed', '', '12742839_1131304393555454_4755732837999469162_n', '', '', '2016-07-26 09:52:02', '2016-07-26 09:52:02', '', 2728, 'http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(2731, 5, '2016-07-26 08:18:13', '2016-07-26 08:18:13', '', '12745406_1131304506888776_7488563555071341490_n', '', 'inherit', 'closed', 'closed', '', '12745406_1131304506888776_7488563555071341490_n', '', '', '2016-07-26 09:52:02', '2016-07-26 09:52:02', '', 2728, 'http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(2732, 5, '2016-07-26 08:19:33', '2016-07-26 08:19:33', '<span style="font-weight: 400;">On 17 Feb 2016, the Asia Centre team sat down with Marianne Dutkiewicz, an </span><span style="font-weight: 400;">Asia Pacific Leadership Program Fellow with the</span><span style="font-weight: 400;"> the East-West Center in Hawaii, for a peek into the future.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Marianne shared with us a planning tool <img class="alignright  wp-image-2730" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg" alt="12742839_1131304393555454_4755732837999469162_n" width="326" height="245" />developed by the East- West Center to help individuals and organisations think strategically about their futures. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The management team along with Centre Associate Dr. Jay Koh mapped out how different variables could impact Asia Centre’s growth and development over the course of 3 to 5 years. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2731 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg" alt="12745406_1131304506888776_7488563555071341490_n" width="309" height="232" />The Futures Planning Workshop was an excellent way for the team to better understand and evaluate the concept behind the Centre’s, its mixed financing model and trajectory for its development. </span>\r\n<span style="font-weight: 400;">Marianne facilitated the discussion into the best and worst case scenarios for Asia Centre.We each shared our goals for the Centre as well as the obstacles that we might face along the way. The discussion centred on the sustainability of the Asia Centre idea and one thing that we settled on was that because Asia Centre owns the space we have the capacity of innovate and use the space as a resource. This cements the Centre’s survivability and gives us a strong foundation from which we can develop.</span>', 'Futures Planning: Charting Asia Centre’s Course', '', 'inherit', 'closed', 'closed', '', '2728-revision-v1', '', '', '2016-07-26 08:19:33', '2016-07-26 08:19:33', '', 2728, 'http://asiacentre.co.th/other/2728-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2733, 5, '2016-07-26 08:19:53', '2016-07-26 08:19:53', '<span style="font-weight: 400;">On 17 Feb 2016, the Asia Centre team sat down with Marianne Dutkiewicz, an </span><span style="font-weight: 400;">Asia Pacific Leadership Program Fellow with the</span><span style="font-weight: 400;"> the East-West Center in Hawaii, for a peek into the future.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Marianne shared with us a planning tool <img class="alignright  wp-image-2730" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg" alt="12742839_1131304393555454_4755732837999469162_n" width="326" height="245" />developed by the East- West Center to help individuals and organisations think strategically about their futures. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The management team along with Centre Associate Dr. Jay Koh mapped out how different variables could impact Asia Centre’s growth and development over the course of 3 to 5 years. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2731 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg" alt="12745406_1131304506888776_7488563555071341490_n" width="309" height="232" />The Futures Planning Workshop was an excellent way for the team to better understand and evaluate the concept behind the Centre’s, its mixed financing model and trajectory for its development. </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<span style="font-weight: 400;">Marianne facilitated the discussion into the best and worst case scenarios for Asia Centre.We each shared our goals for the Centre as well as the obstacles that we might face along the way. The discussion centred on the sustainability of the Asia Centre idea and one thing that we settled on was that because Asia Centre owns the space we have the capacity of innovate and use the space as a resource. This cements the Centre’s survivability and gives us a strong foundation from which we can develop.</span>', 'Futures Planning: Charting Asia Centre’s Course', '', 'inherit', 'closed', 'closed', '', '2728-revision-v1', '', '', '2016-07-26 08:19:53', '2016-07-26 08:19:53', '', 2728, 'http://asiacentre.co.th/other/2728-revision-v1/', 0, 'revision', '', 0),
(2734, 5, '2016-07-26 08:20:54', '2016-07-26 08:20:54', '<span style="font-weight: 400;">On 17 Feb 2016, the Asia Centre team sat down with Marianne Dutkiewicz, an </span><span style="font-weight: 400;">Asia Pacific Leadership Program Fellow with the</span><span style="font-weight: 400;"> the East-West Center in Hawaii, for a peek into the future.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Marianne shared with us a planning tool <img class="alignright  wp-image-2730" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg" alt="12742839_1131304393555454_4755732837999469162_n" width="326" height="245" />developed by the East- West Center to help individuals and organisations think strategically about their futures. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The management team along with Centre Associate Dr. Jay Koh mapped out how different variables could impact Asia Centre’s growth and development over the course of 3 to 5 years. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2731 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg" alt="12745406_1131304506888776_7488563555071341490_n" width="309" height="232" />The Futures Planning Workshop was an excellent way for the team to better understand and evaluate the concept behind the Centre’s, its mixed financing model and trajectory for its development. </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<span style="font-weight: 400;">Marianne facilitated the discussion into the best and worst case scenarios for Asia Centre.We each shared our goals for the Centre as well as the obstacles that we might face along the way. The discussion centred on the sustainability of the Asia Centre idea and one thing that we settled on was that because Asia Centre owns the space we have the capacity of innovate and use the space as a resource. </span>This cements the Centre’s independence, survivability and gives us a strong foundation from which we can develop.', 'Futures Planning: Charting Asia Centre’s Course', '', 'inherit', 'closed', 'closed', '', '2728-revision-v1', '', '', '2016-07-26 08:20:54', '2016-07-26 08:20:54', '', 2728, 'http://asiacentre.co.th/other/2728-revision-v1/', 0, 'revision', '', 0),
(2735, 5, '2016-07-26 08:21:12', '2016-07-26 08:21:12', '<span style="font-weight: 400;">On 17 Feb 2016, the Asia Centre team sat down with Marianne Dutkiewicz, an </span><span style="font-weight: 400;">Asia Pacific Leadership Program Fellow with the</span><span style="font-weight: 400;"> the East-West Center in Hawaii, for a peek into the future.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Marianne shared with us a planning tool <img class="alignright  wp-image-2730" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg" alt="12742839_1131304393555454_4755732837999469162_n" width="326" height="245" />developed by the East- West Center to help individuals and organisations think strategically about their futures. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The management team along with Centre Associate Dr. Jay Koh mapped out how different variables could impact Asia Centre’s growth and development over the course of 3 to 5 years. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2731 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg" alt="12745406_1131304506888776_7488563555071341490_n" width="309" height="232" />The Futures Planning Workshop was an excellent way for the team to better understand and evaluate the concept behind the Centre’s, its mixed financing model and trajectory for its development. </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<span style="font-weight: 400;">\r\n\r\nMarianne facilitated the discussion into the best and worst case scenarios for Asia Centre.We each shared our goals for the Centre as well as the obstacles that we might face along the way. The discussion centred on the sustainability of the Asia Centre idea and one thing that we settled on was that because Asia Centre owns the space we have the capacity of innovate and use the space as a resource. </span>This cements the Centre’s independence, survivability and gives us a strong foundation from which we can develop.', 'Futures Planning: Charting Asia Centre’s Course', '', 'inherit', 'closed', 'closed', '', '2728-revision-v1', '', '', '2016-07-26 08:21:12', '2016-07-26 08:21:12', '', 2728, 'http://asiacentre.co.th/other/2728-revision-v1/', 0, 'revision', '', 0),
(2736, 5, '2016-07-26 08:23:57', '2016-07-26 08:23:57', '<span style="font-weight: 400;">On 17 Feb 2016, the Asia Centre team sat down with Marianne Dutkiewicz, an </span><span style="font-weight: 400;">Asia Pacific Leadership Program Fellow with the</span><span style="font-weight: 400;"> the East-West Center in Hawaii, for a peek into the future.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Marianne shared with us a planning tool <img class="alignright wp-image-2730" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg" alt="12742839_1131304393555454_4755732837999469162_n" width="324" height="243" />developed by the East- West Center to help individuals and organisations think strategically about their futures. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The management team along with Centre Associate Dr. Jay Koh mapped out how different variables could impact Asia Centre’s growth and development over the course of 3 to 5 years. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2731 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg" alt="12745406_1131304506888776_7488563555071341490_n" width="309" height="232" />The Futures Planning Workshop was an excellent way for the team to better understand and evaluate the concept behind the Centre’s, its mixed financing model and trajectory for its development. </span>\r\n\r\nMarianne facilitated the discussion into the best and worst case scenarios for Asia Centre. We each shared our goals for the Centre as well as the obstacles that we might face along the way.\r\n\r\n&nbsp;\r\n\r\nThe discussion centred on the sustainability of the Asia Centre idea and one thing that we settled on, was that because Asia Centre owns the space, we have the capacity to innovate and use the space as a resource. This cements the Centre’s independence, survivability and gives us a strong foundation from which we can develop.', 'Futures Planning: Charting Asia Centre’s Course', '', 'inherit', 'closed', 'closed', '', '2728-revision-v1', '', '', '2016-07-26 08:23:57', '2016-07-26 08:23:57', '', 2728, 'http://asiacentre.co.th/other/2728-revision-v1/', 0, 'revision', '', 0),
(2737, 5, '2016-07-26 08:25:47', '2016-07-26 08:25:47', '<span style="font-weight: 400;">On 17 Feb 2016, the Asia Centre team sat down with Marianne Dutkiewicz, an </span><span style="font-weight: 400;">Asia Pacific Leadership Program Fellow with the</span><span style="font-weight: 400;"> the East-West Center in Hawaii, for a peek into the future.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Marianne shared with us a planning tool <img class="alignright wp-image-2730" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12742839_1131304393555454_4755732837999469162_n.jpg" alt="12742839_1131304393555454_4755732837999469162_n" width="324" height="243" />developed by the East- West Center to help individuals and organisations think strategically about their futures. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The management team along with Centre Associate Dr. Jay Koh mapped out how different variables could impact Asia Centre’s growth and development over the course of 3 to 5 years. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;"><img class=" wp-image-2731 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/12745406_1131304506888776_7488563555071341490_n.jpg" alt="12745406_1131304506888776_7488563555071341490_n" width="309" height="232" />The Futures Planning Workshop was an excellent way for the team to better understand and evaluate the concept behind the Centre, its mixed financing model and trajectory for its development. </span>\r\n\r\nMarianne facilitated the discussion into the best and worst case scenarios for Asia Centre. We each shared our goals for the Centre as well as the obstacles that we might face along the way.\r\n\r\n&nbsp;\r\n\r\nDiscussions centred on the sustainability of the Asia Centre idea and one thing that we settled on, was that because Asia Centre owns the space, we have the capacity to innovate and use the space as a resource. This cements the Centre’s independence, survivability and gives us a strong foundation from which we can develop.', 'Futures Planning: Charting Asia Centre’s Course', '', 'inherit', 'closed', 'closed', '', '2728-revision-v1', '', '', '2016-07-26 08:25:47', '2016-07-26 08:25:47', '', 2728, 'http://asiacentre.co.th/other/2728-revision-v1/', 0, 'revision', '', 0),
(2738, 5, '2016-07-27 07:57:25', '2016-07-27 07:57:25', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in <img class="alignright wp-image-2741" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="395" height="296" />Europe. As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="356" height="267" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="359" height="269" />noted that the<img class="alignright wp-image-2743 " src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" width="356" height="267" /> Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure to Promote the European Union', '', 'publish', 'closed', 'closed', '', 'brexit-a-failure-of-promoting-the-european-union', '', '', '2016-07-28 07:06:59', '2016-07-28 07:06:59', '', 0, 'http://asiacentre.co.th/?p=2738', 0, 'post', '', 0),
(2739, 5, '2016-07-27 07:27:40', '2016-07-27 07:27:40', '', '13631660_1237868799565679_1461397159066718475_n', '', 'inherit', 'closed', 'closed', '', '13631660_1237868799565679_1461397159066718475_n', '', '', '2016-07-28 07:06:59', '2016-07-28 07:06:59', '', 2738, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(2740, 5, '2016-07-27 07:27:56', '2016-07-27 07:27:56', '', '13620274_1237867352899157_2289645346702615491_n', '', 'inherit', 'closed', 'closed', '', '13620274_1237867352899157_2289645346702615491_n', '', '', '2016-07-28 07:06:59', '2016-07-28 07:06:59', '', 2738, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(2741, 5, '2016-07-27 07:27:57', '2016-07-27 07:27:57', '', '13620908_1237866319565927_2111982935833394140_n', '', 'inherit', 'closed', 'closed', '', '13620908_1237866319565927_2111982935833394140_n', '', '', '2016-07-28 07:06:59', '2016-07-28 07:06:59', '', 2738, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(2742, 5, '2016-07-27 07:27:58', '2016-07-27 07:27:58', '', '13631660_1237868799565679_1461397159066718475_n', '', 'inherit', 'closed', 'closed', '', '13631660_1237868799565679_1461397159066718475_n-2', '', '', '2016-07-28 07:06:59', '2016-07-28 07:06:59', '', 2738, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg', 3, 'attachment', 'image/jpeg', 0),
(2743, 5, '2016-07-27 07:27:59', '2016-07-27 07:27:59', '', '13770343_1237865629565996_7960205151669899940_n', '', 'inherit', 'closed', 'closed', '', '13770343_1237865629565996_7960205151669899940_n', '', '', '2016-07-28 07:06:59', '2016-07-28 07:06:59', '', 2738, 'http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg', 4, 'attachment', 'image/jpeg', 0),
(2744, 5, '2016-07-27 07:31:45', '2016-07-27 07:31:45', 'UK voters were not properly informed by political leaders <img class="alignright  wp-image-2743" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" alt="13770343_1237865629565996_7960205151669899940_n" width="367" height="275" />about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe. As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.\r\n\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2739 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="341" height="256" />The panel  was moderated by Asia Centre''s Dr Robin Ramcharan and featured Dr. Peter\r\nShearman,Chulalongkorn University; Dr. Kenneth Houston, Webster University; Dr. David Moore, Portland State University and Alexandra Demetrianova, Thammasat University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the <img class="wp-image-2740 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="339" height="254" />enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n\r\nBut early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before full exit happens.\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n\r\nWhile the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:31:45', '2016-07-27 07:31:45', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2745, 5, '2016-07-27 07:33:50', '2016-07-27 07:33:50', '<p style="text-align: left;">UK voters were not properly informed by political leaders <img class="alignright  wp-image-2743" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" alt="13770343_1237865629565996_7960205151669899940_n" width="386" height="289" />about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe. As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"><img class="wp-image-2739 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="362" height="272" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">Among the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the <img class="wp-image-2740 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="360" height="270" />enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before full exit happens.</p>\r\n<p style="text-align: left;">\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:33:50', '2016-07-27 07:33:50', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2746, 5, '2016-07-27 07:34:34', '2016-07-27 07:34:34', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.<img class="alignright  wp-image-2743" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" alt="13770343_1237865629565996_7960205151669899940_n" width="386" height="289" /> As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"><img class="wp-image-2739 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="362" height="272" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">Among the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the <img class="wp-image-2740 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="360" height="270" />enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before full exit happens.</p>\r\n<p style="text-align: left;">\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:34:34', '2016-07-27 07:34:34', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2747, 5, '2016-07-27 07:35:31', '2016-07-27 07:35:31', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.<img class="alignright  wp-image-2743" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" alt="13770343_1237865629565996_7960205151669899940_n" width="386" height="289" /> As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"><img class="wp-image-2739 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="362" height="272" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">Among the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the <img class="wp-image-2740 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="360" height="270" />enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.</p>\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n<p style="text-align: left;">\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:35:31', '2016-07-27 07:35:31', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2748, 5, '2016-07-27 07:35:58', '2016-07-27 07:35:58', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.<img class="alignright  wp-image-2743" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" alt="13770343_1237865629565996_7960205151669899940_n" width="386" height="289" /> As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">\r\n\r\n\r\n<img class="wp-image-2739 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="362" height="272" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">Among the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the <img class="wp-image-2740 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="360" height="270" />enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.</p>\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n<p style="text-align: left;">\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:35:58', '2016-07-27 07:35:58', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2749, 5, '2016-07-27 07:36:28', '2016-07-27 07:36:28', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.<img class="alignright wp-image-2743" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" alt="13770343_1237865629565996_7960205151669899940_n" width="386" height="289" /> As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\n<img class="wp-image-2739 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="362" height="272" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">Among the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the <img class="wp-image-2740 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="360" height="270" />enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.</p>\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">So – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:36:28', '2016-07-27 07:36:28', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2750, 5, '2016-07-27 07:37:24', '2016-07-27 07:37:24', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.<img class="alignright wp-image-2743" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" alt="13770343_1237865629565996_7960205151669899940_n" width="386" height="289" /> As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\n\r\n\r\n<img class="wp-image-2739 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="362" height="272" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">\r\n\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the <img class="wp-image-2740 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="360" height="270" />enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.</p>\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">So – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:37:24', '2016-07-27 07:37:24', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2751, 5, '2016-07-27 07:37:59', '2016-07-27 07:37:59', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\nThe panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the\r\nenduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">So – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:37:59', '2016-07-27 07:37:59', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2752, 5, '2016-07-27 07:38:34', '2016-07-27 07:38:34', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n<p style="text-align: left;"></p>\r\n&nbsp;\r\nThe panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr. Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the\r\nenduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">So – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.</p>\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:38:34', '2016-07-27 07:38:34', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2753, 5, '2016-07-27 07:43:46', '2016-07-27 07:43:46', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" />This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable and that it <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="376" height="282" />reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:43:46', '2016-07-27 07:43:46', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2754, 5, '2016-07-27 07:44:13', '2016-07-27 07:44:13', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>&nbsp;\r\n\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" />This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable and that it <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="376" height="282" />reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:44:13', '2016-07-27 07:44:13', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2755, 5, '2016-07-27 07:44:51', '2016-07-27 07:44:51', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n&nbsp;\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" />This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable and that it <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="376" height="282" />reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:44:51', '2016-07-27 07:44:51', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2756, 5, '2016-07-27 07:46:38', '2016-07-27 07:46:38', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n&nbsp;\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" />This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:46:38', '2016-07-27 07:46:38', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2757, 5, '2016-07-27 07:47:12', '2016-07-27 07:47:12', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" />This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:47:12', '2016-07-27 07:47:12', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2758, 5, '2016-07-27 07:47:32', '2016-07-27 07:47:32', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" /></p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:47:32', '2016-07-27 07:47:32', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2759, 5, '2016-07-27 07:47:49', '2016-07-27 07:47:49', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" /></p>\r\n<p style="text-align: left;">&nbsp;This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:47:49', '2016-07-27 07:47:49', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2760, 5, '2016-07-27 07:48:03', '2016-07-27 07:48:03', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" /></p>\r\n<p style="text-align: left;">\r\n&nbsp;\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman,Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:48:03', '2016-07-27 07:48:03', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2761, 5, '2016-07-27 07:48:35', '2016-07-27 07:48:35', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" /></p>\r\n<p style="text-align: left;">\r\n&nbsp;\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:48:35', '2016-07-27 07:48:35', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2762, 5, '2016-07-27 07:49:48', '2016-07-27 07:49:48', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" /></p>\r\n<p style="text-align: left;">\r\n&nbsp;\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:49:48', '2016-07-27 07:49:48', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2763, 5, '2016-07-27 07:50:14', '2016-07-27 07:50:14', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" /></p>\r\n<p style="text-align: left;">\r\n&nbsp;\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright  wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="375" height="281" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.</p>', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:50:14', '2016-07-27 07:50:14', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2764, 5, '2016-07-27 07:50:45', '2016-07-27 07:50:45', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" /></p>\r\n<p style="text-align: left;">\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="342" height="256" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:50:45', '2016-07-27 07:50:45', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2765, 5, '2016-07-27 07:51:24', '2016-07-27 07:51:24', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" />\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="342" height="256" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:51:24', '2016-07-27 07:51:24', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2766, 5, '2016-07-27 07:51:51', '2016-07-27 07:51:51', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;"><img class="wp-image-2741 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="346" height="259" />\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="342" height="256" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:51:51', '2016-07-27 07:51:51', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2767, 5, '2016-07-27 07:53:36', '2016-07-27 07:53:36', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in <img class="alignright  wp-image-2741" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="371" height="278" />Europe.As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.\r\n\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="347" height="260" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists noted that the Brexit vote was predictable <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="342" height="256" />and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:53:36', '2016-07-27 07:53:36', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2768, 5, '2016-07-27 07:57:02', '2016-07-27 07:57:02', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in <img class="alignright  wp-image-2741" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="395" height="296" />Europe. As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">\r\nThis was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="356" height="267" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="359" height="269" />noted that the<img class="alignright wp-image-2743 " src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" width="356" height="267" /> Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure of Promoting the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-27 07:57:02', '2016-07-27 07:57:02', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2771, 5, '2016-07-28 07:06:59', '2016-07-28 07:06:59', '<p style="text-align: left;">UK voters were not properly informed by political leaders about the functions, institutions and\r\npowers of the EU, which has made a great contribution to the prosperity of the UK and peace in <img class="alignright wp-image-2741" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620908_1237866319565927_2111982935833394140_n.jpg" alt="13620908_1237866319565927_2111982935833394140_n" width="395" height="296" />Europe. As a result, Britain’s referendum vote of 23 June 2016 ended up with a “leave the European Union (EU)” result – aka ‘Brexit’.</p>\r\n<p style="text-align: left;">This was the key conclusion from Asia Centre’s roundtable which attracted some 50 participants from academia, international organizations, the media, the NGO community, the public sector and the private sector.</p>\r\n&nbsp;\r\n\r\n<img class=" wp-image-2742 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13631660_1237868799565679_1461397159066718475_n-1.jpg" alt="13631660_1237868799565679_1461397159066718475_n" width="356" height="267" />The panel (L-R) was moderated by Asia Centre''s Dr Robin Ramcharan and featured Alexandra Demetrianova, Thammasat University; Dr. David Moore, Portland State University;Dr. Kenneth Houston, Webster University and Dr.Peter Shearman, Chulalongkorn University.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nAmong the other points made, the panellists <img class="alignright wp-image-2740" src="http://asiacentre.co.th/wp-content/uploads/2016/07/13620274_1237867352899157_2289645346702615491_n.jpg" alt="13620274_1237867352899157_2289645346702615491_n" width="359" height="269" />noted that the<img class="alignright wp-image-2743 " src="http://asiacentre.co.th/wp-content/uploads/2016/07/13770343_1237865629565996_7960205151669899940_n.jpg" width="356" height="267" /> Brexit vote was predictable and that it reflected voter dissatisfaction with political elites in Britain. However, the vote testifies to the enduring power of nationalism even as the world globalizes.  Local identities still matter, as evidenced by demands for local autonomy in parts of the UK.\r\n\r\n&nbsp;\r\n<p style="text-align: left;">But early indications are that the UK will not trigger its Article 50 notice to leave the EU until first quarter 2017 at the earliest. From that point, two years is allowed for the negotiation of post-Brexit trade, military, diplomatic, legal and social policy and legislation changes (amongst others) before the full exit happens.</p>\r\n&nbsp;\r\n\r\nSo – the earliest possible exit date is end of 2018. More likely, it will be later. Hence, the Brexit saga is expected to continue for some time. While the EU will endure, it will be weakened by Britain’s eventual exit. This makes the EU very vulnerable to forces of fragmentation moving forward. In order to stem such challenges, the EU needs to better sell itself across generations and across Europe.', 'Brexit: A Failure to Promote the European Union', '', 'inherit', 'closed', 'closed', '', '2738-revision-v1', '', '', '2016-07-28 07:06:59', '2016-07-28 07:06:59', '', 2738, 'http://asiacentre.co.th/other/2738-revision-v1/', 0, 'revision', '', 0),
(2773, 5, '2016-07-29 11:00:56', '2016-07-29 11:00:56', '', 'Screen Shot 2016-07-29 at 6.00.37 PM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-07-29-at-6-00-37-pm', '', '', '2016-07-29 11:04:01', '2016-07-29 11:04:01', '', 2136, 'http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-07-29-at-6.00.37-PM.png', 0, 'attachment', 'image/png', 0),
(2774, 5, '2016-07-29 11:04:57', '2016-07-29 11:04:57', '<b><a href="http://aipglobal.co/" target="_blank"><img class="wp-image-2139 size-full alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Screen-Shot-2015-06-11-at-18.28.57.png" alt="AIP Global Logo" width="170" height="218" /></a><a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a></b>\r\n<div>\r\n\r\n<a href="http://aipglobal.co" target="_blank">AIPGlobal.co</a> is a leading education service provider in Southeast Asia, operating out of Bangkok, Thailand. AIPGlobal.co takes an innovative approach to advancing student development by offering an ecosystem of services that students can draw on; from customised internships and soft skill development to platforms for community engagement as well as funding and entrepreneurship advice for student start-up ideas. AIPGlobal.co supports and complements the Asia Centre’s business and entrepreneurship programmes by providing trainers and facilitators for our courses, as well partnering on student internship placements.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://aprrn.info/" target="_blank"><strong>Asia Pacific Refugee Rights Network\r\n</strong></a>\r\n\r\nThe <a href="http://aprrn.info/" target="_blank">Asia Pacific Refugee Rights Network (APRRN)</a> is an <a href="http://aprrn.info/" target="_blank"><img class="alignright  wp-image-2773" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-07-29-at-6.00.37-PM.png" alt="Screen Shot 2016-07-29 at 6.00.37 PM" width="249" height="141" /></a>open and growing network consisting of more than 270 civil society organisations and individuals from 26 countries committed to advancing the rights of refugees in the Asia Pacific region. APRRN aims to advance the rights of refugees and other people in need of protection through joint advocacy, capacity strengthening, resource sharing and outreach.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<a href="http://auke.ee/en/" target="_blank"><strong><img class="wp-image-2533 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Auke3-1140x1140.jpg" alt="Auke3" width="214" height="214" /></strong></a><a href="http://auke.ee/en/" target="_blank"><strong>Asian Research Centre in Estonia </strong></a>\r\n\r\n<a href="http://auke.ee/en/" target="_blank">Asian Research Centre in Estonia</a> is a platform for cross-sector cooperation which works to strengthen the relationship between Estonia and Asia. The Centre brings together a range of actors from academia and civil society to state and entrepreneurs to facilitate knowledge transfer, research and network building.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><strong>Gerakbudaya Enterprise</strong></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank"><img class="alignright size-full wp-image-2604" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="300" height="86" /></a>\r\n\r\n<a href="http://gbgerakbudaya.com/bookshop/" target="_blank">Gerakbudaya Enterprise Sdn. Bhd.</a> distributes books that embody social awareness, critical and alternative perspectives, and the hidden histories of Malaysia, Southeast Asia and the wider world we live in.             GB is dedicated to circulating timely and important books, breaking down artificial barriers between writers/thinkers in institutions and everyone else, and generating informed discussions of important issues in our lives by providing different views and fresh insights.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong><a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian &amp; Pacific Studies</a></strong>\r\n<div>\r\n\r\n<a href="http://www.iaaps.org.in/" target="_blank"><img class="wp-image-2523 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/03/logo.jpg" alt="logo" width="444" height="73" /></a>\r\n\r\nThe <a href="http://www.iaaps.org.in/" target="_blank">Indian Association for Asian and Pacific Studies</a> (IAAPS) is a non-profit non-governmental organisation that promotes knowledge transfer and understanding between countries in Asia -Pacific. Located in Kolkata, India; IAAPS offers a platform for social science oriented research and capacity building programmes in the region.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<div>\r\n\r\n<strong><a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible Pte Ltd</a></strong>\r\n\r\n</div>\r\n<a href="http://tlcasia.com.sg" target="_blank"><img class="wp-image-2276 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Untitled.png" alt="Untitled" width="362" height="74" /></a>\r\n\r\n<a href="http://tlcasia.com.sg" target="_blank">Talent Leadership Crucible</a> (TLC) is an innovative consultancy firm that focuses on enhancing organizational capacities and individual performance in the interest of holistic and sustainable success. TLC operates out of Singapore with a focus on the ASEAN region. TLC provides awareness-based action learning in three key areas; building entrepreneurial acumen, developing collective leadership systems and holistic thinking.', 'Partners', '', 'inherit', 'closed', 'closed', '', '2136-revision-v1', '', '', '2016-07-29 11:04:57', '2016-07-29 11:04:57', '', 2136, 'http://asiacentre.co.th/other/2136-revision-v1/', 0, 'revision', '', 0),
(2778, 5, '2016-08-04 06:09:47', '2016-08-04 06:09:47', '<img class="size-full wp-image-2782 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png" alt="Screen Shot 2016-08-04 at 1.03.52 PM" width="720" height="143" />\r\n\r\nGerakBudaya and Asia Centre are pleased to announce the launch of a joint regional publications series which aims to focus upon the politics, history and culture of Southeast Asian societies.\r\n\r\n&nbsp;\r\n\r\nTogether we are launching a publications series on issues that matter to the peoples of the region.  The series will contribute to cross-disciplinary research and debate on the region and to highlighting new and innovative research on the region to a wider audience.\r\n\r\nManuscripts are welcome from contributors who are critically examining contemporary issues and would like to reach a wider audience.\r\n\r\n&nbsp;\r\n\r\n<b>The Series</b>\r\n\r\nIn launching a Southeast Asian publication series we wish to understand the region in its broadest sense, not as a rigidly defined region but as also including those countries such as India and China which have always been important to its history and will be integral to its future.\r\n\r\nWe are therefore interested in intellectually sound manuscripts from across academic disciplines and from the policy sphere which speak to the wider region, which escape the confines of the nation-state and which highlight the transnational linkages and the historical ties which continue to structure present day Southeast Asia. As a guide, we welcome manuscripts in the following areas but we will happy to consider others:\r\n<ul>\r\n 	<li>ASEAN and Regionalism</li>\r\n 	<li>Conflicts in the 21<sup>st</sup> Century</li>\r\n 	<li>Civil Society and Transnational Activism</li>\r\n 	<li>Democratization &amp; Authoritarianism</li>\r\n 	<li>Ethnic Relations</li>\r\n 	<li>Gender Studies</li>\r\n 	<li>Humanitarianism</li>\r\n 	<li>Human Rights</li>\r\n 	<li>Migration</li>\r\n 	<li>New Media</li>\r\n 	<li>Regional Arts &amp; Culture</li>\r\n 	<li>Sustainable Development</li>\r\n</ul>\r\nWe are also interested to publish manuscripts in the following formats:\r\n\r\n&nbsp;\r\n\r\n<b>1. Monographs</b>\r\n\r\nWe welcome a wide array of monographs. From academic research monographs to semi-academic and general non-fiction pieces by journalists and civil society activists. We are looking to publish pieces of original research which contribute something important to the scholarship on the region and which also talk to the work of civil society groups, NGOs and activists. We accept monographs of no longer than 40-100,000 words.\r\n\r\n<b>2. Edited Volumes</b>\r\n\r\nWe are interested to receive various proposals for edited volumes with a regional focus. In particular we are interested to publish edited volumes of no more than 12 chapters which bring together a diverse range of voices from around the region and neighbouring regions on topics of contemporary importance to Southeast Asia. We are happy to receive initial proposals for such volumes and work with editors in order to develop their proposal.\r\n\r\n<b>3. Conference Proceedings</b>\r\n\r\nWe are also interested to publish conference proceedings of important regional conferences which highlight cutting edge research and new and emerging perspectives on the region.\r\n\r\n<b>4. Self-Funded Publications</b>\r\n\r\nFinally we are interested in hearing from any individuals or organisations who have research funding or other such funding to contribute towards the cost of publishing research monographs, edited volumes and conference proceedings in keeping with our series specifications. This can be organised either as a self-publishing service, where GerakBudaya and Asia Centre will provide editing, production and distribution services, or as a co-publishing initiative in which the book will be jointly published by both parties.  Costs for book production can range from USD$ 1000–3500 depending on the length and nature of the manuscript and interested persons are encouraged to contact Series Editor James Gomez to find out more.\r\n\r\n&nbsp;\r\n\r\n<b>Series Editor</b>\r\n\r\nGerakBudaya and Asia Centre are proud to announce the appointment of Dr. James Gomez as the series editor of our Southeast Asian Studies series.\r\n\r\nDr. James Gomez is an academic, author and editor with over 20 years of international experience at universities, think-tanks, inter-governmental agencies and non-governmental organisations. He has worked with numerous publishers and serves on international advisory boards, editorial committees and as external resource person to academic departments, schools, faculties and universities.He is presently Professor of Communications and Associate Dean (International Affairs), School of Communication Arts, Bangkok University, Thailand. He is also Executive-Director of Asia Centre.\r\n\r\n&nbsp;\r\n\r\n<b>Submissions Procedure</b>\r\n\r\nIn order to consider your manuscript for publication we ask that you submit the following documents to us:\r\n<ul>\r\n 	<li>1-page summary of the manuscript that outlines the number of pages or words.</li>\r\n 	<li>Contents page</li>\r\n 	<li>Estimated length of manuscript (current). (Estimate based on MS Word, 12 point font, Times New Roman or similar, 1 1/2 space;A4 size paper;inclusive of notes and appendices.)</li>\r\n 	<li>A sample of 20 to 30 pages, or the introduction and one chapter.</li>\r\n 	<li>A short biography of the author.</li>\r\n</ul>\r\nFor edited volumes and conference proceedings we are happy to receive a provisional table of contents and a one page synopsis of the intended volume.\r\n\r\nPlease forward all submissions with a short covering letter to series editor Dr. James Gomez (<a href="mailto:james@asiacentre.co.th">james@asiacentre.co.th</a>). We aim to respond to your submission in 4-6 weeks.\r\n\r\n&nbsp;\r\n\r\n<b>Our Services</b>\r\n\r\nWe will be able to provide full editorial, production and distribution services. We are able to provide professional editors who can assist in developmental editing, copy-editing and proofreading of your manuscript and we will then provide layout design, printing, marketing and distribution services.\r\n\r\nIn addition we can also organise on your behalf co-publication initiatives with other international academic and non-academic presses and manage translation and territorial rights purchases to enable to your research to reach a wider audience.\r\n\r\n&nbsp;\r\n\r\n<strong>About Gerak Budaya</strong>\r\n\r\nGerakBudaya has long been established in Malaysia as a publisher and distributor of titles embodying social awareness, critical perspectives and the hidden histories of Malaysia and the wider region. Under their SIRD imprint, they have established a major non-university publishing house with titles covering a wide range of academic disciplines from history to political science, economics, cultural studies and sociology.\r\n\r\nTo learn more about the Asia Centre - Gerak Budaya partnership, please click<a href="http://asiacentre.co.th/other/asia-centre-regional-representative-for-malaysian-publisher-gerakbudaya/" target="_blank"> here</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Southeast Asian Studies Series – Call for Manuscripts', '', 'publish', 'closed', 'closed', '', 'southeast-asian-studies-series-call-for-manuscripts', '', '', '2016-08-04 06:09:55', '2016-08-04 06:09:55', '', 0, 'http://asiacentre.co.th/?p=2778', 0, 'post', '', 0),
(2779, 5, '2016-08-04 06:00:11', '2016-08-04 06:00:11', 'GerakBudaya and Asia Centre are pleased to announce the launch of a joint regional publications series which aims to focus upon the politics, history and culture of Southeast Asian societies.\r\n\r\nGerakBudaya has long been established in Malaysia as a publisher and distributor of titles embodying social awareness, critical perspectives and the hidden histories of Malaysia and the wider region. Under their SIRD imprint, they have established a major non-university publishing house with titles covering a wide range of academic disciplines from history to political science, economics, cultural studies and sociology.\r\n\r\nAsia Centre is a non-profit social enterprise that serves as an independent think-tank around civil society issues. Based in Bangkok, Thailand, it serves as a regional hub to encourage individuals and organisations to cross the divide between academia and civil society in Asia.\r\n\r\nTogether they are launching a publications series on issues that matter to the peoples of the region.  The series will contribute to cross-disciplinary research and debate on the region and to highlighting new and innovative research on the region to a wider audience.\r\n\r\nManuscripts are welcome from contributors who are critically examining contemporary issues and would like to reach a wider audience.\r\n\r\n<b>The Series</b>\r\n\r\nIn launching a Southeast Asian publication series we wish to understand the region in its broadest sense, not as a rigidly defined region but as also including those countries such as India and China which have always been important to its history and will be integral to its future.\r\n\r\nWe are therefore interested in intellectually sound manuscripts from across academic disciplines and from the policy sphere which speak to the wider region, which escape the confines of the nation-state and which highlight the transnational linkages and the historical ties which continue to structure present day Southeast Asia. As a guide, we welcome manuscripts in the following areas but we will happy to consider others:\r\n<ul>\r\n 	<li>ASEAN and Regionalism</li>\r\n 	<li>Conflicts in the 21<sup>st</sup> Century</li>\r\n 	<li>Civil Society and Transnational Activism</li>\r\n 	<li>Democratization &amp; Authoritarianism</li>\r\n 	<li>Ethnic Relations</li>\r\n 	<li>Gender Studies</li>\r\n 	<li>Humanitarianism</li>\r\n 	<li>Human Rights</li>\r\n 	<li>Migration</li>\r\n 	<li>New Media</li>\r\n 	<li>Regional Arts &amp; Culture</li>\r\n 	<li>Sustainable Development</li>\r\n</ul>\r\nWe are also interested to publish manuscripts in the following formats:\r\n\r\n<b>1. Monographs</b>\r\n\r\nWe welcome a wide array of monographs. From academic research monographs to semi-academic and general non-fiction pieces by journalists and civil society activists. We are looking to publish pieces of original research which contribute something important to the scholarship on the region and which also talk to the work of civil society groups, NGOs and activists. We accept monographs of no longer than 40-100,000 words.\r\n\r\n<b>2. Edited Volumes</b>\r\n\r\nWe are interested to receive various proposals for edited volumes with a regional focus. In particular we are interested to publish edited volumes of no more than 12 chapters which bring together a diverse range of voices from around the region and neighbouring regions on topics of contemporary importance to Southeast Asia. We are happy to receive initial proposals for such volumes and work with editors in order to develop their proposal.\r\n\r\n<b>3. Conference Proceedings</b>\r\n\r\nWe are also interested to publish conference proceedings of important regional conferences which highlight cutting edge research and new and emerging perspectives on the region.\r\n\r\n<b>4. Self-Funded Publications</b>\r\n\r\nFinally we are interested in hearing from any individuals or organisations who have research funding or other such funding to contribute towards the cost of publishing research monographs, edited volumes and conference proceedings in keeping with our series specifications. This can be organised either as a self-publishing service, where GerakBudaya and Asia Centre will provide editing, production and distribution services, or as a co-publishing initiative in which the book will be jointly published by both parties.  Costs for book production can range from USD$ 1000–3500 depending on the length and nature of the manuscript and interested persons are encouraged to contact Series Editor James Gomez to find out more.\r\n\r\n<b>Series Editor</b>\r\n\r\nGerakBudaya and Asia Centre are proud to announce the appointment of Dr. James Gomez as the series editor of our Southeast Asian Studies series.\r\n\r\nDr. James Gomez is an academic, author and editor with over 20 years of international experience at universities, think-tanks, inter-governmental agencies and non-governmental organisations. He has worked with numerous publishers and serves on international advisory boards, editorial committees and as external resource person to academic departments, schools, faculties and universities.He is presently Professor of Communications and Associate Dean (International Affairs), School of Communication Arts, Bangkok University, Thailand. He is also Executive-Director of Asia Centre.\r\n\r\n<b>Submissions Procedure</b>\r\n\r\nIn order to consider your manuscript for publication we ask that you submit the following documents to us:\r\n<ul>\r\n 	<li>1-page summary of the manuscript that outlines the number of pages or words.</li>\r\n 	<li>Contents page</li>\r\n 	<li>Estimated length of manuscript (current). (Estimate based on MS Word, 12 point font, Times New Roman or similar, 1 1/2 space;A4 size paper;inclusive of notes and appendices.)</li>\r\n 	<li>A sample of 20 to 30 pages, or the introduction and one chapter.</li>\r\n 	<li>A short biography of the author.</li>\r\n</ul>\r\nFor edited volumes and conference proceedings we are happy to receive a provisional table of contents and a one page synopsis of the intended volume.\r\n\r\nPlease forward all submissions with a short covering letter to series editorDr. James Gomez (<a href="mailto:james@asiacentre.co.th">james@asiacentre.co.th</a>). We aim to respond to your submission in 4-6 weeks.\r\n\r\n<b>Our Service</b>\r\n\r\nAs a publisher we will be able to provide full editorial, production and distribution services. We are able to provide professional editors who can assist in developmental editing, copy-editing and proofreading of your manuscript and we will then provide layout design, printing, marketing and distribution services.\r\n\r\nIn addition we can also organise on your behalf co-publication initiatives with other international academic and non-academic presses and manage translation and territorial rights purchases to enable to your research to reach a wider audience.', 'Southeast Asian Studies Series – Call for Manuscripts', '', 'inherit', 'closed', 'closed', '', '2778-revision-v1', '', '', '2016-08-04 06:00:11', '2016-08-04 06:00:11', '', 2778, 'http://asiacentre.co.th/other/2778-revision-v1/', 0, 'revision', '', 0),
(2780, 5, '2016-08-04 06:01:48', '2016-08-04 06:01:48', '', 'Asia-Centre-Logo-Flat-Color-GA', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo-flat-color-ga', '', '', '2016-08-04 06:09:55', '2016-08-04 06:09:55', '', 2778, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Asia-Centre-Logo-Flat-Color-GA.png', 0, 'attachment', 'image/png', 0),
(2781, 5, '2016-08-04 06:03:05', '2016-08-04 06:03:05', '<img class="wp-image-2780 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Asia-Centre-Logo-Flat-Color-GA.png" alt="Asia-Centre-Logo-Flat-Color-GA" width="298" height="123" /><img class=" wp-image-2604 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="353" height="101" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nGerakBudaya and Asia Centre are pleased to announce the launch of a joint regional publications series which aims to focus upon the politics, history and culture of Southeast Asian societies.\r\n\r\nGerakBudaya has long been established in Malaysia as a publisher and distributor of titles embodying social awareness, critical perspectives and the hidden histories of Malaysia and the wider region. Under their SIRD imprint, they have established a major non-university publishing house with titles covering a wide range of academic disciplines from history to political science, economics, cultural studies and sociology.\r\n\r\nAsia Centre is a non-profit social enterprise that serves as an independent think-tank around civil society issues. Based in Bangkok, Thailand, it serves as a regional hub to encourage individuals and organisations to cross the divide between academia and civil society in Asia.\r\n\r\nTogether they are launching a publications series on issues that matter to the peoples of the region.  The series will contribute to cross-disciplinary research and debate on the region and to highlighting new and innovative research on the region to a wider audience.\r\n\r\nManuscripts are welcome from contributors who are critically examining contemporary issues and would like to reach a wider audience.\r\n\r\n<b>The Series</b>\r\n\r\nIn launching a Southeast Asian publication series we wish to understand the region in its broadest sense, not as a rigidly defined region but as also including those countries such as India and China which have always been important to its history and will be integral to its future.\r\n\r\nWe are therefore interested in intellectually sound manuscripts from across academic disciplines and from the policy sphere which speak to the wider region, which escape the confines of the nation-state and which highlight the transnational linkages and the historical ties which continue to structure present day Southeast Asia. As a guide, we welcome manuscripts in the following areas but we will happy to consider others:\r\n<ul>\r\n 	<li>ASEAN and Regionalism</li>\r\n 	<li>Conflicts in the 21<sup>st</sup> Century</li>\r\n 	<li>Civil Society and Transnational Activism</li>\r\n 	<li>Democratization &amp; Authoritarianism</li>\r\n 	<li>Ethnic Relations</li>\r\n 	<li>Gender Studies</li>\r\n 	<li>Humanitarianism</li>\r\n 	<li>Human Rights</li>\r\n 	<li>Migration</li>\r\n 	<li>New Media</li>\r\n 	<li>Regional Arts &amp; Culture</li>\r\n 	<li>Sustainable Development</li>\r\n</ul>\r\nWe are also interested to publish manuscripts in the following formats:\r\n\r\n<b>1. Monographs</b>\r\n\r\nWe welcome a wide array of monographs. From academic research monographs to semi-academic and general non-fiction pieces by journalists and civil society activists. We are looking to publish pieces of original research which contribute something important to the scholarship on the region and which also talk to the work of civil society groups, NGOs and activists. We accept monographs of no longer than 40-100,000 words.\r\n\r\n<b>2. Edited Volumes</b>\r\n\r\nWe are interested to receive various proposals for edited volumes with a regional focus. In particular we are interested to publish edited volumes of no more than 12 chapters which bring together a diverse range of voices from around the region and neighbouring regions on topics of contemporary importance to Southeast Asia. We are happy to receive initial proposals for such volumes and work with editors in order to develop their proposal.\r\n\r\n<b>3. Conference Proceedings</b>\r\n\r\nWe are also interested to publish conference proceedings of important regional conferences which highlight cutting edge research and new and emerging perspectives on the region.\r\n\r\n<b>4. Self-Funded Publications</b>\r\n\r\nFinally we are interested in hearing from any individuals or organisations who have research funding or other such funding to contribute towards the cost of publishing research monographs, edited volumes and conference proceedings in keeping with our series specifications. This can be organised either as a self-publishing service, where GerakBudaya and Asia Centre will provide editing, production and distribution services, or as a co-publishing initiative in which the book will be jointly published by both parties.  Costs for book production can range from USD$ 1000–3500 depending on the length and nature of the manuscript and interested persons are encouraged to contact Series Editor James Gomez to find out more.\r\n\r\n<b>Series Editor</b>\r\n\r\nGerakBudaya and Asia Centre are proud to announce the appointment of Dr. James Gomez as the series editor of our Southeast Asian Studies series.\r\n\r\nDr. James Gomez is an academic, author and editor with over 20 years of international experience at universities, think-tanks, inter-governmental agencies and non-governmental organisations. He has worked with numerous publishers and serves on international advisory boards, editorial committees and as external resource person to academic departments, schools, faculties and universities.He is presently Professor of Communications and Associate Dean (International Affairs), School of Communication Arts, Bangkok University, Thailand. He is also Executive-Director of Asia Centre.\r\n\r\n<b>Submissions Procedure</b>\r\n\r\nIn order to consider your manuscript for publication we ask that you submit the following documents to us:\r\n<ul>\r\n 	<li>1-page summary of the manuscript that outlines the number of pages or words.</li>\r\n 	<li>Contents page</li>\r\n 	<li>Estimated length of manuscript (current). (Estimate based on MS Word, 12 point font, Times New Roman or similar, 1 1/2 space;A4 size paper;inclusive of notes and appendices.)</li>\r\n 	<li>A sample of 20 to 30 pages, or the introduction and one chapter.</li>\r\n 	<li>A short biography of the author.</li>\r\n</ul>\r\nFor edited volumes and conference proceedings we are happy to receive a provisional table of contents and a one page synopsis of the intended volume.\r\n\r\nPlease forward all submissions with a short covering letter to series editor Dr. James Gomez (<a href="mailto:james@asiacentre.co.th">james@asiacentre.co.th</a>). We aim to respond to your submission in 4-6 weeks.\r\n\r\n<b>Our Service</b>\r\n\r\nAs a publisher we will be able to provide full editorial, production and distribution services. We are able to provide professional editors who can assist in developmental editing, copy-editing and proofreading of your manuscript and we will then provide layout design, printing, marketing and distribution services.\r\n\r\nIn addition we can also organise on your behalf co-publication initiatives with other international academic and non-academic presses and manage translation and territorial rights purchases to enable to your research to reach a wider audience.', 'Southeast Asian Studies Series – Call for Manuscripts', '', 'inherit', 'closed', 'closed', '', '2778-revision-v1', '', '', '2016-08-04 06:03:05', '2016-08-04 06:03:05', '', 2778, 'http://asiacentre.co.th/other/2778-revision-v1/', 0, 'revision', '', 0),
(2782, 5, '2016-08-04 06:04:15', '2016-08-04 06:04:15', '', 'Screen Shot 2016-08-04 at 1.03.52 PM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-08-04-at-1-03-52-pm', '', '', '2016-08-04 06:09:55', '2016-08-04 06:09:55', '', 2778, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png', 1, 'attachment', 'image/png', 0),
(2783, 5, '2016-08-04 06:04:30', '2016-08-04 06:04:30', '<img class="size-full wp-image-2782 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png" alt="Screen Shot 2016-08-04 at 1.03.52 PM" width="720" height="143" />\r\n\r\nGerakBudaya and Asia Centre are pleased to announce the launch of a joint regional publications series which aims to focus upon the politics, history and culture of Southeast Asian societies.\r\n\r\nGerakBudaya has long been established in Malaysia as a publisher and distributor of titles embodying social awareness, critical perspectives and the hidden histories of Malaysia and the wider region. Under their SIRD imprint, they have established a major non-university publishing house with titles covering a wide range of academic disciplines from history to political science, economics, cultural studies and sociology.\r\n\r\nAsia Centre is a non-profit social enterprise that serves as an independent think-tank around civil society issues. Based in Bangkok, Thailand, it serves as a regional hub to encourage individuals and organisations to cross the divide between academia and civil society in Asia.\r\n\r\nTogether they are launching a publications series on issues that matter to the peoples of the region.  The series will contribute to cross-disciplinary research and debate on the region and to highlighting new and innovative research on the region to a wider audience.\r\n\r\nManuscripts are welcome from contributors who are critically examining contemporary issues and would like to reach a wider audience.\r\n\r\n<b>The Series</b>\r\n\r\nIn launching a Southeast Asian publication series we wish to understand the region in its broadest sense, not as a rigidly defined region but as also including those countries such as India and China which have always been important to its history and will be integral to its future.\r\n\r\nWe are therefore interested in intellectually sound manuscripts from across academic disciplines and from the policy sphere which speak to the wider region, which escape the confines of the nation-state and which highlight the transnational linkages and the historical ties which continue to structure present day Southeast Asia. As a guide, we welcome manuscripts in the following areas but we will happy to consider others:\r\n<ul>\r\n 	<li>ASEAN and Regionalism</li>\r\n 	<li>Conflicts in the 21<sup>st</sup> Century</li>\r\n 	<li>Civil Society and Transnational Activism</li>\r\n 	<li>Democratization &amp; Authoritarianism</li>\r\n 	<li>Ethnic Relations</li>\r\n 	<li>Gender Studies</li>\r\n 	<li>Humanitarianism</li>\r\n 	<li>Human Rights</li>\r\n 	<li>Migration</li>\r\n 	<li>New Media</li>\r\n 	<li>Regional Arts &amp; Culture</li>\r\n 	<li>Sustainable Development</li>\r\n</ul>\r\nWe are also interested to publish manuscripts in the following formats:\r\n\r\n<b>1. Monographs</b>\r\n\r\nWe welcome a wide array of monographs. From academic research monographs to semi-academic and general non-fiction pieces by journalists and civil society activists. We are looking to publish pieces of original research which contribute something important to the scholarship on the region and which also talk to the work of civil society groups, NGOs and activists. We accept monographs of no longer than 40-100,000 words.\r\n\r\n<b>2. Edited Volumes</b>\r\n\r\nWe are interested to receive various proposals for edited volumes with a regional focus. In particular we are interested to publish edited volumes of no more than 12 chapters which bring together a diverse range of voices from around the region and neighbouring regions on topics of contemporary importance to Southeast Asia. We are happy to receive initial proposals for such volumes and work with editors in order to develop their proposal.\r\n\r\n<b>3. Conference Proceedings</b>\r\n\r\nWe are also interested to publish conference proceedings of important regional conferences which highlight cutting edge research and new and emerging perspectives on the region.\r\n\r\n<b>4. Self-Funded Publications</b>\r\n\r\nFinally we are interested in hearing from any individuals or organisations who have research funding or other such funding to contribute towards the cost of publishing research monographs, edited volumes and conference proceedings in keeping with our series specifications. This can be organised either as a self-publishing service, where GerakBudaya and Asia Centre will provide editing, production and distribution services, or as a co-publishing initiative in which the book will be jointly published by both parties.  Costs for book production can range from USD$ 1000–3500 depending on the length and nature of the manuscript and interested persons are encouraged to contact Series Editor James Gomez to find out more.\r\n\r\n<b>Series Editor</b>\r\n\r\nGerakBudaya and Asia Centre are proud to announce the appointment of Dr. James Gomez as the series editor of our Southeast Asian Studies series.\r\n\r\nDr. James Gomez is an academic, author and editor with over 20 years of international experience at universities, think-tanks, inter-governmental agencies and non-governmental organisations. He has worked with numerous publishers and serves on international advisory boards, editorial committees and as external resource person to academic departments, schools, faculties and universities.He is presently Professor of Communications and Associate Dean (International Affairs), School of Communication Arts, Bangkok University, Thailand. He is also Executive-Director of Asia Centre.\r\n\r\n<b>Submissions Procedure</b>\r\n\r\nIn order to consider your manuscript for publication we ask that you submit the following documents to us:\r\n<ul>\r\n 	<li>1-page summary of the manuscript that outlines the number of pages or words.</li>\r\n 	<li>Contents page</li>\r\n 	<li>Estimated length of manuscript (current). (Estimate based on MS Word, 12 point font, Times New Roman or similar, 1 1/2 space;A4 size paper;inclusive of notes and appendices.)</li>\r\n 	<li>A sample of 20 to 30 pages, or the introduction and one chapter.</li>\r\n 	<li>A short biography of the author.</li>\r\n</ul>\r\nFor edited volumes and conference proceedings we are happy to receive a provisional table of contents and a one page synopsis of the intended volume.\r\n\r\nPlease forward all submissions with a short covering letter to series editor Dr. James Gomez (<a href="mailto:james@asiacentre.co.th">james@asiacentre.co.th</a>). We aim to respond to your submission in 4-6 weeks.\r\n\r\n<b>Our Service</b>\r\n\r\nAs a publisher we will be able to provide full editorial, production and distribution services. We are able to provide professional editors who can assist in developmental editing, copy-editing and proofreading of your manuscript and we will then provide layout design, printing, marketing and distribution services.\r\n\r\nIn addition we can also organise on your behalf co-publication initiatives with other international academic and non-academic presses and manage translation and territorial rights purchases to enable to your research to reach a wider audience.', 'Southeast Asian Studies Series – Call for Manuscripts', '', 'inherit', 'closed', 'closed', '', '2778-revision-v1', '', '', '2016-08-04 06:04:30', '2016-08-04 06:04:30', '', 2778, 'http://asiacentre.co.th/other/2778-revision-v1/', 0, 'revision', '', 0),
(2784, 5, '2016-08-04 06:06:45', '2016-08-04 06:06:45', '<img class="size-full wp-image-2782 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png" alt="Screen Shot 2016-08-04 at 1.03.52 PM" width="720" height="143" />\r\n\r\nGerakBudaya and Asia Centre are pleased to announce the launch of a joint regional publications series which aims to focus upon the politics, history and culture of Southeast Asian societies.\r\n\r\n&nbsp;\r\n\r\nTogether we are launching a publications series on issues that matter to the peoples of the region.  The series will contribute to cross-disciplinary research and debate on the region and to highlighting new and innovative research on the region to a wider audience.\r\n\r\nManuscripts are welcome from contributors who are critically examining contemporary issues and would like to reach a wider audience.\r\n\r\n<b>The Series</b>\r\n\r\nIn launching a Southeast Asian publication series we wish to understand the region in its broadest sense, not as a rigidly defined region but as also including those countries such as India and China which have always been important to its history and will be integral to its future.\r\n\r\nWe are therefore interested in intellectually sound manuscripts from across academic disciplines and from the policy sphere which speak to the wider region, which escape the confines of the nation-state and which highlight the transnational linkages and the historical ties which continue to structure present day Southeast Asia. As a guide, we welcome manuscripts in the following areas but we will happy to consider others:\r\n<ul>\r\n 	<li>ASEAN and Regionalism</li>\r\n 	<li>Conflicts in the 21<sup>st</sup> Century</li>\r\n 	<li>Civil Society and Transnational Activism</li>\r\n 	<li>Democratization &amp; Authoritarianism</li>\r\n 	<li>Ethnic Relations</li>\r\n 	<li>Gender Studies</li>\r\n 	<li>Humanitarianism</li>\r\n 	<li>Human Rights</li>\r\n 	<li>Migration</li>\r\n 	<li>New Media</li>\r\n 	<li>Regional Arts &amp; Culture</li>\r\n 	<li>Sustainable Development</li>\r\n</ul>\r\nWe are also interested to publish manuscripts in the following formats:\r\n\r\n<b>1. Monographs</b>\r\n\r\nWe welcome a wide array of monographs. From academic research monographs to semi-academic and general non-fiction pieces by journalists and civil society activists. We are looking to publish pieces of original research which contribute something important to the scholarship on the region and which also talk to the work of civil society groups, NGOs and activists. We accept monographs of no longer than 40-100,000 words.\r\n\r\n<b>2. Edited Volumes</b>\r\n\r\nWe are interested to receive various proposals for edited volumes with a regional focus. In particular we are interested to publish edited volumes of no more than 12 chapters which bring together a diverse range of voices from around the region and neighbouring regions on topics of contemporary importance to Southeast Asia. We are happy to receive initial proposals for such volumes and work with editors in order to develop their proposal.\r\n\r\n<b>3. Conference Proceedings</b>\r\n\r\nWe are also interested to publish conference proceedings of important regional conferences which highlight cutting edge research and new and emerging perspectives on the region.\r\n\r\n<b>4. Self-Funded Publications</b>\r\n\r\nFinally we are interested in hearing from any individuals or organisations who have research funding or other such funding to contribute towards the cost of publishing research monographs, edited volumes and conference proceedings in keeping with our series specifications. This can be organised either as a self-publishing service, where GerakBudaya and Asia Centre will provide editing, production and distribution services, or as a co-publishing initiative in which the book will be jointly published by both parties.  Costs for book production can range from USD$ 1000–3500 depending on the length and nature of the manuscript and interested persons are encouraged to contact Series Editor James Gomez to find out more.\r\n\r\n<b>Series Editor</b>\r\n\r\nGerakBudaya and Asia Centre are proud to announce the appointment of Dr. James Gomez as the series editor of our Southeast Asian Studies series.\r\n\r\nDr. James Gomez is an academic, author and editor with over 20 years of international experience at universities, think-tanks, inter-governmental agencies and non-governmental organisations. He has worked with numerous publishers and serves on international advisory boards, editorial committees and as external resource person to academic departments, schools, faculties and universities.He is presently Professor of Communications and Associate Dean (International Affairs), School of Communication Arts, Bangkok University, Thailand. He is also Executive-Director of Asia Centre.\r\n\r\n<b>Submissions Procedure</b>\r\n\r\nIn order to consider your manuscript for publication we ask that you submit the following documents to us:\r\n<ul>\r\n 	<li>1-page summary of the manuscript that outlines the number of pages or words.</li>\r\n 	<li>Contents page</li>\r\n 	<li>Estimated length of manuscript (current). (Estimate based on MS Word, 12 point font, Times New Roman or similar, 1 1/2 space;A4 size paper;inclusive of notes and appendices.)</li>\r\n 	<li>A sample of 20 to 30 pages, or the introduction and one chapter.</li>\r\n 	<li>A short biography of the author.</li>\r\n</ul>\r\nFor edited volumes and conference proceedings we are happy to receive a provisional table of contents and a one page synopsis of the intended volume.\r\n\r\nPlease forward all submissions with a short covering letter to series editor Dr. James Gomez (<a href="mailto:james@asiacentre.co.th">james@asiacentre.co.th</a>). We aim to respond to your submission in 4-6 weeks.\r\n\r\n<b>Our Service</b>\r\n\r\nWe will be able to provide full editorial, production and distribution services. We are able to provide professional editors who can assist in developmental editing, copy-editing and proofreading of your manuscript and we will then provide layout design, printing, marketing and distribution services.\r\n\r\nIn addition we can also organise on your behalf co-publication initiatives with other international academic and non-academic presses and manage translation and territorial rights purchases to enable to your research to reach a wider audience.\r\n\r\n&nbsp;\r\n\r\n<strong>About Gerak Budaya</strong>\r\n\r\nGerakBudaya has long been established in Malaysia as a publisher and distributor of titles embodying social awareness, critical perspectives and the hidden histories of Malaysia and the wider region. Under their SIRD imprint, they have established a major non-university publishing house with titles covering a wide range of academic disciplines from history to political science, economics, cultural studies and sociology.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Southeast Asian Studies Series – Call for Manuscripts', '', 'inherit', 'closed', 'closed', '', '2778-revision-v1', '', '', '2016-08-04 06:06:45', '2016-08-04 06:06:45', '', 2778, 'http://asiacentre.co.th/other/2778-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2785, 5, '2016-08-04 06:07:18', '2016-08-04 06:07:18', '<img class="size-full wp-image-2782 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png" alt="Screen Shot 2016-08-04 at 1.03.52 PM" width="720" height="143" />\r\n\r\nGerakBudaya and Asia Centre are pleased to announce the launch of a joint regional publications series which aims to focus upon the politics, history and culture of Southeast Asian societies.\r\n\r\n&nbsp;\r\n\r\nTogether we are launching a publications series on issues that matter to the peoples of the region.  The series will contribute to cross-disciplinary research and debate on the region and to highlighting new and innovative research on the region to a wider audience.\r\n\r\nManuscripts are welcome from contributors who are critically examining contemporary issues and would like to reach a wider audience.\r\n\r\n&nbsp;\r\n\r\n<b>The Series</b>\r\n\r\nIn launching a Southeast Asian publication series we wish to understand the region in its broadest sense, not as a rigidly defined region but as also including those countries such as India and China which have always been important to its history and will be integral to its future.\r\n\r\nWe are therefore interested in intellectually sound manuscripts from across academic disciplines and from the policy sphere which speak to the wider region, which escape the confines of the nation-state and which highlight the transnational linkages and the historical ties which continue to structure present day Southeast Asia. As a guide, we welcome manuscripts in the following areas but we will happy to consider others:\r\n<ul>\r\n 	<li>ASEAN and Regionalism</li>\r\n 	<li>Conflicts in the 21<sup>st</sup> Century</li>\r\n 	<li>Civil Society and Transnational Activism</li>\r\n 	<li>Democratization &amp; Authoritarianism</li>\r\n 	<li>Ethnic Relations</li>\r\n 	<li>Gender Studies</li>\r\n 	<li>Humanitarianism</li>\r\n 	<li>Human Rights</li>\r\n 	<li>Migration</li>\r\n 	<li>New Media</li>\r\n 	<li>Regional Arts &amp; Culture</li>\r\n 	<li>Sustainable Development</li>\r\n</ul>\r\nWe are also interested to publish manuscripts in the following formats:\r\n\r\n&nbsp;\r\n\r\n<b>1. Monographs</b>\r\n\r\nWe welcome a wide array of monographs. From academic research monographs to semi-academic and general non-fiction pieces by journalists and civil society activists. We are looking to publish pieces of original research which contribute something important to the scholarship on the region and which also talk to the work of civil society groups, NGOs and activists. We accept monographs of no longer than 40-100,000 words.\r\n\r\n<b>2. Edited Volumes</b>\r\n\r\nWe are interested to receive various proposals for edited volumes with a regional focus. In particular we are interested to publish edited volumes of no more than 12 chapters which bring together a diverse range of voices from around the region and neighbouring regions on topics of contemporary importance to Southeast Asia. We are happy to receive initial proposals for such volumes and work with editors in order to develop their proposal.\r\n\r\n<b>3. Conference Proceedings</b>\r\n\r\nWe are also interested to publish conference proceedings of important regional conferences which highlight cutting edge research and new and emerging perspectives on the region.\r\n\r\n<b>4. Self-Funded Publications</b>\r\n\r\nFinally we are interested in hearing from any individuals or organisations who have research funding or other such funding to contribute towards the cost of publishing research monographs, edited volumes and conference proceedings in keeping with our series specifications. This can be organised either as a self-publishing service, where GerakBudaya and Asia Centre will provide editing, production and distribution services, or as a co-publishing initiative in which the book will be jointly published by both parties.  Costs for book production can range from USD$ 1000–3500 depending on the length and nature of the manuscript and interested persons are encouraged to contact Series Editor James Gomez to find out more.\r\n\r\n&nbsp;\r\n\r\n<b>Series Editor</b>\r\n\r\nGerakBudaya and Asia Centre are proud to announce the appointment of Dr. James Gomez as the series editor of our Southeast Asian Studies series.\r\n\r\nDr. James Gomez is an academic, author and editor with over 20 years of international experience at universities, think-tanks, inter-governmental agencies and non-governmental organisations. He has worked with numerous publishers and serves on international advisory boards, editorial committees and as external resource person to academic departments, schools, faculties and universities.He is presently Professor of Communications and Associate Dean (International Affairs), School of Communication Arts, Bangkok University, Thailand. He is also Executive-Director of Asia Centre.\r\n\r\n&nbsp;\r\n\r\n<b>Submissions Procedure</b>\r\n\r\nIn order to consider your manuscript for publication we ask that you submit the following documents to us:\r\n<ul>\r\n 	<li>1-page summary of the manuscript that outlines the number of pages or words.</li>\r\n 	<li>Contents page</li>\r\n 	<li>Estimated length of manuscript (current). (Estimate based on MS Word, 12 point font, Times New Roman or similar, 1 1/2 space;A4 size paper;inclusive of notes and appendices.)</li>\r\n 	<li>A sample of 20 to 30 pages, or the introduction and one chapter.</li>\r\n 	<li>A short biography of the author.</li>\r\n</ul>\r\nFor edited volumes and conference proceedings we are happy to receive a provisional table of contents and a one page synopsis of the intended volume.\r\n\r\nPlease forward all submissions with a short covering letter to series editor Dr. James Gomez (<a href="mailto:james@asiacentre.co.th">james@asiacentre.co.th</a>). We aim to respond to your submission in 4-6 weeks.\r\n\r\n&nbsp;\r\n\r\n<b>Our Services</b>\r\n\r\nWe will be able to provide full editorial, production and distribution services. We are able to provide professional editors who can assist in developmental editing, copy-editing and proofreading of your manuscript and we will then provide layout design, printing, marketing and distribution services.\r\n\r\nIn addition we can also organise on your behalf co-publication initiatives with other international academic and non-academic presses and manage translation and territorial rights purchases to enable to your research to reach a wider audience.\r\n\r\n&nbsp;\r\n\r\n<strong>About Gerak Budaya</strong>\r\n\r\nGerakBudaya has long been established in Malaysia as a publisher and distributor of titles embodying social awareness, critical perspectives and the hidden histories of Malaysia and the wider region. Under their SIRD imprint, they have established a major non-university publishing house with titles covering a wide range of academic disciplines from history to political science, economics, cultural studies and sociology.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Southeast Asian Studies Series – Call for Manuscripts', '', 'inherit', 'closed', 'closed', '', '2778-revision-v1', '', '', '2016-08-04 06:07:18', '2016-08-04 06:07:18', '', 2778, 'http://asiacentre.co.th/other/2778-revision-v1/', 0, 'revision', '', 0),
(2786, 5, '2016-08-04 06:09:47', '2016-08-04 06:09:47', '<img class="size-full wp-image-2782 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-04-at-1.03.52-PM.png" alt="Screen Shot 2016-08-04 at 1.03.52 PM" width="720" height="143" />\r\n\r\nGerakBudaya and Asia Centre are pleased to announce the launch of a joint regional publications series which aims to focus upon the politics, history and culture of Southeast Asian societies.\r\n\r\n&nbsp;\r\n\r\nTogether we are launching a publications series on issues that matter to the peoples of the region.  The series will contribute to cross-disciplinary research and debate on the region and to highlighting new and innovative research on the region to a wider audience.\r\n\r\nManuscripts are welcome from contributors who are critically examining contemporary issues and would like to reach a wider audience.\r\n\r\n&nbsp;\r\n\r\n<b>The Series</b>\r\n\r\nIn launching a Southeast Asian publication series we wish to understand the region in its broadest sense, not as a rigidly defined region but as also including those countries such as India and China which have always been important to its history and will be integral to its future.\r\n\r\nWe are therefore interested in intellectually sound manuscripts from across academic disciplines and from the policy sphere which speak to the wider region, which escape the confines of the nation-state and which highlight the transnational linkages and the historical ties which continue to structure present day Southeast Asia. As a guide, we welcome manuscripts in the following areas but we will happy to consider others:\r\n<ul>\r\n 	<li>ASEAN and Regionalism</li>\r\n 	<li>Conflicts in the 21<sup>st</sup> Century</li>\r\n 	<li>Civil Society and Transnational Activism</li>\r\n 	<li>Democratization &amp; Authoritarianism</li>\r\n 	<li>Ethnic Relations</li>\r\n 	<li>Gender Studies</li>\r\n 	<li>Humanitarianism</li>\r\n 	<li>Human Rights</li>\r\n 	<li>Migration</li>\r\n 	<li>New Media</li>\r\n 	<li>Regional Arts &amp; Culture</li>\r\n 	<li>Sustainable Development</li>\r\n</ul>\r\nWe are also interested to publish manuscripts in the following formats:\r\n\r\n&nbsp;\r\n\r\n<b>1. Monographs</b>\r\n\r\nWe welcome a wide array of monographs. From academic research monographs to semi-academic and general non-fiction pieces by journalists and civil society activists. We are looking to publish pieces of original research which contribute something important to the scholarship on the region and which also talk to the work of civil society groups, NGOs and activists. We accept monographs of no longer than 40-100,000 words.\r\n\r\n<b>2. Edited Volumes</b>\r\n\r\nWe are interested to receive various proposals for edited volumes with a regional focus. In particular we are interested to publish edited volumes of no more than 12 chapters which bring together a diverse range of voices from around the region and neighbouring regions on topics of contemporary importance to Southeast Asia. We are happy to receive initial proposals for such volumes and work with editors in order to develop their proposal.\r\n\r\n<b>3. Conference Proceedings</b>\r\n\r\nWe are also interested to publish conference proceedings of important regional conferences which highlight cutting edge research and new and emerging perspectives on the region.\r\n\r\n<b>4. Self-Funded Publications</b>\r\n\r\nFinally we are interested in hearing from any individuals or organisations who have research funding or other such funding to contribute towards the cost of publishing research monographs, edited volumes and conference proceedings in keeping with our series specifications. This can be organised either as a self-publishing service, where GerakBudaya and Asia Centre will provide editing, production and distribution services, or as a co-publishing initiative in which the book will be jointly published by both parties.  Costs for book production can range from USD$ 1000–3500 depending on the length and nature of the manuscript and interested persons are encouraged to contact Series Editor James Gomez to find out more.\r\n\r\n&nbsp;\r\n\r\n<b>Series Editor</b>\r\n\r\nGerakBudaya and Asia Centre are proud to announce the appointment of Dr. James Gomez as the series editor of our Southeast Asian Studies series.\r\n\r\nDr. James Gomez is an academic, author and editor with over 20 years of international experience at universities, think-tanks, inter-governmental agencies and non-governmental organisations. He has worked with numerous publishers and serves on international advisory boards, editorial committees and as external resource person to academic departments, schools, faculties and universities.He is presently Professor of Communications and Associate Dean (International Affairs), School of Communication Arts, Bangkok University, Thailand. He is also Executive-Director of Asia Centre.\r\n\r\n&nbsp;\r\n\r\n<b>Submissions Procedure</b>\r\n\r\nIn order to consider your manuscript for publication we ask that you submit the following documents to us:\r\n<ul>\r\n 	<li>1-page summary of the manuscript that outlines the number of pages or words.</li>\r\n 	<li>Contents page</li>\r\n 	<li>Estimated length of manuscript (current). (Estimate based on MS Word, 12 point font, Times New Roman or similar, 1 1/2 space;A4 size paper;inclusive of notes and appendices.)</li>\r\n 	<li>A sample of 20 to 30 pages, or the introduction and one chapter.</li>\r\n 	<li>A short biography of the author.</li>\r\n</ul>\r\nFor edited volumes and conference proceedings we are happy to receive a provisional table of contents and a one page synopsis of the intended volume.\r\n\r\nPlease forward all submissions with a short covering letter to series editor Dr. James Gomez (<a href="mailto:james@asiacentre.co.th">james@asiacentre.co.th</a>). We aim to respond to your submission in 4-6 weeks.\r\n\r\n&nbsp;\r\n\r\n<b>Our Services</b>\r\n\r\nWe will be able to provide full editorial, production and distribution services. We are able to provide professional editors who can assist in developmental editing, copy-editing and proofreading of your manuscript and we will then provide layout design, printing, marketing and distribution services.\r\n\r\nIn addition we can also organise on your behalf co-publication initiatives with other international academic and non-academic presses and manage translation and territorial rights purchases to enable to your research to reach a wider audience.\r\n\r\n&nbsp;\r\n\r\n<strong>About Gerak Budaya</strong>\r\n\r\nGerakBudaya has long been established in Malaysia as a publisher and distributor of titles embodying social awareness, critical perspectives and the hidden histories of Malaysia and the wider region. Under their SIRD imprint, they have established a major non-university publishing house with titles covering a wide range of academic disciplines from history to political science, economics, cultural studies and sociology.\r\n\r\nTo learn more about the Asia Centre - Gerak Budaya partnership, please click<a href="http://asiacentre.co.th/other/asia-centre-regional-representative-for-malaysian-publisher-gerakbudaya/" target="_blank"> here</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Southeast Asian Studies Series – Call for Manuscripts', '', 'inherit', 'closed', 'closed', '', '2778-revision-v1', '', '', '2016-08-04 06:09:47', '2016-08-04 06:09:47', '', 2778, 'http://asiacentre.co.th/other/2778-revision-v1/', 0, 'revision', '', 0),
(2788, 5, '2016-08-05 03:10:42', '0000-00-00 00:00:00', '<div class="page" title="Page 1">\n<div class="section">\n<div class="layoutArea"></div>\n<div class="layoutArea"></div>\n<div class="layoutArea">\n<div class="column">\n\nThis course is designed to introduce students to the media landscape in Asia. In particular students will be acquainted with media practices, developments in law, technology and the critical issues that are shaping media policy. Students will be shown how media policy and practices are affected by socio­economic factors, cultural context, style of governance and technology. As part of the course students will be expected to engage in practical media tasks to develop their professional skills including writing, reporting and disseminating information to media outlets. Students can choose to focus on an Asian sub­region of choice.\n\n&nbsp;\n\n<strong>Course Objectives</strong>\n<ul>\n 	<li>Provide students with an appreciation of the Asian media landscape.</li>\n 	<li>Review laws, governance frameworks, socio­economic and cultural contexts that impact media policy and practices.</li>\n 	<li>Assess the impact of digital media on societies and individual behaviour.</li>\n 	<li>Equip students with skills to execute a communications research project.</li>\n 	<li>Enable student to hone and apply their professional skills through practical assignments.</li>\n</ul>\n&nbsp;\n\n<strong>Learning Outcomes</strong>\n\nAt the end of this course students will be able to:\n<ul>\n 	<li>Be familiar with key developments and issues facing the Asian media landscape.</li>\n 	<li>Understand media policy and practices in their historical, socio­cultural, economic and political contexts.</li>\n 	<li>Understand how digital media impacts the way in which the media in Asia operates.</li>\n 	<li>Acquire practical experience in executing a communications research project.</li>\n 	<li>Improve media related professional skills and competencies.</li>\n</ul>\n</div>\n<div class="column">\n\n<strong>Methods of Delivery</strong>\n\nThe course will be delivered using a mixture of lecture, discussion and opportunities for experiential learning. Case studies will be employed to help students develop a contextual appreciation of the factors that can impact Asian media policy and practices. Most of the instruction and advising will take place on­site at the Asia Centre’s facilities and will be conducted by Centre Associates and Partners who are experts in the field of media and communications. The course will also provide a number of opportunities for students to improve their presentation, research and professional skills through activities like leading in­class discussions and project work. This will be complemented by visits to media NGOs, clubs and press houses, opportunities to interact and network with leading journalists and foreign correspondents, freedom of expression advocates, as well as students and instructors in media and communications programmes in selected Bangkok based universities. Students will also get a taste of the real life press experience by attending and reporting on press conferences and conducting interviews with experts in the field.\n\n</div>\nThis Media &amp; Communications Workshop is part of Asia Centre''s International Education Programme. To learn more about the International Education Programme click <a href="http://asiacentre.co.th/intl-education-programme/" target="_blank">here</a>.\n\n</div>\n</div>\n</div>', 'Media & Communications Workshop', '', 'draft', 'closed', 'closed', '', 'media-communications-workshop', '', '', '2016-08-05 03:10:42', '2016-08-05 03:10:42', '', 0, 'http://asiacentre.co.th/?p=2788', 0, 'post', '', 0),
(2789, 5, '2016-08-05 03:10:25', '2016-08-05 03:10:25', '<div class="page" title="Page 1">\r\n<div class="section">\r\n<div class="layoutArea"></div>\r\n<div class="layoutArea"></div>\r\n<div class="layoutArea">\r\n<div class="column">\r\n\r\nThis course is designed to introduce students to the media landscape in Asia. In particular students will be acquainted with media practices, developments in law, technology and the critical issues that are shaping media policy. Students will be shown how media policy and practices are affected by socio­economic factors, cultural context, style of governance and technology. As part of the course students will be expected to engage in practical media tasks to develop their professional skills including writing, reporting and disseminating information to media outlets. Students can choose to focus on an Asian sub­region of choice.\r\n\r\n&nbsp;\r\n\r\n<strong>Course Objectives</strong>\r\n<ul>\r\n 	<li>Provide students with an appreciation of the Asian media landscape.</li>\r\n 	<li>Review laws, governance frameworks, socio­economic and cultural contexts that impact media policy and practices.</li>\r\n 	<li>Assess the impact of digital media on societies and individual behaviour.</li>\r\n 	<li>Equip students with skills to execute a communications research project.</li>\r\n 	<li>Enable student to hone and apply their professional skills through practical assignments.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning Outcomes</strong>\r\n\r\nAt the end of this course students will be able to:\r\n<ul>\r\n 	<li>Be familiar with key developments and issues facing the Asian media landscape.</li>\r\n 	<li>Understand media policy and practices in their historical, socio­cultural, economic and political contexts.</li>\r\n 	<li>Understand how digital media impacts the way in which the media in Asia operates.</li>\r\n 	<li>Acquire practical experience in executing a communications research project.</li>\r\n 	<li>Improve media related professional skills and competencies.</li>\r\n</ul>\r\n</div>\r\n<div class="column">\r\n\r\n<strong>Methods of Delivery</strong>\r\n\r\nThe course will be delivered using a mixture of lecture, discussion and opportunities for experiential learning. Case studies will be employed to help students develop a contextual appreciation of the factors that can impact Asian media policy and practices. Most of the instruction and advising will take place on­site at the Asia Centre’s facilities and will be conducted by Centre Associates and Partners who are experts in the field of media and communications. The course will also provide a number of opportunities for students to improve their presentation, research and professional skills through activities like leading in­class discussions and project work. This will be complemented by visits to media NGOs, clubs and press houses, opportunities to interact and network with leading journalists and foreign correspondents, freedom of expression advocates, as well as students and instructors in media and communications programmes in selected Bangkok based universities. Students will also get a taste of the real life press experience by attending and reporting on press conferences and conducting interviews with experts in the field.\r\n\r\n</div>\r\nThis Media &amp; Communications Workshop is part of Asia Centre''s International Education Programme. To learn more about the International Education Programme click <a href="http://asiacentre.co.th/intl-education-programme/" target="_blank">here</a>.\r\n\r\n</div>\r\n</div>\r\n</div>', 'Media & Communications Workshop', '', 'inherit', 'closed', 'closed', '', '2788-revision-v1', '', '', '2016-08-05 03:10:25', '2016-08-05 03:10:25', '', 2788, 'http://asiacentre.co.th/other/2788-revision-v1/', 0, 'revision', '', 0),
(2790, 5, '2016-08-05 04:05:11', '2016-08-05 04:05:11', '<div class="column">\r\n\r\n<img class="alignright" src="http://www2.wlv.ac.uk/webteam/email-images/fa/media_pr.jpg" width="335" height="298" />This course is designed to introduce students to the media landscape in Asia.\r\n\r\nIn particular students will be acquainted with media practices, developments in law, technology and the critical issues that are shaping media policy.\r\n\r\nStudents will be shown how media policy and practices are affected by socio­economic factors, cultural context, style of governance and technology.\r\n\r\nAs part of the course students will be expected to engage in practical media tasks to develop their professional skills including writing, reporting and disseminating information to media outlets. Students can choose to focus on an Asian sub­region of choice.\r\n\r\n&nbsp;\r\n\r\n<strong>Course Objectives</strong>\r\n<ul>\r\n 	<li>Provide students with an appreciation of the Asian media landscape.</li>\r\n 	<li>Review laws, governance frameworks, socio­economic and cultural contexts that impact media policy and practices.</li>\r\n 	<li>Assess the impact of digital media on societies and individual behaviour.</li>\r\n 	<li>Equip students with skills to execute a communications research project.</li>\r\n 	<li>Enable student to hone and apply their professional skills through practical assignments.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Learning Outcomes</strong>\r\n\r\nAt the end of this course students will be able to:\r\n<ul>\r\n 	<li>Be familiar with key developments and issues facing the Asian media landscape.</li>\r\n 	<li>Understand media policy and practices in their historical, socio­cultural, economic and political contexts.</li>\r\n 	<li>Understand how digital media impacts the way in which the media in Asia operates.</li>\r\n 	<li>Acquire practical experience in executing a communications research project.</li>\r\n 	<li>Improve media related professional skills and competencies.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Methods of Delivery</strong>\r\n\r\n</div>\r\n<div class="column">\r\n\r\nThe course will be delivered using a mixture of lecture, discussion and opportunities for experiential learning. Case studies will be employed to help students develop a contextual appreciation of the factors that can impact Asian media policy and practices. Most of the instruction and advising will take place on­site at the Asia Centre’s facilities and will be conducted by Centre Associates and Partners who are experts in the field of media and communications. The course will also provide a number of opportunities for students to improve their presentation, research and professional skills through activities like leading in­class discussions and project work. This will be complemented by visits to media NGOs, clubs and press houses, opportunities to interact and network with leading journalists and foreign correspondents, freedom of expression advocates, as well as students and instructors in media and communications programmes in selected Bangkok based universities. Students will also get a taste of the real life press experience by attending and reporting on press conferences and conducting interviews with experts in the field.\r\n\r\n</div>\r\n&nbsp;\r\n\r\n<strong>Modules </strong>\r\n<ul>\r\n 	<li>Introduction to the Asian Medial Landscape.</li>\r\n 	<li>Media Policy in Asia.</li>\r\n 	<li>Digital Medial in Asia.</li>\r\n 	<li>Designing a Communications Research Project.</li>\r\n 	<li>Introduction to Asian Sub-Regions</li>\r\n 	<li>Professional Skills</li>\r\n 	<li>Media &amp; Advocacy</li>\r\n</ul>\r\nThe workshop will also include student directed seminars.\r\n\r\n&nbsp;\r\n\r\n<strong>Course Fees</strong>\r\n\r\nUSD$450\r\n\r\nThe course fee cover i<span style="font-weight: 400;">nstruction &amp; materials, w</span><span style="font-weight: 400;">eekday lunch &amp;  tea-breaks and a w</span><span style="font-weight: 400;">elcome dinner.</span>\r\n\r\n<span style="font-weight: 400;">Students will be expected to bear their owns costs for the following:</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Flight ticket &amp; airport transfer </span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">All local travel for activities and site visits (by public transport)</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Entrance fees for special events</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Dinner on all days (Except for Welcome Dinner on the first night)</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Registration</strong>\r\n\r\nTo register please email us at contact@asiacentre.co.th\r\n\r\nDeadline for registration is 30 August 2016.\r\n\r\n&nbsp;\r\n\r\nThis Media &amp; Communications Workshop is part of Asia Centre''s International Education Programme. To learn more about the International Education Programme click <a href="http://asiacentre.co.th/intl-education-programme/" target="_blank">here</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Media & Communications Workshop', '', 'publish', 'closed', 'closed', '', '2790', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2790', 0, 'event', '', 0),
(2791, 5, '2016-08-05 03:52:38', '2016-08-05 03:52:38', '', 'Screen Shot 2016-08-05 at 10.52.16 AM', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-08-05-at-10-52-16-am', '', '', '2016-08-05 03:52:38', '2016-08-05 03:52:38', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-05-at-10.52.16-AM.png', 0, 'attachment', 'image/png', 0),
(2793, 6, '2016-08-05 05:51:26', '2016-08-05 05:51:26', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n&nbsp;\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-08-05 05:51:26', '2016-08-05 05:51:26', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2794, 6, '2016-08-10 02:29:37', '2016-08-10 02:29:37', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-08-10 02:29:37', '2016-08-10 02:29:37', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2795, 6, '2016-08-10 02:39:36', '2016-08-10 02:39:36', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-08-10 02:39:36', '2016-08-10 02:39:36', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2797, 6, '2016-08-10 02:58:01', '2016-08-10 02:58:01', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone wp-image-2796" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Asia-Centre-Map.jpg" alt="Asia Centre Map" width="610" height="556" />\r\n\r\n&nbsp;\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-08-10 02:58:01', '2016-08-10 02:58:01', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2798, 6, '2016-08-10 03:01:24', '2016-08-10 03:01:24', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone wp-image-2796" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Asia-Centre-Map.jpg" alt="Asia Centre Map" width="642" height="586" />\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-08-10 03:01:24', '2016-08-10 03:01:24', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(2800, 6, '2016-12-22 10:56:55', '2016-12-22 10:56:55', '<h6 class="title-median">Asia Centre (Bangkok):</h6>\n<p class="p1"><span class="s1">128/183 Phayathai Plaza Building (17th Floor),</span><span class="s1">\nPhayathai Road,\nThung-Phayathai,\nRachatewi,\nBangkok 10400 </span>Thailand</p>\n\n<div><strong>เอเชีย เซ็นเตอร์ (กรุงเทพ):</strong></div>\n<div>128/183 อาคารพญาไท พลาซ่า, ชั้น 17,</div>\n<div>ถนนพญาไท, ทุ่งพญาไท, ราชเทวี,</div>\n<div>กรุงเทพ, 10400 ประเทศไทย</div>\n&nbsp;\n\n<strong>Tel:</strong> (66) 02-1293773\n\n<strong>Fax:</strong> (66) 02-1293774\n<strong>\nEmail:</strong> <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\n\n<strong>Social:</strong> <a href="https://www.facebook.com/asiacentre.co.th" target="_blank">Facebook</a>\n\n<strong>How to get here:</strong> <a href="http://asiacentre.co.th/contact-us/location/">See Location Details</a>\n<h6 class="title-median"></h6>\n&nbsp;', 'Contact Details', '', 'inherit', 'closed', 'closed', '', '328-autosave-v1', '', '', '2016-12-22 10:56:55', '2016-12-22 10:56:55', '', 328, 'http://asiacentre.co.th/other/328-autosave-v1/', 0, 'revision', '', 0),
(2803, 6, '2016-08-10 10:05:41', '2016-08-10 10:05:41', '', 'Asia Centre Cover Photo-1', '', 'inherit', 'closed', 'closed', '', 'asia-centre-cover-photo-1', '', '', '2016-10-10 07:45:41', '2016-10-10 07:45:41', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Asia-Centre-Cover-Photo-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2808, 6, '2016-08-10 10:23:17', '2016-08-10 10:23:17', '', 'Asiacentre Cover photo', '', 'inherit', 'closed', 'closed', '', 'asiacentre-cover-photo', '', '', '2016-08-10 10:23:17', '2016-08-10 10:23:17', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Asiacentre-Cover-photo.jpg', 0, 'attachment', 'image/jpeg', 0),
(2810, 6, '2016-08-10 10:32:30', '2016-08-10 10:32:30', '', 'Brixit', '', 'inherit', 'closed', 'closed', '', 'brixit', '', '', '2016-08-10 10:32:30', '2016-08-10 10:32:30', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Brixit.jpg', 0, 'attachment', 'image/jpeg', 0),
(2815, 6, '2016-08-10 11:19:09', '2016-08-10 11:19:09', '', '1st Anniversary', '', 'inherit', 'closed', 'closed', '', '1st-anniversary', '', '', '2016-08-10 11:19:09', '2016-08-10 11:19:09', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/1st-Anniversary.jpg', 0, 'attachment', 'image/jpeg', 0),
(2817, 6, '2016-08-10 11:37:46', '2016-08-10 11:37:46', '', '1st Anniversary-2', '', 'inherit', 'closed', 'closed', '', '1st-anniversary-2', '', '', '2016-08-10 11:37:46', '2016-08-10 11:37:46', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/1st-Anniversary-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2818, 6, '2016-08-10 11:40:18', '2016-08-10 11:40:18', '', '1st Anniversary-3', '', 'inherit', 'closed', 'closed', '', '1st-anniversary-3', '', '', '2016-08-10 11:40:18', '2016-08-10 11:40:18', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/1st-Anniversary-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(2819, 6, '2016-08-10 11:54:31', '2016-08-10 11:54:31', '', 'UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614', '', 'inherit', 'closed', 'closed', '', 'upr-in-southeast-asia-conference-call-final-deadline-1140x1614', '', '', '2016-08-10 11:54:31', '2016-08-10 11:54:31', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614.jpg', 0, 'attachment', 'image/jpeg', 0),
(2820, 6, '2016-08-10 12:14:35', '2016-08-10 12:14:35', '', 'Media Communications workshop', '??????????', 'inherit', 'closed', 'closed', '', 'media-communications-workshop-2', '', '', '2016-08-10 12:14:35', '2016-08-10 12:14:35', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Media-Communications-workshop.jpeg', 0, 'attachment', 'image/jpeg', 0),
(2822, 6, '2016-09-30 08:44:19', '2016-09-30 08:44:19', '<b>Open Call – Conference &amp; Workshop</b>\r\n<p class="c4"><span class="c0">Increasingly universities and institutions around the world are recognising the value of<img class="alignright wp-image-2610" src="http://asiacentre.co.th/wp-content/uploads/2016/04/OAUB-2010.jpg" alt="OAUB 2010" width="366" height="238" /> a holistic arts education that integrates a dynamic process of social engagement, public participation with others and the community. In Asia this movement of socially engaged, public participative and community art is gaining traction, albeit with different agendas at play with some universities initiating courses, the Art &amp; Society Research Centre in Tokyo (</span><span class="c19 c12"><a class="c5" href="https://www.google.com/url?q=http://searesearchlab.org/&amp;sa=D&amp;ust=1473050593568000&amp;usg=AFQjCNFOOHHCDB_ExaKw55C-eT1D0zslmg">http://searesearchlab.org/</a></span><span class="c0">) initiating a lab on Socially Engaged/Community Art, and the National Arts Council of Singapore creating a department for Community and the Arts. We are also seeing more cross-disciplinary research and collaboration between artists, health workers, theatre groups, NGOs and the academia on art and cultural projects.</span></p>\r\n<p class="c4"><span class="c0">Enhanced engagement and cross-sectoral collaborations are designed to stir civic consciousness and foster open social structures (even as possible instrumentalisation of art and domesticating activities take place) through public participation and engagement. Key to the effective achievement of such aims is the sharing of knowledge and experiences and the building of networks, and of a knowledge and experience archive or memory pool to continually build onto and draw learning from. This conference aims to convene these knowledge by bringing together practitioners from across ASEAN to share their experiences of cross sectoral collaboration and of using participative art as open and reciprocal processes for community engagement. This pooling of knowledge can foster the development of regional frameworks for community engagement that will be beneficial to arts and community knowledge creation, and to cross sector collaboration between the arts and other sectors such as health, education and advocacy in the region. Another important aspect of such activities would be on the issue of sustainability to be explored under the rubric of social entrepreneurship.</span></p>\r\n<p class="c4"><strong><span class="c0 c9">Objective</span></strong></p>\r\n<p class="c4"><span class="c0">ASEAN level regional conference to share dynamic knowledge and build a comprehensive learning base on cross sector research and collaboration using art as open and reciprocal processes for social and community engagement.</span></p>\r\n<p class="c4"><span class="c12 c21">This event and activities will inform a forthcoming publication in 2017.</span></p>\r\n<p class="c4"><strong><span class="c0 c9">Outcomes</span></strong></p>\r\n\r\n<ol class="c14 lst-kix_cwlakjkge8vw-0 start" start="1">\r\n 	<li class="c1"><span class="c0">Participants will improve their capability to articulate, negotiate and critique </span>frameworks and processes for public engaging activities and policies.</li>\r\n 	<li class="c1"><span class="c0">Participants will acquire additional knowledge and competence to engage </span>across cultures, disciplines and sectors, including acceptance of knowledge from the vernacular and the everyday.</li>\r\n 	<li class="c1"><span class="c0">Networks for sustainable collaborations will be constructed and strengthened </span>through sharing ownership of knowledge and experience.</li>\r\n 	<li class="c1"><span class="c0">Social enterprises knowledge and fund-raising initiatives can be examined and explore to realise regional collaborations.</span></li>\r\n 	<li class="c1"><span class="c0">ASEAN level research capability can be expanded to develop cross-sectors projects and know-how in the professional fields of social cross sector enterprises, such as in Arts &amp; Health, Arts in Prison, Arts in Education, etc.</span></li>\r\n</ol>\r\n<p class="c4"><span class="c0"> </span></p>\r\n<p class="c4"><strong><span class="c0 c9">Participation</span></strong></p>\r\n<p class="c4"><span class="c0">This conference aims to facilitate cross sector collaboration and thus is open to participants from various fields including arts, social enterprises and cultural groups, NGOs, theatre groups, students and artists. Speakers will present their particular experiences in engaging the public, in building a constructive praxis and cross sector collaboration using art in their home country. They will share the frameworks and methodologies used as well as the challenges they have faced in executing their respective projects.</span></p>\r\n<p class="c4"><strong>\r\nParticipation size: </strong>40 pax</p>\r\n<strong>Available places: </strong>20 pax, limited scholarships are available for participants from Southeast Asia, please apply by 15 September 2016.\r\n\r\n&nbsp;\r\n\r\n----------------------------<strong>UPDATES</strong>--------------------------\r\n\r\nHere is the latest information on:\r\n\r\n<a href="https://www.facebook.com/permalink.php?story_fbid=171812916596976&amp;id=100013048050810" target="_blank">List of Participants</a>\r\n\r\n<a href="https://www.facebook.com/permalink.php?story_fbid=171812359930365&amp;id=100013048050810" target="_blank">Abstracts &amp; Bios</a>\r\n\r\n<a href="https://www.facebook.com/permalink.php?story_fbid=171812499930351&amp;id=100013048050810" target="_blank">Panel Presentations &amp; Programme</a>\r\n\r\n----------------------------------------------------------------------------\r\n\r\n<strong>Conference fees</strong>\r\n\r\n<em><strong>For Participants</strong></em>\r\n\r\nEarly bird – 100 USD till 15 July       Normal – 150 USD\r\n<p class="wsite-content-title"><em><strong>For Discussants </strong>  </em></p>\r\n<p class="wsite-content-title">You can also attend the conference as a discussant to listen to the research being presented, participate in the discussions and engage with the participants/presenters. There is a conference package of USD$150 which will give you access to all four days of the conference. We are also offering a daily rate of USD$40 for those you would like to attend individual days.</p>\r\n<p class="wsite-content-title">Conference fees can be payed in two ways:</p>\r\n\r\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<input name="hosted_button_id" type="hidden" value="HRU9HKUVPPJLA" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="Conference Fee (For Participants)" /><span style="color: #0000ff;"><strong>Conference Fee (For Participants)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Early Bird">Early Bird $100.00 USD</option>\r\n<option value="Regular">Regular $150.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input name="currency_code" type="hidden" value="USD" /><input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n<img src="https://www.paypalobjects.com/th_TH/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />\r\n\r\n</form><form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<input name="hosted_button_id" type="hidden" value="H2KTCQYMYH4BC" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="Conference Fee (For Discussants)" /><span style="color: #0000ff;"><strong>Conference Fee (For Discussants)</strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="Daily Rate">Daily Rate $40.00 USD</option>\r\n<option value="Conference Package">Conference Package $150.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n<img src="https://www.paypalobjects.com/th_TH/i/scr/pixel.gif" alt="" width="1" height="1" border="0" />\r\n\r\n</form><img class=" wp-image-2651 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/06/performance_payments.png" alt="performance_payments" width="197" height="68" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n*Please be aware that the conference fee is non-refundable.\r\n**All costs regarding the transfer of the conference fee (Transfer fees) are to be covered by the applicant.\r\n\r\n&nbsp;\r\n\r\n<strong>How to respond to this Open Call:</strong>\r\n\r\nParticipants who wish to attend should send a short biography of not over 350 words on registration or as early as possible to ifima7[at] gmail.com and choose one of the following roles of participation.\r\n<ul>\r\n 	<li>As Discussant – “To live means to participate in dialogue: to ask questions…”.</li>\r\n 	<li>As Presenter – Please provide a text and context of your presentation, with a description of processes and methodology, not exceeding 900 words. During the conference, your presentation will be limited to 15 mins. You should include discussion of a case study or project, focusing on context, intention, processes or methodology and the learning achieved.</li>\r\n 	<li>As Respondent - You will be consulted and be assigned to a panel. During the conference, you will respond to one or more of the presentations.</li>\r\n</ul>\r\n&nbsp;\r\n\r\n<strong>Convenor:</strong> Dr Jay Koh, artist-curator &amp; researcher, director of iFIMA (international Forum for InterMedia Art, author of <a href="http://www.ifima.net/ALPPpreviewsm.pdf" target="_blank">Art-Led Participative Processes</a>.\r\n\r\n<strong>Regional partner:</strong> <a href="http://www.brack.sg/" target="_blank">BRACK, Singapore</a>\r\n\r\n<strong>Venue:</strong> <a href="http://asiacentre.co.th" target="_blank">Asia Centre, Bangkok</a>\r\n\r\n&nbsp;\r\n\r\nNote: The convenor and organisers reserve the right to decide on the final selection and designation of participants.', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '2609-autosave-v1', '', '', '2016-09-30 08:44:19', '2016-09-30 08:44:19', '', 2609, 'http://asiacentre.co.th/other/2609-autosave-v1/', 0, 'revision', '', 0),
(2824, 5, '2016-08-25 07:05:46', '2016-08-25 07:05:46', '', 'Draft Programme', '', 'inherit', 'closed', 'closed', '', 'draft-programme', '', '', '2016-08-25 07:05:46', '2016-08-25 07:05:46', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme.jpg', 0, 'attachment', 'image/jpeg', 0),
(2825, 5, '2016-08-25 07:05:48', '2016-08-25 07:05:48', '', 'Draft Programme Day 2', '', 'inherit', 'closed', 'closed', '', 'draft-programme-day-2', '', '', '2016-08-25 07:05:48', '2016-08-25 07:05:48', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-Day-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(2826, 5, '2016-08-25 07:05:50', '2016-08-25 07:05:50', '', 'Draft Programme Day 3', '', 'inherit', 'closed', 'closed', '', 'draft-programme-day-3', '', '', '2016-08-25 07:05:50', '2016-08-25 07:05:50', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Draft-Programme-Day-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(2828, 5, '2016-08-25 09:20:30', '2016-08-25 09:20:30', '<img class=" wp-image-2832 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.26.28.png" alt="Screen Shot 2016-08-25 at 16.26.28" width="342" height="228" /><span style="font-weight: 400;">The Universal Periodic Review (UPR) is a mechanism under the Human Rights Council that reviews the human rights situation in all 193 UN Member States once every four and a half years. All ASEAN states have undergone two review cycles of their respective human rights situations under the process. But how effective has the process been in improving the regional human rights situation.</span>\r\n\r\n&nbsp;\r\n\r\nThis panel discussion will focus on the effectiveness of the UPR in strengthening human rights in the region. It will delve into how effective the UPR has been in unearthing and highlighting key human rights issues, how we can improve process of implementing UPR recommendations and follow up processes to ensure key issues remain on the agenda in the 3rd cycle. It will consider the role that civil society organisations, national human rights institutions and the ASEAN human rights mechanisms play in monitoring implementation, highlighting issues  and pushing for change.\r\n\r\n&nbsp;\r\n\r\nThis panel discussion comes at the end of Asia Centre’s two day conference; Universal Periodic Review: An Evidence-Based Regional Assessment. Academics, researchers and students who are researching human rights in the region are encouraged to attend. For more information on the conference please click <a href="http://asiacentre.co.th/event/universal-periodic-review-in-southeast-asia/" target="_blank">here</a>.\r\n\r\n&nbsp;\r\n\r\nTickets: 200Baht<span style="font-weight: 400;">\r\n<img class="size-full wp-image-2831 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.16.40.png" alt="Screen Shot 2016-08-25 at 16.16.40" width="580" height="228" /><span style="font-weight: 400;">Do email proof of payment (receipt of transfer) along with the names and email addresses of all attendees to </span><span style="font-weight: 400;"><a href="mailto:contact@asiacentre.co.th">contact@asiacentre.co.th</a>. </span></span><span style="font-weight: 400;">Please note tickets are not refundable. We will send you an email confirmation with your ticket once we receive proof of payment.</span>\r\n\r\n<span style="font-weight: 400;">If you have any queries give us a call at 02 129 3773 or email us at </span><a href="mailto:contact@asiacentre.co.th"><span style="font-weight: 400;">contact@asiacentre.co.th</span></a>', 'Southeast Asia & The UPR: All Talk & No Action?', '', 'publish', 'closed', 'closed', '', 'southeast-asia-the-upr-all-talk-no-action', '', '', '2016-12-22 06:47:35', '2016-12-22 06:47:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2828', 0, 'event', '', 0),
(2829, 5, '2016-08-25 09:09:38', '2016-08-25 09:09:38', '', 'Talking', '', 'inherit', 'closed', 'closed', '', 'talking', '', '', '2016-08-25 09:09:38', '2016-08-25 09:09:38', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Talking.jpg', 0, 'attachment', 'image/jpeg', 0),
(2831, 5, '2016-08-25 09:17:11', '2016-08-25 09:17:11', '', 'Screen Shot 2016-08-25 at 16.16.40', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-08-25-at-16-16-40', '', '', '2016-08-25 09:17:11', '2016-08-25 09:17:11', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.16.40.png', 0, 'attachment', 'image/png', 0),
(2832, 5, '2016-08-25 09:32:14', '2016-08-25 09:32:14', '', 'Screen Shot 2016-08-25 at 16.26.28', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-08-25-at-16-26-28', '', '', '2016-08-25 09:32:14', '2016-08-25 09:32:14', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.26.28.png', 0, 'attachment', 'image/png', 0),
(2833, 5, '2016-08-25 09:32:33', '2016-08-25 09:32:33', '<img class=" wp-image-2832 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.26.28.png" alt="Screen Shot 2016-08-25 at 16.26.28" width="342" height="228" /><span style="font-weight: 400;">The Universal Periodic Review (UPR) is a mechanism under the Human Rights Council that reviews the human rights situation in all 193 UN Member States once every four and a half years. All ASEAN states have undergone two review cycles of their respective human rights situations under the process. But how effective has the process been in improving the regional human rights situation.</span>\r\n\r\n&nbsp;\r\n\r\nThis panel discussion will focus on the effectiveness of the UPR in strengthening human rights in the region. It will delve into how effective the UPR has been in unearthing and highlighting key human rights issues, how we can improve process of implementing UPR recommendations and follow up processes to ensure key issues remain on the agenda in the 3rd cycle. It will consider the role that civil society organisations, national human rights institutions and the ASEAN human rights mechanisms play in monitoring implementation, highlighting issues  and pushing for change.\r\n\r\n&nbsp;\r\n\r\nThis panel discussion comes at the end of Asia Centre’s two day conference; Universal Periodic Review: An Evidence-Based Regional Assessment. Academics, researchers and students who are researching human rights in the region are encouraged to attend. For more information on the conference please click <a href="http://asiacentre.co.th/event/universal-periodic-review-in-southeast-asia/" target="_blank">here</a>.\r\n\r\n&nbsp;\r\n\r\nTickets: 200Baht<span style="font-weight: 400;">\r\n<img class="size-full wp-image-2831 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/08/Screen-Shot-2016-08-25-at-16.16.40.png" alt="Screen Shot 2016-08-25 at 16.16.40" width="580" height="228" /><span style="font-weight: 400;">Do email proof of payment (receipt of transfer) along with the names and email addresses of all attendees to </span><span style="font-weight: 400;"><a href="mailto:contact@asiacentre.co.th">contact@asiacentre.co.th</a>. </span></span><span style="font-weight: 400;">Please note tickets are not refundable. We will send you an email confirmation with your ticket once we receive proof of payment.</span>\r\n\r\n<span style="font-weight: 400;">If you have any queries give us a call at 02 129 3773 or email us at </span><a href="mailto:contact@asiacentre.co.th"><span style="font-weight: 400;">contact@asiacentre.co.th</span></a>', 'Southeast Asia & The UPR: All Talk & No Action?', '', 'inherit', 'closed', 'closed', '', '2828-autosave-v1', '', '', '2016-08-25 09:32:33', '2016-08-25 09:32:33', '', 2828, 'http://asiacentre.co.th/other/2828-autosave-v1/', 0, 'revision', '', 0),
(2834, 6, '2016-08-26 04:17:00', '2016-08-26 04:17:00', '', 'UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722', '', 'inherit', 'closed', 'closed', '', 'upr-in-southeast-asia-conference-call-final-deadline-1140x1614-e1470830119722', '', '', '2016-08-26 04:17:00', '2016-08-26 04:17:00', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/UPR-in-Southeast-Asia-Conference-Call-Final-Deadline-1140x1614-e1470830119722-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2836, 6, '2016-08-26 04:19:54', '2016-08-26 04:19:54', '', 'Brixit', '', 'inherit', 'closed', 'closed', '', 'brixit-2', '', '', '2016-08-26 04:19:54', '2016-08-26 04:19:54', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/Brixit-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2840, 6, '2016-08-26 04:25:42', '2016-08-26 04:25:42', '', 'OAUB-2010', '', 'inherit', 'closed', 'closed', '', 'oaub-2010-2', '', '', '2016-10-10 07:41:32', '2016-10-10 07:41:32', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/08/OAUB-2010.jpg', 0, 'attachment', 'image/jpeg', 0),
(2842, 5, '2016-08-26 04:42:09', '2016-08-26 04:42:09', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a> The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n 	<li>Official letter of university enrolment</li>\r\n 	<li>Copy of passport</li>\r\n 	<li>CV</li>\r\n 	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-08-26 04:42:09', '2016-08-26 04:42:09', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2844, 5, '2016-09-05 10:39:48', '2016-09-05 10:39:48', '<strong>Silvia Waldbach</strong>\r\n\r\n<img class="size-full wp-image-2845 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-09-05-at-17.28.20.png" alt="Screen Shot 2016-09-05 at 17.28.20" width="190" height="271" />Silvia Waldbach is doing a research internship at Asia Centre from September to December 2016. The focus of her research is on national human rights institutions in Southeast Asia and their engagement with the Universal Periodic Review process. She is in the last year of a bachelors degree in International Cultural and Business Studies with focus on Southeast Asia, at the University of Passau, Germany.\r\n\r\nShe decided to do an internship at Asia Centre because she wants to deepen her knowledge of contemporary Southeast Asian issues and improve her research, writing and organizing skills. She also enjoys working in an international work environment with various kinds of stakeholders from international and local civil society, to academia and the private sector. In her free time, Silvia likes spending time in nature, going to concerts, travelling and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-autosave-v1', '', '', '2016-09-05 10:39:48', '2016-09-05 10:39:48', '', 2686, 'http://asiacentre.co.th/other/2686-autosave-v1/', 0, 'revision', '', 0),
(2845, 5, '2016-09-05 10:28:27', '2016-09-05 10:28:27', '', 'Screen Shot 2016-09-05 at 17.28.20', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-09-05-at-17-28-20', '', '', '2016-11-29 04:01:27', '2016-11-29 04:01:27', '', 2686, 'http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-09-05-at-17.28.20.png', 0, 'attachment', 'image/png', 0),
(2846, 5, '2016-09-05 10:30:36', '2016-09-05 10:30:36', '<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;\r\n\r\n<strong>Silvia Waldbach</strong>\r\n\r\n<span style="font-weight: 400;"><img class="size-full wp-image-2845 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-09-05-at-17.28.20.png" alt="Screen Shot 2016-09-05 at 17.28.20" width="190" height="271" />Silvia Waldbach is doing a research internship at Asia Centre from September to December 2016. The focus of her research is on national human rights institutions in Southeast Asia and their engagement with the Universal Periodic Review process. </span><span style="font-weight: 400;">She is in the last year of a bachelors degree in International Cultural and Business Studies with focus on Southeast Asia, at the University of Passau, Germany.</span>\r\n\r\n<span style="font-weight: 400;">She decided to do an internship at Asia Centre because she wants to deepen her knowledge of contemporary Southeast Asian issues and improve her research, writing and organizing skills. She also enjoys working in an international work environment with various kinds of stakeholders from international and local civil society, to academia and the private sector. In her free time, Silvia likes spending time in nature, going to concerts, travelling and cooking.</span>\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-09-05 10:30:36', '2016-09-05 10:30:36', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2847, 5, '2016-09-05 10:39:57', '2016-09-05 10:39:57', '<strong>Silvia Waldbach</strong>\r\n\r\n<img class="size-full wp-image-2845 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-09-05-at-17.28.20.png" alt="Screen Shot 2016-09-05 at 17.28.20" width="190" height="271" />Silvia Waldbach is doing a research internship at Asia Centre from September to December 2016. The focus of her research is on national human rights institutions in Southeast Asia and their engagement with the Universal Periodic Review process. She is in the last year of a bachelors degree in International Cultural and Business Studies with focus on Southeast Asia, at the University of Passau, Germany.\r\n\r\nShe decided to do an internship at Asia Centre because she wants to deepen her knowledge of contemporary Southeast Asian issues and improve her research, writing and organizing skills. She also enjoys working in an international work environment with various kinds of stakeholders from international and local civil society, to academia and the private sector. In her free time, Silvia likes spending time in nature, going to concerts, travelling and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-09-05 10:39:57', '2016-09-05 10:39:57', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2848, 5, '2016-09-05 10:49:18', '2016-09-05 10:49:18', '<strong>Silvia Waldbach</strong>\r\n\r\n<img class="size-full wp-image-2845 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Screen-Shot-2016-09-05-at-17.28.20.png" alt="Screen Shot 2016-09-05 at 17.28.20" width="190" height="271" />Silvia Waldbach is doing a research internship at Asia Centre from September to December 2016. The focus of her research is on national human rights institutions in Southeast Asia and their engagement with the Universal Periodic Review process. She is in the last year of a bachelors degree in International Cultural and Business Studies, with focus on Southeast Asia, at the University of Passau, Germany.\r\n\r\nShe decided to do an internship at Asia Centre because she wants to deepen her knowledge of contemporary Southeast Asian issues and improve her research, writing and organizing skills. She also enjoys working in an international work environment with various kinds of stakeholders from international and local civil society, to academia and the private sector. In her free time, Silvia likes spending time in nature, going to concerts, travelling and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Anna Jeffries</strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2<img class="alignright wp-image-2701" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Bio-Picture-1-1140x641.jpg" alt="Bio Picture" width="298" height="168" />016 for a research internship\r\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-09-05 10:49:18', '2016-09-05 10:49:18', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(2850, 6, '2016-09-06 03:14:46', '2016-09-06 03:14:46', '', 'Internship', '', 'inherit', 'closed', 'closed', '', 'internship-2', '', '', '2016-09-06 03:14:46', '2016-09-06 03:14:46', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/09/Internship.jpg', 0, 'attachment', 'image/jpeg', 0),
(2854, 6, '2016-09-16 07:05:58', '2016-09-16 07:05:58', '', 'Internship-1', '', 'inherit', 'closed', 'closed', '', 'internship-1', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 2032, 'http://asiacentre.co.th/wp-content/uploads/2016/09/Internship-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(2855, 6, '2016-09-16 07:19:03', '2016-09-16 07:19:03', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/file/d/0B8CIMc6y7oxkR3FJQ3diOXZQRlU/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-09-16 07:19:03', '2016-09-16 07:19:03', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2856, 6, '2016-09-16 07:20:30', '2016-09-16 07:20:30', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/file/d/0B8CIMc6y7oxkR3FJQ3diOXZQRlU/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-09-16 07:20:30', '2016-09-16 07:20:30', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(2859, 5, '2016-09-20 03:08:38', '2016-09-20 03:08:38', '<p style="text-align: justify;">On the eve of the 2016 US elections, will it be “change maker” Hillary Clinton or “believe me” Donald Trump?Will Hillary bring real change at last to the lives of working class Americans? Or will billionaire Trump “fix” a “rigged” political system and all the ills afflicting the USA? Has the “Bern” factor moved the Democratic Party too far to the left? Having captured the reigns of an establishment party and its core voters does outsider, property mogul Donald Trump’s nomination spell the end of the Republican Party, as Trump assaults its traditional values? How will either candidate engage with Asia and the rest of the world?</p>\r\n<p style="text-align: justify;"><img class="wp-image-2860 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/09/Screen-Shot-2016-09-20-at-09.51.34.png" alt="Screen Shot 2016-09-20 at 09.51.34" width="379" height="250" /></p>\r\n<p style="text-align: justify;">This roundtable, featuring expert commentators, will examine these questions and more through short presentations and engagement with the audience.</p>\r\n<p style="text-align: justify;">Come armed with your questions, thoughts and arguments.  Join us for what will no doubt be an interesting and lively evening of discussions and networking!</p>\r\n<p style="text-align: justify;"><b>Panellists</b>:</p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li>Margaret MacMillion, Former Ambassador of the United States to Rwanda</li>\r\n 	<li>Kevin Downey, Thammasat University</li>\r\n 	<li>Jerimiah Morris, Mahidol University International College</li>\r\n 	<li>Pablo Ramirez, Bangkok University</li>\r\n 	<li>Mike Raomanachai, AAJA</li>\r\n</ul>\r\n<p style="text-align: justify;">Moderator: Robin Ramcharan, Asia Centre.</p>\r\n<p style="text-align: justify;">This event is organised in partnership with <a href="http://aaja.org/chapters/asia/" target="_blank">Asian American Journalists Association (AAJA)</a>.</p>\r\n\r\n<div class="text_exposed_root text_exposed" style="text-align: justify;"><em><img class=" wp-image-2862 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/AAJA_Asia_Logo-1140x769.png" alt="AAJA_Asia_Logo" width="203" height="137" /></em><strong><a href="http://aaja.org/chapters/asia" target="_blank">Asian American Journalists Association (AAJA)</a></strong></div>\r\n<div class="text_exposed_root text_exposed">\r\n<div style="text-align: justify;"><em><span style="font-family: arial, helvetica, sans-serif;">AAJA is a U.S.-based nonprofit organization that serves Asian American and Pacific Islander journalists. Our goals include making newsrooms more ethnically and racially diverse and ensuring fair and accurate coverage of the Asian community.\r\n</span></em></div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;"><em>Today, the Asia chapter has about 200 members across the region. They work for a range of media, from The Associated Press, Thomson Reuters and Dow Jones to CNN, ABC, VOA and CCTV. They are a networking group for AAJA members in Asia and the Pacific and a bridge for AAJA members from the US and across the globe who come to the region or want to work here. They hold talks, workshops and socials in various cities throughout the year and offer advice and support to fellow AAJA members with an interest in Asia.</em></div>\r\n</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">\r\n<div class="text_exposed_root text_exposed"><span class="text_exposed_show">If you have any queries give us a call at 02 129 3773 or email us at contact@asiacentre.co.th\r\n</span></div>\r\n<div class="text_exposed_root text_exposed"></div>\r\n</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">\r\n\r\n<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="172" height="127" /><strong>This event is supported by the Heinrich Böll Stiftung, Southeast Asia.</strong>\r\n\r\n</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;"></div>\r\n<div class="text_exposed_root text_exposed"></div>', 'The 2016 US Elections: Change at Last?', '', 'publish', 'closed', 'closed', '', 'the-2016-us-elections-change-at-last', '', '', '2016-12-22 06:48:35', '2016-12-22 06:48:35', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=2859', 0, 'event', '', 0),
(2860, 5, '2016-09-20 03:07:00', '2016-09-20 03:07:00', '', 'Screen Shot 2016-09-20 at 09.51.34', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-09-20-at-09-51-34', '', '', '2016-09-20 03:07:00', '2016-09-20 03:07:00', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/09/Screen-Shot-2016-09-20-at-09.51.34.png', 0, 'attachment', 'image/png', 0),
(2861, 5, '2016-10-18 04:56:52', '2016-10-18 04:56:52', '<p style="text-align: justify;">On the eve of the 2016 US elections, will it be “change maker” Hillary Clinton or “believe me” Donald Trump?Will Hillary bring real change at last to the lives of working class Americans? Or will billionaire Trump “fix” a “rigged” political system and all the ills afflicting the USA? Has the “Bern” factor moved the Democratic Party too far to the left? Having captured the reigns of an establishment party and its core voters does outsider, property mogul Donald Trump’s nomination spell the end of the Republican Party, as Trump assaults its traditional values? How will either candidate engage with Asia and the rest of the world?</p>\r\n<p style="text-align: justify;"><img class="wp-image-2860 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/09/Screen-Shot-2016-09-20-at-09.51.34.png" alt="Screen Shot 2016-09-20 at 09.51.34" width="379" height="250" /></p>\r\n<p style="text-align: justify;">This roundtable, featuring expert commentators, will examine these questions and more through short presentations and engagement with the audience.</p>\r\n<p style="text-align: justify;">Come armed with your questions, thoughts and arguments.  Join us for what will no doubt be an interesting and lively evening of discussions and networking!</p>\r\n<p style="text-align: justify;"><b>Panellists</b>:</p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li>Margaret MacMillion, Former Ambassador of the United States to Rwanda</li>\r\n 	<li>Kevin Downey, Thammasat University</li>\r\n 	<li>Jerimiah Morris, Mahidol University International College</li>\r\n 	<li>Pablo Ramirez, Bangkok University</li>\r\n 	<li>Mike Raomanachai, AAJA</li>\r\n</ul>\r\n<p style="text-align: justify;">Moderator: Robin Ramcharan, Asia Centre.</p>\r\n<p style="text-align: justify;">This event is organised in partnership with <a href="http://aaja.org/chapters/asia/" target="_blank">Asian American Journalists Association (AAJA)</a>.</p>\r\n\r\n<div class="text_exposed_root text_exposed" style="text-align: justify;"><em><img class=" wp-image-2862 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/AAJA_Asia_Logo-1140x769.png" alt="AAJA_Asia_Logo" width="203" height="137" /></em><strong><a href="http://aaja.org/chapters/asia" target="_blank">Asian American Journalists Association (AAJA)</a></strong></div>\r\n<div class="text_exposed_root text_exposed">\r\n<div style="text-align: justify;"><em><span style="font-family: arial, helvetica, sans-serif;">AAJA is a U.S.-based nonprofit organization that serves Asian American and Pacific Islander journalists. Our goals include making newsrooms more ethnically and racially diverse and ensuring fair and accurate coverage of the Asian community.\r\n</span></em></div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;"><em>Today, the Asia chapter has about 200 members across the region. They work for a range of media, from The Associated Press, Thomson Reuters and Dow Jones to CNN, ABC, VOA and CCTV. They are a networking group for AAJA members in Asia and the Pacific and a bridge for AAJA members from the US and across the globe who come to the region or want to work here. They hold talks, workshops and socials in various cities throughout the year and offer advice and support to fellow AAJA members with an interest in Asia.</em></div>\r\n</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">\r\n<div class="text_exposed_root text_exposed"><span class="text_exposed_show">If you have any queries give us a call at 02 129 3773 or email us at contact@asiacentre.co.th\r\n</span></div>\r\n<div class="text_exposed_root text_exposed"></div>\r\n</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">\r\n\r\n<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="172" height="127" /><strong>This event is supported by the Heinrich Böll Stiftung, Southeast Asia.</strong>\r\n\r\n</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;"></div>\r\n<div class="text_exposed_root text_exposed"></div>', 'The 2016 US Elections: Change at Last?', '', 'inherit', 'closed', 'closed', '', '2859-autosave-v1', '', '', '2016-10-18 04:56:52', '2016-10-18 04:56:52', '', 2859, 'http://asiacentre.co.th/other/2859-autosave-v1/', 0, 'revision', '', 0),
(2862, 5, '2016-09-22 09:19:02', '2016-09-22 09:19:02', '', 'AAJA_Asia_Logo', '', 'inherit', 'closed', 'closed', '', 'aaja_asia_logo', '', '', '2016-09-22 09:19:02', '2016-09-22 09:19:02', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/09/AAJA_Asia_Logo.png', 0, 'attachment', 'image/png', 0),
(2863, 5, '2016-09-22 09:19:31', '2016-09-22 09:19:31', '', 'Asia-Centre-Logo-Flat-Color-GA (3) (1)', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo-flat-color-ga-3-1', '', '', '2017-01-11 16:43:33', '2017-01-11 09:43:33', '', 3476, 'http://asiacentre.co.th/wp-content/uploads/2016/09/Asia-Centre-Logo-Flat-Color-GA-3-1.png', 0, 'attachment', 'image/png', 0),
(2864, 5, '2016-09-26 04:24:50', '2016-09-26 04:24:50', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                    </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                                  </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'publish', 'closed', 'closed', '', 'upr-conference-report', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 0, 'http://asiacentre.co.th/?p=2864', 0, 'post', '', 0),
(2865, 5, '2016-09-26 03:18:27', '2016-09-26 03:18:27', '', 'IMG_2172-001', '', 'inherit', 'closed', 'closed', '', 'img_2172-001', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 2864, 'http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001.jpg', 0, 'attachment', 'image/jpeg', 0),
(2866, 5, '2016-09-26 03:19:18', '2016-09-26 03:19:18', '', 'IMG_2253', '', 'inherit', 'closed', 'closed', '', 'img_2253', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 2864, 'http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253.jpg', 1, 'attachment', 'image/jpeg', 0),
(2867, 5, '2016-09-26 03:22:30', '2016-09-26 03:22:30', '', 'IMG_2200', '', 'inherit', 'closed', 'closed', '', 'img_2200', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 2864, 'http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200.jpg', 2, 'attachment', 'image/jpeg', 0),
(2868, 5, '2016-09-26 03:23:41', '2016-09-26 03:23:41', '', 'IMG_2259-001', '', 'inherit', 'closed', 'closed', '', 'img_2259-001', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 2864, 'http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001.jpg', 3, 'attachment', 'image/jpeg', 0),
(2869, 5, '2016-09-26 03:25:11', '2016-09-26 03:25:11', '', 'IMG_2416', '', 'inherit', 'closed', 'closed', '', 'img_2416', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 2864, 'http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416.jpg', 4, 'attachment', 'image/jpeg', 0),
(2870, 5, '2016-09-26 03:26:32', '2016-09-26 03:26:32', '', 'IP (1)', '', 'inherit', 'closed', 'closed', '', 'ip-1', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 2864, 'http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1.jpg', 5, 'attachment', 'image/jpeg', 0),
(2871, 5, '2016-09-26 03:27:15', '2016-09-26 03:27:15', '', 'IMG_2542-001', '', 'inherit', 'closed', 'closed', '', 'img_2542-001', '', '', '2017-01-17 15:38:44', '2017-01-17 08:38:44', '', 2864, 'http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001.jpg', 6, 'attachment', 'image/jpeg', 0),
(2872, 5, '2016-09-26 03:27:55', '2016-09-26 03:27:55', '<span style="font-weight: 400;">The UPR has been an effective mechanism for putting human rights issues on the <img class="alignright  wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" />\r\nagenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright  wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright  wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright  wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n\r\n&nbsp;\r\n\r\n<b>Addressing Human Rights Protection Gaps;</b>\r\n\r\n<b>Can the Universal Periodic Review Process Live Up to its Promise?</b>\r\n\r\n<span style="font-weight: 400;">Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission </span>\r\n\r\n&nbsp;\r\n\r\n<b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Anna Jeffries, University of Wisconsin- Milwaukee</span>\r\n\r\n&nbsp;\r\n\r\n<b>Analysis of CSO Participation in the UPR</b>\r\n\r\n<span style="font-weight: 400;">Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</span>\r\n\r\n&nbsp;\r\n\r\n<b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review</b>\r\n\r\n<span style="font-weight: 400;">Dr. Khoo Ying Hooi, University of Malaya</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar:</b>\r\n\r\n<b> The Arduous March Forward</b>\r\n<ol>\r\n 	<li><span style="font-weight: 400;"> Ravi, Human Rights Advocate</span></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses</b>\r\n\r\n<span style="font-weight: 400;">Cristian Talesco, Hong Kong Polytechnic University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand</b>\r\n\r\n<span style="font-weight: 400;">Chautimas Suksai, Researcher &amp; Consultant</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Situation of LGBTIQ HRDs in Southeast Asia </b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, Destination Justice</span>\r\n\r\n&nbsp;\r\n\r\n<b>UPR &amp; The Rights of Minorities</b>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua, Congress of World Hmong People</span>\r\n\r\n&nbsp;\r\n\r\n<b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief</b>\r\n\r\n<span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b>\r\n\r\n<span style="font-weight: 400;">Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</span>\r\n\r\n&nbsp;\r\n\r\n<b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b>\r\n\r\n<span style="font-weight: 400;">Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</span>\r\n\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:27:55', '2016-09-26 03:27:55', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2873, 5, '2016-09-26 03:28:47', '2016-09-26 03:28:47', '<span style="font-weight: 400;">The UPR has been an effective mechanism for putting human rights issues on the <img class="alignright  wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright  wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright  wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright  wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n\r\n&nbsp;\r\n\r\n<b>Addressing Human Rights Protection Gaps;</b>\r\n\r\n<b>Can the Universal Periodic Review Process Live Up to its Promise?</b>\r\n\r\n<span style="font-weight: 400;">Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission </span>\r\n\r\n&nbsp;\r\n\r\n<b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Anna Jeffries, University of Wisconsin- Milwaukee</span>\r\n\r\n&nbsp;\r\n\r\n<b>Analysis of CSO Participation in the UPR</b>\r\n\r\n<span style="font-weight: 400;">Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</span>\r\n\r\n&nbsp;\r\n\r\n<b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review</b>\r\n\r\n<span style="font-weight: 400;">Dr. Khoo Ying Hooi, University of Malaya</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar:</b>\r\n\r\n<b> The Arduous March Forward</b>\r\n<ol>\r\n 	<li><span style="font-weight: 400;"> Ravi, Human Rights Advocate</span></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses</b>\r\n\r\n<span style="font-weight: 400;">Cristian Talesco, Hong Kong Polytechnic University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand</b>\r\n\r\n<span style="font-weight: 400;">Chautimas Suksai, Researcher &amp; Consultant</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Situation of LGBTIQ HRDs in Southeast Asia </b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, Destination Justice</span>\r\n\r\n&nbsp;\r\n\r\n<b>UPR &amp; The Rights of Minorities</b>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua, Congress of World Hmong People</span>\r\n\r\n&nbsp;\r\n\r\n<b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief</b>\r\n\r\n<span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b>\r\n\r\n<span style="font-weight: 400;">Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</span>\r\n\r\n&nbsp;\r\n\r\n<b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b>\r\n\r\n<span style="font-weight: 400;">Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</span>\r\n\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:28:47', '2016-09-26 03:28:47', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2874, 5, '2016-09-26 03:29:22', '2016-09-26 03:29:22', '<span style="font-weight: 400;">The UPR has been an effective mechanism for putting human rights issues on the <img class="alignright  wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright  wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright  wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright  wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n\r\n&nbsp;\r\n\r\n<b>Addressing Human Rights Protection Gaps;</b>\r\n\r\n<b>Can the Universal Periodic Review Process Live Up to its Promise?</b>\r\n\r\n<span style="font-weight: 400;">Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission </span>\r\n\r\n&nbsp;\r\n\r\n<b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Anna Jeffries, University of Wisconsin- Milwaukee</span>\r\n\r\n&nbsp;\r\n\r\n<b>Analysis of CSO Participation in the UPR</b>\r\n\r\n<span style="font-weight: 400;">Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</span>\r\n\r\n&nbsp;\r\n\r\n<b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review</b>\r\n\r\n<span style="font-weight: 400;">Dr. Khoo Ying Hooi, University of Malaya</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar:</b>\r\n\r\n<b> The Arduous March Forward</b>\r\n<ol>\r\n 	<li><span style="font-weight: 400;"> Ravi, Human Rights Advocate</span></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses</b>\r\n\r\n<span style="font-weight: 400;">Cristian Talesco, Hong Kong Polytechnic University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand</b>\r\n\r\n<span style="font-weight: 400;">Chautimas Suksai, Researcher &amp; Consultant</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Situation of LGBTIQ HRDs in Southeast Asia </b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, Destination Justice</span>\r\n\r\n&nbsp;\r\n\r\n<b>UPR &amp; The Rights of Minorities</b>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua, Congress of World Hmong People</span>\r\n\r\n&nbsp;\r\n\r\n<b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief</b>\r\n\r\n<span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b>\r\n\r\n<span style="font-weight: 400;">Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</span>\r\n\r\n&nbsp;\r\n\r\n<b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b>\r\n\r\n<span style="font-weight: 400;">Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</span>\r\n\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:29:22', '2016-09-26 03:29:22', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2875, 5, '2016-09-26 03:29:45', '2016-09-26 03:29:45', '<span style="font-weight: 400;"> <img class="alignright  wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright  wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright  wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright  wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n\r\n&nbsp;\r\n\r\n<b>Addressing Human Rights Protection Gaps;</b>\r\n\r\n<b>Can the Universal Periodic Review Process Live Up to its Promise?</b>\r\n\r\n<span style="font-weight: 400;">Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission </span>\r\n\r\n&nbsp;\r\n\r\n<b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Anna Jeffries, University of Wisconsin- Milwaukee</span>\r\n\r\n&nbsp;\r\n\r\n<b>Analysis of CSO Participation in the UPR</b>\r\n\r\n<span style="font-weight: 400;">Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</span>\r\n\r\n&nbsp;\r\n\r\n<b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review</b>\r\n\r\n<span style="font-weight: 400;">Dr. Khoo Ying Hooi, University of Malaya</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia</b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar:</b>\r\n\r\n<b> The Arduous March Forward</b>\r\n<ol>\r\n 	<li><span style="font-weight: 400;"> Ravi, Human Rights Advocate</span></li>\r\n</ol>\r\n&nbsp;\r\n\r\n<b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses</b>\r\n\r\n<span style="font-weight: 400;">Cristian Talesco, Hong Kong Polytechnic University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand</b>\r\n\r\n<span style="font-weight: 400;">Chautimas Suksai, Researcher &amp; Consultant</span>\r\n\r\n&nbsp;\r\n\r\n<b>The Situation of LGBTIQ HRDs in Southeast Asia </b>\r\n\r\n<span style="font-weight: 400;">Celine Martin, Destination Justice</span>\r\n\r\n&nbsp;\r\n\r\n<b>UPR &amp; The Rights of Minorities</b>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua, Congress of World Hmong People</span>\r\n\r\n&nbsp;\r\n\r\n<b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief</b>\r\n\r\n<span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span>\r\n\r\n&nbsp;\r\n\r\n<b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b>\r\n\r\n<span style="font-weight: 400;">Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</span>\r\n\r\n&nbsp;\r\n\r\n<b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b>\r\n\r\n<span style="font-weight: 400;">Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</span>\r\n\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:29:45', '2016-09-26 03:29:45', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2876, 5, '2016-09-26 03:34:43', '2016-09-26 03:34:43', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                      </b><span style="font-weight: 400;">Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                                    </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                 </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                            </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:34:43', '2016-09-26 03:34:43', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2877, 5, '2016-09-26 03:35:34', '2016-09-26 03:35:34', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                      </b><span style="font-weight: 400;">\r\nMichael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    </b>\r\nAnna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                                    </b>\r\nDr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                 </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                            </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:35:34', '2016-09-26 03:35:34', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2878, 5, '2016-09-26 03:36:21', '2016-09-26 03:36:21', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                      </b><span style="font-weight: 400;">Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                                    </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                 </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                            </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:36:21', '2016-09-26 03:36:21', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2879, 5, '2016-09-26 03:38:52', '2016-09-26 03:38:52', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                  </b><span style="font-weight: 400;">Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                          </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                                    </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                  </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                                </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:38:52', '2016-09-26 03:38:52', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2880, 5, '2016-09-26 03:40:18', '2016-09-26 03:40:18', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                   </b>Michael J V White, </span><span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                           </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                     </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                   </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:40:18', '2016-09-26 03:40:18', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2881, 5, '2016-09-26 03:41:41', '2016-09-26 03:41:41', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                       </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                   </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                              </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                               </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                          </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:41:41', '2016-09-26 03:41:41', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2882, 5, '2016-09-26 03:42:50', '2016-09-26 03:42:50', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                         </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                 </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                               </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                          </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:42:50', '2016-09-26 03:42:50', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2883, 5, '2016-09-26 03:43:25', '2016-09-26 03:43:25', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                      </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                    </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                               </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                          </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:43:25', '2016-09-26 03:43:25', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2884, 5, '2016-09-26 03:43:55', '2016-09-26 03:43:55', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                     </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                      </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                               </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                          </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:43:55', '2016-09-26 03:43:55', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2885, 5, '2016-09-26 03:44:20', '2016-09-26 03:44:20', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                         </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                               </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                          </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:44:20', '2016-09-26 03:44:20', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2886, 5, '2016-09-26 03:45:04', '2016-09-26 03:45:04', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                             </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                          </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:45:04', '2016-09-26 03:45:04', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2887, 5, '2016-09-26 03:45:51', '2016-09-26 03:45:51', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    </b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                                       </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:45:51', '2016-09-26 03:45:51', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2888, 5, '2016-09-26 03:46:39', '2016-09-26 03:46:39', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                   </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:46:39', '2016-09-26 03:46:39', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2889, 5, '2016-09-26 03:47:24', '2016-09-26 03:47:24', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:47:24', '2016-09-26 03:47:24', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2890, 5, '2016-09-26 03:50:26', '2016-09-26 03:50:26', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  Celine Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:50:26', '2016-09-26 03:50:26', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2891, 5, '2016-09-26 03:51:02', '2016-09-26 03:51:02', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       </b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:51:02', '2016-09-26 03:51:02', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2892, 5, '2016-09-26 03:52:01', '2016-09-26 03:52:01', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses             </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:52:01', '2016-09-26 03:52:01', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2893, 5, '2016-09-26 03:52:42', '2016-09-26 03:52:42', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                                               </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia                                          </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:52:42', '2016-09-26 03:52:42', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2894, 5, '2016-09-26 03:53:26', '2016-09-26 03:53:26', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>Chautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>Celine Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:53:26', '2016-09-26 03:53:26', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2895, 5, '2016-09-26 03:54:11', '2016-09-26 03:54:11', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:54:11', '2016-09-26 03:54:11', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2896, 5, '2016-09-26 03:54:43', '2016-09-26 03:54:43', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                                                                    </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:54:43', '2016-09-26 03:54:43', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2897, 5, '2016-09-26 03:55:16', '2016-09-26 03:55:16', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>Gymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:55:16', '2016-09-26 03:55:16', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2898, 5, '2016-09-26 03:56:12', '2016-09-26 03:56:12', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 03:56:12', '2016-09-26 03:56:12', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2899, 5, '2016-09-26 04:11:00', '2016-09-26 04:11:00', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                                                                            \r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement  </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:11:00', '2016-09-26 04:11:00', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2900, 5, '2016-09-26 04:12:52', '2016-09-26 04:12:52', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                               </b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:12:52', '2016-09-26 04:12:52', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2901, 5, '2016-09-26 04:15:15', '2016-09-26 04:15:15', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                               \r\n</b><span style="font-weight: 400;">\r\nHesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement </b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:15:15', '2016-09-26 04:15:15', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2902, 5, '2016-09-26 04:16:23', '2016-09-26 04:16:23', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                               \r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement \r\n\r\n</b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:16:23', '2016-09-26 04:16:23', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2903, 5, '2016-09-26 04:17:24', '2016-09-26 04:17:24', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                               \r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement \r\n\r\n</b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives               \r\n</b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:17:24', '2016-09-26 04:17:24', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2904, 5, '2016-09-26 04:18:18', '2016-09-26 04:18:18', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                               \r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement \r\n\r\n</b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                              </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:18:18', '2016-09-26 04:18:18', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2905, 5, '2016-09-26 04:19:32', '2016-09-26 04:19:32', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                               \r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement \r\n\r\n</b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:19:32', '2016-09-26 04:19:32', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2906, 5, '2016-09-26 04:20:13', '2016-09-26 04:20:13', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from a diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and</span>\r\n\r\n<span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and providing a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia                                                                                                    \r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia                 </b><span style="font-weight: 400;">  \r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward       \r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief                                               \r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement \r\n\r\n</b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b>  Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:20:13', '2016-09-26 04:20:13', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2907, 5, '2016-09-26 04:24:29', '2016-09-26 04:24:29', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>&nbsp;\r\n\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:24:29', '2016-09-26 04:24:29', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2908, 5, '2016-09-26 04:24:50', '2016-09-26 04:24:50', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>Francesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:24:50', '2016-09-26 04:24:50', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2909, 5, '2016-09-26 04:25:34', '2016-09-26 04:25:34', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanism, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided a critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 04:25:34', '2016-09-26 04:25:34', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2910, 5, '2016-10-04 06:47:28', '2016-10-04 06:47:28', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\n<p style="text-align: justify;">\n\n<b>Asia Centre Conferences: Designed For Discourse</b></p>\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\n<p style="text-align: justify;">\n\n<b>Day One: The Conversation Is Key</b></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\n\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\n&nbsp;\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\n&nbsp;\n\n&nbsp;\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\n\n<ol>\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                    </b>Dr. Khoo Ying Hooi, University of Malaya</li>\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\n</b>M Ravi, Human Rights Advocate</li>\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\nChautimas Suksai, Researcher &amp; Consultant</li>\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\nCeline Martin, Destination Justice</li>\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\nGymbay Moua, Congress of World Hmong People</li>\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                                  </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\n</ol>\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-autosave-v1', '', '', '2016-10-04 06:47:28', '2016-10-04 06:47:28', '', 2864, 'http://asiacentre.co.th/other/2864-autosave-v1/', 0, 'revision', '', 0),
(2911, 5, '2016-09-26 10:59:01', '2016-09-26 10:59:01', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="alignright wp-image-2868" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanisms, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 10:59:01', '2016-09-26 10:59:01', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2912, 5, '2016-09-26 11:07:34', '2016-09-26 11:07:34', '<span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n\r\n<span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n\r\n<span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights <img class="wp-image-2868 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" /> mechanisms, patterns of enhanced CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations. There were also issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span>\r\n\r\n&nbsp;\r\n\r\n<b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b>\r\n\r\n<span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span>\r\n\r\n&nbsp;\r\n\r\n<b>List of presenters &amp; topics</b>\r\n<ol>\r\n 	<li><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                   </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li><b>Analysis of CSO Participation in the UPR                                           </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses   </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li><b>Singapore’s Universal Periodic Review: Civil Society Perspectives</b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-09-26 11:07:34', '2016-09-26 11:07:34', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2918, 5, '2016-09-30 03:59:35', '2016-09-30 03:59:35', ' ', '', '', 'publish', 'closed', 'closed', '', 'management-team', '', '', '2016-12-28 16:40:29', '2016-12-28 09:40:29', '', 0, 'http://asiacentre.co.th/other/management-team/', 7, 'nav_menu_item', '', 0),
(2919, 5, '2016-12-16 11:15:15', '2016-12-16 11:15:15', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Professor James Gomez, PhD</b> is the Executive Director of <img class="alignright wp-image-3202" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="15591783_10157819886335307_1814133035_n" width="215" height="241" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-autosave-v1', '', '', '2016-12-16 11:15:15', '2016-12-16 11:15:15', '', 300, 'http://asiacentre.co.th/other/300-autosave-v1/', 0, 'revision', '', 0),
(2920, 5, '2016-09-30 04:16:45', '2016-09-30 04:16:45', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n\r\n<b><img class="alignright  wp-image-2662" src="http://asiacentre.co.th/wp-content/uploads/2016/06/1394142_10151974405743832_1507090755_n-e1467005244632.jpg" alt="1394142_10151974405743832_1507090755_n" width="226" height="257" />Professor Dr James Gomez</b><span style="font-weight: 400;"> is a highly qualified communications academic and university administrator with over 25 years of international experience working for public and private universities, research institutes, think-tanks and inter-governmental organizations. He is presently the Vice Chancellor of Canadian University of Bangladesh. He has accumulated vast administrative, business development, financial, staff management and internationalization proficiency having served as associate dean, head of school, head of department, head of programme, head of committees, section chief and other leadership roles at various institutions. Has professional exposure to different institutional environments with student numbers ranging from 4,000 to 35, 000 and in a multi-campus and multi-country structure. He is well exposed to diverse staff and student cultures while working full-time in Australia, China, Japan, Malaysia, Singapore, Sweden, Thailand, and the United Kingdom. Professor Gomez also serves as an international expert to advisory boards, editorial committees, quality assurance panels, grant review boards, government agencies and as external examiner to academic departments, schools, faculties and universities.  In 2015 he co-founded the Asia Centre, an educational enterprise that seeks to connect peoples and regions through collaborative partnerships.</span>\r\n\r\n<b>Patcharee Rattanarong</b><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-09-30 04:16:45', '2016-09-30 04:16:45', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(2922, 6, '2016-09-30 09:21:34', '2016-09-30 09:21:34', '', 'UPR report', '', 'inherit', 'closed', 'closed', '', 'upr-report', '', '', '2016-09-30 09:21:34', '2016-09-30 09:21:34', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/09/UPR-report.jpg', 0, 'attachment', 'image/jpeg', 0),
(2935, 5, '2016-10-04 03:56:59', '2016-10-04 03:56:59', 'Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region. It provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="335" height="251" />development, communications and outreach, research and publications, and development and technical assistance.\r\n\r\nAsia Centre connects peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\r\n\r\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in the region.', 'Job Opportunities', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-10-04 03:56:59', '2016-10-04 03:56:59', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2936, 5, '2016-10-04 03:57:47', '2016-10-04 03:57:47', 'Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region. It provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="335" height="251" />development, communications and outreach, research and publications, and development and technical assistance.\r\n\r\nAsia Centre connects peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\r\n\r\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in the region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-10-04 03:57:47', '2016-10-04 03:57:47', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(2940, 5, '2016-10-04 04:00:26', '2016-10-04 04:00:26', '', 'Job Opportunities', '', 'inherit', 'closed', 'closed', '', '1955-revision-v1', '', '', '2016-10-04 04:00:26', '2016-10-04 04:00:26', '', 1955, 'http://asiacentre.co.th/other/1955-revision-v1/', 0, 'revision', '', 0),
(2951, 5, '2016-10-04 04:09:18', '2016-10-04 04:09:18', '', 'test', '', 'publish', 'closed', 'closed', '', 'test', '', '', '2016-10-04 04:09:18', '2016-10-04 04:09:18', '', 0, 'http://asiacentre.co.th/?page_id=2951', 0, 'page', '', 0),
(2952, 5, '2016-10-04 04:09:18', '2016-10-04 04:09:18', '', 'test', '', 'inherit', 'closed', 'closed', '', '2951-revision-v1', '', '', '2016-10-04 04:09:18', '2016-10-04 04:09:18', '', 2951, 'http://asiacentre.co.th/other/2951-revision-v1/', 0, 'revision', '', 0),
(2953, 5, '2016-10-04 04:09:22', '2016-10-04 04:09:22', '', 'test', '', 'inherit', 'closed', 'closed', '', '2951-autosave-v1', '', '', '2016-10-04 04:09:22', '2016-10-04 04:09:22', '', 2951, 'http://asiacentre.co.th/other/2951-autosave-v1/', 0, 'revision', '', 0),
(2955, 5, '2016-10-04 04:14:27', '2016-10-03 21:14:27', '', 'TestMichelle', '', 'trash', 'closed', 'closed', '', '__trashed-2', '', '', '2017-01-10 12:37:34', '2017-01-10 05:37:34', '', 0, 'http://asiacentre.co.th/?p=2955', 0, 'post', '', 0),
(2956, 5, '2016-10-04 04:14:27', '2016-10-04 04:14:27', '', 'TestMichelle', '', 'inherit', 'closed', 'closed', '', '2955-revision-v1', '', '', '2016-10-04 04:14:27', '2016-10-04 04:14:27', '', 2955, 'http://asiacentre.co.th/other/2955-revision-v1/', 0, 'revision', '', 0),
(2958, 5, '2016-10-04 04:23:27', '0000-00-00 00:00:00', '', 'Job Opportunities', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-10-04 04:23:27', '2016-10-04 04:23:27', '', 1933, 'http://asiacentre.co.th/?page_id=2958', 0, 'page', '', 0),
(2959, 5, '2016-10-04 04:21:56', '2016-10-04 04:21:56', '', 'Job Opportunities', '', 'inherit', 'closed', 'closed', '', '2958-revision-v1', '', '', '2016-10-04 04:21:56', '2016-10-04 04:21:56', '', 2958, 'http://asiacentre.co.th/other/2958-revision-v1/', 0, 'revision', '', 0),
(2965, 5, '2016-10-04 04:28:21', '0000-00-00 00:00:00', '', 'Job Opportunities', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-10-04 04:28:21', '2016-10-04 04:28:21', '', 1933, 'http://asiacentre.co.th/?page_id=2965', 0, 'page', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2966, 5, '2016-10-04 04:26:07', '2016-10-04 04:26:07', '', 'Job Opportunities', '', 'inherit', 'closed', 'closed', '', '2965-revision-v1', '', '', '2016-10-04 04:26:07', '2016-10-04 04:26:07', '', 2965, 'http://asiacentre.co.th/other/2965-revision-v1/', 0, 'revision', '', 0),
(2967, 5, '2016-10-04 04:27:12', '2016-10-04 04:27:12', '', 'Join Us', '', 'publish', 'closed', 'closed', '', 'join-us', '', '', '2017-01-17 13:10:55', '2017-01-17 06:10:55', '', 0, 'http://asiacentre.co.th/other/join-us/', 26, 'nav_menu_item', '', 0),
(2968, 5, '2016-10-04 04:27:12', '2016-10-04 04:27:12', '', 'Jobs', '', 'publish', 'closed', 'closed', '', '2968', '', '', '2017-01-17 14:52:35', '2017-01-17 07:52:35', '', 0, 'http://asiacentre.co.th/other/2968/', 27, 'nav_menu_item', '', 0),
(2971, 5, '2016-10-04 04:28:32', '0000-00-00 00:00:00', '', 'test', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-10-04 04:28:32', '2016-10-04 04:28:32', '', 0, 'http://asiacentre.co.th/?page_id=2971', 0, 'page', '', 0),
(2972, 5, '2016-10-04 04:28:32', '2016-10-04 04:28:32', '', 'test', '', 'inherit', 'closed', 'closed', '', '2971-revision-v1', '', '', '2016-10-04 04:28:32', '2016-10-04 04:28:32', '', 2971, 'http://asiacentre.co.th/other/2971-revision-v1/', 0, 'revision', '', 0),
(2973, 5, '2016-10-04 04:28:50', '2016-10-03 21:28:50', '', 'test', '', 'trash', 'closed', 'closed', '', '__trashed', '', '', '2017-01-10 12:37:19', '2017-01-10 05:37:19', '', 0, 'http://asiacentre.co.th/?p=2973', 0, 'post', '', 0),
(2974, 5, '2016-10-04 04:28:50', '2016-10-04 04:28:50', '', 'test', '', 'inherit', 'closed', 'closed', '', '2973-revision-v1', '', '', '2016-10-04 04:28:50', '2016-10-04 04:28:50', '', 2973, 'http://asiacentre.co.th/other/2973-revision-v1/', 0, 'revision', '', 0),
(2976, 5, '2016-10-04 04:30:13', '2016-10-04 04:30:13', '', 'Internships', '', 'publish', 'closed', 'closed', '', '2976', '', '', '2017-01-17 14:52:35', '2017-01-17 07:52:35', '', 1933, 'http://asiacentre.co.th/other/2976/', 28, 'nav_menu_item', '', 0),
(2979, 5, '2016-10-04 04:33:21', '0000-00-00 00:00:00', '', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-10-04 04:33:21', '2016-10-04 04:33:21', '', 0, 'http://asiacentre.co.th/?page_id=2979', 0, 'page', '', 0),
(2980, 5, '2016-10-04 04:33:21', '2016-10-04 04:33:21', '', '', '', 'inherit', 'closed', 'closed', '', '2979-revision-v1', '', '', '2016-10-04 04:33:21', '2016-10-04 04:33:21', '', 2979, 'http://asiacentre.co.th/other/2979-revision-v1/', 0, 'revision', '', 0),
(2982, 5, '2016-10-04 04:36:09', '2016-10-04 04:36:09', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a>[content_chunk section_title="jajaja"]The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n 	<li>Official letter of university enrolment</li>\r\n 	<li>Copy of passport</li>\r\n 	<li>CV</li>\r\n 	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 04:36:09', '2016-10-04 04:36:09', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2983, 5, '2016-10-04 04:37:00', '2016-10-04 04:37:00', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a>[row]\r\n\r\n[column col="6"] Column content goes here... [/column]\r\n\r\n[column col="6"] Column content goes here... [/column]\r\n\r\n[/row]The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n 	<li>Official letter of university enrolment</li>\r\n 	<li>Copy of passport</li>\r\n 	<li>CV</li>\r\n 	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 04:37:00', '2016-10-04 04:37:00', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2984, 5, '2016-10-04 04:37:49', '2016-10-04 04:37:49', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a>\r\n\r\n[column col="6"] Research Internship [/column]\r\n\r\n[column col="6"] Communications Internship [/column]\r\n\r\n[/row]The Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n 	<li>Official letter of university enrolment</li>\r\n 	<li>Copy of passport</li>\r\n 	<li>CV</li>\r\n 	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 04:37:49', '2016-10-04 04:37:49', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2985, 5, '2016-10-04 04:38:12', '2016-10-04 04:38:12', '<a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg">\r\n</a><a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg"><img class="size-full wp-image-2036 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern2.jpg" alt="intern2" width="190" height="190" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[column col="6"] Research Internship [/column]\r\n\r\n[column col="6"] Communications Internship [/column]\r\n\r\n&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream.\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n<strong>Communications Intern</strong>\r\n\r\nThe Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and <a href="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg"><img class="size-full wp-image-2035 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></a>outreach.\r\n\r\n<strong>Eligibility</strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration </strong>\r\n\r\nThe Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application procedure:</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n 	<li>Official letter of university enrolment</li>\r\n 	<li>Copy of passport</li>\r\n 	<li>CV</li>\r\n 	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 04:38:12', '2016-10-04 04:38:12', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2987, 5, '2016-10-04 05:45:26', '2016-10-04 05:45:26', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n\r\n<strong>Communications Intern</strong>\r\n\r\n<span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Internship tasks</b>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n&nbsp;\r\n\r\n<b>Internship tasks</b>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration</strong>\r\n\r\nThe Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application Procedure</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n 	<li>Official letter of university enrolment</li>\r\n 	<li>Copy of passport</li>\r\n 	<li>CV</li>\r\n 	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 05:45:26', '2016-10-04 05:45:26', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2988, 5, '2016-10-04 05:56:06', '2016-10-04 05:56:06', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n\r\n<strong>Communications Intern</strong>\r\n\r\n<span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span>\r\n\r\n&nbsp;\r\n\r\n<b>Internship tasks</b>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n\r\n<strong>Research Intern</strong>\r\n\r\nThe Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.\r\n\r\n&nbsp;\r\n\r\n<b>Internship tasks</b>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n\r\nInternships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.\r\n\r\n<strong>Duration</strong>\r\n\r\nThe Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.\r\n\r\n<strong>General Conditions</strong>\r\n\r\nThe internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.\r\n\r\n<strong>Application Procedure</strong>\r\n\r\nInterested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a>\r\n<ul>\r\n 	<li>Official letter of university enrolment</li>\r\n 	<li>Copy of passport</li>\r\n 	<li>CV</li>\r\n 	<li>Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 05:56:06', '2016-10-04 05:56:06', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(2989, 5, '2016-10-04 06:24:23', '2016-10-04 06:24:23', '', '14555975_10157448683120307_589429913_n', '', 'inherit', 'closed', 'closed', '', '14555975_10157448683120307_589429913_n', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 2032, 'http://asiacentre.co.th/wp-content/uploads/2016/10/14555975_10157448683120307_589429913_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(2990, 5, '2016-10-04 06:24:30', '2016-10-04 06:24:30', '', '14555558_10157448681250307_1824900953_n', '', 'inherit', 'closed', 'closed', '', '14555558_10157448681250307_1824900953_n', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 2032, 'http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(2991, 5, '2016-10-04 06:24:37', '2016-10-04 06:24:37', '', '12141059_1155701617782398_7635159891832070421_o', '', 'inherit', 'closed', 'closed', '', '12141059_1155701617782398_7635159891832070421_o', '', '', '2016-10-04 06:24:37', '2016-10-04 06:24:37', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/12141059_1155701617782398_7635159891832070421_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(2992, 5, '2016-10-04 06:24:43', '2016-10-04 06:24:43', '', '12717821_1132756900076870_5762799772999519120_n', '', 'inherit', 'closed', 'closed', '', '12717821_1132756900076870_5762799772999519120_n', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 2032, 'http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(2993, 5, '2016-10-04 07:01:23', '2016-10-04 07:01:23', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-autosave-v1', '', '', '2016-10-04 07:01:23', '2016-10-04 07:01:23', '', 2032, 'http://asiacentre.co.th/other/2032-autosave-v1/', 0, 'revision', '', 0),
(2994, 5, '2016-10-04 06:39:15', '2016-10-04 06:39:15', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><b>Day One: The Conversation Is Key</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                              </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                                      </b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:39:15', '2016-10-04 06:39:15', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2995, 5, '2016-10-04 06:40:33', '2016-10-04 06:40:33', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><b>Day One: The Conversation Is Key</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                                         </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                                 </b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:40:33', '2016-10-04 06:40:33', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2996, 5, '2016-10-04 06:41:34', '2016-10-04 06:41:34', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">\r\n\r\n\r\n<b>Day One: The Conversation Is Key</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                              </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                              </b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:41:34', '2016-10-04 06:41:34', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2997, 5, '2016-10-04 06:42:57', '2016-10-04 06:42:57', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">\r\n\r\n\r\n\r\n<b>Day One: The Conversation Is Key</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                       </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                 </b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:42:57', '2016-10-04 06:42:57', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(2998, 5, '2016-10-04 06:43:50', '2016-10-04 06:43:50', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">\r\n\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                            </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                            </b> Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:43:50', '2016-10-04 06:43:50', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(2999, 5, '2016-10-04 06:45:38', '2016-10-04 06:45:38', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><b>Day One: The Conversation Is Key</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                    </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                                  </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:45:38', '2016-10-04 06:45:38', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(3000, 5, '2016-10-04 06:46:16', '2016-10-04 06:46:16', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><b>Asia Centre Conferences: Designed For Discourse</b></p>\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><b>Day One: The Conversation Is Key</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                    </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                                  </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:46:16', '2016-10-04 06:46:16', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(3001, 5, '2016-10-04 06:48:06', '2016-10-04 06:48:06', '<p style="text-align: justify;"><span style="font-weight: 400;"> <img class="alignright wp-image-2866" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2253-1140x855.jpg" alt="IMG_2253" width="371" height="278" /> The UPR has been an effective mechanism for putting human rights issues on the agenda and engaging States in conversation about critical issues. However, systemic problems remain with regards to engagement with other stakeholders, the implementation of recommendations by governments, the efficacy of follow up processes and the UPR’s ability to address hard political issues. These were key takeaways from Asia Centre’s conference, Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment, held from 15 to 17 September 2016 at Asia Centre’s premises in Bangkok.</span></p>\r\n&nbsp;\r\n\r\n<b>Asia Centre Conferences: Designed For Discourse</b>\r\n\r\n<b><img class="wp-image-2865 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2172-001-1140x855.jpg" alt="IMG_2172-001" width="280" height="210" /></b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The boutique conference was structured around thematic clusters on stakeholder involvement,  minority rights, civil and political freedoms and the death penalty. It included country specific discussions on Indonesia, Timor-Leste, Malaysia, Laos, Singapore, Myanmar, Brunei and Thailand. Researchers were provided 50 minute slots to present their findings and in order to ensure adequate discussion time. A complete list of presenters and their individual topics is available at the end of the this report. </span></p>\r\n&nbsp;\r\n\r\n<b>Day One: The Conversation Is Key</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The first day of the conference saw over 30 participants from diverse backgrounds <img class="alignright wp-image-2867" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2200-1140x855.jpg" alt="IMG_2200" width="323" height="242" />including members of civil society organisation, national human rights institutions, academia, the United Nations, as well as students. Some of the key discussion points to emerge from the first day of discourse, included the value of the UPR as a platform for dialogue, interaction with other UN and regional human rights mechanisms, patterns of enhanced </span>CSO engagement with the process as well as the role that other stakeholders such national human rights institutions can play in monitoring the implementation of recommendations.</p>\r\n<p style="text-align: justify;">There were al<img class="wp-image-2868 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2259-001-1140x855.jpg" alt="IMG_2259-001" width="322" height="242" />so issue specific discussions on the role of the UPR in pushing for the abolition of the death penalty and the efficacy of the process in addressing past human rights abuses in Timor-Leste.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<b>Day Two: Emerging Patterns &amp; Trends in Engagement</b>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2869 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2416-1140x855.jpg" alt="IMG_2416" width="343" height="257" />The second day of the conference saw more in-depth discussion on how specific countries were engaging on contentious issues. This covered freedom of expression in Thailand, freedom of religion and belief in Indonesia and civil and political rights in Singapore. The discussion on how minority rights were raised under the UPR centred on the experiences of the Hmong community in Laos as well as a regional overview of the particular challenges faced by LGBTIQ human rights, defenders prepared by Destination Justice. One critical discussion point on day two <img class="alignright wp-image-2870" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IP-1-1140x855.jpg" alt="IP (1)" width="328" height="246" />was the approach to engagement, with the Lutheran World Federation backing making the most of the non-confrontational nature of the UPR dialogue to push for solutions rather than naming and shaming. The plenary session provided an overview of emerging patterns and trends in interaction with the UPR such as greater CSO participation and coalition building efforts.It also called into question the efficacy of mid-term reporting and follow up processes. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Southeast Asia &amp; the UPR: All Talk &amp; No Action? </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-2871 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/09/IMG_2542-001-1140x855.jpg" alt="IMG_2542-001" width="338" height="253" />The final day of the conference was an open forum discussion titled Southeast Asia &amp; the UPR: All Talk &amp; No Action? This session was open to members of the public and it attracted an audience over 25 people. The panel featured Imesh Pokharel from Office of the High Commissioner of Human Rights(OHCHR) Regional Office Bangkok, Michael J V White from the New Zealand Human Rights Commission, Celine Martin from Destination Justice and </span><span style="font-weight: 400;">Gymbay Moua from the World Congress of Hmong People. The panelists shared their first hand experiences of engaging with the UPR process, highlighting key challenges faced and offering input on some of the best practices from their respective organisations. It was a very interactive discussion, moderated by Asia Centre’s Robin Ramcharan and it provided a unique entry point into the UPR for members of the public who were interested in understanding the process. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Overall Asia Centre’s inaugural conference was successful in creating a platform for participatory discourse among different stakeholders who are actively engaged in with the UPR. It provided all present the opportunity to identify trends and patterns of engagement with the UPR over the two cycles and provided critical analysis of the UPR’s achievement in Southeast Asia. There was also discussion of establishing an evidence-based UPR network with the conference participants forming a core. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The conference proceedings will be compiled into an edited volume which can inform engagement in the third cycle. It is set to be launched in the first quarter of 2017.</span></p>\r\n&nbsp;\r\n<p style="text-align: left;"><b>List of presenters &amp; topics</b></p>\r\n\r\n<ol>\r\n 	<li style="text-align: left;"><b>Addressing Human Rights Protection Gaps; </b><b>Can the Universal Periodic Review Process Live Up to its Promise?                                                                                        </b>Michael J V White, <span style="font-weight: 400;">New Zealand Human Rights Commission</span></li>\r\n 	<li style="text-align: left;"><b>A Statistical Overview: Submissions and Participation of CSOs in Southeast Asia\r\n</b>Anna Jeffries, University of Wisconsin- Milwaukee</li>\r\n 	<li style="text-align: left;"><b>Analysis of CSO Participation in the UPR                                                                  </b>Dr.James Gomez &amp; Dr.Robin Ramcharan, Asia Centre</li>\r\n 	<li style="text-align: left;"><b>Assessing Suhakam’s Effectiveness in Bridging the Implementation Gap of Malaysia’s Universal Periodic Review                                                                                                    </b>Dr. Khoo Ying Hooi, University of Malaya</li>\r\n 	<li style="text-align: left;"><b>The Shy but Growing Role of the UPR Recommendations in Fostering the Protecting Role of the AICHR in Southeast Asia </b><span style="font-weight: 400;">\r\nCeline Martin, </span><span style="font-weight: 400;">Aix-Marseille University</span></li>\r\n 	<li style="text-align: left;"><b>Universal Periodic Review and the Abolition of the Death Penalty in Singapore, Malaysia, Brunei and Myanmar: </b><b>The Arduous March Forward\r\n</b>M Ravi, Human Rights Advocate</li>\r\n 	<li style="text-align: left;"><b>The Universal Periodic Review in Timor-Leste and the Government''s Failure of Achieving Justice for the Past Human Rights Abuses                                                  </b>Cristian Talesco, Hong Kong Polytechnic University</li>\r\n 	<li style="text-align: left;"><b>Advocating the Untouchable Issue Through the UPR: Freedom of Expression in Thailand                                                       </b>\r\nChautimas Suksai, Researcher &amp; Consultant</li>\r\n 	<li style="text-align: left;"><b>The Situation of LGBTIQ HRDs in Southeast Asia               </b>\r\nCeline Martin, Destination Justice</li>\r\n 	<li style="text-align: left;"><b>UPR &amp; The Rights of Minorities                           </b>\r\nGymbay Moua, Congress of World Hmong People</li>\r\n 	<li style="text-align: left;"><b>Indonesia and the Universal Periodic Review: Analysis of Freedom of Religion and Belief\r\n</b><span style="font-weight: 400;">Hesty Dewi Maria Siagian ,</span><span style="font-weight: 400;">Bogor Agricultural University</span></li>\r\n 	<li style="text-align: left;"><b><b>Maximize the Effectiveness of the UPR Process in Myanmar:  A Non-Confrontational, Solutions-Focused and Evidence-Based Involvement</b></b>\r\nFrancesca Paola Traglia, The Lutheran World Federation - Myanmar Program</li>\r\n 	<li style="text-align: left;"><b>Singapore’s Universal Periodic Review: Civil Society Perspectives                                  </b>Dr. James Gomez,Bangkok University &amp; Michelle D’cruz, Mahidol University</li>\r\n</ol>\r\n&nbsp;', 'UPR Conference Report', '', 'inherit', 'closed', 'closed', '', '2864-revision-v1', '', '', '2016-10-04 06:48:06', '2016-10-04 06:48:06', '', 2864, 'http://asiacentre.co.th/other/2864-revision-v1/', 0, 'revision', '', 0),
(3002, 5, '2016-10-04 06:48:29', '2016-10-04 06:48:29', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</span></p>\r\n<img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:48:29', '2016-10-04 06:48:29', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3003, 5, '2016-10-04 06:49:27', '2016-10-04 06:49:27', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</span></p>\r\n<img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />\r\n</span></p>\r\n<img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:49:27', '2016-10-04 06:49:27', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3004, 5, '2016-10-04 06:50:19', '2016-10-04 06:50:19', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</span>\r\n\r\n</p>\r\n<img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:50:19', '2016-10-04 06:50:19', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3005, 5, '2016-10-04 06:51:02', '2016-10-04 06:51:02', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</span></p>\r\n<img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2989  aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555975_10157448683120307_589429913_n.jpg" width="524" height="295" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:51:02', '2016-10-04 06:51:02', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3006, 5, '2016-10-04 06:51:44', '2016-10-04 06:51:44', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</span></p>\r\n<img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2989 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555975_10157448683120307_589429913_n.jpg" width="524" height="295" />\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:51:44', '2016-10-04 06:51:44', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3007, 5, '2016-10-04 06:52:58', '2016-10-04 06:52:58', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</span></p>\r\n<img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-2989 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555975_10157448683120307_589429913_n.jpg" width="478" height="269" />\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:52:58', '2016-10-04 06:52:58', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3008, 5, '2016-10-04 06:56:21', '2016-10-04 06:56:21', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong>\r\n<img class="alignright wp-image-2989 " src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555975_10157448683120307_589429913_n-e1475564121734.jpg" width="356" height="227" /></p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:56:21', '2016-10-04 06:56:21', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3009, 5, '2016-10-04 06:56:53', '2016-10-04 06:56:53', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong>\r\n<img class="alignright wp-image-2989 " src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555975_10157448683120307_589429913_n-e1475564121734.jpg" width="356" height="227" /></p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:56:53', '2016-10-04 06:56:53', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3010, 5, '2016-10-04 06:57:44', '2016-10-04 06:57:44', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong>\r\n<img class="alignright wp-image-2989 " src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555975_10157448683120307_589429913_n-e1475564121734.jpg" width="369" height="235" /></p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:57:44', '2016-10-04 06:57:44', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3011, 5, '2016-10-04 06:58:41', '2016-10-04 06:58:41', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:58:41', '2016-10-04 06:58:41', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3012, 5, '2016-10-04 06:59:09', '2016-10-04 06:59:09', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:59:09', '2016-10-04 06:59:09', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3013, 5, '2016-10-04 06:59:18', '2016-10-04 06:59:18', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 06:59:18', '2016-10-04 06:59:18', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3014, 5, '2016-10-04 07:00:52', '2016-10-04 07:00:52', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 07:00:52', '2016-10-04 07:00:52', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3015, 5, '2016-10-04 07:01:18', '2016-10-04 07:01:18', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 07:01:18', '2016-10-04 07:01:18', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3016, 5, '2016-10-04 07:01:41', '2016-10-04 07:01:41', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-10-04 07:01:41', '2016-10-04 07:01:41', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3019, 6, '2016-10-06 07:53:24', '2016-10-06 07:53:24', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone size-full wp-image-3018" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map.jpg" alt="asia-centre-map" width="1063" height="682" />\r\n\r\n[wpgmza id="1"]\r\n\r\n&nbsp;', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-10-06 07:53:24', '2016-10-06 07:53:24', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(3020, 6, '2016-10-07 01:47:53', '2016-10-07 01:47:53', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone size-full wp-image-3018" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map.jpg" alt="asia-centre-map" width="1063" height="682" />\r\n\r\n&nbsp;\r\n\r\n<iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15501.49714848407!2d100.532498!3d13.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc54d13b8a0284a40!2sASIA+Centre+Co.%2C+Ltd.!5e0!3m2!1sen!2sth!4v1475804628679" width="600" height="450" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-10-07 01:47:53', '2016-10-07 01:47:53', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(3022, 5, '2016-10-07 03:34:16', '2016-10-07 03:34:16', '<p style="text-align: justify;">Asia Centre is facilitating a discussion and networking\r\nsession with New York-based Japanese <img class="alignright wp-image-3023" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Screen-Shot-2016-10-07-at-10.28.39.png" alt="screen-shot-2016-10-07-at-10-28-39" width="351" height="282" />photographer and anti-death penalty activist Toshi Kazama. The discussion will focus on how he uses photography as a tool to express his point of view on human rights, and specifically on the death penalty.</p>\r\n<p style="text-align: justify;">The discussion will be followed by a networking session. Light refreshments will be served.  You will also be able to view Toshi Kazama''s Photo Exhibition.</p>\r\n<p style="text-align: justify;">This event is part of the End Crime Not Life regional campaign against the death penalty.</p>\r\n<p style="text-align: justify;"><a href="http://www.endcrimenotlife.com">www.endcrimenotlife.com</a></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3024" align="alignright" width="274"]<img class="wp-image-3024" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Press-con-7.jpg" alt="press-con-7" width="274" height="183" /> Toshi Kazama at a press conference in Timor Leste. Source: End Crime Not Life[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">About Toshi Kazama</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">When New York-based Japanese </span>photographer Toshi Kazama went to his first photo session of a young American on death row he expected to see a monster.  That ‘monster’ turned out to be a normal-looking child with extremely limited intelligence.  At the end of the session, Kazama hugged him. That changed my life forever”.</p>\r\n<p style="text-align: justify;">Kazama has now dedicated his life to the abolition of the death penalty.</p>\r\n<p style="text-align: justify;">"To me the death penalty is you and I killing a human being. I don’t want to kill a human being with my own hand. Do you?”</p>\r\n<p style="text-align: justify;">This event is free. Please register your attendance <a href="https://docs.google.com/forms/d/e/1FAIpQLSfgyUNmpQAu-KmBktUIVo5WVWbsT0LehtPVtzco5nCf2OwRIw/viewform" target="_blank">here</a>.</p>\r\n<p style="text-align: justify;"><strong>Please note that the venue for this event has been changed to Duangkamol Room, The Sukosol Hotel.</strong></p>\r\n<p style="text-align: justify;">For directions please <a href="http://www.thesukosol.com/location">click here</a>.</p>\r\n&nbsp;\r\n\r\n&nbsp;', 'Focus On Life', '', 'publish', 'closed', 'closed', '', 'focusonlife', '', '', '2016-12-22 06:48:41', '2016-12-22 06:48:41', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3022', 0, 'event', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3023, 5, '2016-10-07 03:34:26', '2016-10-07 03:34:26', '', 'screen-shot-2016-10-07-at-10-28-39', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-10-07-at-10-28-39', '', '', '2016-10-07 03:34:26', '2016-10-07 03:34:26', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/Screen-Shot-2016-10-07-at-10.28.39.png', 0, 'attachment', 'image/png', 0),
(3024, 5, '2016-10-07 03:34:31', '2016-10-07 03:34:31', '', 'press-con-7', '', 'inherit', 'closed', 'closed', '', 'press-con-7', '', '', '2016-10-07 03:34:31', '2016-10-07 03:34:31', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/Press-con-7.jpg', 0, 'attachment', 'image/jpeg', 0),
(3027, 5, '2016-10-07 03:46:40', '2016-10-07 03:46:40', '', 'journalism', '', 'inherit', 'closed', 'closed', '', 'journalism', '', '', '2016-10-07 03:46:40', '2016-10-07 03:46:40', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/journalism.gif', 0, 'attachment', 'image/gif', 0),
(3029, 5, '2016-10-07 03:54:21', '2016-10-07 03:54:21', '', 'shutterstock_156379598', '', 'inherit', 'closed', 'closed', '', 'shutterstock_156379598', '', '', '2016-10-07 03:54:21', '2016-10-07 03:54:21', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/shutterstock_156379598.jpg', 0, 'attachment', 'image/jpeg', 0),
(3030, 5, '2016-10-07 03:58:43', '2016-10-07 03:58:43', '', 'screen-shot-2016-10-07-at-10-58-35', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-10-07-at-10-58-35', '', '', '2016-10-07 03:58:43', '2016-10-07 03:58:43', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/Screen-Shot-2016-10-07-at-10.58.35.png', 0, 'attachment', 'image/png', 0),
(3032, 6, '2016-10-07 04:07:27', '2016-10-07 04:07:27', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone size-full wp-image-3031" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map-update.jpg" alt="asia-centre-map-update" width="1063" height="650" />\r\n\r\n&nbsp;\r\n\r\n<iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15501.49714848407!2d100.532498!3d13.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc54d13b8a0284a40!2sASIA+Centre+Co.%2C+Ltd.!5e0!3m2!1sen!2sth!4v1475804628679" width="600" height="450" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-10-07 04:07:27', '2016-10-07 04:07:27', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(3038, 6, '2016-10-07 04:24:06', '2016-10-07 04:24:06', '', 'asia-centre-map-update', '', 'inherit', 'closed', 'closed', '', 'asia-centre-map-update-2', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map-update-1.jpg', 1, 'attachment', 'image/jpeg', 0),
(3039, 6, '2016-10-07 04:27:00', '2016-10-07 04:27:00', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone size-full wp-image-3038" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map-update-1.jpg" alt="asia-centre-map-update" width="1063" height="650" />\r\n\r\n&nbsp;\r\n\r\n<iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15501.49714848407!2d100.532498!3d13.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc54d13b8a0284a40!2sASIA+Centre+Co.%2C+Ltd.!5e0!3m2!1sen!2sth!4v1475804628679" width="600" height="450" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'Location', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2016-10-07 04:27:00', '2016-10-07 04:27:00', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(3040, 6, '2016-10-10 05:58:58', '2016-10-10 05:58:58', '<b>Digital Marketing &amp; Communication Officer</b>\r\n\r\nAsia Centre is looking to hire a Digital Marketing &amp; Communication Officer to join our team. This is an exciting role within a young organisation, covering all aspects of communications and marketing including brand development, strategic events, PR, marketing campaigns, digital development and content writing.\r\n\r\nThe ideal candidate is effectively bilingual (in Thai &amp; English), enthusiastic, self-motivated and interested in growing and developing the organisation. This is an entry-level position with scope for advancement.\r\n\r\n<b>Duties &amp; Responsibilities Include (but are not limited to)</b>\r\n<ul>\r\n 	<li>Developing strategic communications plans for promotion and dissemination of corporate and programmatic content</li>\r\n 	<li>Implementation and management a range of online &amp; offline communication strategies targeting media and industry engagement</li>\r\n 	<li>Promoting Asia Centre and coordinating its corporate communications, public affairs, press releases and e-marketing development communication</li>\r\n 	<li>Manage the Asia Centre brand</li>\r\n 	<li>Develop/maintain social media profiles and quality content on Twitter, Facebook, and LinkedIn.</li>\r\n 	<li>Develop other, relevant social media outlets to support and expand our digital presence</li>\r\n 	<li>Recruit and maintain media partnerships</li>\r\n 	<li>Manage PR and press relations</li>\r\n 	<li>Assist in the preparation and drafting of various communications (including email, social media, blogs)</li>\r\n 	<li>Marketing of the business arm of Asia Centre by promoting us as a boutique meeting, seminar and conference space in Central Bangkok</li>\r\n</ul>\r\n<b>Required Skills and Qualifications</b>\r\n<ul>\r\n 	<li>Bachelor’s degree in Communications, Business Administration, Marketing, or a related field.</li>\r\n 	<li>Minimum 1 year of directly related marketing, public affairs, media relations, and/or marketing research experience</li>\r\n 	<li>High level of organizational and project coordination skills.</li>\r\n 	<li>Demonstrated working knowledge of Wordpress and basic web communication techniques; expertise in using office software packages, technology, and systems (spreadsheets, graphics, database programs).</li>\r\n 	<li>Knowledge and experience in using social media as a promotional/engagement tool.</li>\r\n 	<li>Experience in graphic design</li>\r\n 	<li>Able to speak, read and write effectively in Thai and English. A good command of English is indispensable.</li>\r\n 	<li>Ability to work in a multicultural environment</li>\r\n 	<li>Flexibility and adaptability within a dynamic work environment are essential assets</li>\r\n</ul>\r\n<b>Work Environment </b>\r\n\r\nAsia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.\r\n\r\n<b>How to apply</b>\r\n\r\nTo apply, submit - in one pdf document -  a brief cover letter, an updated CV (2 pages max), proof of prior work experience and scanned copies of your diplomas to (e-mail).\r\n\r\nAfter submission, please note that only short-listed candidates will be contacted. The position will remain open until filled.\r\n\r\nAs part of the application process Asia Centre reserves the right to verify the academic and professional credentials of short-listed candidates.<b> Candidates must ensure that they have no legal restrictions on working in Thailand. </b>\r\n\r\n<b>About Asia Centre</b>\r\n\r\nAsia Centre is an independent think- tank and networking hub for academia and civil society in the region. The Centre’s core activities focus on education and human right’s policy research. It provides meeting facilities and services for academic and professional development, communications and outreach, research and publications, and development and technical assistance. Asia Centre connects peoples and regions through collaborative partnership with educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector. Asia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region.', 'Job Opportunities', '', 'inherit', 'closed', 'closed', '', '1955-autosave-v1', '', '', '2016-10-10 05:58:58', '2016-10-10 05:58:58', '', 1955, 'http://asiacentre.co.th/other/1955-autosave-v1/', 0, 'revision', '', 0),
(3041, 6, '2016-10-10 05:59:22', '2016-10-10 05:59:22', '<b>Digital Marketing &amp; Communication Officer</b>\r\n\r\nAsia Centre is looking to hire a Digital Marketing &amp; Communication Officer to join our team. This is an exciting role within a young organisation, covering all aspects of communications and marketing including brand development, strategic events, PR, marketing campaigns, digital development and content writing.\r\n\r\nThe ideal candidate is effectively bilingual (in Thai &amp; English), enthusiastic, self-motivated and interested in growing and developing the organisation. This is an entry-level position with scope for advancement.\r\n\r\n<b>Duties &amp; Responsibilities Include (but are not limited to)</b>\r\n<ul>\r\n 	<li>Developing strategic communications plans for promotion and dissemination of corporate and programmatic content</li>\r\n 	<li>Implementation and management a range of online &amp; offline communication strategies targeting media and industry engagement</li>\r\n 	<li>Promoting Asia Centre and coordinating its corporate communications, public affairs, press releases and e-marketing development communication</li>\r\n 	<li>Manage the Asia Centre brand</li>\r\n 	<li>Develop/maintain social media profiles and quality content on Twitter, Facebook, and LinkedIn.</li>\r\n 	<li>Develop other, relevant social media outlets to support and expand our digital presence</li>\r\n 	<li>Recruit and maintain media partnerships</li>\r\n 	<li>Manage PR and press relations</li>\r\n 	<li>Assist in the preparation and drafting of various communications (including email, social media, blogs)</li>\r\n 	<li>Marketing of the business arm of Asia Centre by promoting us as a boutique meeting, seminar and conference space in Central Bangkok</li>\r\n</ul>\r\n<b>Required Skills and Qualifications</b>\r\n<ul>\r\n 	<li>Bachelor’s degree in Communications, Business Administration, Marketing, or a related field.</li>\r\n 	<li>Minimum 1 year of directly related marketing, public affairs, media relations, and/or marketing research experience</li>\r\n 	<li>High level of organizational and project coordination skills.</li>\r\n 	<li>Demonstrated working knowledge of Wordpress and basic web communication techniques; expertise in using office software packages, technology, and systems (spreadsheets, graphics, database programs).</li>\r\n 	<li>Knowledge and experience in using social media as a promotional/engagement tool.</li>\r\n 	<li>Experience in graphic design</li>\r\n 	<li>Able to speak, read and write effectively in Thai and English. A good command of English is indispensable.</li>\r\n 	<li>Ability to work in a multicultural environment</li>\r\n 	<li>Flexibility and adaptability within a dynamic work environment are essential assets</li>\r\n</ul>\r\n<b>Work Environment </b>\r\n\r\nAsia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.\r\n\r\n<b>How to apply</b>\r\n\r\nTo apply, submit - in one pdf document -  a brief cover letter, an updated CV (2 pages max), proof of prior work experience and scanned copies of your diplomas to (e-mail).\r\n\r\nAfter submission, please note that only short-listed candidates will be contacted. The position will remain open until filled.\r\n\r\nAs part of the application process Asia Centre reserves the right to verify the academic and professional credentials of short-listed candidates.<b> Candidates must ensure that they have no legal restrictions on working in Thailand. </b>\r\n\r\n<b>About Asia Centre</b>\r\n\r\nAsia Centre is an independent think- tank and networking hub for academia and civil society in the region. The Centre’s core activities focus on education and human right’s policy research. It provides meeting facilities and services for academic and professional development, communications and outreach, research and publications, and development and technical assistance. Asia Centre connects peoples and regions through collaborative partnership with educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector. Asia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region.', 'Job Opportunities', '', 'inherit', 'closed', 'closed', '', '1955-revision-v1', '', '', '2016-10-10 05:59:22', '2016-10-10 05:59:22', '', 1955, 'http://asiacentre.co.th/other/1955-revision-v1/', 0, 'revision', '', 0),
(3043, 6, '2016-10-10 06:16:43', '2016-10-10 06:16:43', '<a href="http://asiacentre.co.th/opportunities/internship-programme/">Internship Programme</a>\n\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream. <a href="http://asiacentre.co.th/opportunities/internship-programme/">Find out more...</a>\n\nJob Opportunities', 'Opportunities', '', 'inherit', 'closed', 'closed', '', '1933-autosave-v1', '', '', '2016-10-10 06:16:43', '2016-10-10 06:16:43', '', 1933, 'http://asiacentre.co.th/other/1933-autosave-v1/', 0, 'revision', '', 0),
(3044, 6, '2016-10-10 06:17:43', '2016-10-10 06:17:43', '<a href="http://asiacentre.co.th/opportunities/internship-programme/">Internship Programme</a>\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream. <a href="http://asiacentre.co.th/opportunities/internship-programme/">Find out more...</a>\r\n\r\n<a href="http://asiacentre.co.th/job-opportunities/">Job Opportunities</a>\r\n\r\nAsia Centre is looking to hire a Digital Marketing &amp; Communication Officer to join our team. This is an exciting role within a young organisation, covering all aspects of communications and marketing including brand development, strategic events, PR, marketing campaigns, digital development and content writing.<a href="http://asiacentre.co.th/job-opportunities/">Find out more...</a>', 'Opportunities', '', 'inherit', 'closed', 'closed', '', '1933-revision-v1', '', '', '2016-10-10 06:17:43', '2016-10-10 06:17:43', '', 1933, 'http://asiacentre.co.th/other/1933-revision-v1/', 0, 'revision', '', 0),
(3045, 6, '2016-10-10 06:18:33', '2016-10-10 06:18:33', '<a href="http://asiacentre.co.th/opportunities/internship-programme/">Internship Programme</a>\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a research stream and a communications stream. <a href="http://asiacentre.co.th/opportunities/internship-programme/">Find out more...</a>\r\n\r\n<a href="http://asiacentre.co.th/job-opportunities/">Job Opportunities</a>\r\n\r\nAsia Centre is looking to hire a Digital Marketing &amp; Communication Officer to join our team. This is an exciting role within a young organisation, covering all aspects of communications and marketing including brand development, strategic events, PR, marketing campaigns, digital development and content writing. <a href="http://asiacentre.co.th/job-opportunities/">Find out more...</a>', 'Opportunities', '', 'inherit', 'closed', 'closed', '', '1933-revision-v1', '', '', '2016-10-10 06:18:33', '2016-10-10 06:18:33', '', 1933, 'http://asiacentre.co.th/other/1933-revision-v1/', 0, 'revision', '', 0),
(3048, 6, '2016-10-10 06:38:04', '2016-10-10 06:38:04', '', 'internship-1', '', 'inherit', 'closed', 'closed', '', 'internship-1-2', '', '', '2016-10-10 06:38:04', '2016-10-10 06:38:04', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/Internship-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3054, 6, '2016-10-10 07:50:35', '2016-10-10 07:50:35', '', 'asia-centre-space1', '', 'inherit', 'closed', 'closed', '', 'asia-centre-space1', '', '', '2016-10-12 09:12:11', '2016-10-12 09:12:11', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Space1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3055, 6, '2016-12-27 03:03:45', '2016-12-27 03:03:45', '&nbsp;\n\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\n\n&nbsp;\n\n[row]\n[column col="6"]\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\n&nbsp;\n<p style="text-align: justify;"><b>Internship tasks</b></p>\n\n<ul>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\n</ul>\n[/column]\n\n[column col="6"]\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\n&nbsp;\n<p style="text-align: justify;"><b>Internship tasks</b></p>\n\n<ul>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\n</ul>\n[/column]\n\n[/row]\n\n[separator style="regular"]\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;\n\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\n<p style="text-align: justify;"><strong>Duration</strong></p>\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\n\n<ul>\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\n 	<li style="text-align: justify;">Copy of passport</li>\n 	<li style="text-align: justify;">CV</li>\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-autosave-v1', '', '', '2016-12-27 03:03:45', '2016-12-27 03:03:45', '', 2032, 'http://asiacentre.co.th/other/2032-autosave-v1/', 0, 'revision', '', 0),
(3057, 6, '2016-10-11 03:24:05', '2016-10-11 03:24:05', '', 'us-election', '', 'inherit', 'closed', 'closed', '', 'us-election', '', '', '2016-10-12 09:12:38', '2016-10-12 09:12:38', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/US-election.jpg', 0, 'attachment', 'image/jpeg', 0),
(3058, 6, '2016-10-11 07:01:46', '2016-10-11 07:01:46', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/file/d/0B8CIMc6y7oxkR3FJQ3diOXZQRlU/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-10-11 07:01:46', '2016-10-11 07:01:46', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3060, 6, '2016-10-11 08:40:50', '2016-10-11 08:40:50', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2016-10-11 08:40:50', '2016-10-11 08:40:50', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3062, 5, '2016-10-18 04:55:06', '2016-10-18 04:55:06', '', 'hbs-logo-separate2', '', 'inherit', 'closed', 'closed', '', 'hbs-logo-separate2', '', '', '2016-10-18 04:55:06', '2016-10-18 04:55:06', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2.jpg', 0, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3064, 5, '2016-11-03 09:37:27', '2016-11-03 09:37:27', '<p style="text-align: justify;">Asia<img class="wp-image-3065 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o-600x460.jpg" alt="14918847_1326888830663675_4103291665663509381_o" width="357" height="274" /> Centre will be launching a brand new event series called - Spark Sessions - designed to provide a platform for individuals to connect, inspire and build community. Spark Sessions go beyond your average networking sessions, because at Asia Centre we believe in doing things differently. Forget the fussy ties, rehearsed pitches and name card collecting. We’re opting for connection, conversation and genuine engagement.</p>\r\n<p style="text-align: justify;">The inaugural edition of the Spark Sessions will focus on engaging youth. Asia Centre invites university students from all disciplines to an informal and free get together to interact with representatives from international organizations, NGOs, social enterprises and civil society.</p>\r\n<p style="text-align: justify;"><span style="color: #993300;">IF YOU ARE</span><span class="text_exposed_show"><span style="color: #993300;"> A STUDENT, RESEARCHER OR SOMEONE INTERESTED IN COMMUNITY ENGAGEMENT, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n</span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Better understand some of the critical issues tackled by international organizations, NGOs, social enterprises and civil society</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Browse through the “community centre” where attending organisations will set up stands</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Ask questions and explore internship opportunities</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Be a part of a socially engaged community and discover how you can contribute</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style="color: #993300;">IF YOU ARE A BANGKOK BASED NGO, CIVIL SOCIETY ORGANISATION OR SOCIAL ENTERPRISE, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n<ul>\r\n 	<li>Connect, Converse and Engage with representatives from Bangkok based international organisations, NGOs, civil society and social enterprise. We hope that this platform can SPARK cooperation and new collaborative projects between organisations.</li>\r\n 	<li>Engage with young talents and university students</li>\r\n 	<li>Connect with prospective interns who are passionate about your cause</li>\r\n 	<li>Raise awareness about your organisation, its objectives and projects for the coming year</li>\r\n</ul>\r\n&nbsp;\r\n\r\nAttendance is free, light refreshments and snacks will be provided.\r\n\r\n&nbsp;\r\n\r\nIf your organisation is interested in participating in this event, please contact us at contact@asiacentre.co.th.\r\n\r\n&nbsp;\r\n\r\n<a href="https://www.facebook.com/events/215682748843461/" target="_blank"><img class="aligncenter wp-image-3069" src="http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920-600x338.png" alt="facebook-like-share-ss-1920" width="213" height="120" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href="https://docs.google.com/forms/d/e/1FAIpQLSeEJqCVS2iZz9xlu0VmHEGpaDrHIBPSaqpVjnH2PA84Zf-_xQ/viewform" target="_blank"><img class="aligncenter wp-image-3070" src="http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286-600x128.png" alt="register-now-button55286" width="352" height="75" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis event is supported by the Heinrich Böll Stiftung, Southeast Asia.<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="113" height="84" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Spark Sessions: An Alternative Networking Event', '', 'publish', 'closed', 'closed', '', 'spark-sessions-an-alternative-networking-event', '', '', '2016-12-22 06:54:02', '2016-12-22 06:54:02', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3064', 0, 'event', '', 0),
(3065, 5, '2016-11-03 09:18:15', '2016-11-03 09:18:15', '', '14918847_1326888830663675_4103291665663509381_o', '', 'inherit', 'closed', 'closed', '', '14918847_1326888830663675_4103291665663509381_o', '', '', '2016-11-03 09:18:15', '2016-11-03 09:18:15', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(3066, 5, '2016-11-03 09:26:47', '2016-11-03 09:26:47', '', 'screen-shot-2016-11-03-at-16-26-44', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-11-03-at-16-26-44', '', '', '2016-11-03 09:26:47', '2016-11-03 09:26:47', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44.png', 0, 'attachment', 'image/png', 0),
(3067, 5, '2016-11-18 06:30:44', '2016-11-18 06:30:44', '<p style="text-align: justify;">Asia<img class="wp-image-3065 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o-600x460.jpg" alt="14918847_1326888830663675_4103291665663509381_o" width="357" height="274" /> Centre will be launching a brand new event series called - Spark Sessions - designed to provide a platform for individuals to connect, inspire and build community. Spark Sessions go beyond your average networking sessions, because at Asia Centre we believe in doing things differently. Forget the fussy ties, rehearsed pitches and name card collecting. We’re opting for connection, conversation and genuine engagement.</p>\r\n<p style="text-align: justify;">The inaugural edition of the Spark Sessions will focus on engaging youth. Asia Centre invites university students from all disciplines to an informal and free get together to interact with representatives from international organizations, NGOs, social enterprises and civil society.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="color: #993300;">IF YOU ARE</span><span class="text_exposed_show"><span style="color: #993300;"> A STUDENT, RESEARCHER OR JUST INTERESTED IN LEARNING MORE, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n</span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Better understand some of the critical issues tackled by international organizations, NGOs, social enterprises and civil society</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Browse through the “community centre” where attending organisations will set up stands</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Ask questions and explore internship opportunities</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Be a part of a socially engaged community and discover how you can contribute</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style="color: #993300;">IF YOU ARE A BANGKOK BASED NGO, CIVIL SOCIETY ORGANISATION OR SOCIAL ENTERPRISE, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n<ul>\r\n 	<li>Connect, Converse and Engage with representatives from Bangkok based international organisations, NGOs, civil society and social enterprise. We hope that this platform can SPARK cooperation and new collaborative projects between organisations.</li>\r\n 	<li>Engage with young talents and university students</li>\r\n 	<li>Connect with prospective interns who are passionate about your cause</li>\r\n 	<li>Raise awareness about your organisation, its objectives and projects for the coming year</li>\r\n</ul>\r\n&nbsp;\r\n\r\nAttendance is free, light refreshments and snacks will be provided.\r\n\r\n&nbsp;\r\n\r\nIf your organisation is interested in participating in this event, please contact us at contact@asiacentre.co.th.\r\n\r\n&nbsp;\r\n\r\n<a href="https://www.facebook.com/events/215682748843461/" target="_blank"><img class="aligncenter wp-image-3069" src="http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920-600x338.png" alt="facebook-like-share-ss-1920" width="213" height="120" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href="https://docs.google.com/forms/d/e/1FAIpQLSeEJqCVS2iZz9xlu0VmHEGpaDrHIBPSaqpVjnH2PA84Zf-_xQ/viewform" target="_blank"><img class="aligncenter wp-image-3070" src="http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286-600x128.png" alt="register-now-button55286" width="352" height="75" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis event is supported by the Heinrich Böll Stiftung, Southeast Asia.<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="113" height="84" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Spark Sessions: An Alternative Networking Event', '', 'inherit', 'closed', 'closed', '', '3064-autosave-v1', '', '', '2016-11-18 06:30:44', '2016-11-18 06:30:44', '', 3064, 'http://asiacentre.co.th/other/3064-autosave-v1/', 0, 'revision', '', 0),
(3068, 5, '2016-11-03 09:46:15', '2016-11-03 09:46:15', '', 'screen-shot-2016-11-03-at-16-46-31', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2016-11-03-at-16-46-31', '', '', '2016-11-03 09:46:15', '2016-11-03 09:46:15', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31.png', 0, 'attachment', 'image/png', 0),
(3069, 5, '2016-11-04 04:04:45', '2016-11-04 04:04:45', '', 'facebook-like-share-ss-1920', '', 'inherit', 'closed', 'closed', '', 'facebook-like-share-ss-1920', '', '', '2016-11-04 04:04:45', '2016-11-04 04:04:45', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920.png', 0, 'attachment', 'image/png', 0),
(3070, 5, '2016-11-04 04:04:54', '2016-11-04 04:04:54', '', 'register-now-button55286', '', 'inherit', 'closed', 'closed', '', 'register-now-button55286', '', '', '2016-11-04 04:04:54', '2016-11-04 04:04:54', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286.png', 0, 'attachment', 'image/png', 0),
(3075, 5, '2016-11-16 07:39:57', '2016-11-16 07:39:57', '<b>Asia Centre invites the submission of abstracts on the role of national human rights institutions (NHRIs) in Southeast Asia in protecting human rights. We welcome submissions from specialists in this field, including by former and current practitioners in the region’s NHRIs. </b>\r\n\r\n&nbsp;\r\n\r\n<b>Background and rationale:</b>\r\n<p style="text-align: justify;">In 2008, the ASEAN’s first-ever Charter came into force. After years of discussion coupled with<img class="alignright size-medium wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended-339x480.jpg" alt="nhri-conference-call-deadline-extended" width="339" height="480" /> external pressure, the ASEAN leaders ultimately consent to include an article on human rights that eventually lead to the establishment of the ASEAN Intergovernmental Human Rights Commission (AICHR) in 2010. Two years later in 2012, the ASEAN Human Rights Declaration (AHRD) was adopted. These regional human rights developments were significant for an association that is rooted in the principle of non-interference in domestic affairs of neighbouring states. Nevertheless, the capacity of the regional human rights mechanism to protect human rights is a major question mark that awaits an answer.</p>\r\n<p style="text-align: justify;">A vital complement to this regional system is the group of NHRIs that lie at the intersection of civil society (national, regional and international) and the state. Six NHRIs have been established in the region, some pre-dating the regional mechanism. They are the Commission on Human Rights in the Philippines (CRP), Indonesia National Commission on Human Rights (Komnas HAM), Human Rights Commission of Malaysia (Suhakam), National Human Rights Commission of Thailand, Myanmar National Human Rights Commission (MNHRC) and the Provedor for Human Rights and Justice of Timor Leste (PDHJ). The latter is a special case. As of now, Timor Leste has yet to be admitted as a full member of ASEAN.</p>\r\n<p style="text-align: justify;">In addition, in order to face the regional developments and challenges, these NHRIs, while seeking to improve their national capacities, have also evolved and formalised their network and named it as the Southeast Asia NHRI Forum (SEANF) in 2009. The formalisation of SEANF is considered a commitment of the Southeast Asia NHRIs in further strengthening and enhancing their roles in protecting human rights in the region.</p>\r\n<p style="text-align: justify;">Internationally, they are also members in the Asia Pacific Forum of National Human Rights Institutions (APF) and are part of the Global Alliance of the National Human Rights Institutions (GANHRI), formerly known as the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC). They also contribute stakeholder submissions to the UPR process of the Human Rights Council.</p>\r\n<p style="text-align: justify;">The question arises, however, as to whether these government-sponsored NHRIs are effective in providing protection of human rights in the region. Preliminary analysis has questioned their effectiveness in providing protection.</p>\r\n<p style="text-align: justify;">The unique position of the NHRIs between the government and civil society provide opportunities and at the same time dilemmas in protecting human rights in the region. Their capacity to investigate human rights violations, to conduct national inquiries or public hearings and to secure remedies for human rights victims are often questioned.</p>\r\n<p style="text-align: justify;">This conference aims to serve as a platform for representatives from NHRIs, academics, researchers, students and civil society interested in the topic to explore, through evidence based research, the potentials, challenges and opportunities of these Southeast Asian NHRIs and their contribution to human rights protection in the region.  It seeks to explore their protection roles at the national, regional and international levels.</p>\r\n<p style="text-align: justify;"><b>Themes</b></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b><i>NHRIs, international human rights system and networks</i></b>. How is the interaction between the NHRIs at the international level, for example with the UPR and UN? What is the role of GANHRI in the growth and development of the NHRIs worldwide?</li>\r\n 	<li><b><i>NHRIs in the national context</i></b>. Why states create NHRIs? What are its mandates, legal basis, powers, functions and its compliances with Paris Principles? What happens to others that do not have any? Topics can be related to NHRIs and state compliance, NHRIs and political regimes, NHRIs and judiciary.</li>\r\n 	<li><b><i>NHRIs and regional human rights system and networks</i></b>. Now that the AICHR has been established, how is the relationship between the NHRIs and AICHR? How have the NHRIs respond to the AHRD? To what extent the regional networks such as the SEANF and the APF could help in term of advancing the protection role of the NHRIs?</li>\r\n 	<li><b><i>NHRIs and human rights protection</i></b>. NHRIs’ mandates and powers are varied; do they help in securing remedies or compensation? What are their impacts on protecting human rights? Now that NHRIs have engaged with other human rights networks regionally and globally, how has it help in dealing with transboundary human rights issues?</li>\r\n</ul>\r\n<p style="text-align: justify;"><b>Objectives</b></p>\r\n<p style="text-align: justify;">This conference aims to achieve the following objectives:</p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li>Convene researchers working on human rights in Southeast Asia</li>\r\n 	<li>Exchange views among the authors researching the NHRIs in Southeast Asia</li>\r\n 	<li>Publish the outcomes in a special issue journal and/or an edited book</li>\r\n 	<li>Contribute to the academic literature on NHRIs and human rights in Southeast Asia.</li>\r\n</ul>\r\n<p style="text-align: justify;"><b>Conveners: </b></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li>Professor James Gomez, Asia Centre</li>\r\n 	<li>Professor Khoo Ying Hooi, University of Malaya</li>\r\n 	<li>Professor Robin Ramcharan, Asia Centre</li>\r\n</ul>\r\n<b>Abstract Submission</b>\r\n\r\nSubmit an abstract in English, of 300 to 350 words, together with a short bio to contact@asiacentre.co.th. Full papers should be 5000 words.\r\n\r\n<b>Poster presentations</b>\r\n\r\nLimited space is available for 4 to 5 poster presentations. Your presentation may be submitted in word / pdf format to the Asia Centre for consideration. A 60x80 cm poster will be printed and displayed during the conference.\r\n\r\n<strong>Online Participation</strong>\r\n\r\nWe welcome presentations and participation via Skype. Full conference fees apply.\r\n\r\n<b>Deadlines:</b>\r\n<ul>\r\n 	<li>Abstract and Poster Submission: 28 February 2017</li>\r\n 	<li>Notification of acceptance of abstracts and posters: Rolling</li>\r\n 	<li>Submission of full paper for conference and final version of poster: 1 June 2017</li>\r\n</ul>\r\n<p style="text-align: justify;"><b>Conference Fees</b></p>\r\n<p style="text-align: justify;">This is a self-funded conference, hence a fee of USD$200 will be charged to all participants, this will go towards covering the cost of the venue, equipment and logistics, coffee breaks on all days, certificates for participants, and conference communications. There is a student fee of  USD$150.</p>\r\n\r\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\r\n<input name="hosted_button_id" type="hidden" value="WEPHJXQEF4BPS" />\r\n<table>\r\n<tbody>\r\n<tr>\r\n<td><input name="on0" type="hidden" value="Conference Fees" /><span style="color: #000080;"><strong><em>Conference Fees</em></strong></span></td>\r\n</tr>\r\n<tr>\r\n<td><select name="os0">\r\n<option value="For Participants">For Participants $200.00 USD</option>\r\n<option value="For Students">For Students $150.00 USD</option>\r\n</select></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\r\n\r\n</form><b><img class=" wp-image-3084 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/visa-mastercard-paypal-600x116.png" alt="visa-mastercard-paypal" width="119" height="23" /></b>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Programme Outline</b></p>\r\n<p style="text-align: justify;">Day 1 (13 July 2017): 9am to 5pm</p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li>Keynote speaker, paper presentations and dinner</li>\r\n</ul>\r\n<p style="text-align: justify;">Day 2 (14 July 2017): 9am to 5pm</p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li>Paper presentations and closing plenary</li>\r\n 	<li>Book project consultation</li>\r\n</ul>\r\n<p style="text-align: justify;"><b>Conference Structure</b></p>\r\n<p style="text-align: justify;">The conference will be structured in accordance with the four themes above.</p>\r\n<p style="text-align: justify;">It will be open to participation by civil society organisations, civil society groups, international organisations, government officials and the academic community to facilitate knowledge sharing and networking opportunities.</p>\r\n<p style="text-align: justify;"><b>Host: </b>Asia Centre, Bangkok, Thailand.</p>', 'National Human Rights Institutions in Southeast Asia: Challenges of Protection', '', 'publish', 'closed', 'closed', '', 'nhriconference2017', '', '', '2017-01-17 10:18:04', '2017-01-17 03:18:04', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3075', 0, 'event', '', 0),
(3076, 5, '2016-11-16 07:23:10', '2016-11-16 07:23:10', '', 'nhri-conference-call-asia-centre', '', 'inherit', 'closed', 'closed', '', 'nhri-conference-call-asia-centre', '', '', '2016-11-16 07:23:10', '2016-11-16 07:23:10', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/NHRI-Conference-Call-Asia-Centre-.jpg', 0, 'attachment', 'image/jpeg', 0),
(3077, 5, '2016-11-16 07:38:39', '2016-11-16 07:38:39', '', 'nhri-conference-call-asia-centre', '', 'inherit', 'closed', 'closed', '', 'nhri-conference-call-asia-centre-2', '', '', '2016-11-16 07:38:39', '2016-11-16 07:38:39', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/NHRI-Conference-Call-Asia-Centre-.pdf', 0, 'attachment', 'application/pdf', 0),
(3078, 5, '2016-11-16 07:39:21', '2016-11-16 07:39:21', '', 'nhri-conference-call-asia-centre', '', 'inherit', 'closed', 'closed', '', 'nhri-conference-call-asia-centre-3', '', '', '2016-11-16 07:39:21', '2016-11-16 07:39:21', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/NHRI-Conference-Call-Asia-Centre-1-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3079, 5, '2016-12-12 06:53:36', '2016-12-12 06:53:36', '<b>Asia Centre invites the submission of abstracts on the role of national human rights institutions (NHRIs) in Southeast Asia in protecting human rights. We welcome submissions from specialists in this field, including by former and current practitioners in the region’s NHRIs. </b>\n\n&nbsp;\n\n<b>Background and rationale:</b>\n<p style="text-align: justify;">In 2008, the ASEAN’s first-ever Charter came into force. After years of discussion coupled with<img class="alignright wp-image-3196 size-medium" src="http://asiacentre.co.th/wp-content/uploads/2016/12/NHRI-Conference-Call-Asia-Centre--339x480.jpg" width="339" height="480" /> external pressure, the ASEAN leaders ultimately consent to include an article on human rights that eventually lead to the establishment of the ASEAN Intergovernmental Human Rights Commission (AICHR) in 2010. Two years later in 2012, the ASEAN Human Rights Declaration (AHRD) was adopted. These regional human rights developments were significant for an association that is rooted in the principle of non-interference in domestic affairs of neighbouring states. Nevertheless, the capacity of the regional human rights mechanism to protect human rights is a major question mark that awaits an answer.</p>\n<p style="text-align: justify;">A vital complement to this regional system is the group of NHRIs that lie at the intersection of civil society (national, regional and international) and the state. Six NHRIs have been established in the region, some pre-dating the regional mechanism. They are the Commission on Human Rights in the Philippines (CRP), Indonesia National Commission on Human Rights (Komnas HAM), Human Rights Commission of Malaysia (Suhakam), National Human Rights Commission of Thailand, Myanmar National Human Rights Commission (MNHRC) and the Provedor for Human Rights and Justice of Timor Leste (PDHJ). The latter is a special case. As of now, Timor Leste has yet to be admitted as a full member of ASEAN.</p>\n<p style="text-align: justify;">In addition, in order to face the regional developments and challenges, these NHRIs, while seeking to improve their national capacities, have also evolved and formalised their network and named it as the Southeast Asia NHRI Forum (SEANF) in 2009. The formalisation of SEANF is considered a commitment of the Southeast Asia NHRIs in further strengthening and enhancing their roles in protecting human rights in the region.</p>\n<p style="text-align: justify;">Internationally, they are also members in the Asia Pacific Forum of National Human Rights Institutions (APF) and are part of the Global Alliance of the National Human Rights Institutions (GANHRI), formerly known as the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC). They also contribute stakeholder submissions to the UPR process of the Human Rights Council.</p>\n<p style="text-align: justify;">The question arises, however, as to whether these government-sponsored NHRIs are effective in providing protection of human rights in the region. Preliminary analysis has questioned their effectiveness in providing protection.</p>\n<p style="text-align: justify;">The unique position of the NHRIs between the government and civil society provide opportunities and at the same time dilemmas in protecting human rights in the region. Their capacity to investigate human rights violations, to conduct national inquiries or public hearings and to secure remedies for human rights victims are often questioned.</p>\n<p style="text-align: justify;">This conference aims to serve as a platform for representatives from NHRIs, academics, researchers, students and civil society interested in the topic to explore, through evidence based research, the potentials, challenges and opportunities of these Southeast Asian NHRIs and their contribution to human rights protection in the region.  It seeks to explore their protection roles at the national, regional and international levels.</p>\n<p style="text-align: justify;"><b>Themes</b></p>\n\n<ul style="text-align: justify;">\n 	<li><b><i>NHRIs, international human rights system and networks</i></b>. How is the interaction between the NHRIs at the international level, for example with the UPR and UN? What is the role of GANHRI in the growth and development of the NHRIs worldwide?</li>\n 	<li><b><i>NHRIs in the national context</i></b>. Why states create NHRIs? What are its mandates, legal basis, powers, functions and its compliances with Paris Principles? What happens to others that do not have any? Topics can be related to NHRIs and state compliance, NHRIs and political regimes, NHRIs and judiciary.</li>\n 	<li><b><i>NHRIs and regional human rights system and networks</i></b>. Now that the AICHR has been established, how is the relationship between the NHRIs and AICHR? How have the NHRIs respond to the AHRD? To what extent the regional networks such as the SEANF and the APF could help in term of advancing the protection role of the NHRIs?</li>\n 	<li><b><i>NHRIs and human rights protection</i></b>. NHRIs’ mandates and powers are varied; do they help in securing remedies or compensation? What are their impacts on protecting human rights? Now that NHRIs have engaged with other human rights networks regionally and globally, how has it help in dealing with transboundary human rights issues?</li>\n</ul>\n<p style="text-align: justify;"><b>Objectives</b></p>\n<p style="text-align: justify;">This conference aims to achieve the following objectives:</p>\n\n<ul style="text-align: justify;">\n 	<li>Convene researchers working on human rights in Southeast Asia</li>\n 	<li>Exchange views among the authors researching the NHRIs in Southeast Asia</li>\n 	<li>Publish the outcomes in a special issue journal and/or an edited book</li>\n 	<li>Contribute to the academic literature on NHRIs and human rights in Southeast Asia.</li>\n</ul>\n<p style="text-align: justify;"><b>Conveners: </b></p>\n\n<ul style="text-align: justify;">\n 	<li>Professor James Gomez, Asia Centre</li>\n 	<li>Professor Khoo Ying Hooi, University of Malaya</li>\n 	<li>Professor Robin Ramcharan, Asia Centre</li>\n</ul>\n<b>Abstract Submission</b>\n\nSubmit an abstract in English, of 300 to 350 words, together with a short bio to contact@asiacentre.co.th. Full papers should be 5000 words.\n\n<b>Poster presentations</b>\n\nLimited space is available for 4 to 5 poster presentations. Your presentation may be submitted in word / pdf format to the Asia Centre for consideration. A 60x80 cm poster will be printed and displayed during the conference.\n\n<strong>Online Participation</strong>\n\nWe welcome presentations and participation via Skype. Full conference fees apply.\n\n<b>Deadlines:</b>\n<ul>\n 	<li>Abstract and Poster Submission: 16 January 2017</li>\n 	<li>Notification of acceptance of abstracts and posters: 10 February 2017</li>\n 	<li>Submission of full paper for conference and final version of poster: 1 June 2017</li>\n</ul>\n<p style="text-align: justify;"><b>Conference Fees</b></p>\n<p style="text-align: justify;">This is a self-funded conference, hence a fee of USD$200 will be charged to all participants, this will go towards covering the cost of the venue, equipment and logistics, coffee breaks on all days, certificates for participants, and conference communications. There is a student fee of  USD$150.</p>\n\n<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="paypal"><input name="cmd" type="hidden" value="_s-xclick" />\n<input name="hosted_button_id" type="hidden" value="WEPHJXQEF4BPS" />\n<table>\n<tbody>\n<tr>\n<td><input name="on0" type="hidden" value="Conference Fees" /><span style="color: #000080;"><strong><em>Conference Fees</em></strong></span></td>\n</tr>\n<tr>\n<td><select name="os0">\n<option value="For Participants">For Participants $200.00 USD</option>\n<option value="For Students">For Students $150.00 USD</option>\n</select></td>\n</tr>\n</tbody>\n</table>\n<input alt="PayPal – The safer, easier way to pay online!" name="submit" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" type="image" />\n\n</form><b><img class=" wp-image-3084 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/visa-mastercard-paypal-600x116.png" alt="visa-mastercard-paypal" width="119" height="23" /></b>\n\n&nbsp;\n\n&nbsp;\n<p style="text-align: justify;"><b>Programme Outline</b></p>\n<p style="text-align: justify;">Day 1 (13 July 2017): 9am to 5pm</p>\n\n<ul style="text-align: justify;">\n 	<li>Keynote speaker, paper presentations and dinner</li>\n</ul>\n<p style="text-align: justify;">Day 2 (14 July 2017): 9am to 5pm</p>\n\n<ul style="text-align: justify;">\n 	<li>Paper presentations and closing plenary</li>\n 	<li>Book project consultation</li>\n</ul>\n<p style="text-align: justify;"><b>Conference Structure</b></p>\n<p style="text-align: justify;">The conference will be structured in accordance with the four themes above.</p>\n<p style="text-align: justify;">It will be open to participation by civil society organisations, civil society groups, international organisations, government officials and the academic community to facilitate knowledge sharing and networking opportunities.</p>\n<p style="text-align: justify;"><b>Host: </b>Asia Centre, Bangkok, Thailand.</p>', 'National Human Rights Institutions in Southeast Asia: Challenges of Protection', '', 'inherit', 'closed', 'closed', '', '3075-autosave-v1', '', '', '2016-12-12 06:53:36', '2016-12-12 06:53:36', '', 3075, 'http://asiacentre.co.th/other/3075-autosave-v1/', 0, 'revision', '', 0),
(3080, 5, '2016-11-16 09:11:49', '2016-11-16 09:11:49', '', 'nhri-conference-call-asia-centre', '', 'inherit', 'closed', 'closed', '', 'nhri-conference-call-asia-centre-4', '', '', '2016-11-16 09:11:49', '2016-11-16 09:11:49', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/NHRI-Conference-Call-Asia-Centre-1-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(3081, 5, '2016-11-16 09:14:46', '2016-11-16 09:14:46', '', 'nhri-conference-call-asia-centre', '', 'inherit', 'closed', 'closed', '', 'nhri-conference-call-asia-centre-5', '', '', '2016-11-16 09:14:46', '2016-11-16 09:14:46', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/NHRI-Conference-Call-Asia-Centre-1-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(3083, 3, '2016-11-17 04:48:37', '2016-11-17 04:48:37', '<b>Asia Centre invites the submission of abstracts on the role of national human rights institutions (NHRIs) in Southeast Asia in protecting human rights. We welcome submissions from specialists in this field, including by former and current practitioners in the region’s NHRIs. </b>\n\n&nbsp;\n\n<b>Background and rationale:</b>\n<p style="text-align: justify;">In 2008, the ASEAN’s first-ever Charter came into force. After years of discussion coupled with<img class="alignright size-medium wp-image-3081" src="http://asiacentre.co.th/wp-content/uploads/2016/11/NHRI-Conference-Call-Asia-Centre-1-3-339x480.jpg" alt="nhri-conference-call-asia-centre" width="339" height="480" /> external pressure, the ASEAN leaders ultimately consent to include an article on human rights that eventually lead to the establishment of the ASEAN Intergovernmental Human Rights Commission (AICHR) in 2010. Two years later in 2012, the ASEAN Human Rights Declaration (AHRD) was adopted. These regional human rights developments were significant for an association that is rooted in the principle of non-interference in domestic affairs of neighbouring states. Nevertheless, the capacity of the regional human rights mechanism to protect human rights is a major question mark that awaits an answer.</p>\n<p style="text-align: justify;">A vital complement to this regional system is the group of NHRIs that lie at the intersection of civil society (national, regional and international) and the state. Six NHRIs have been established in the region, some pre-dating the regional mechanism. They are the Commission on Human Rights in the Philippines (CRP), Indonesia National Commission on Human Rights (Komnas HAM), Human Rights Commission of Malaysia (Suhakam), National Human Rights Commission of Thailand, Myanmar National Human Rights Commission (MNHRC) and the Provedor for Human Rights and Justice of Timor Leste (PDHJ). The latter is a special case. As of now, Timor Leste has yet to be admitted as a full member of ASEAN.</p>\n<p style="text-align: justify;">In addition, in order to face the regional developments and challenges, these NHRIs, while seeking to improve their national capacities, have also evolved and formalised their network and named it as the Southeast Asia NHRI Forum (SEANF) in 2009. The formalisation of SEANF is considered a commitment of the Southeast Asia NHRIs in further strengthening and enhancing their roles in protecting human rights in the region.</p>\n<p style="text-align: justify;">Internationally, they are also members in the Asia Pacific Forum of National Human Rights Institutions (APF) and are part of the Global Alliance of the National Human Rights Institutions (GANHRI), formerly known as the International Coordinating Committee of National Institutions for the Promotion and Protection of Human Rights (ICC). They also contribute stakeholder submissions to the UPR process of the Human Rights Council.</p>\n<p style="text-align: justify;">The question arises, however, as to whether these government-sponsored NHRIs are effective in providing protection of human rights in the region. Preliminary analysis has questioned their effectiveness in providing protection.</p>\n<p style="text-align: justify;">The unique position of the NHRIs between the government and civil society provide opportunities and at the same time dilemmas in protecting human rights in the region. Their capacity to investigate human rights violations, to conduct national inquiries or public hearings and to secure remedies for human rights victims are often questioned.</p>\n<p style="text-align: justify;">This conference aims to serve as a platform for representatives from NHRIs, academics, researchers, students and civil society interested in the topic to explore, through evidence based research, the potentials, challenges and opportunities of these Southeast Asian NHRIs and their contribution to human rights protection in the region.  It seeks to explore their protection roles at the national, regional and international levels.</p>\n<p style="text-align: justify;"><b>Themes</b></p>\n\n<ul style="text-align: justify;">\n 	<li><b><i>NHRIs, international human rights system and networks</i></b>. How is the interaction between the NHRIs at the international level, for example with the UPR and UN? What is the role of GANHRI in the growth and development of the NHRIs worldwide?</li>\n 	<li><b><i>NHRIs in the national context</i></b>. Why states create NHRIs? What are its mandates, legal basis, powers, functions and its compliances with Paris Principles? What happens to others that do not have any? Topics can be related to NHRIs and state compliance, NHRIs and political regimes, NHRIs and judiciary.</li>\n 	<li><b><i>NHRIs and regional human rights system and networks</i></b>. Now that the AICHR has been established, how is the relationship between the NHRIs and AICHR? How have the NHRIs respond to the AHRD? To what extent the regional networks such as the SEANF and the APF could help in term of advancing the protection role of the NHRIs?</li>\n 	<li><b><i>NHRIs and human rights protection</i></b>. NHRIs’ mandates and powers are varied; do they help in securing remedies or compensation? What are their impacts on protecting human rights? Now that NHRIs have engaged with other human rights networks regionally and globally, how has it help in dealing with transboundary human rights issues?</li>\n</ul>\n<p style="text-align: justify;"><b>Objectives</b></p>\n<p style="text-align: justify;">This conference aims to achieve the following objectives:</p>\n\n<ul style="text-align: justify;">\n 	<li>Convene researchers working on human rights in Southeast Asia</li>\n 	<li>Exchange views among the authors researching the NHRIs in Southeast Asia</li>\n 	<li>Publish the outcomes in a special issue journal and/or an edited book</li>\n 	<li>Contribute to the academic literature on NHRIs and human rights in Southeast Asia.</li>\n</ul>\n<p style="text-align: justify;"><b>Conveners: </b></p>\n\n<ul style="text-align: justify;">\n 	<li>Professor James Gomez, Asia Centre</li>\n 	<li>Professor Khoo Ying Hooi, University of Malaya</li>\n 	<li>Professor Robin Ramcharan, Asia Centre</li>\n</ul>\n<p style="text-align: justify;"><b>Conference Fees</b></p>\n<p style="text-align: justify;">This is a self-funded conference, hence a fee of USD$200 will be charged to all participants, this will go towards covering the cost of the venue, equipment and logistics, coffee breaks on all days, certificates for participants, and conference communications. There is a student fee of  USD$150.</p>\n\n<form target="paypal" action="https://www.paypal.com/cgi-bin/webscr" method="post">\n<input type="hidden" name="cmd" value="_s-xclick">\n<input type="hidden" name="hosted_button_id" value="WEPHJXQEF4BPS">\n<table>\n<tr><td><input type="hidden" name="on0" value="Conference Fees">Conference Fees</td></tr><tr><td><select name="os0">\n	<option value="For Participants">For Participants $200.00 USD</option>\n	<option value="For Students">For Students $150.00 USD</option>\n</select> </td></tr>\n</table>\n<input type="hidden" name="currency_code" value="USD">\n<input type="image" src="https://www.paypalobjects.com/en_GB/TH/i/btn/btn_cart_LG.gif" border="0" name="submit" alt="PayPal – The safer, easier way to pay online!">\n<img alt="" border="0" src="https://www.paypalobjects.com/th_TH/i/scr/pixel.gif" width="1" height="1">\n</form><b><img class=" wp-image-3084 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/visa-mastercard-paypal-600x116.png" alt="visa-mastercard-paypal" width="119" height="23" /></b>\n\n&nbsp;\n\n<b>Poster presentations</b>\n<p style="text-align: justify;">Limited space is available for 4 to 5 poster presentations. Your presentation may be submitted in word / pdf format to the Asia Centre for consideration. A 60x80 cm poster will be printed and displayed during the conference.</p>\n<p style="text-align: justify;"><b>Deadlines:</b></p>\n\n<ul style="text-align: justify;">\n 	<li>Abstract and Poster Submission: 16 January 2017</li>\n 	<li>Notification of acceptance of abstracts and posters: 10 February 2017</li>\n 	<li>Submission of full paper for conference and final version of poster: 1 June 2017</li>\n</ul>\n<p style="text-align: justify;"><b>Programme Outline</b></p>\n<p style="text-align: justify;">Day 1 (13 July 2017): 9am to 5pm</p>\n\n<ul style="text-align: justify;">\n 	<li>Keynote speaker, paper presentations and dinner</li>\n</ul>\n<p style="text-align: justify;">Day 2 (14 July 2017): 9am to 5pm</p>\n\n<ul style="text-align: justify;">\n 	<li>Paper presentations and closing plenary</li>\n 	<li>Book project consultation</li>\n</ul>\n<p style="text-align: justify;"><b>Conference Structure</b></p>\n<p style="text-align: justify;">The conference will be structured in accordance with the four themes above.</p>\n<p style="text-align: justify;">It will be open to participation by civil society organisations, civil society groups, international organisations, government officials and the academic community to facilitate knowledge sharing and networking opportunities.</p>\n<p style="text-align: justify;"><b>Host: </b>Asia Centre, Bangkok, Thailand.</p>', 'National Human Rights Institutions in Southeast Asia: Challenges of Protection', '', 'inherit', 'closed', 'closed', '', '3075-autosave-v1', '', '', '2016-11-17 04:48:37', '2016-11-17 04:48:37', '', 3075, 'http://asiacentre.co.th/other/3075-autosave-v1/', 0, 'revision', '', 0),
(3084, 3, '2016-11-17 03:21:54', '2016-11-17 03:21:54', '', 'visa-mastercard-paypal', '', 'inherit', 'closed', 'closed', '', 'visa-mastercard-paypal', '', '', '2016-11-17 03:21:54', '2016-11-17 03:21:54', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/visa-mastercard-paypal.png', 0, 'attachment', 'image/png', 0),
(3085, 5, '2016-11-17 08:58:20', '2016-11-17 08:58:20', '<p style="text-align: justify;">Asia Centre’s Media &amp; Communications Workshop  is designed to give students an introduction to<img class="wp-image-3086 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Professional-skills.png" alt="professional-skills" width="363" height="205" /> the Asian media landscape and the opportunity to undertake a project that allows for innovation and practical application of their knowledge and skills. Students will be mentored in conceptualising and carrying out their media projects by the Asia Centre. In particular students will be acquainted with how media policy and practices in Asia  are affected by socio-economic factors, cultural context, style of governance and technology. As part of the internship students will be expected to engage in practical media tasks to develop their professional skills including writing, reporting, incorporating digital media elements and disseminating information to media outlets.</p>\r\n&nbsp;\r\n\r\n<b>Course Objectives</b>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Provide students with an appreciation of the Asian media landscape</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Review case studies to develop a contextual appreciation of key laws, governance frameworks, socio-economic and cultural contexts that impact media policy and practices.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Develop students critical thinking, research and interviewing skills.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Equip students with skills to execute and present a multimedia report incorporating written, digital and social media elements.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Enable student to hone and apply their professional skills through practical assignments.</span></li>\r\n</ul>\r\n<img class="alignright wp-image-3088" src="http://asiacentre.co.th/wp-content/uploads/2016/11/15146880_10157669480405307_331213641_o-600x450.jpg" alt="15146880_10157669480405307_331213641_o" width="311" height="233" /> <img class="wp-image-3089 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="318" height="235" /> <img class="wp-image-3090 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="446" height="250" />\r\n\r\n&nbsp;\r\n\r\n<b>Learning Outcomes</b>\r\n\r\n<span style="font-weight: 400;">At the end of this course students will be able to:</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand key developments and issues facing the Asian media landscape</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand media policy and practices in their historical, socio-cultural, economic and political contexts in selected countries</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Think critically and attain competency in conducting research and interviews</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Acquire practical experience in executing and presenting a multimedia research project.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Improve media related professional skills and competencies</span></li>\r\n</ul>\r\n<p style="text-align: justify;"><b>Programme Structure</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This workshop will be be structured to include learning  and practical components. Students will attend and participate in a mixture of activities for experiential learning. The practical component will take the form of producing multimedia report on a project topic of their choice. This will be complemented by visits to media companies, opportunities to interact and network with leading journalists and foreign correspondents, freedom of expression advocates, as well as students and instructors in media and communications programmes in selected Bangkok based universities.</span></p>\r\n<p style="text-align: justify;"><img class="size-medium wp-image-3094 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-1--600x251.jpg" alt="programme-week-1" width="600" height="251" /> <img class="size-medium wp-image-3095 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-2-600x245.jpg" alt="programme-week-2" width="600" height="245" /></p>\r\n<span style="font-weight: 400;">Media Project timeslots are for students to work on developing their multimedia project (in groups or individually), conducting research and producing the final output. Students will work under the guidance of an Asia Centre supervisor.</span>\r\n<p style="text-align: justify;"><strong>Workshop Fees - </strong>USD$450</p>\r\nThe course fees cover instruction &amp; materials. Students are expected to bear their own costs for flights, accommodation, meals, local travel and entrance fees to special events.\r\n\r\nTo register, please drop us an email at contact@asiacentre.co.th\r\n\r\n&nbsp;', 'Media & Communications Workshop', '', 'publish', 'closed', 'closed', '', 'media-communications-workshop', '', '', '2016-12-22 06:47:34', '2016-12-22 06:47:34', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3085', 0, 'event', '', 0),
(3086, 5, '2016-11-17 08:24:55', '2016-11-17 08:24:55', '', 'professional-skills', '', 'inherit', 'closed', 'closed', '', 'professional-skills', '', '', '2016-11-17 08:24:55', '2016-11-17 08:24:55', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Professional-skills.png', 0, 'attachment', 'image/png', 0),
(3087, 5, '2016-11-17 08:53:40', '2016-11-17 08:53:40', '', 'media-comms-workshop-poster', '', 'inherit', 'closed', 'closed', '', 'media-comms-workshop-poster', '', '', '2016-11-17 08:53:40', '2016-11-17 08:53:40', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Media-Comms-Workshop-Poster.jpg', 0, 'attachment', 'image/jpeg', 0),
(3088, 5, '2016-11-17 08:55:19', '2016-11-17 08:55:19', '', '15146880_10157669480405307_331213641_o', '', 'inherit', 'closed', 'closed', '', '15146880_10157669480405307_331213641_o', '', '', '2016-11-17 08:55:19', '2016-11-17 08:55:19', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/15146880_10157669480405307_331213641_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(3089, 5, '2016-11-17 08:55:29', '2016-11-17 08:55:29', '', '14500703_10210243375978781_116785850124513616_o', '', 'inherit', 'closed', 'closed', '', '14500703_10210243375978781_116785850124513616_o', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 3157, 'http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(3090, 5, '2016-11-17 08:55:37', '2016-11-17 08:55:37', '', '14352502_1286411821378043_4165059938118413393_o', '', 'inherit', 'closed', 'closed', '', '14352502_1286411821378043_4165059938118413393_o', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 3157, 'http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o.jpg', 1, 'attachment', 'image/jpeg', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3091, 5, '2016-11-17 09:08:01', '2016-11-17 09:08:01', '<p style="text-align: justify;">Asia Centre’s Media &amp; Communications Workshop  is designed to give students an introduction to<img class="wp-image-3086 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Professional-skills.png" alt="professional-skills" width="363" height="205" /> the Asian media landscape and the opportunity to undertake a project that allows for innovation and practical application of their knowledge and skills. Students will be mentored in conceptualising and carrying out their media projects by the Asia Centre. In particular students will be acquainted with how media policy and practices in Asia  are affected by socio-economic factors, cultural context, style of governance and technology. As part of the internship students will be expected to engage in practical media tasks to develop their professional skills including writing, reporting, incorporating digital media elements and disseminating information to media outlets.</p>\n&nbsp;\n\n<b>Course Objectives</b>\n<ul>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Provide students with an appreciation of the Asian media landscape</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Review case studies to develop a contextual appreciation of key laws, governance frameworks, socio-economic and cultural contexts that impact media policy and practices.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Develop students critical thinking, research and interviewing skills.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Equip students with skills to execute and present a multimedia report incorporating written, digital and social media elements.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Enable student to hone and apply their professional skills through practical assignments.</span></li>\n</ul>\n<img class="alignright wp-image-3088" src="http://asiacentre.co.th/wp-content/uploads/2016/11/15146880_10157669480405307_331213641_o-600x450.jpg" alt="15146880_10157669480405307_331213641_o" width="311" height="233" /> <img class="wp-image-3089 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="318" height="235" /> <img class="wp-image-3090 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="446" height="250" />\n\n&nbsp;\n\n<b>Learning Outcomes</b>\n\n<span style="font-weight: 400;">At the end of this course students will be able to:</span>\n<ul>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand key developments and issues facing the Asian media landscape</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand media policy and practices in their historical, socio-cultural, economic and political contexts in selected countries</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Think critically and attain competency in conducting research and interviews</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Acquire practical experience in executing and presenting a multimedia research project.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Improve media related professional skills and competencies</span></li>\n</ul>\n<p style="text-align: justify;"></p>\n<p style="text-align: justify;"><b>Programme Structure</b></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">This workshop will be be structured to include learning  and practical components. Students will attend and participate in a mixture of activities for experiential learning. The practical component will take the form of producing multimedia report on a project topic of their choice. This will be complemented by visits to media companies, opportunities to interact and network with leading journalists and foreign correspondents, freedom of expression advocates, as well as students and instructors in media and communications programmes in selected Bangkok based universities.</span></p>\n<p style="text-align: justify;"><img class="size-medium wp-image-3094 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-1--600x251.jpg" alt="programme-week-1" width="600" height="251" /> <img class="size-medium wp-image-3095 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-2-600x245.jpg" alt="programme-week-2" width="600" height="245" /></p>\n<p style="text-align: justify;"><strong>Workshop Fees - </strong>USD$450</p>\nThe course fees cover instruction &amp; materials. Students are expected to bear their own costs for flights, accommodation, meals, local travel and entrance fees to special events.\n\nTo register, please drop us an email at contact@asiacentre.co.th\n\n&nbsp;', 'Media & Communications Workshop', '', 'inherit', 'closed', 'closed', '', '3085-autosave-v1', '', '', '2016-11-17 09:08:01', '2016-11-17 09:08:01', '', 3085, 'http://asiacentre.co.th/other/3085-autosave-v1/', 0, 'revision', '', 0),
(3092, 5, '2016-11-17 09:04:48', '2016-11-17 09:04:48', '', 'draft2weekprogramme-week-1', '', 'inherit', 'closed', 'closed', '', 'draft2weekprogramme-week-1', '', '', '2016-11-17 09:04:48', '2016-11-17 09:04:48', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Draft2weekProgramme-week-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3093, 5, '2016-11-17 09:04:50', '2016-11-17 09:04:50', '', 'draft2weekprogramme-week-2', '', 'inherit', 'closed', 'closed', '', 'draft2weekprogramme-week-2', '', '', '2016-11-17 09:04:50', '2016-11-17 09:04:50', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Draft2weekProgramme-Week-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(3094, 5, '2016-11-17 09:07:11', '2016-11-17 09:07:11', '', 'programme-week-1', '', 'inherit', 'closed', 'closed', '', 'programme-week-1', '', '', '2016-11-17 09:07:11', '2016-11-17 09:07:11', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-1-.jpg', 0, 'attachment', 'image/jpeg', 0),
(3095, 5, '2016-11-17 09:07:13', '2016-11-17 09:07:13', '', 'programme-week-2', '', 'inherit', 'closed', 'closed', '', 'programme-week-2', '', '', '2016-11-17 09:07:13', '2016-11-17 09:07:13', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(3097, 5, '2016-11-25 06:41:22', '2016-11-25 06:41:22', '<h2><b>Nationalism, Citizenship and Statelessness: </b><b>Current Issues and Developments in Asia</b></h2>\r\n<img class="aligncenter wp-image-3098 size-medium" src="http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster-e1480055488282-600x370.jpg" alt="fb-poster" width="600" height="370" />\r\n<p style="text-align: justify;"><span style="font-weight: 400;">On 18 January 2017, Asia Centre will be convening the </span><b>Benedict Anderson 1st Anniversary Memorial Roundtable </b><span style="font-weight: 400;">to discuss contemporary issues surrounding nationalism, citizenship and statelessness across Asia. Nationalism remains a powerful force in current times as it fuels growth from the 54 states of UN in 1945 to 193 members to date.  In the wake of Brexit and the Trump victory, it is driving energies in Scotland, Catalonia and elsewhere. As a result, states are seeking to keep strong control over citizenship and immigration while enacting laws to render political opponents and vulnerable people stateless in the name of security. This Roundtable seeks to reflect on and discuss these issues in the context of contemporary developments in Asia such as the Chakmas in India, Uyghurs in China, Rohingyas in Myanmar, Hmong in Laos and others. This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016 at the Asia Centre. The Roundtable is organised to celebrate the memory, life and work of Professor Benedict Anderson a well known academic who engaged in these issues.</span></p>\r\n<p style="text-align: justify;">This event is free.</p>\r\n<p style="text-align: justify;"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdYIN2vKrpsUw2nEjzazXp83fNeVQv9-3kkCLLPB4NADgHxGQ/viewform" target="_blank"><img class="aligncenter wp-image-3066" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png" alt="screen-shot-2016-11-03-at-16-26-44" width="199" height="72" /></a></p>\r\n<p style="text-align: center;">Please do share this event within your networks. <a href="https://www.facebook.com/events/1598500940456726/" target="_blank"><img class="wp-image-3068 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png" alt="screen-shot-2016-11-03-at-16-46-31" width="184" height="43" /></a></p>', 'Benedict Anderson  1st Anniversary Memorial Roundtable', '', 'publish', 'closed', 'closed', '', 'benedict-anderson-1st-anniversary-memorial-roundtable', '', '', '2016-12-28 16:06:25', '2016-12-28 09:06:25', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3097', 0, 'event', '', 0),
(3098, 5, '2016-11-25 06:30:40', '2016-11-25 06:30:40', '', 'fb-poster', '', 'inherit', 'closed', 'closed', '', 'fb-poster', '', '', '2016-11-25 06:30:40', '2016-11-25 06:30:40', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster.jpg', 0, 'attachment', 'image/jpeg', 0),
(3099, 5, '2016-11-25 07:36:17', '2016-11-25 07:36:17', '<h2><b>Nationalism, Citizenship and Statelessness: </b><b>Current Issues and Developments in Asia</b></h2>\r\n<img class="aligncenter wp-image-3098 size-medium" src="http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster-e1480055488282-600x370.jpg" alt="fb-poster" width="600" height="370" />\r\n<p style="text-align: justify;"><span style="font-weight: 400;">On 18 January 2017, Asia Centre will be convening the </span><b>Benedict Anderson 1st Anniversary Memorial Roundtable </b><span style="font-weight: 400;">to discuss contemporary issues surrounding nationalism, citizenship and statelessness across Asia. Nationalism remains a powerful force in current times as it fuels growth from the 54 states of UN in 1945 to 193 members to date.  In the wake of Brexit and the Trump victory, it is driving energies in Scotland, Catalonia and elsewhere. As a result, states are seeking to keep strong control over citizenship and immigration while enacting laws to render political opponents and vulnerable people stateless in the name of security. This Roundtable seeks to reflect on and discuss these issues in the context of contemporary developments in Asia such as the Chakmas in India, Uyghurs in China, Rohingyas in Myanmar, Hmong in Laos and others. This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016 at the Asia Centre. The Roundtable is organised to celebrate the memory, life and work of Professor Benedict Anderson a well known academic who engaged in these issues.</span></p>\r\n<p style="text-align: justify;">This event is free.</p>\r\n<p style="text-align: justify;"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdYIN2vKrpsUw2nEjzazXp83fNeVQv9-3kkCLLPB4NADgHxGQ/viewform" target="_blank"><img class="aligncenter wp-image-3066" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png" alt="screen-shot-2016-11-03-at-16-26-44" width="229" height="83" /></a></p>\r\n<p style="text-align: center;">Please do share this event within your networks. <a href="https://www.facebook.com/events/1598500940456726/" target="_blank"><img class="wp-image-3068 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png" alt="screen-shot-2016-11-03-at-16-46-31" width="184" height="43" /></a></p>', 'Benedict Anderson  1st Anniversary Memorial Roundtable', '', 'inherit', 'closed', 'closed', '', '3097-autosave-v1', '', '', '2016-11-25 07:36:17', '2016-11-25 07:36:17', '', 3097, 'http://asiacentre.co.th/other/3097-autosave-v1/', 0, 'revision', '', 0),
(3101, 3, '2016-11-29 02:22:02', '2016-11-29 02:22:02', '', 'benedict', '', 'inherit', 'closed', 'closed', '', 'benedict', '', '', '2016-12-23 15:09:15', '2016-12-23 15:09:15', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Benedict.jpg', 0, 'attachment', 'image/jpeg', 0),
(3102, 3, '2016-11-29 02:32:14', '2016-11-29 02:32:14', '', 'space-service', '', 'inherit', 'closed', 'closed', '', 'space-service', '', '', '2016-11-29 02:32:14', '2016-11-29 02:32:14', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Space-Service.jpg', 0, 'attachment', 'image/jpeg', 0),
(3103, 3, '2016-11-29 02:36:22', '2016-11-29 02:36:22', '', 'space-service-u-shape', '', 'inherit', 'closed', 'closed', '', 'space-service-u-shape', '', '', '2016-11-29 02:36:22', '2016-11-29 02:36:22', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Space-Service-u-shape.jpg', 0, 'attachment', 'image/jpeg', 0),
(3106, 3, '2016-11-29 03:56:41', '2016-11-29 03:56:41', '', 'silvia1', '', 'inherit', 'closed', 'closed', '', 'silvia1', '', '', '2016-11-29 03:56:41', '2016-11-29 03:56:41', '', 2686, 'http://asiacentre.co.th/wp-content/uploads/2016/07/silvia1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3107, 3, '2016-11-29 04:01:26', '2016-11-29 04:01:26', '<strong>Silvia Waldbach</strong>\n\n<img class=" wp-image-3106 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/silvia1-600x331.jpg" alt="silvia1" width="261" height="144" />Silvia Waldbach is doing a research internship at Asia Centre from September to December 2016. The focus of her research is on national human rights institutions in Southeast Asia and their engagement with the Universal Periodic Review process. She is in the last year of a bachelors degree in International Cultural and Business Studies, with focus on Southeast Asia, at the University of Passau, Germany.\n\nShe decided to do an internship at Asia Centre because she wants to deepen her knowledge of contemporary Southeast Asian issues and improve her research, writing and organizing skills. She also enjoys working in an international work environment with various kinds of stakeholders from international and local civil society, to academia and the private sector. In her free time, Silvia likes spending time in nature, going to concerts, travelling and cooking.\n\n&nbsp;\n\n&nbsp;\n\n<strong>Anna Jeffries</strong>\n\n<strong><img class="wp-image-3108 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Anna-600x339.jpg" alt="anna" width="265" height="150" /></strong>\n\nAnna Jeffries is here at Asia Centre from July through September 2016 for a research internship\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\n\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\n\n&nbsp;\n\n&nbsp;\n\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-autosave-v1', '', '', '2016-11-29 04:01:26', '2016-11-29 04:01:26', '', 2686, 'http://asiacentre.co.th/other/2686-autosave-v1/', 0, 'revision', '', 0),
(3108, 3, '2016-11-29 03:58:53', '2016-11-29 03:58:53', '', 'anna', '', 'inherit', 'closed', 'closed', '', 'anna', '', '', '2016-11-29 03:58:53', '2016-11-29 03:58:53', '', 2686, 'http://asiacentre.co.th/wp-content/uploads/2016/07/Anna.jpg', 0, 'attachment', 'image/jpeg', 0),
(3109, 3, '2016-11-29 04:01:27', '2016-11-29 04:01:27', '<strong>Silvia Waldbach</strong>\r\n\r\n<img class=" wp-image-3106 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/silvia1-600x331.jpg" alt="silvia1" width="261" height="144" />Silvia Waldbach is doing a research internship at Asia Centre from September to December 2016. The focus of her research is on national human rights institutions in Southeast Asia and their engagement with the Universal Periodic Review process. She is in the last year of a bachelors degree in International Cultural and Business Studies, with focus on Southeast Asia, at the University of Passau, Germany.\r\n\r\nShe decided to do an internship at Asia Centre because she wants to deepen her knowledge of contemporary Southeast Asian issues and improve her research, writing and organizing skills. She also enjoys working in an international work environment with various kinds of stakeholders from international and local civil society, to academia and the private sector. In her free time, Silvia likes spending time in nature, going to concerts, travelling and cooking.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Anna Jeffries</strong>\r\n\r\n<strong><img class="wp-image-3108 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/07/Anna-600x339.jpg" alt="anna" width="265" height="150" /></strong>\r\n\r\nAnna Jeffries is here at Asia Centre from July through September 2016 for a research internship\r\non human rights.  Her focus is the role and impact of Southeast Asian civil society and the Universal Periodic Review.  Anna is completing her degree in Global Studies: Global Security at the University of Wisconsin-Milwaukee. She is also pursuing studies in Japanese and Korean.  She chose her internship with Asia Centre to allow her to gain a wide range of skills including event management, budgeting, fundraising, research, and leadership skills. When not researching and studying Anna enjoys trying new foods, reading a good book, and watching movies.\r\n\r\nAnna was connected with Asia Centre by our partner organisation, <a href="http://aipglobal.co" target="_blank">AIPGlobal</a>.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Interns', '', 'inherit', 'closed', 'closed', '', '2686-revision-v1', '', '', '2016-11-29 04:01:27', '2016-11-29 04:01:27', '', 2686, 'http://asiacentre.co.th/other/2686-revision-v1/', 0, 'revision', '', 0),
(3111, 3, '2016-11-29 04:20:57', '2016-11-29 04:20:57', '', 'HOME SLIDER', '', 'inherit', 'closed', 'closed', '', '318-autosave-v1', '', '', '2016-11-29 04:20:57', '2016-11-29 04:20:57', '', 318, 'http://asiacentre.co.th/other/318-autosave-v1/', 0, 'revision', '', 0),
(3114, 3, '2016-11-29 04:43:59', '2016-11-29 04:43:59', '', 'internship program', '', 'inherit', 'closed', 'closed', '', 'internship2-2', '', '', '2016-11-30 05:10:56', '2016-11-30 05:10:56', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/11/Internship2-1.png', 0, 'attachment', 'image/png', 0),
(3117, 8, '2016-11-30 07:31:56', '2016-11-30 07:31:56', '<p dir="ltr"><span style="color: #000000; font-family: arial,helvetica,sans-serif;">"Asia Centre is a social enterprise that serves as an independent think tank and networking hub for academics and civil society in the region. Asia Centre connects peoples and regions through collaborative partnership with educational institutions, international organisations, non-profit organisations and other institutions in the private and public sector. </span>Asia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region. It provides meeting facilities and services for academic and professional development, communications and outreach, research and publications, and development and technical assistance."</p>\n&nbsp;\n\nAsia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region. It provides meeting facilities and services for academic and professional <img class="wp-image-2222 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/08/Asia-Centre-Conference-1.jpeg" alt="Asia Centre Conference (1)" width="335" height="251" />development, communications and outreach, research and publications, and development and technical assistance.\n\nAsia Centre connects peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\n\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in the region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-autosave-v1', '', '', '2016-11-30 07:31:56', '2016-11-30 07:31:56', '', 18, 'http://asiacentre.co.th/other/18-autosave-v1/', 0, 'revision', '', 0),
(3122, 5, '2016-12-07 02:43:20', '2016-12-07 02:43:20', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'publish', 'closed', 'closed', '', 'spark-sessions-1', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 0, 'http://asiacentre.co.th/?p=3122', 0, 'post', '', 0),
(3123, 5, '2016-12-07 02:36:16', '2016-12-07 02:36:16', '', '15156782_1351360481549843_698629161919147508_o', '', 'inherit', 'closed', 'closed', '', '15156782_1351360481549843_698629161919147508_o', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 3122, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15156782_1351360481549843_698629161919147508_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(3124, 5, '2016-12-07 02:36:17', '2016-12-07 02:36:17', '', '15156988_1351353301550561_1408357164730697893_o', '', 'inherit', 'closed', 'closed', '', '15156988_1351353301550561_1408357164730697893_o', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 3122, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15156988_1351353301550561_1408357164730697893_o.jpg', 1, 'attachment', 'image/jpeg', 0),
(3125, 5, '2016-12-07 02:36:18', '2016-12-07 02:36:18', '', '15168807_1351353578217200_4300539616157149004_o', '', 'inherit', 'closed', 'closed', '', '15168807_1351353578217200_4300539616157149004_o', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 3122, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o.jpg', 2, 'attachment', 'image/jpeg', 0),
(3126, 5, '2016-12-07 02:36:19', '2016-12-07 02:36:19', '', '15181264_1350490221636869_5106384943070841109_n', '', 'inherit', 'closed', 'closed', '', '15181264_1350490221636869_5106384943070841109_n', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 3122, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(3127, 5, '2016-12-07 02:36:20', '2016-12-07 02:36:20', '', '15181600_1350490241636867_8475522455204204596_n', '', 'inherit', 'closed', 'closed', '', '15181600_1350490241636867_8475522455204204596_n', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 3122, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n.jpg', 4, 'attachment', 'image/jpeg', 0),
(3128, 5, '2016-12-07 02:36:21', '2016-12-07 02:36:21', '', '15196018_1351322344886990_3955904930894907268_o', '', 'inherit', 'closed', 'closed', '', '15196018_1351322344886990_3955904930894907268_o', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 3122, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o.jpg', 5, 'attachment', 'image/jpeg', 0),
(3129, 5, '2016-12-07 02:36:22', '2016-12-07 02:36:22', '', '15259434_1351367304882494_5002218302385985273_o', '', 'inherit', 'closed', 'closed', '', '15259434_1351367304882494_5002218302385985273_o', '', '', '2016-12-23 10:23:48', '2016-12-23 10:23:48', '', 3122, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15259434_1351367304882494_5002218302385985273_o.jpg', 6, 'attachment', 'image/jpeg', 0),
(3130, 5, '2016-12-07 02:40:09', '2016-12-07 02:40:09', '<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions: An Alternative Networking Event proved to be Asia Centre’s most popular event <img class="wp-image-3126 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="416" height="277" />to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3128 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="296" height="197" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed <img class="wp-image-3125 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" />atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n<p style="text-align: justify;"></p>\r\n\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">\r\nSpark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:40:09', '2016-12-07 02:40:09', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3131, 5, '2016-12-07 02:41:50', '2016-12-07 02:41:50', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="470" height="313" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3128 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="296" height="197" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed <img class="wp-image-3125 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" />atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:41:50', '2016-12-07 02:41:50', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3132, 5, '2016-12-07 02:42:23', '2016-12-07 02:42:23', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="470" height="313" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3128 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="296" height="197" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed <img class="wp-image-3125 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" />atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.\r\n\r\n\r\n</span></p>[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.\r\n\r\n</p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:42:23', '2016-12-07 02:42:23', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3133, 5, '2016-12-07 02:42:42', '2016-12-07 02:42:42', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="470" height="313" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3128 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="296" height="197" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed <img class="wp-image-3125 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" />atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:42:42', '2016-12-07 02:42:42', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3134, 5, '2016-12-07 02:43:13', '2016-12-07 02:43:13', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="470" height="313" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3128 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="296" height="197" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed <img class="wp-image-3125 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" />atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.\r\n\r\n\r\n</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n\r\n\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:43:13', '2016-12-07 02:43:13', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3135, 5, '2016-12-07 02:48:41', '2016-12-07 02:48:41', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, <img class="alignright wp-image-3129" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15259434_1351367304882494_5002218302385985273_o-320x480.jpg" alt="15259434_1351367304882494_5002218302385985273_o" width="185" height="278" />on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-autosave-v1', '', '', '2016-12-07 02:48:41', '2016-12-07 02:48:41', '', 3122, 'http://asiacentre.co.th/other/3122-autosave-v1/', 0, 'revision', '', 0),
(3136, 5, '2016-12-07 02:45:43', '2016-12-07 02:45:43', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:45:43', '2016-12-07 02:45:43', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3137, 5, '2016-12-07 02:48:51', '2016-12-07 02:48:51', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, <img class="alignright wp-image-3129" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15259434_1351367304882494_5002218302385985273_o-320x480.jpg" alt="15259434_1351367304882494_5002218302385985273_o" width="185" height="278" />on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:48:51', '2016-12-07 02:48:51', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3138, 5, '2016-12-07 02:49:17', '2016-12-07 02:49:17', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:49:17', '2016-12-07 02:49:17', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3139, 5, '2016-12-07 02:49:39', '2016-12-07 02:49:39', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.\r\n\r\n\r\n\r\n</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:49:39', '2016-12-07 02:49:39', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3140, 5, '2016-12-07 02:51:10', '2016-12-07 02:51:10', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:51:10', '2016-12-07 02:51:10', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3141, 5, '2016-12-07 02:51:33', '2016-12-07 02:51:33', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.\r\n\r\n\r\n</p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-07 02:51:33', '2016-12-07 02:51:33', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0),
(3143, 5, '2016-10-30 03:09:32', '2016-10-30 03:09:32', '<p style="text-align: justify;"><img class="wp-image-3149 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="412" height="269" />From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media Art and Brack organised a cross-sector collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n<p style="text-align: justify;">The opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions which continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research, covering the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n<p style="text-align: justify;">This gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'publish', 'closed', 'closed', '', 'working-with-people-centred-processes-art-education-cross-sector-collaboration-2', '', '', '2016-12-23 11:15:32', '2016-12-23 11:15:32', '', 0, 'http://asiacentre.co.th/?p=3143', 0, 'post', '', 0),
(3144, 5, '2016-12-07 03:02:47', '2016-12-07 03:02:47', '', '14589755_1311994662153092_7340181278133205742_o', '', 'inherit', 'closed', 'closed', '', '14589755_1311994662153092_7340181278133205742_o', '', '', '2016-12-23 11:15:32', '2016-12-23 11:15:32', '', 3143, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14589755_1311994662153092_7340181278133205742_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(3145, 5, '2016-12-07 03:02:48', '2016-12-07 03:02:48', '', '14707860_1311994488819776_1913222299521839638_o', '', 'inherit', 'closed', 'closed', '', '14707860_1311994488819776_1913222299521839638_o', '', '', '2016-12-23 11:15:32', '2016-12-23 11:15:32', '', 3143, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o.jpg', 1, 'attachment', 'image/jpeg', 0),
(3146, 5, '2016-12-07 03:02:50', '2016-12-07 03:02:50', '', '14707879_1311999012152657_482260863634705887_o', '', 'inherit', 'closed', 'closed', '', '14707879_1311999012152657_482260863634705887_o', '', '', '2016-12-23 11:15:32', '2016-12-23 11:15:32', '', 3143, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14707879_1311999012152657_482260863634705887_o.jpg', 2, 'attachment', 'image/jpeg', 0),
(3147, 5, '2016-12-07 03:02:51', '2016-12-07 03:02:51', '', '14712526_1312000232152535_4203790086106565751_o', '', 'inherit', 'closed', 'closed', '', '14712526_1312000232152535_4203790086106565751_o', '', '', '2016-12-23 11:15:32', '2016-12-23 11:15:32', '', 3143, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o.jpg', 3, 'attachment', 'image/jpeg', 0),
(3148, 5, '2016-12-07 03:02:52', '2016-12-07 03:02:52', '', '14713050_1311999748819250_592687443407512587_o', '', 'inherit', 'closed', 'closed', '', '14713050_1311999748819250_592687443407512587_o', '', '', '2016-12-23 11:15:32', '2016-12-23 11:15:32', '', 3143, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o.jpg', 4, 'attachment', 'image/jpeg', 0),
(3149, 5, '2016-12-07 03:02:53', '2016-12-07 03:02:53', '', '14753653_1311997018819523_7032149555602221993_o', '', 'inherit', 'closed', 'closed', '', '14753653_1311997018819523_7032149555602221993_o', '', '', '2016-12-23 11:15:32', '2016-12-23 11:15:32', '', 3143, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o.jpg', 5, 'attachment', 'image/jpeg', 0),
(3150, 5, '2016-12-07 03:05:27', '2016-12-07 03:05:27', '<p style="text-align: justify;">From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media<img class="alignright  wp-image-3149" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="363" height="237" />\r\nArt and Brack organised a cross-collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">The opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions with continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;">\r\n<img class="alignright  wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research which cover the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright  wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n<p style="text-align: justify;">This gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '3143-revision-v1', '', '', '2016-12-07 03:05:27', '2016-12-07 03:05:27', '', 3143, 'http://asiacentre.co.th/other/3143-revision-v1/', 0, 'revision', '', 0),
(3151, 5, '2016-12-07 03:09:32', '2016-12-07 03:09:32', '<p style="text-align: justify;"><img class="wp-image-3149 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="412" height="269" />From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media Art and Brack organised a cross-sector collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">The opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions which continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;">\r\n<img class="alignright  wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research, covering the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright  wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">This gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '3143-revision-v1', '', '', '2016-12-07 03:09:32', '2016-12-07 03:09:32', '', 3143, 'http://asiacentre.co.th/other/3143-revision-v1/', 0, 'revision', '', 0),
(3152, 5, '2016-12-07 03:10:00', '2016-12-07 03:10:00', '<p style="text-align: justify;"><img class="wp-image-3149 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="412" height="269" />From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media Art and Brack organised a cross-sector collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n\r\n<p style="text-align: justify;">The opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions which continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research, covering the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n\r\n<p style="text-align: justify;">This gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '3143-revision-v1', '', '', '2016-12-07 03:10:00', '2016-12-07 03:10:00', '', 3143, 'http://asiacentre.co.th/other/3143-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3153, 5, '2016-12-07 03:11:04', '2016-12-07 03:11:04', '<p style="text-align: justify;"><img class="wp-image-3149 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="412" height="269" />From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media Art and Brack organised a cross-sector collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n\r\n\r\n<p style="text-align: justify;">\r\nThe opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions which continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research, covering the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n\r\n\r\n<p style="text-align: justify;">\r\nThis gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '3143-revision-v1', '', '', '2016-12-07 03:11:04', '2016-12-07 03:11:04', '', 3143, 'http://asiacentre.co.th/other/3143-revision-v1/', 0, 'revision', '', 0),
(3154, 5, '2016-12-07 03:11:10', '2016-12-07 03:11:10', '<p style="text-align: justify;"><img class="wp-image-3149 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="412" height="269" />From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media Art and Brack organised a cross-sector collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n\r\n\r\n<p style="text-align: justify;">\r\nThe opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions which continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research, covering the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n\r\n\r\n<p style="text-align: justify;">\r\nThis gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '3143-autosave-v1', '', '', '2016-12-07 03:11:10', '2016-12-07 03:11:10', '', 3143, 'http://asiacentre.co.th/other/3143-autosave-v1/', 0, 'revision', '', 0),
(3155, 5, '2016-12-07 03:11:35', '2016-12-07 03:11:35', '<p style="text-align: justify;"><img class="wp-image-3149 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="412" height="269" />From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media Art and Brack organised a cross-sector collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">The opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions which continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research, covering the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">This gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '3143-revision-v1', '', '', '2016-12-07 03:11:35', '2016-12-07 03:11:35', '', 3143, 'http://asiacentre.co.th/other/3143-revision-v1/', 0, 'revision', '', 0),
(3156, 5, '2016-12-07 09:30:38', '2016-12-07 09:30:38', '', '14449052_10210243376938805_9012318743256930180_n', '', 'inherit', 'closed', 'closed', '', '14449052_10210243376938805_9012318743256930180_n', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 3157, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(3157, 5, '2016-10-01 09:57:18', '2016-10-01 09:57:18', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />Classroom sessions during the first week were focused on understanding the marketing and communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" />At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'publish', 'closed', 'closed', '', 'media-communications-workshop-2016', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 0, 'http://asiacentre.co.th/?p=3157', 0, 'post', '', 0),
(3158, 5, '2016-12-07 09:34:09', '2016-12-07 09:34:09', '', '14364622_1283840524968506_3090058256514272589_n', '', 'inherit', 'closed', 'closed', '', '14364622_1283840524968506_3090058256514272589_n', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 3157, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(3159, 5, '2016-12-07 09:39:27', '2016-12-07 09:39:27', '', '15356032_10157758692690307_796600347_n', '', 'inherit', 'closed', 'closed', '', '15356032_10157758692690307_796600347_n', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 3157, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n.jpg', 4, 'attachment', 'image/jpeg', 0),
(3160, 5, '2016-12-07 09:39:29', '2016-12-07 09:39:29', '', '15356811_10157758692670307_1596376328_n', '', 'inherit', 'closed', 'closed', '', '15356811_10157758692670307_1596376328_n', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 3157, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15356811_10157758692670307_1596376328_n.jpg', 5, 'attachment', 'image/jpeg', 0),
(3161, 5, '2016-12-07 09:39:30', '2016-12-07 09:39:30', '', '15397589_10157758692590307_1481510794_o', '', 'inherit', 'closed', 'closed', '', '15397589_10157758692590307_1481510794_o', '', '', '2016-12-23 10:40:44', '2016-12-23 10:40:44', '', 3157, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o.jpg', 6, 'attachment', 'image/jpeg', 0),
(3162, 5, '2016-12-07 09:42:59', '2016-12-07 09:42:59', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3089 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="470" height="348" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.   </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Classroom sessions during the first week were focused on understanding the marketing and <img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright  wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit was also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright  wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" />At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the Media &amp; Communications Workshop on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-revision-v1', '', '', '2016-12-07 09:42:59', '2016-12-07 09:42:59', '', 3157, 'http://asiacentre.co.th/other/3157-revision-v1/', 0, 'revision', '', 0),
(3163, 5, '2016-12-07 09:46:25', '2016-12-07 09:46:25', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright  wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Classroom sessions during the first week were focused on understanding the marketing and <img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright  wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright  wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" />At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-revision-v1', '', '', '2016-12-07 09:46:25', '2016-12-07 09:46:25', '', 3157, 'http://asiacentre.co.th/other/3157-revision-v1/', 0, 'revision', '', 0),
(3164, 5, '2016-12-07 09:57:18', '2016-12-07 09:57:18', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright  wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />Classroom sessions during the first week were focused on understanding the marketing and communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright  wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright  wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" /></span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-revision-v1', '', '', '2016-12-07 09:57:18', '2016-12-07 09:57:18', '', 3157, 'http://asiacentre.co.th/other/3157-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3165, 5, '2016-12-07 09:57:29', '2016-12-07 09:57:29', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />Classroom sessions during the first week were focused on understanding the marketing and communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" /></span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-revision-v1', '', '', '2016-12-07 09:57:29', '2016-12-07 09:57:29', '', 3157, 'http://asiacentre.co.th/other/3157-revision-v1/', 0, 'revision', '', 0),
(3166, 5, '2016-12-09 03:52:24', '2016-12-09 03:52:24', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />Classroom sessions during the first week were focused on understanding the marketing and communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" />At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-revision-v1', '', '', '2016-12-09 03:52:24', '2016-12-09 03:52:24', '', 3157, 'http://asiacentre.co.th/other/3157-revision-v1/', 0, 'revision', '', 0),
(3167, 5, '2016-12-09 03:52:29', '2016-12-09 03:52:29', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />Classroom sessions during the first week were focused on understanding the marketing and communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" />At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-autosave-v1', '', '', '2016-12-09 03:52:29', '2016-12-09 03:52:29', '', 3157, 'http://asiacentre.co.th/other/3157-autosave-v1/', 0, 'revision', '', 0),
(3168, 5, '2016-12-09 03:53:03', '2016-12-09 03:53:03', '<p style="text-align: justify;"><img class="wp-image-3149 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14753653_1311997018819523_7032149555602221993_o-600x392.jpg" alt="14753653_1311997018819523_7032149555602221993_o" width="412" height="269" />From October 14 to 17 2016, Asia Centre in partnership with International Forum for Inter-Media Art and Brack organised a cross-sector collaboration workshop. Conceptualised by Asia Centre Associate and iFima founder Dr Jay Koh, the 4 day conference cum workshop; explored how to stir civic consciousness and foster open social structures through public participation and engagement.</p>\r\n<p style="text-align: justify;">The opening session on the 14th of October featured a discussion on Engaged Listening Across Fields of Practice with Dr Patama Satawedin (Som), Director of the Master of Communication Arts Programme at Bangkok University and Dr Jeremiah F. Morris, lecturer in Media and Communications at Mahidol University International College. Participants were very much engaged in the discussions which continued on at the welcome dinner later that evening.</p>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3148" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14713050_1311999748819250_592687443407512587_o-600x450.jpg" alt="14713050_1311999748819250_592687443407512587_o" width="331" height="248" />The following two days of the conference proper featured panel discussions designed to facilitate critical engagement. Presenters gave short presentations on their research and projects, this was followed by feedback and input from respondents before the discussion was open to the floor for further input. Each panel explored a different aspect of artistic engagement, praxis and research, covering the following areas:</p>\r\n\r\n<ul>\r\n 	<li>Art Praxis in Public: Engaging “Others”<img class="alignright wp-image-3147" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14712526_1312000232152535_4203790086106565751_o-600x450.jpg" alt="14712526_1312000232152535_4203790086106565751_o" width="330" height="248" />\r\nContemporising Art History with Current Practices</li>\r\n 	<li>Innovation, Education &amp; Sustainability: Citizen Science, Arts Management and Social Entrepreneurship</li>\r\n 	<li>Art Praxis in Public: Participation &amp; Collaboration</li>\r\n 	<li>Artistic Research: To Ground a Constructive &amp; Progressive Praxis</li>\r\n 	<li>Arts &amp; Health: Clients, Victims &amp; Participants</li>\r\n</ul>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3145 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14707860_1311994488819776_1913222299521839638_o-600x450.jpg" alt="14707860_1311994488819776_1913222299521839638_o" width="301" height="226" />The final day featured a participant-led workshop using Open Space and World Cafe methods of participative and consultative processes. Participants then explored two case studies of collaborative projects, the first being the Bangkok based 3C - Canal, Cycling, Community project designed to engage the community living by the canal through art and cycling. The second case study considered was a research project on Art in Action, focused on using art strategies to initiate, support and engage social transformations.</p>\r\n<p style="text-align: justify;">This gathering of artists, educators and practitioners from countries in the Asia Pacific region and beyond provided a space for diverse and different perspectives.</p>', 'Working with People-Centred Processes: Art, Education & Cross-Sector Collaboration', '', 'inherit', 'closed', 'closed', '', '3143-revision-v1', '', '', '2016-12-09 03:53:03', '2016-12-09 03:53:03', '', 3143, 'http://asiacentre.co.th/other/3143-revision-v1/', 0, 'revision', '', 0),
(3169, 5, '2016-11-09 03:56:44', '2016-11-09 03:56:44', '<p style="text-align: justify;">A United Nations initiative reviewing human rights records of countries around the world is indirectly strengthening civil society organisations in Southeast Asia by allowing them to participate in the process. But the groups are still blocked from ensuring human rights are meaningfully protected in their countries.</p>\r\n<p style="text-align: justify;">The UN General Assembly <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">established its Human Rights Council</a> and introduced the universal periodic review of the human rights situation in member countries in 2006. The ten Southeast Asian countries that make up ASEAN – Brunei Darussalam, Myanmar, Cambodia, Indonesia, Laos, Malaysia, Philippines, Singapore, Thailand, Vietnam – have now undergone two cycles of review, while a few remaining nations are <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRSessions.aspx">awaiting the second round</a>.</p>\r\n<p style="text-align: justify;">Under the process, states report to the commission every four-and-a-half years and receive its recommendations. Reviews focus on the evolution of human rights in that state, and its implementation of previous recommendations. The state under review may either “accept” or “note” the suggestions.</p>\r\n<p style="text-align: justify;">Recommendations that states tend to accept are those around improving gender equality, accessibility for those with disabilities, and <a href="http://resourcecentre.savethechildren.se/sites/default/files/documents/5065.pdf">children’s rights</a>, which has gained particular prominence during the review.</p>\r\n<p style="text-align: justify;">Recommendations that aren’t as acceptable tend to involve hard political issues related to civil and political liberties. Unsurprisingly, it’s usually <a href="http://library.fes.de/pdf-files/iez/10343.pdf">the latter that are detailed in submissions</a> by civil society organisations.</p>\r\n\r\n<h2 style="text-align: justify;">A role for civil society</h2>\r\n<p style="text-align: justify;">Civil society participation in the universal periodic review of ASEAN countries has <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">increased markedly over the two cycles</a>. Some 592 such organisations participated in the first cycle in 2008-2012, with 188 submissions; the second cycle (2012-2016) saw a strong increase, with 811 groups submitting 310 reports (personal, unpublished research).</p>\r\n<p style="text-align: justify;">The rise has put civil society groups at the centre of the UN human rights improvement process. But this isn’t the first time such groups have been at the heart of human rights advocacy in the region.</p>\r\n<p style="text-align: justify;">Civil society groups, such as the coalition known as the <a href="http://www.aseanhrmech.org/">Working Group for an ASEAN Human Rights Mechanism</a>, helped push individual countries to join the 2009 <a href="http://aichr.org/">ASEAN Inter-Governmental Commission on Human Rights</a> (AICHR), and the 2012 <a href="http://www.hurights.or.jp/archives/other_documents/section1/2012/11/phnom-penh-statement-on-the-adoption-of-the-asean-human-rights-declaration-ahrd-1.html">ASEAN Declaration on Human Rights</a>.</p>\r\n<p style="text-align: justify;">But since the establishment of the AICHR, civil society has disappeared from the process. Instead, the commission follows a secretive peer-review process in which such groups have no formal role.</p>\r\n<p style="text-align: justify;">Although AICHR is supposed to be engaged in human rights promotion and protection work, in reality it is unable to provide any actual protection. It is not mandated to receive complaints on human rights abuses, and does not have the power to investigate and hold perpetrators accountable. In fact, <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/article/view/806/807">the bulk of AICHR activities</a> revolve around meetings, discussions and research that have a consensual approach.</p>\r\n<p style="text-align: justify;">Similarly, national human rights institutions also cannot realistically contribute to the region’s protection arsenal. Research shows that, just like the AICHR, <a href="http://www.cityu.edu.hk/searc/Resources/Paper/16021610_172%20-%20WP%20-%20Dr%20Gomez.pdf">national institutions are not able to perform</a> their protection function effectively.</p>\r\n<p style="text-align: justify;">These weak mechanisms raise the question of whether national human rights institutions in Southeast Asia can fill the protection gap. They also make human rights protection in the region weak, and in dire need of improvement and enhancement.</p>\r\n\r\n<figure class="align-center " style="text-align: justify;">\r\n\r\n[caption id="" align="aligncenter" width="754"]<img src="https://62e528761d0685343e1c-f3d1b99a743ffa4142d9d7f1978d9686.ssl.cf2.rackcdn.com/files/139875/width754/image-20160930-9911-5ffg6d.jpg" width="754" height="343" /> The AICHR follows a secretive peer-review process in which civil society groups have no formal role. REUTERS/Erik de Castro[/caption]\r\n\r\n<figcaption></figcaption></figure>\r\n<p style="text-align: justify;">Given the weakness of AICHR and national human rights institutions, engagement with the universal periodic review is critical to the advancement of human rights in Southeast Asia.</p>\r\n\r\n<h2 style="text-align: justify;">Being clever about it</h2>\r\n<p style="text-align: justify;">Since the establishment of the universal periodic review process, civil society groups in the region have been receiving training, preparing submissions, and even making their way to Geneva. In 2015, for instance, five civil society groups from Singapore <a href="http://www.straitstimes.com/singapore/5-civil-society-groups-heading-to-geneva-to-share-rights-views">went on a trip to Switzerland</a> to discuss human rights in the city-state.</p>\r\n<p style="text-align: justify;">Civil society groups have become involved in monitoring state recommendations and their implementation, as well as speaking on the review process itself. Many have attracted international donor funding and support for this work. US-based <a href="https://www.cartercenter.org/">The Carter Center</a>, for instance, has published a document titled <a href="http://internetrights.in/wp-content/uploads/2016/02/UPR-Training-Manual-English-Carter-Center-UPR-Info.pdf">Universal Periodic Review: Training Manual for Civil Society</a>.</p>\r\n<p style="text-align: justify;">While states in the region <a href="http://www.ishr.ch/news/increased-collaboration-within-civil-society-highlighted-during-singapores-upr">espouse the rhetoric of engagement</a> with civil society groups over the review process, they are, at the same time, cautious of them.</p>\r\n<p style="text-align: justify;">Governments often only pay lip service to human rights mechanisms and the periodic review is no different. This issue was <a href="http://www.rfa.org/english/news/laos/laos-prepares-for-upr-01082015153146.html">raised in 2015 by local civil society groups against the Laos government</a>, over the disappearance of activist Sombath Somphone and persecution of Lao Christians.</p>\r\n<p style="text-align: justify;">Overall it seems that states favour the current arrangement because they can use it to control the participation of civil society organisations in the process. They can <a href="http://www.acjps.org/sudanese-human-rights-defenders-prevented-from-travel-to-geneva-upr-meeting/">create legal obstructions</a>, <a href="http://poskod.my/cheat-sheets/why-has-comango-been-banned/">target organisations</a>, place <a href="http://www.edmundriceinternational.org/?p=3390">restrictions on civil society activities</a>, and harass and intimidate activists.</p>\r\n<p style="text-align: justify;">In <a href="http://www.civicus.org/index.php/media-resources/reports-publications/1779-enhancing-the-effectiveness-of-the-un-universal-periodic-review-a-civil-society-perspective-2">a 2015 report</a>, civil society body <a href="http://www.civicus.org/index.php/who-we-are">CIVICUS</a> discussed cases from Cambodia, Malaysia, Philippines and Vietnam, in which governments have responded with misinformation, arranged for voluminous submissions by <a href="https://www.upr-info.org/sites/default/files/general-document/pdf/civicus_enhancing_the_effectiveness_upr_2015.pdf">government-organised NGOs</a>, and conducted consultations only with partisan groups, while refusing to work with civil society groups that are more critical of government policy.</p>\r\n<p style="text-align: justify;">Some have enrolled supportive organisations to speak during sessions at the adoption of the working group report by the commission. While others, <a href="http://www.ishr.ch/news/un-committee-ngos-accredits-129-ngos-defers-130">such as Vietnam</a>, have objected to the granting of consultative status to some NGOs.</p>\r\n<p style="text-align: justify;">Nonetheless, for Southeast Asian civil society groups, the review has been an effective mechanism for putting human rights issues on the agenda and engaging their governments in conversation about critical issues, such as <a href="http://ilga.org/the-universal-periodic-review-and-lgbti-rights-indonesia/">LGBTI rights in Indonesia</a>.</p>\r\n<p style="text-align: justify;">But systemic problems remain for engaging others. These include following up on recommendations and the review’s ability to address difficult political issues, such as the <a href="http://www.bbc.com/news/world-asia-29628191"><em>lese majeste</em> law</a> in Thailand, which forbids citizens from defaming or insulting the kind, and other freedom of expression issues.</p>\r\n<p style="text-align: justify;">To have the review make a real impact, civil society organisations will need to think about what they’ve been doing and develop more strategic approaches for the third cycle, which begins in 2017. They will need to go beyond coalition-building and organising submissions to determining how they can make human rights protections actually enforceable.</p>\r\n<p style="text-align: justify;">Dr. James Gomez- Executive Director, Asia Centre &amp; Pro Vice Chancellor, Canadian University of Bangladesh</p>\r\n<p style="text-align: justify;">Reproduced from The Conversation: <a href="https://theconversation.com/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups-65644" target="_blank">https://theconversation.com/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups-65644</a></p>', 'UN human rights review is largely toothless – but it’s giving a boost to Asian civil society groups', '', 'publish', 'closed', 'closed', '', 'un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups', '', '', '2016-12-28 15:36:58', '2016-12-28 08:36:58', '', 0, 'http://asiacentre.co.th/?p=3169', 0, 'post', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3170, 5, '2016-12-09 03:55:53', '2016-12-09 03:55:53', '<p style="text-align: justify;">A United Nations initiative reviewing human rights records of countries around the world is indirectly strengthening civil society organisations in Southeast Asia by allowing them to participate in the process. But the groups are still blocked from ensuring human rights are meaningfully protected in their countries.</p>\r\n<p style="text-align: justify;">The UN General Assembly <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">established its Human Rights Council</a> and introduced the universal periodic review of the human rights situation in member countries in 2006. The ten Southeast Asian countries that make up ASEAN – Brunei Darussalam, Myanmar, Cambodia, Indonesia, Laos, Malaysia, Philippines, Singapore, Thailand, Vietnam – have now undergone two cycles of review, while a few remaining nations are <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRSessions.aspx">awaiting the second round</a>.</p>\r\n<p style="text-align: justify;">Under the process, states report to the commission every four-and-a-half years and receive its recommendations. Reviews focus on the evolution of human rights in that state, and its implementation of previous recommendations. The state under review may either “accept” or “note” the suggestions.</p>\r\n<p style="text-align: justify;">Recommendations that states tend to accept are those around improving gender equality, accessibility for those with disabilities, and <a href="http://resourcecentre.savethechildren.se/sites/default/files/documents/5065.pdf">children’s rights</a>, which has gained particular prominence during the review.</p>\r\n<p style="text-align: justify;">Recommendations that aren’t as acceptable tend to involve hard political issues related to civil and political liberties. Unsurprisingly, it’s usually <a href="http://library.fes.de/pdf-files/iez/10343.pdf">the latter that are detailed in submissions</a> by civil society organisations.</p>\r\n\r\n<h2 style="text-align: justify;">A role for civil society</h2>\r\n<p style="text-align: justify;">Civil society participation in the universal periodic review of ASEAN countries has <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">increased markedly over the two cycles</a>. Some 592 such organisations participated in the first cycle in 2008-2012, with 188 submissions; the second cycle (2012-2016) saw a strong increase, with 811 groups submitting 310 reports (personal, unpublished research).</p>\r\n<p style="text-align: justify;">The rise has put civil society groups at the centre of the UN human rights improvement process. But this isn’t the first time such groups have been at the heart of human rights advocacy in the region.</p>\r\n<p style="text-align: justify;">Civil society groups, such as the coalition known as the <a href="http://www.aseanhrmech.org/">Working Group for an ASEAN Human Rights Mechanism</a>, helped push individual countries to join the 2009 <a href="http://aichr.org/">ASEAN Inter-Governmental Commission on Human Rights</a> (AICHR), and the 2012 <a href="http://www.hurights.or.jp/archives/other_documents/section1/2012/11/phnom-penh-statement-on-the-adoption-of-the-asean-human-rights-declaration-ahrd-1.html">ASEAN Declaration on Human Rights</a>.</p>\r\n<p style="text-align: justify;">But since the establishment of the AICHR, civil society has disappeared from the process. Instead, the commission follows a secretive peer-review process in which such groups have no formal role.</p>\r\n<p style="text-align: justify;">Although AICHR is supposed to be engaged in human rights promotion and protection work, in reality it is unable to provide any actual protection. It is not mandated to receive complaints on human rights abuses, and does not have the power to investigate and hold perpetrators accountable. In fact, <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/article/view/806/807">the bulk of AICHR activities</a> revolve around meetings, discussions and research that have a consensual approach.</p>\r\n<p style="text-align: justify;">Similarly, national human rights institutions also cannot realistically contribute to the region’s protection arsenal. Research shows that, just like the AICHR, <a href="http://www.cityu.edu.hk/searc/Resources/Paper/16021610_172%20-%20WP%20-%20Dr%20Gomez.pdf">national institutions are not able to perform</a> their protection function effectively.</p>\r\n<p style="text-align: justify;">These weak mechanisms raise the question of whether national human rights institutions in Southeast Asia can fill the protection gap. They also make human rights protection in the region weak, and in dire need of improvement and enhancement.</p>\r\n\r\n<figure class="align-center " style="text-align: justify;">\r\n\r\n[caption id="" align="aligncenter" width="754"]<img src="https://62e528761d0685343e1c-f3d1b99a743ffa4142d9d7f1978d9686.ssl.cf2.rackcdn.com/files/139875/width754/image-20160930-9911-5ffg6d.jpg" width="754" height="343" /> The AICHR follows a secretive peer-review process in which civil society groups have no formal role. REUTERS/Erik de Castro[/caption]\r\n\r\n<figcaption></figcaption></figure>\r\n<p style="text-align: justify;">Given the weakness of AICHR and national human rights institutions, engagement with the universal periodic review is critical to the advancement of human rights in Southeast Asia.</p>\r\n\r\n<h2 style="text-align: justify;">Being clever about it</h2>\r\n<p style="text-align: justify;">Since the establishment of the universal periodic review process, civil society groups in the region have been receiving training, preparing submissions, and even making their way to Geneva. In 2015, for instance, five civil society groups from Singapore <a href="http://www.straitstimes.com/singapore/5-civil-society-groups-heading-to-geneva-to-share-rights-views">went on a trip to Switzerland</a> to discuss human rights in the city-state.</p>\r\n<p style="text-align: justify;">Civil society groups have become involved in monitoring state recommendations and their implementation, as well as speaking on the review process itself. Many have attracted international donor funding and support for this work. US-based <a href="https://www.cartercenter.org/">The Carter Center</a>, for instance, has published a document titled <a href="http://internetrights.in/wp-content/uploads/2016/02/UPR-Training-Manual-English-Carter-Center-UPR-Info.pdf">Universal Periodic Review: Training Manual for Civil Society</a>.</p>\r\n<p style="text-align: justify;">While states in the region <a href="http://www.ishr.ch/news/increased-collaboration-within-civil-society-highlighted-during-singapores-upr">espouse the rhetoric of engagement</a> with civil society groups over the review process, they are, at the same time, cautious of them.</p>\r\n<p style="text-align: justify;">Governments often only pay lip service to human rights mechanisms and the periodic review is no different. This issue was <a href="http://www.rfa.org/english/news/laos/laos-prepares-for-upr-01082015153146.html">raised in 2015 by local civil society groups against the Laos government</a>, over the disappearance of activist Sombath Somphone and persecution of Lao Christians.</p>\r\n<p style="text-align: justify;">Overall it seems that states favour the current arrangement because they can use it to control the participation of civil society organisations in the process. They can <a href="http://www.acjps.org/sudanese-human-rights-defenders-prevented-from-travel-to-geneva-upr-meeting/">create legal obstructions</a>, <a href="http://poskod.my/cheat-sheets/why-has-comango-been-banned/">target organisations</a>, place <a href="http://www.edmundriceinternational.org/?p=3390">restrictions on civil society activities</a>, and harass and intimidate activists.</p>\r\n<p style="text-align: justify;">In <a href="http://www.civicus.org/index.php/media-resources/reports-publications/1779-enhancing-the-effectiveness-of-the-un-universal-periodic-review-a-civil-society-perspective-2">a 2015 report</a>, civil society body <a href="http://www.civicus.org/index.php/who-we-are">CIVICUS</a> discussed cases from Cambodia, Malaysia, Philippines and Vietnam, in which governments have responded with misinformation, arranged for voluminous submissions by <a href="https://www.upr-info.org/sites/default/files/general-document/pdf/civicus_enhancing_the_effectiveness_upr_2015.pdf">government-organised NGOs</a>, and conducted consultations only with partisan groups, while refusing to work with civil society groups that are more critical of government policy.</p>\r\n<p style="text-align: justify;">Some have enrolled supportive organisations to speak during sessions at the adoption of the working group report by the commission. While others, <a href="http://www.ishr.ch/news/un-committee-ngos-accredits-129-ngos-defers-130">such as Vietnam</a>, have objected to the granting of consultative status to some NGOs.</p>\r\n<p style="text-align: justify;">Nonetheless, for Southeast Asian civil society groups, the review has been an effective mechanism for putting human rights issues on the agenda and engaging their governments in conversation about critical issues, such as <a href="http://ilga.org/the-universal-periodic-review-and-lgbti-rights-indonesia/">LGBTI rights in Indonesia</a>.</p>\r\n<p style="text-align: justify;">But systemic problems remain for engaging others. These include following up on recommendations and the review’s ability to address difficult political issues, such as the <a href="http://www.bbc.com/news/world-asia-29628191"><em>lese majeste</em> law</a> in Thailand, which forbids citizens from defaming or insulting the kind, and other freedom of expression issues.</p>\r\n<p style="text-align: justify;">To have the review make a real impact, civil society organisations will need to think about what they’ve been doing and develop more strategic approaches for the third cycle, which begins in 2017. They will need to go beyond coalition-building and organising submissions to determining how they can make human rights protections actually enforceable.</p>\r\n<p style="text-align: justify;">Dr. James Gomez- Executive Director, Asia Centre &amp; Pro Vice Chancellor, Canadian University of Bangladesh</p>\r\n<p style="text-align: justify;">Reproduced from The Conversation: https://theconversation.com/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups-65644</p>', 'UN human rights review is largely toothless – but it’s giving a boost to Asian civil society groups', '', 'inherit', 'closed', 'closed', '', '3169-revision-v1', '', '', '2016-12-09 03:55:53', '2016-12-09 03:55:53', '', 3169, 'http://asiacentre.co.th/other/3169-revision-v1/', 0, 'revision', '', 0),
(3171, 5, '2016-12-09 03:56:44', '2016-12-09 03:56:44', '<p style="text-align: justify;">A United Nations initiative reviewing human rights records of countries around the world is indirectly strengthening civil society organisations in Southeast Asia by allowing them to participate in the process. But the groups are still blocked from ensuring human rights are meaningfully protected in their countries.</p>\r\n<p style="text-align: justify;">The UN General Assembly <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">established its Human Rights Council</a> and introduced the universal periodic review of the human rights situation in member countries in 2006. The ten Southeast Asian countries that make up ASEAN – Brunei Darussalam, Myanmar, Cambodia, Indonesia, Laos, Malaysia, Philippines, Singapore, Thailand, Vietnam – have now undergone two cycles of review, while a few remaining nations are <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRSessions.aspx">awaiting the second round</a>.</p>\r\n<p style="text-align: justify;">Under the process, states report to the commission every four-and-a-half years and receive its recommendations. Reviews focus on the evolution of human rights in that state, and its implementation of previous recommendations. The state under review may either “accept” or “note” the suggestions.</p>\r\n<p style="text-align: justify;">Recommendations that states tend to accept are those around improving gender equality, accessibility for those with disabilities, and <a href="http://resourcecentre.savethechildren.se/sites/default/files/documents/5065.pdf">children’s rights</a>, which has gained particular prominence during the review.</p>\r\n<p style="text-align: justify;">Recommendations that aren’t as acceptable tend to involve hard political issues related to civil and political liberties. Unsurprisingly, it’s usually <a href="http://library.fes.de/pdf-files/iez/10343.pdf">the latter that are detailed in submissions</a> by civil society organisations.</p>\r\n\r\n<h2 style="text-align: justify;">A role for civil society</h2>\r\n<p style="text-align: justify;">Civil society participation in the universal periodic review of ASEAN countries has <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">increased markedly over the two cycles</a>. Some 592 such organisations participated in the first cycle in 2008-2012, with 188 submissions; the second cycle (2012-2016) saw a strong increase, with 811 groups submitting 310 reports (personal, unpublished research).</p>\r\n<p style="text-align: justify;">The rise has put civil society groups at the centre of the UN human rights improvement process. But this isn’t the first time such groups have been at the heart of human rights advocacy in the region.</p>\r\n<p style="text-align: justify;">Civil society groups, such as the coalition known as the <a href="http://www.aseanhrmech.org/">Working Group for an ASEAN Human Rights Mechanism</a>, helped push individual countries to join the 2009 <a href="http://aichr.org/">ASEAN Inter-Governmental Commission on Human Rights</a> (AICHR), and the 2012 <a href="http://www.hurights.or.jp/archives/other_documents/section1/2012/11/phnom-penh-statement-on-the-adoption-of-the-asean-human-rights-declaration-ahrd-1.html">ASEAN Declaration on Human Rights</a>.</p>\r\n<p style="text-align: justify;">But since the establishment of the AICHR, civil society has disappeared from the process. Instead, the commission follows a secretive peer-review process in which such groups have no formal role.</p>\r\n<p style="text-align: justify;">Although AICHR is supposed to be engaged in human rights promotion and protection work, in reality it is unable to provide any actual protection. It is not mandated to receive complaints on human rights abuses, and does not have the power to investigate and hold perpetrators accountable. In fact, <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/article/view/806/807">the bulk of AICHR activities</a> revolve around meetings, discussions and research that have a consensual approach.</p>\r\n<p style="text-align: justify;">Similarly, national human rights institutions also cannot realistically contribute to the region’s protection arsenal. Research shows that, just like the AICHR, <a href="http://www.cityu.edu.hk/searc/Resources/Paper/16021610_172%20-%20WP%20-%20Dr%20Gomez.pdf">national institutions are not able to perform</a> their protection function effectively.</p>\r\n<p style="text-align: justify;">These weak mechanisms raise the question of whether national human rights institutions in Southeast Asia can fill the protection gap. They also make human rights protection in the region weak, and in dire need of improvement and enhancement.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<figure class="align-center " style="text-align: justify;">\r\n\r\n[caption id="" align="aligncenter" width="754"]<img src="https://62e528761d0685343e1c-f3d1b99a743ffa4142d9d7f1978d9686.ssl.cf2.rackcdn.com/files/139875/width754/image-20160930-9911-5ffg6d.jpg" width="754" height="343" /> The AICHR follows a secretive peer-review process in which civil society groups have no formal role. REUTERS/Erik de Castro[/caption]\r\n\r\n<figcaption></figcaption></figure>\r\n<p style="text-align: justify;">Given the weakness of AICHR and national human rights institutions, engagement with the universal periodic review is critical to the advancement of human rights in Southeast Asia.</p>\r\n\r\n<h2 style="text-align: justify;">Being clever about it</h2>\r\n<p style="text-align: justify;">Since the establishment of the universal periodic review process, civil society groups in the region have been receiving training, preparing submissions, and even making their way to Geneva. In 2015, for instance, five civil society groups from Singapore <a href="http://www.straitstimes.com/singapore/5-civil-society-groups-heading-to-geneva-to-share-rights-views">went on a trip to Switzerland</a> to discuss human rights in the city-state.</p>\r\n<p style="text-align: justify;">Civil society groups have become involved in monitoring state recommendations and their implementation, as well as speaking on the review process itself. Many have attracted international donor funding and support for this work. US-based <a href="https://www.cartercenter.org/">The Carter Center</a>, for instance, has published a document titled <a href="http://internetrights.in/wp-content/uploads/2016/02/UPR-Training-Manual-English-Carter-Center-UPR-Info.pdf">Universal Periodic Review: Training Manual for Civil Society</a>.</p>\r\n<p style="text-align: justify;">While states in the region <a href="http://www.ishr.ch/news/increased-collaboration-within-civil-society-highlighted-during-singapores-upr">espouse the rhetoric of engagement</a> with civil society groups over the review process, they are, at the same time, cautious of them.</p>\r\n<p style="text-align: justify;">Governments often only pay lip service to human rights mechanisms and the periodic review is no different. This issue was <a href="http://www.rfa.org/english/news/laos/laos-prepares-for-upr-01082015153146.html">raised in 2015 by local civil society groups against the Laos government</a>, over the disappearance of activist Sombath Somphone and persecution of Lao Christians.</p>\r\n<p style="text-align: justify;">Overall it seems that states favour the current arrangement because they can use it to control the participation of civil society organisations in the process. They can <a href="http://www.acjps.org/sudanese-human-rights-defenders-prevented-from-travel-to-geneva-upr-meeting/">create legal obstructions</a>, <a href="http://poskod.my/cheat-sheets/why-has-comango-been-banned/">target organisations</a>, place <a href="http://www.edmundriceinternational.org/?p=3390">restrictions on civil society activities</a>, and harass and intimidate activists.</p>\r\n<p style="text-align: justify;">In <a href="http://www.civicus.org/index.php/media-resources/reports-publications/1779-enhancing-the-effectiveness-of-the-un-universal-periodic-review-a-civil-society-perspective-2">a 2015 report</a>, civil society body <a href="http://www.civicus.org/index.php/who-we-are">CIVICUS</a> discussed cases from Cambodia, Malaysia, Philippines and Vietnam, in which governments have responded with misinformation, arranged for voluminous submissions by <a href="https://www.upr-info.org/sites/default/files/general-document/pdf/civicus_enhancing_the_effectiveness_upr_2015.pdf">government-organised NGOs</a>, and conducted consultations only with partisan groups, while refusing to work with civil society groups that are more critical of government policy.</p>\r\n<p style="text-align: justify;">Some have enrolled supportive organisations to speak during sessions at the adoption of the working group report by the commission. While others, <a href="http://www.ishr.ch/news/un-committee-ngos-accredits-129-ngos-defers-130">such as Vietnam</a>, have objected to the granting of consultative status to some NGOs.</p>\r\n<p style="text-align: justify;">Nonetheless, for Southeast Asian civil society groups, the review has been an effective mechanism for putting human rights issues on the agenda and engaging their governments in conversation about critical issues, such as <a href="http://ilga.org/the-universal-periodic-review-and-lgbti-rights-indonesia/">LGBTI rights in Indonesia</a>.</p>\r\n<p style="text-align: justify;">But systemic problems remain for engaging others. These include following up on recommendations and the review’s ability to address difficult political issues, such as the <a href="http://www.bbc.com/news/world-asia-29628191"><em>lese majeste</em> law</a> in Thailand, which forbids citizens from defaming or insulting the kind, and other freedom of expression issues.</p>\r\n<p style="text-align: justify;">To have the review make a real impact, civil society organisations will need to think about what they’ve been doing and develop more strategic approaches for the third cycle, which begins in 2017. They will need to go beyond coalition-building and organising submissions to determining how they can make human rights protections actually enforceable.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Dr. James Gomez- Executive Director, Asia Centre &amp; Pro Vice Chancellor, Canadian University of Bangladesh</p>\r\n<p style="text-align: justify;">Reproduced from The Conversation: <a href="https://theconversation.com/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups-65644" target="_blank">https://theconversation.com/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups-65644</a></p>', 'UN human rights review is largely toothless – but it’s giving a boost to Asian civil society groups', '', 'inherit', 'closed', 'closed', '', '3169-revision-v1', '', '', '2016-12-09 03:56:44', '2016-12-09 03:56:44', '', 3169, 'http://asiacentre.co.th/other/3169-revision-v1/', 0, 'revision', '', 0),
(3172, 5, '2016-12-09 03:57:02', '2016-12-09 03:57:02', '<p style="text-align: justify;">A United Nations initiative reviewing human rights records of countries around the world is indirectly strengthening civil society organisations in Southeast Asia by allowing them to participate in the process. But the groups are still blocked from ensuring human rights are meaningfully protected in their countries.</p>\r\n<p style="text-align: justify;">The UN General Assembly <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">established its Human Rights Council</a> and introduced the universal periodic review of the human rights situation in member countries in 2006. The ten Southeast Asian countries that make up ASEAN – Brunei Darussalam, Myanmar, Cambodia, Indonesia, Laos, Malaysia, Philippines, Singapore, Thailand, Vietnam – have now undergone two cycles of review, while a few remaining nations are <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRSessions.aspx">awaiting the second round</a>.</p>\r\n<p style="text-align: justify;">Under the process, states report to the commission every four-and-a-half years and receive its recommendations. Reviews focus on the evolution of human rights in that state, and its implementation of previous recommendations. The state under review may either “accept” or “note” the suggestions.</p>\r\n<p style="text-align: justify;">Recommendations that states tend to accept are those around improving gender equality, accessibility for those with disabilities, and <a href="http://resourcecentre.savethechildren.se/sites/default/files/documents/5065.pdf">children’s rights</a>, which has gained particular prominence during the review.</p>\r\n<p style="text-align: justify;">Recommendations that aren’t as acceptable tend to involve hard political issues related to civil and political liberties. Unsurprisingly, it’s usually <a href="http://library.fes.de/pdf-files/iez/10343.pdf">the latter that are detailed in submissions</a> by civil society organisations.</p>\r\n\r\n<h2 style="text-align: justify;">A role for civil society</h2>\r\n<p style="text-align: justify;">Civil society participation in the universal periodic review of ASEAN countries has <a href="http://www.ohchr.org/EN/HRBodies/UPR/Pages/UPRMain.aspx">increased markedly over the two cycles</a>. Some 592 such organisations participated in the first cycle in 2008-2012, with 188 submissions; the second cycle (2012-2016) saw a strong increase, with 811 groups submitting 310 reports (personal, unpublished research).</p>\r\n<p style="text-align: justify;">The rise has put civil society groups at the centre of the UN human rights improvement process. But this isn’t the first time such groups have been at the heart of human rights advocacy in the region.</p>\r\n<p style="text-align: justify;">Civil society groups, such as the coalition known as the <a href="http://www.aseanhrmech.org/">Working Group for an ASEAN Human Rights Mechanism</a>, helped push individual countries to join the 2009 <a href="http://aichr.org/">ASEAN Inter-Governmental Commission on Human Rights</a> (AICHR), and the 2012 <a href="http://www.hurights.or.jp/archives/other_documents/section1/2012/11/phnom-penh-statement-on-the-adoption-of-the-asean-human-rights-declaration-ahrd-1.html">ASEAN Declaration on Human Rights</a>.</p>\r\n<p style="text-align: justify;">But since the establishment of the AICHR, civil society has disappeared from the process. Instead, the commission follows a secretive peer-review process in which such groups have no formal role.</p>\r\n<p style="text-align: justify;">Although AICHR is supposed to be engaged in human rights promotion and protection work, in reality it is unable to provide any actual protection. It is not mandated to receive complaints on human rights abuses, and does not have the power to investigate and hold perpetrators accountable. In fact, <a href="http://journals.sub.uni-hamburg.de/giga/jsaa/article/view/806/807">the bulk of AICHR activities</a> revolve around meetings, discussions and research that have a consensual approach.</p>\r\n<p style="text-align: justify;">Similarly, national human rights institutions also cannot realistically contribute to the region’s protection arsenal. Research shows that, just like the AICHR, <a href="http://www.cityu.edu.hk/searc/Resources/Paper/16021610_172%20-%20WP%20-%20Dr%20Gomez.pdf">national institutions are not able to perform</a> their protection function effectively.</p>\r\n<p style="text-align: justify;">These weak mechanisms raise the question of whether national human rights institutions in Southeast Asia can fill the protection gap. They also make human rights protection in the region weak, and in dire need of improvement and enhancement.</p>\r\n\r\n<figure class="align-center " style="text-align: justify;">\r\n\r\n[caption id="" align="aligncenter" width="754"]<img src="https://62e528761d0685343e1c-f3d1b99a743ffa4142d9d7f1978d9686.ssl.cf2.rackcdn.com/files/139875/width754/image-20160930-9911-5ffg6d.jpg" width="754" height="343" /> The AICHR follows a secretive peer-review process in which civil society groups have no formal role. REUTERS/Erik de Castro[/caption]\r\n\r\n<figcaption></figcaption></figure>\r\n<p style="text-align: justify;">Given the weakness of AICHR and national human rights institutions, engagement with the universal periodic review is critical to the advancement of human rights in Southeast Asia.</p>\r\n\r\n<h2 style="text-align: justify;">Being clever about it</h2>\r\n<p style="text-align: justify;">Since the establishment of the universal periodic review process, civil society groups in the region have been receiving training, preparing submissions, and even making their way to Geneva. In 2015, for instance, five civil society groups from Singapore <a href="http://www.straitstimes.com/singapore/5-civil-society-groups-heading-to-geneva-to-share-rights-views">went on a trip to Switzerland</a> to discuss human rights in the city-state.</p>\r\n<p style="text-align: justify;">Civil society groups have become involved in monitoring state recommendations and their implementation, as well as speaking on the review process itself. Many have attracted international donor funding and support for this work. US-based <a href="https://www.cartercenter.org/">The Carter Center</a>, for instance, has published a document titled <a href="http://internetrights.in/wp-content/uploads/2016/02/UPR-Training-Manual-English-Carter-Center-UPR-Info.pdf">Universal Periodic Review: Training Manual for Civil Society</a>.</p>\r\n<p style="text-align: justify;">While states in the region <a href="http://www.ishr.ch/news/increased-collaboration-within-civil-society-highlighted-during-singapores-upr">espouse the rhetoric of engagement</a> with civil society groups over the review process, they are, at the same time, cautious of them.</p>\r\n<p style="text-align: justify;">Governments often only pay lip service to human rights mechanisms and the periodic review is no different. This issue was <a href="http://www.rfa.org/english/news/laos/laos-prepares-for-upr-01082015153146.html">raised in 2015 by local civil society groups against the Laos government</a>, over the disappearance of activist Sombath Somphone and persecution of Lao Christians.</p>\r\n<p style="text-align: justify;">Overall it seems that states favour the current arrangement because they can use it to control the participation of civil society organisations in the process. They can <a href="http://www.acjps.org/sudanese-human-rights-defenders-prevented-from-travel-to-geneva-upr-meeting/">create legal obstructions</a>, <a href="http://poskod.my/cheat-sheets/why-has-comango-been-banned/">target organisations</a>, place <a href="http://www.edmundriceinternational.org/?p=3390">restrictions on civil society activities</a>, and harass and intimidate activists.</p>\r\n<p style="text-align: justify;">In <a href="http://www.civicus.org/index.php/media-resources/reports-publications/1779-enhancing-the-effectiveness-of-the-un-universal-periodic-review-a-civil-society-perspective-2">a 2015 report</a>, civil society body <a href="http://www.civicus.org/index.php/who-we-are">CIVICUS</a> discussed cases from Cambodia, Malaysia, Philippines and Vietnam, in which governments have responded with misinformation, arranged for voluminous submissions by <a href="https://www.upr-info.org/sites/default/files/general-document/pdf/civicus_enhancing_the_effectiveness_upr_2015.pdf">government-organised NGOs</a>, and conducted consultations only with partisan groups, while refusing to work with civil society groups that are more critical of government policy.</p>\r\n<p style="text-align: justify;">Some have enrolled supportive organisations to speak during sessions at the adoption of the working group report by the commission. While others, <a href="http://www.ishr.ch/news/un-committee-ngos-accredits-129-ngos-defers-130">such as Vietnam</a>, have objected to the granting of consultative status to some NGOs.</p>\r\n<p style="text-align: justify;">Nonetheless, for Southeast Asian civil society groups, the review has been an effective mechanism for putting human rights issues on the agenda and engaging their governments in conversation about critical issues, such as <a href="http://ilga.org/the-universal-periodic-review-and-lgbti-rights-indonesia/">LGBTI rights in Indonesia</a>.</p>\r\n<p style="text-align: justify;">But systemic problems remain for engaging others. These include following up on recommendations and the review’s ability to address difficult political issues, such as the <a href="http://www.bbc.com/news/world-asia-29628191"><em>lese majeste</em> law</a> in Thailand, which forbids citizens from defaming or insulting the kind, and other freedom of expression issues.</p>\r\n<p style="text-align: justify;">To have the review make a real impact, civil society organisations will need to think about what they’ve been doing and develop more strategic approaches for the third cycle, which begins in 2017. They will need to go beyond coalition-building and organising submissions to determining how they can make human rights protections actually enforceable.</p>\r\n<p style="text-align: justify;">Dr. James Gomez- Executive Director, Asia Centre &amp; Pro Vice Chancellor, Canadian University of Bangladesh</p>\r\n<p style="text-align: justify;">Reproduced from The Conversation: <a href="https://theconversation.com/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups-65644" target="_blank">https://theconversation.com/un-human-rights-review-is-largely-toothless-but-its-giving-a-boost-to-asian-civil-society-groups-65644</a></p>', 'UN human rights review is largely toothless – but it’s giving a boost to Asian civil society groups', '', 'inherit', 'closed', 'closed', '', '3169-revision-v1', '', '', '2016-12-09 03:57:02', '2016-12-09 03:57:02', '', 3169, 'http://asiacentre.co.th/other/3169-revision-v1/', 0, 'revision', '', 0),
(3174, 5, '2016-10-20 09:01:42', '2016-10-20 09:01:42', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\n<p style="text-align: justify;">A diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</p>\r\n\r\n\r\n[caption id="attachment_3214" align="alignleft" width="355"]<img class="wp-image-3214" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14717235_1305365989482626_7800097046532877793_n-600x450.jpg" alt="14717235_1305365989482626_7800097046532877793_n" width="355" height="266" /> Asia Centre''s Dr. Robin Ramcharan facilitating the Q&amp;A[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" />The Focus on Life discussion and photo exhibition was part of the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'publish', 'closed', 'closed', '', 'asia-centre-facilitates-focus-on-life-discussion', '', '', '2016-12-23 10:36:18', '2016-12-23 10:36:18', '', 0, 'http://asiacentre.co.th/?p=3174', 0, 'post', '', 0),
(3175, 5, '2016-12-09 09:04:46', '2016-12-09 09:04:46', '', '14680837_1305365772815981_4734870401466601176_o', '', 'inherit', 'closed', 'closed', '', '14680837_1305365772815981_4734870401466601176_o', '', '', '2016-12-23 10:36:18', '2016-12-23 10:36:18', '', 3174, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(3176, 5, '2016-12-09 09:04:47', '2016-12-09 09:04:47', '', '14692067_1305368372815721_7421157843130629890_o', '', 'inherit', 'closed', 'closed', '', '14692067_1305368372815721_7421157843130629890_o', '', '', '2016-12-23 10:36:18', '2016-12-23 10:36:18', '', 3174, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o.jpg', 2, 'attachment', 'image/jpeg', 0),
(3177, 5, '2016-12-09 09:04:48', '2016-12-09 09:04:48', '', '14695353_1305366036149288_9123102683788276967_n', '', 'inherit', 'closed', 'closed', '', '14695353_1305366036149288_9123102683788276967_n', '', '', '2016-12-23 10:36:18', '2016-12-23 10:36:18', '', 3174, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14695353_1305366036149288_9123102683788276967_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(3178, 5, '2016-12-09 09:04:49', '2016-12-09 09:04:49', '', '14725642_1305365979482627_6934809242565258751_n', '', 'inherit', 'closed', 'closed', '', '14725642_1305365979482627_6934809242565258751_n', '', '', '2016-12-23 10:36:18', '2016-12-23 10:36:18', '', 3174, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n.jpg', 4, 'attachment', 'image/jpeg', 0),
(3179, 5, '2016-12-09 09:07:49', '2016-12-09 09:07:49', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty activist Toshi Kazama held a <img class="alignright  wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" />photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3175 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" />A diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright  wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="203" height="271" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:07:49', '2016-12-09 09:07:49', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3180, 5, '2016-12-09 09:09:02', '2016-12-09 09:09:02', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright  wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" />A diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright  wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:09:02', '2016-12-09 09:09:02', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3181, 5, '2016-12-09 09:09:38', '2016-12-09 09:09:38', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" />\r\n\r\nA diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:09:38', '2016-12-09 09:09:38', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3182, 5, '2016-12-09 09:10:04', '2016-12-09 09:10:04', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\nA diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:10:04', '2016-12-09 09:10:04', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3183, 5, '2016-12-22 01:36:48', '2016-12-22 01:36:48', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\n<p style="text-align: justify;">A diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</p>\r\n\r\n\r\n[caption id="attachment_3214" align="alignleft" width="355"]<img class="wp-image-3214" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14717235_1305365989482626_7800097046532877793_n-600x450.jpg" alt="14717235_1305365989482626_7800097046532877793_n" width="355" height="266" /> Asia Centre''s Dr. Robin Ramcharan facilitating the Q&amp;A[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" />The Focus on Life discussion and photo exhibition was part of the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-autosave-v1', '', '', '2016-12-22 01:36:48', '2016-12-22 01:36:48', '', 3174, 'http://asiacentre.co.th/other/3174-autosave-v1/', 0, 'revision', '', 0),
(3184, 5, '2016-12-09 09:10:36', '2016-12-09 09:10:36', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\nA diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:10:36', '2016-12-09 09:10:36', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3185, 5, '2016-12-09 09:11:49', '2016-12-09 09:11:49', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>&nbsp;\r\n\r\n\r\nA diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:11:49', '2016-12-09 09:11:49', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3186, 5, '2016-12-09 09:13:55', '2016-12-09 09:13:55', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\nA diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:13:55', '2016-12-09 09:13:55', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3187, 5, '2016-12-09 09:14:20', '2016-12-09 09:14:20', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\nA diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Focus on Life discussion and photo exhibition was part of<img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" /> the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:14:20', '2016-12-09 09:14:20', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3188, 5, '2016-12-09 09:17:15', '2016-12-09 09:17:15', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\nA diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" />The Focus on Life discussion and photo exhibition was part of the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:17:15', '2016-12-09 09:17:15', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3189, 5, '2016-12-09 09:18:25', '2016-12-09 09:18:25', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\n<p style="text-align: justify;">A diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" />The Focus on Life discussion and photo exhibition was part of the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-09 09:18:25', '2016-12-09 09:18:25', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3190, 5, '2016-12-12 05:19:17', '2016-12-12 05:19:17', '', 'Asia Centre-event-2016 US-election', '', 'inherit', 'closed', 'closed', '', '15000245_1333205466698678_6490108670422864360_o', '', '', '2016-12-23 10:34:39', '2016-12-23 10:34:39', '', 3193, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15000245_1333205466698678_6490108670422864360_o.jpg', 0, 'attachment', 'image/jpeg', 0),
(3191, 5, '2016-12-12 05:19:19', '2016-12-12 05:19:19', '', '15016445_1333205746698650_8976982019918068679_o', '', 'inherit', 'closed', 'closed', '', '15016445_1333205746698650_8976982019918068679_o', '', '', '2016-12-23 10:34:39', '2016-12-23 10:34:39', '', 3193, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15016445_1333205746698650_8976982019918068679_o.jpg', 1, 'attachment', 'image/jpeg', 0),
(3192, 5, '2016-12-12 05:19:20', '2016-12-12 05:19:20', '', '15039482_1333205440032014_2138696706444697529_o', '', 'inherit', 'closed', 'closed', '', '15039482_1333205440032014_2138696706444697529_o', '', '', '2016-12-23 10:34:39', '2016-12-23 10:34:39', '', 3193, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o.jpg', 2, 'attachment', 'image/jpeg', 0),
(3193, 5, '2016-11-12 05:19:24', '2016-11-12 05:19:24', '<p style="text-align: justify;">On the eve of the historic vote, Asia Centre convened a roundtable to discuss perspectives and predictions on the outcome of the US Presidential Elections. Entitled, “The 2016 US Elections: Change At Last?” the event was held in partnership with the Asian American Journalists Association (AAJA).</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The roundtable panel featured a former US a<img class="alignright wp-image-3190" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15000245_1333205466698678_6490108670422864360_o-600x393.jpg" alt="15000245_1333205466698678_6490108670422864360_o" width="360" height="236" />mbassador, academics of various nationalities and disciplines and a journalist. All discussants provided their insight and analysis on the campaign period, what they saw as key determinants of the election and the impact the results would have on Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Margaret MacMillion, Former Ambassador of the United States to Rwanda discussed the foreign policy implications. Kevin Downey form Thammasat University and Jerimiah Morris from Mahidol University International College, both American nationals living and teaching in Thailand, discussed the political system in the US and political discourse in a “post-fact” world. Pablo Ramirez, Bangkok University, a Mexican national, examined campaign rhetoric towards hispanics and its meaning for Mexico - US relations. Mike Raomanachai from AAJA shared his experiences covering the Democratic convention during previous elections and discussed the role that media coverage and social media in particular has played.</span></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3191 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15016445_1333205746698650_8976982019918068679_o-600x466.jpg" alt="15016445_1333205746698650_8976982019918068679_o" width="316" height="245" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Salient points raised during the discussion included: </span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span style="font-weight: 400;">The dissonance between the elites and the electorate;</span></li>\r\n 	<li style="text-align: justify;">The inherent two-party nature of the US electoral system and the adaptability of the Republican Party despite current internal difficulties;</li>\r\n 	<li style="text-align: justify;">As during the Brexit debate in the UK, the American electoral campaign  discourse was far removed from facts on the ground;</li>\r\n 	<li style="text-align: justify;">The pressures imposed by populist forces on the independence of media in a post-fact world;</li>\r\n 	<li style="text-align: justify;">The global uncertainty that would accompany a Trump presidency in the form of a more isolationist and burden sharing relationship with US allies and</li>\r\n 	<li style="text-align: justify;">The disaffection with the United States felt across Latin America in light of the anti-hispanic and anti-Mexican rhetoric that was crassly exploited for political gain.</li>\r\n</ul>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">During the Q&amp;A session, participants pondered the impact of FBI investigations into Hillary <img class="alignright wp-image-3192" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o-600x450.jpg" alt="15039482_1333205440032014_2138696706444697529_o" width="355" height="266" />Clinton’s emails, how the rhetoric of the campaign was being received outside US and the continued viability of a two party system given Trump’s candidacy on the Republican party.</span><span style="font-weight: 400;"> Much attention was also focused on the rise of highly populist political discourse in an age of austerity and the willingness of the disaffected and disenfranchised middle classes to accept post-factual discourse, often driven by a “fake news” originating over social media. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Consistent with polling, panelists at the Asian Centre roundtable predicted a Trump defeat. However, the result has shown otherwise.  The Centre will continue to monitor the impact of the Trump presidency in Asia. </span></p>', 'The 2016 US Elections: Change At Last?', '', 'publish', 'closed', 'closed', '', 'the-2016-us-elections-change-at-last', '', '', '2016-12-23 10:34:39', '2016-12-23 10:34:39', '', 0, 'http://asiacentre.co.th/?p=3193', 0, 'post', '', 0),
(3194, 5, '2016-12-12 05:22:08', '2016-12-12 05:22:08', '<p style="text-align: justify;">On the eve of the historic vote, Asia Centre convened a roundtable to discuss perspectives and predictions on the outcome of the US Presidential Elections. Entitled, “The 2016 US Elections: Change At Last?” the event was held in partnership with the Asian American Journalists Association (AAJA).</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The roundtable panel featured a former US a<img class="alignright  wp-image-3190" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15000245_1333205466698678_6490108670422864360_o-600x393.jpg" alt="15000245_1333205466698678_6490108670422864360_o" width="360" height="236" />mbassador, academics of various nationalities and disciplines and a journalist. All discussants provided their insight and analysis on the campaign period, what they saw as key determinants of the election and the impact the results would have on Asia.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3192 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o-600x450.jpg" alt="15039482_1333205440032014_2138696706444697529_o" width="375" height="281" />Margaret MacMillion, Former Ambassador of the United States to Rwanda discussed the foreign policy implications. Kevin Downey form Thammasat University and Jerimiah Morris from Mahidol University International College, both American nationals living and teaching in Thailand, discussed the political system in the US and political discourse in a “post-fact” world. Pablo Ramirez, Bangkok University, a Mexican national, examined campaign rhetoric towards hispanics and its meaning for Mexico - US relations. Mike Raomanachai from AAJA shared his experiences covering the Democratic convention during previous elections and discussed the role that media coverage and social media in particular has played.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Salient points raised during the discussion included: </span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span style="font-weight: 400;">The dissonance between the elites and the electorate;</span></li>\r\n 	<li style="text-align: justify;">The inherent two-party nature of the US electoral system and the adaptability of the Republican Party despite current internal difficulties;</li>\r\n 	<li style="text-align: justify;">As during the Brexit debate in the UK, the American electoral campaign  discourse was far removed from facts on the ground;</li>\r\n 	<li style="text-align: justify;">The pressures imposed by populist forces on the independence of media in a post-fact world;</li>\r\n 	<li style="text-align: justify;">The global uncertainty that would accompany a Trump presidency in the form of a more isolationist and burden sharing relationship with US allies and</li>\r\n 	<li style="text-align: justify;">The disaffection with the United States felt across Latin America in light of the anti-hispanic and anti-Mexican rhetoric that was crassly exploited for political gain.</li>\r\n</ul>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">During the Q&amp;A session, participants pondered the impact of FBI investigations into Hillary <img class="alignright  wp-image-3192" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o-600x450.jpg" alt="15039482_1333205440032014_2138696706444697529_o" width="355" height="266" />Clinton’s emails, how the rhetoric of the campaign was being received outside US and the continued viability of a two party system given Trump’s candidacy on the Republican party.</span><span style="font-weight: 400;"> Much attention was also focused on the rise of highly populist political discourse in an age of austerity and the willingness of the disaffected and disenfranchised middle classes to accept post-factual discourse, often driven by a “fake news” originating over social media. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Consistent with polling, panelists at the Asian Centre roundtable predicted a Trump defeat. However, the result has shown otherwise.  The Centre will continue to monitor the impact of the Trump presidency in Asia. </span></p>', 'The 2016 US Elections: Change At Last?', '', 'inherit', 'closed', 'closed', '', '3193-revision-v1', '', '', '2016-12-12 05:22:08', '2016-12-12 05:22:08', '', 3193, 'http://asiacentre.co.th/other/3193-revision-v1/', 0, 'revision', '', 0),
(3195, 5, '2016-12-12 05:22:41', '2016-12-12 05:22:41', '<p style="text-align: justify;">On the eve of the historic vote, Asia Centre convened a roundtable to discuss perspectives and predictions on the outcome of the US Presidential Elections. Entitled, “The 2016 US Elections: Change At Last?” the event was held in partnership with the Asian American Journalists Association (AAJA).</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The roundtable panel featured a former US a<img class="alignright  wp-image-3190" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15000245_1333205466698678_6490108670422864360_o-600x393.jpg" alt="15000245_1333205466698678_6490108670422864360_o" width="360" height="236" />mbassador, academics of various nationalities and disciplines and a journalist. All discussants provided their insight and analysis on the campaign period, what they saw as key determinants of the election and the impact the results would have on Asia.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Margaret MacMillion, Former Ambassador of the United States to Rwanda discussed the foreign policy implications. Kevin Downey form Thammasat University and Jerimiah Morris from Mahidol University International College, both American nationals living and teaching in Thailand, discussed the political system in the US and political discourse in a “post-fact” world. Pablo Ramirez, Bangkok University, a Mexican national, examined campaign rhetoric towards hispanics and its meaning for Mexico - US relations. Mike Raomanachai from AAJA shared his experiences covering the Democratic convention during previous elections and discussed the role that media coverage and social media in particular has played.</span></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3192 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o-600x450.jpg" alt="15039482_1333205440032014_2138696706444697529_o" width="409" height="307" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Salient points raised during the discussion included: </span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span style="font-weight: 400;">The dissonance between the elites and the electorate;</span></li>\r\n 	<li style="text-align: justify;">The inherent two-party nature of the US electoral system and the adaptability of the Republican Party despite current internal difficulties;</li>\r\n 	<li style="text-align: justify;">As during the Brexit debate in the UK, the American electoral campaign  discourse was far removed from facts on the ground;</li>\r\n 	<li style="text-align: justify;">The pressures imposed by populist forces on the independence of media in a post-fact world;</li>\r\n 	<li style="text-align: justify;">The global uncertainty that would accompany a Trump presidency in the form of a more isolationist and burden sharing relationship with US allies and</li>\r\n 	<li style="text-align: justify;">The disaffection with the United States felt across Latin America in light of the anti-hispanic and anti-Mexican rhetoric that was crassly exploited for political gain.</li>\r\n</ul>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">During the Q&amp;A session, participants pondered the impact of FBI investigations into Hillary <img class="alignright  wp-image-3192" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o-600x450.jpg" alt="15039482_1333205440032014_2138696706444697529_o" width="355" height="266" />Clinton’s emails, how the rhetoric of the campaign was being received outside US and the continued viability of a two party system given Trump’s candidacy on the Republican party.</span><span style="font-weight: 400;"> Much attention was also focused on the rise of highly populist political discourse in an age of austerity and the willingness of the disaffected and disenfranchised middle classes to accept post-factual discourse, often driven by a “fake news” originating over social media. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Consistent with polling, panelists at the Asian Centre roundtable predicted a Trump defeat. However, the result has shown otherwise.  The Centre will continue to monitor the impact of the Trump presidency in Asia. </span></p>', 'The 2016 US Elections: Change At Last?', '', 'inherit', 'closed', 'closed', '', '3193-revision-v1', '', '', '2016-12-12 05:22:41', '2016-12-12 05:22:41', '', 3193, 'http://asiacentre.co.th/other/3193-revision-v1/', 0, 'revision', '', 0),
(3196, 5, '2016-12-12 06:53:27', '2016-12-12 06:53:27', '', 'nhri-conference-call-asia-centre', '', 'inherit', 'closed', 'closed', '', 'nhri-conference-call-asia-centre-6', '', '', '2016-12-12 06:53:27', '2016-12-12 06:53:27', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/NHRI-Conference-Call-Asia-Centre-.jpg', 0, 'attachment', 'image/jpeg', 0),
(3200, 5, '2016-12-16 10:02:08', '2016-12-16 10:02:08', '', '15167658_1351371914882033_7900735831384572977_o', '', 'inherit', 'closed', 'closed', '', '15167658_1351371914882033_7900735831384572977_o', '', '', '2016-12-27 03:46:39', '2016-12-27 03:46:39', '', 300, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o.jpg', 1, 'attachment', 'image/jpeg', 0),
(3201, 5, '2016-12-16 10:02:09', '2016-12-16 10:02:09', '', '15194347_1351369458215612_864402045354347617_o', '', 'inherit', 'closed', 'closed', '', '15194347_1351369458215612_864402045354347617_o', '', '', '2016-12-27 03:46:39', '2016-12-27 03:46:39', '', 300, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg', 2, 'attachment', 'image/jpeg', 0),
(3202, 5, '2016-12-16 10:02:10', '2016-12-16 10:02:10', '', '15591783_10157819886335307_1814133035_n', '', 'inherit', 'closed', 'closed', '', '15591783_10157819886335307_1814133035_n', '', '', '2016-12-27 03:46:39', '2016-12-27 03:46:39', '', 300, 'http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(3203, 5, '2016-12-16 10:08:21', '2016-12-16 10:08:21', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Professor James Gomez, PhD</b> is a highly qualified academic and administrator with over 25 <img class="alignright wp-image-3202" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="15591783_10157819886335307_1814133035_n" width="195" height="219" />years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He has worked full-time at well reputed institutions in Australia, China, Japan, Malaysia, Singapore, Sweden, Thailand, and the United Kingdom. Time to time he serves as a technical expert or an external consultant to international agencies.  Professor Gomez is presently the Pro Vice Chancellor at the Canadian University of Bangladesh.</p>&nbsp;\r\n\r\n&nbsp;<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-16 10:08:21', '2016-12-16 10:08:21', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3204, 5, '2016-12-16 11:02:29', '2016-12-16 11:02:29', '<p style="text-align: justify;">Centre Associates comprise experts who are scholars and practitioners of international repute who provide training and advice. The Associates<span style="font-weight: 400;"> are experts in their field of specialty, whom the Centre draws on from time to time to execute or deliver selected programmes.</span></p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;">Ahmed Abid</h2>\r\n<p style="text-align: justify;"><img class="wp-image-2638 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/06/Abid-15.jpg" width="160" height="234" /></p>\r\n<p style="text-align: justify;">Ahmed Abid is a filmmaker and adjunct faculty with the University of Liberal Arts Bangladesh (ULAB), Media Studies and Journalism department. He has produced and directed films on rights-based issues around the world. Some of his key directorial work include <a href="http://www.thedreamingvendorsfilm.com/" target="_blank">The Dreaming Vendors</a> (Bangladesh-Thailand), Votes Echoing Hope (Afghanistan) and Click to Protect, Change to Connect (Brazil-Thailand). Ahmed was the artistic director of the first travelling film festival in Thailand. He has also conducted extensive academic research on media in South and Southeast Asia.  Ahmed has worked in Bangladesh, Cambodia, India, Singapore, Thailand and Jordan; and received training in Italy and the Netherlands. He has taught at the Department of Communications &amp; New Media (CNM), National University of Singapore and worked at its CARE Lab as a Research Assistant. Ahmed holds two Master of Arts degrees; one in Philosophy (University of Dhaka, Bangladesh) and one in Media and Social Development (Mahidol University, Thailand). He also holds a diploma in Cinema from the European-Inter University Centre (EIUC).</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;">Jason Briggs</h2>\r\n<p style="text-align: justify;"><img class="alignleft wp-image-2150" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Jason-Briggs.png" alt="Jason Briggs" width="175" height="173" />Jason Briggs graduated with a Bachelor of Arts in Political Science from the University of Iowa and Juris Doctor from Creighton University School of Law. Jason also holds a Master of Laws in International and Comparative Law from The George Washington University School of Law. After serving as a Senior Legislative Assistant in the United States House of Representatives and United States Senate, Jason worked at the law firm of Covington &amp; Burling. In addition, Jason was the Regional Legal Coordinator for a United Nations Development Programme project in Bangkok, Thailand, focused on combating human trafficking in the Greater Mekong Sub-region. Before joining Webster University-Thailand, Jason was an International Justice Advisor for the United States Department of State - Bureau of International Narcotics and Law Enforcement Justice Sector Support Program in Kabul, Afghanistan. Jason also served as a Community-Based Development Volunteer with the United States Peace Corps in Nakhon Si Thammarat, Thailand.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Alexandra Demetrianova</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-2147" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Alexandra-Demetrianova.png" alt="Alexandra Demetrianova" width="175" height="193" />Alexandra Demetrianova is a freelance journalist from Slovakia based in Bangkok since September 2010. As a former Slovak Radio Southeast Asia correspondent, she has focused her work on human rights, environment, sustainable development and in recent years also LGBT and women’s rights. Her coverage in Africa included female genital mutilation and indigenous people.</p>\r\n<p style="text-align: justify;">Currently, she writes for Asian Correspondent and an array of Slovak and international media titles. She has co-founded and is an editor of Hummingbird Media – web media for alternative journalism focused mainly on Global South.</p>\r\n<p style="text-align: justify;">As a Master student international relations at Faculty of Political Science at Thammasat University, she has participated in several academic research projects in Thailand and Cambodia.</p>\r\n<p style="text-align: justify;">In her free time, Alexandra likes to organize awareness-raising events in fields of human rights and environment both in Bangkok and Slovakia. She has co-organized Thammasat Human Rights Film Festival, Common Rights Film Festival at ICIRD conference in Bangkok, and so far two editions of Planet Festival in Bratislava.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;">Dr. Kenneth Houston</h2>\r\n<p style="text-align: justify;"><img class="alignleft wp-image-2151" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Kenneth-Houston.png" alt="Kenneth Houston" width="175" height="173" />Dr Kenneth Houston is a lecturer in international politics specializing in conflict studies. He currently teaches and works in Thailand. Dr Houston’s teaching and research areas include conflict resolution, regional governance and political discourse and he has published in the areas of regional integration, peace and conflict and religion and politics. A qualified mediator, he entered academia after over twelve years of experience in the Irish military where he served both in domestic security operations and on several tours of duty with the United Nations peacekeeping forces in the Middle East. He teaches a range of subjects including peace and conflict studies, regional politics and political theory at undergraduate and graduate level in International Relations. Currently, he serves as head of the department at a liberal arts university with responsibility for program management.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Yasuyuki Kato</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-2153" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Yasuyuki-Kato.png" alt="Yasuyuki Kato" width="175" height="198" />Yasuyuki Kato has worked as a social changer and researcher in various parts of the Asia-Pacific region and beyond. He has worked as an independent researcher with local as well as international organisations; including the Institute of Urban Politics in Sakai City, Osaka, International Federation of Red Cross and Red Crescent Societies and the International Labour Organization. His research and social activism have spanned a diverse range of issues from grassroots mobilisation against political corruption to comparative disaster law, human rights protection in relation to migration and the role of the media in Asia. Yasuyuki has extensive media experience including working as an editor on multiple media platforms, in both the non-profit and private sectors. Yasuyuki holds a Master of Laws from Kobe University, Japan, where he is currently he pursuing a doctoral degree.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Dr. Jay Koh</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-2592 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/04/jk.jpg" alt="jk" width="193" height="217" />Jay Koh (Doctor Fine Art) is an artist-curator, trained in cross-disciplinary artistic research and active as an independent consultant and evaluator. Jay’s recent research was as a member of the Asian Arts and Performance Consortium funded by the Academy of Finland. He is the founder of iFIMA (international Forum for InterMedia Arts). In 1995 in collaboration with Chu Yuan, he initiated a number of public participative and socially engaged art projects across Europe and Asia; such as the Open Academy program in Hanoi, Hue, Ulaanbaatar and Yangon. Jay’s book <a href="http://www.ifima.net/ALPP%20preview%20sm.pdf" target="_blank"><i>Art-Led Participative Processes: Dialogue &amp; Subjectivity within Performances in the Everyday</i> </a>(University of the Arts Helsinki, 2015; SRID/Gerakbudaya, 2016) discusses holistic and ethical art processes in working relationship, and seeks affirmation across sectors and disciplines. Jay contributes writings for platforms such as Asia Art Archive and Irish Arts Newsletter. His most recent is for BRACK’s MAG, Singapore.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;">Simon Osborne</h2>\r\n<p style="text-align: justify;"><img class="wp-image-2152 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Simon-Osborne.png" alt="Simon Osborne" width="175" height="171" />Simon Osborne has over 10 years retail banking experience and is a multi award winning Visa Qualified Fraud Analyst. He initiated and developed the UK’s first electronic fraud declaration and PARS (Proactive, Asset, Recovery, Strategy), which has helped UK banks save millions in fraud losses. Simon graduated with a first class honours degree in Fraud and Criminal Justice from Visa Inc Business School and currently serves as Senior Vice President for the Broadgate Financial Group where he also sits on the Executive Board. He is also the Group Managing Director for <a href="http://www.aipglobal.co/">AIPGlobal.co</a> a unique student eco-system that works in partnership with the Asia Centre.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Dr. Eilo Wing-yat Yu</strong></h2>\r\n<p style="text-align: justify;"><img class="wp-image-2148 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/10/Eilo-Wing-yat-Yu.png" alt="Eilo Wing-yat Yu" width="175" height="211" />Dr. Eilo Wing-yat Yu is Associate Professor and programme coordinator at the Department of Government and Public Administration, University of Macau. His research focuses on politics and public administration in Greater China, including Macau, Hong Kong and Taiwan. Elio obtained his Masters from the Hong Kong University of Science &amp; Technology and his Ph.D. from the University of Hong Kong. He has published extensively in both English and Chinese.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n&nbsp;', 'Centre Associates', '', 'inherit', 'closed', 'closed', '', '2144-revision-v1', '', '', '2016-12-16 11:02:29', '2016-12-16 11:02:29', '', 2144, 'http://asiacentre.co.th/other/2144-revision-v1/', 0, 'revision', '', 0),
(3205, 5, '2016-12-16 11:06:52', '2016-12-16 11:06:52', 'The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.\r\n\r\n&nbsp;\r\n<h2>Dr. Robin Ramcharan - Chairman</h2>\r\n<img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked in the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D. and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow at the Centre for International Peace and Security Studies at McGill University and the University of Montreal.\r\n\r\n&nbsp;\r\n<h2><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\nDr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, an M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.\r\n\r\n&nbsp;\r\n<h2><strong>Nobuo Hayashi - Member</strong></h2>\r\n<img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, the conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular, recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).\r\n\r\n&nbsp;\r\n<h2><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />BA (University of Waterloo, Canada); MA and Ph.D. (York University, Canada). Currently Professor and Chair, Department of Politics and Public Administration, Ryerson University, Toronto, Canada. Formerly Chair of the Department of Political Science, University of Winnipeg (Manitoba); Chair of the Advisory and Recruitment Committee for The Manitoba Chair of Global Governance Studies – a joint program between the University of Winnipeg and the University of Manitoba. Prior to these academic appointments, Professor of International Security at Sophia University in Tokyo (Japan); Canada-ASEAN Fellow as well as Fellow at the Institute of Southeast Asian Studies (Singapore). Academic fields of expertise: security and democracy studies, with the regional focus on the Asia-Pacific. Major books: <i>Human Security Studies: Theories, Methods and Themes </i>(World Scientific and Imperial College Press, 2014<i>)</i>; <i>Peace and Security in the Asia-Pacific </i>(Praeger 2010), <i>Human Security in East Asia: Challenges for Collaborative Action</i>, ed.<i> </i>(Routledge 2008), <i>International Democracy Assistance for Peacebuilding: Cambodia and Beyond</i>(Palgrave Macmillan 2007), <i>Intervention and Change in Cambodia: Toward Democracy</i> (St. Martin’s Press, Institute of Southeast Asian Studies and Silkworms, 2001) &amp; <i>Conflict Neutralization in the Cambodia War: From Battlefield to Ballot-box</i> (Oxford University Press, 1997). Service: Editorial boards of <i>Rethinking Peace and Conflict Studies</i> (Palgrave Macmillan) and the peer-reviewed journal <i>Asian Politics &amp; Policy</i> (Wiley-Blackwell); regional editor of a peer-reviewed journal - <i>The Asian Journal of Peacebuilding</i> (Seoul National University Press, South Korea). Also Distinguished Senior Fellow at the Cambodian Institute for Peace and Cooperation, Distinguished Visiting Scholar at the Cambodian Development Research Institute, and a member of an International Country Experts Network on UN Peacekeeping.\r\n\r\n&nbsp;\r\n<h2><strong>Professor Jonathan Woodier – Member</strong></h2>\r\n<b>PhD (UQ), M.A. (HKU), BA (Hons). </b>A media and communications professional specializing in brand building and organizational transformation, Jonathan is currently a professor at the Sol International School of Media and Communications Arts at Woosong University, South Korea, and an Associate Fellow of the Strategic Communications Centre at King’s College, London. For the last 25 years Jonathan has been working with narratives across multiple businesses in Asia Pacific, EMEA and the Americas. With a background in multi-platform journalism and a proven track record of helping companies effectively create authentic conversations with their stakeholders, he has supported leading brands in growing their businesses in highly-regulated industries while raising levels of motivation and good governance.\r\n<h2></h2>\r\n<h2><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<img class="wp-image-2121 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and works experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development, he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.\r\n\r\n&nbsp;\r\n<h2></h2>\r\n&nbsp;\r\n\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2016-12-16 11:06:52', '2016-12-16 11:06:52', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(3206, 5, '2016-12-16 11:07:04', '2016-12-16 11:07:04', '', 'woodier', '', 'inherit', 'closed', 'closed', '', 'woodier', '', '', '2016-12-16 11:09:58', '2016-12-16 11:09:58', '', 2113, 'http://asiacentre.co.th/wp-content/uploads/2016/12/Woodier.jpg', 1, 'attachment', 'image/jpeg', 0),
(3207, 5, '2016-12-16 11:09:21', '2016-12-16 11:09:21', '<p style="text-align: justify;">The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;">Dr. Robin Ramcharan - Chairman</h2>\r\n<p style="text-align: justify;"><img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked in the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D. and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow at the Centre for International Peace and Security Studies at McGill University and the University of Montreal.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\n<p style="text-align: justify;">Dr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, an M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Nobuo Hayashi - Member</strong></h2>\r\n<p style="text-align: justify;"><img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, the conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular, recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />BA (University of Waterloo, Canada); MA and Ph.D. (York University, Canada). Currently Professor and Chair, Department of Politics and Public Administration, Ryerson University, Toronto, Canada. Formerly Chair of the Department of Political Science, University of Winnipeg (Manitoba); Chair of the Advisory and Recruitment Committee for The Manitoba Chair of Global Governance Studies – a joint program between the University of Winnipeg and the University of Manitoba. Prior to these academic appointments, Professor of International Security at Sophia University in Tokyo (Japan); Canada-ASEAN Fellow as well as Fellow at the Institute of Southeast Asian Studies (Singapore). Academic fields of expertise: security and democracy studies, with the regional focus on the Asia-Pacific. Service: Editorial boards of <i>Rethinking Peace and Conflict Studies</i> (Palgrave Macmillan) and the peer-reviewed journal <i>Asian Politics &amp; Policy</i> (Wiley-Blackwell); regional editor of a peer-reviewed journal - <i>The Asian Journal of Peacebuilding</i> (Seoul National University Press, South Korea). Also Distinguished Senior Fellow at the Cambodian Institute for Peace and Cooperation, Distinguished Visiting Scholar at the Cambodian Development Research Institute, and a member of an International Country Experts Network on UN Peacekeeping.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Professor Jonathan Woodier – Member</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3206 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/Woodier-e1481886453190-447x480.jpg" alt="woodier" width="201" height="216" />PhD (UQ), M.A. (HKU), BA (Hons). A media and communications professional specializing in brand building and organizational transformation, Jonathan is currently a professor at the Sol International School of Media and Communications Arts at Woosong University, South Korea, and an Associate Fellow of the Strategic Communications Centre at King’s College, London. For the last 25 years Jonathan has been working with narratives across multiple businesses in Asia Pacific, EMEA and the Americas. With a background in multi-platform journalism and a proven track record of helping companies effectively create authentic conversations with their stakeholders, he has supported leading brands in growing their businesses in highly-regulated industries while raising levels of motivation and good governance.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;"><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<p style="text-align: justify;"><img class="wp-image-2121 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and works experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development, he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<p style="text-align: justify;"></p>\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2016-12-16 11:09:21', '2016-12-16 11:09:21', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(3208, 5, '2016-12-16 11:09:57', '2016-12-16 11:09:57', '<p style="text-align: justify;">The Advisory Board provides advice and recommendations on the vision, mission and services offered by the Centre. Members of the Board from time to time also engage in delivering training and expert advice in their respective areas of competence. The Board comprises individuals of international repute who are specialists in their respective fields and who have wide experience in the tertiary education sector (in both pedagogy and andragogy), in international organizations and in the civil society sector. Members are accomplished in Asia-Pacific affairs and have considerable professional and personal experience in the region.</p>\r\n\r\n<h2 style="text-align: justify;">Dr. Robin Ramcharan - Chairman</h2>\r\n<p style="text-align: justify;"><img class="size-full wp-image-2117 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2015/09/robin-ramcharan.jpg" alt="Robin Ramcharan" width="166" height="200" />Dr. Ramcharan is Professor of International Relations in Geneva Switzerland. His professional experience spans academia, international organizations and the private sector. He has worked in the development sector for many years in an international organization, implementing capacity building programmes and undertaking training of human resources for the benefit of developing countries. He has taught and researched on international security, human security, human rights and democracy and intellectual property rights. He has lived in Europe, North America, South Asia and Southeast Asia. He has lectured in Canada, India, Singapore, Switzerland and Thailand. He holds a Ph.D. and M.A. (<em>DES</em>) in International Relations from the Graduate Institute of International and Development Studies in Geneva, Switzerland. He also holds an MA from the London School of Economics and Political Science, an LLM and an LLB from the University of London, and a B.A. Honours from Queen’s University in Canada. He was a Post-Doctoral Fellow at the Centre for International Peace and Security Studies at McGill University and the University of Montreal.</p>\r\n\r\n<h2 style="text-align: justify;"><strong><img class="alignright wp-image-2119 " src="http://asiacentre.co.th/wp-content/uploads/2015/09/karin-dean-683x1024.jpg" alt="Karin Dean" width="143" height="215" />Dr. Karin Dean - Member</strong></h2>\r\n<p style="text-align: justify;">Dr. Dean is Senior Researcher at The Estonian Institute of Humanities, Tallinn University and a leader in Asian Studies in the Baltic region. She specializes in political geography, on State, territory, sovereignty, borders and spaces, on state- and nation-building; on ethnic minorities; and stateless nations in ‘Southeast,’ ‘South,’ ‘Central’ and ‘East’ Asia. She has taught and conducted research in Vietnam, at Chulalongkorn University in Thailand, at Family Health International in North Thailand, and at the Henry Dunant Centre for Humanitarian Dialogue. She holds a doctorate in Geography from the National University of Singapore, an M.Sc. in Geography from the University of Idaho and a B.Sc. in Geography from the University of Tartu.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;"><strong>Nobuo Hayashi - Member</strong></h2>\r\n<p style="text-align: justify;"><img class="alignleft wp-image-2120" src="http://asiacentre.co.th/wp-content/uploads/2015/09/nobuo-hayashi.jpg" alt="Nobuo Hayashi" width="167" height="180" />Nobuo Hayashi is presently Senior Legal Advisor, International Law and Policy Institute, and Researcher, University of Oslo Law Faculty. He specializes in the law of armed conflict, particularly the fundamental principles, the conduct of hostilities and protection of victims; international criminal law, especially war crimes and modes of liability including command/superior responsibility; and public international law, in particular, recourse to force and state responsibility. He has more than fifteen years of experience performing advanced research, advising international prosecutors, authoring court submissions, teaching at universities and publishing in the aforementioned areas as well as related fields. He is also a Visiting Professor at the International University of Japan (2005-present) and a Visiting Lecturer at the University of Turin Law Faculty/UN Interregional Criminal Justice Research Institute (2007-present). He was Researcher, Peace Research Institute Oslo (2008-12); Legal Advisor, Norwegian Centre for Human Rights (2006-8); Legal Officer, Prosecutions Division, Office of the Prosecutor (OTP), International Criminal Tribunal for the Former Yugoslavia (ICTY) (2004-6); and Associate Legal Officer, ICTY OTP Legal Advisory Section (2000-3).</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;"><strong>Dr. Sorpong Peou - Member</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-2133 size-full" src="http://asiacentre.co.th/wp-content/uploads/2015/09/sorpong.jpg" alt="Sorpong Peuo" width="178" height="178" />BA (University of Waterloo, Canada); MA and Ph.D. (York University, Canada). Currently Professor and Chair, Department of Politics and Public Administration, Ryerson University, Toronto, Canada. Formerly Chair of the Department of Political Science, University of Winnipeg (Manitoba); Chair of the Advisory and Recruitment Committee for The Manitoba Chair of Global Governance Studies – a joint program between the University of Winnipeg and the University of Manitoba. Prior to these academic appointments, Professor of International Security at Sophia University in Tokyo (Japan); Canada-ASEAN Fellow as well as Fellow at the Institute of Southeast Asian Studies (Singapore). Academic fields of expertise: security and democracy studies, with the regional focus on the Asia-Pacific. Service: Editorial boards of <i>Rethinking Peace and Conflict Studies</i> (Palgrave Macmillan) and the peer-reviewed journal <i>Asian Politics &amp; Policy</i> (Wiley-Blackwell); regional editor of a peer-reviewed journal - <i>The Asian Journal of Peacebuilding</i> (Seoul National University Press, South Korea). Also Distinguished Senior Fellow at the Cambodian Institute for Peace and Cooperation, Distinguished Visiting Scholar at the Cambodian Development Research Institute, and a member of an International Country Experts Network on UN Peacekeeping.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n<h2 style="text-align: justify;"><strong>Professor Jonathan Woodier – Member</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3206 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/Woodier-e1481886453190-447x480.jpg" alt="woodier" width="201" height="216" />PhD (UQ), M.A. (HKU), BA (Hons). A media and communications professional specializing in brand building and organizational transformation, Jonathan is currently a professor at the Sol International School of Media and Communications Arts at Woosong University, South Korea, and an Associate Fellow of the Strategic Communications Centre at King’s College, London. For the last 25 years Jonathan has been working with narratives across multiple businesses in Asia Pacific, EMEA and the Americas. With a background in multi-platform journalism and a proven track record of helping companies effectively create authentic conversations with their stakeholders, he has supported leading brands in growing their businesses in highly-regulated industries while raising levels of motivation and good governance.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n&nbsp;\r\n<h2 style="text-align: justify;"><strong>Dr. Ross Worthington – Member</strong></h2>\r\n<p style="text-align: justify;"><img class="wp-image-2121 alignright" src="http://asiacentre.co.th/wp-content/uploads/2015/09/ross-worthington.jpg" alt="Ross Worthington" width="184" height="184" />Dr. Worthington is an international governance expert with over 25 years of experience, including over 12 years of residential experience in Africa, Asia, and the Middle East and works experience in 28 countries worldwide. Dr. Worthington also has extensive experience with the Australian Government and with the World Bank, working in fragile and post-conflict environments. Prior to his work in international development, he was a Deputy Assistant Secretary and Assistant Secretary in the Australia Government in social security, health, education and indigenous affairs.</p>\r\n\r\n<h2 style="text-align: justify;"></h2>\r\n&nbsp;', 'Advisory Board', '', 'inherit', 'closed', 'closed', '', '2113-revision-v1', '', '', '2016-12-16 11:09:57', '2016-12-16 11:09:57', '', 2113, 'http://asiacentre.co.th/other/2113-revision-v1/', 0, 'revision', '', 0),
(3209, 5, '2016-12-16 11:14:03', '2016-12-16 11:14:03', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Professor James Gomez, PhD</b> is the Executive Director of <img class="alignright  wp-image-3202" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="15591783_10157819886335307_1814133035_n" width="215" height="241" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" />&nbsp;<strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-16 11:14:03', '2016-12-16 11:14:03', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3210, 5, '2016-12-16 11:14:20', '2016-12-16 11:14:20', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Professor James Gomez, PhD</b> is the Executive Director of <img class="alignright  wp-image-3202" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="15591783_10157819886335307_1814133035_n" width="215" height="241" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" />&nbsp;\r\n\r\n&nbsp;<strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-16 11:14:20', '2016-12-16 11:14:20', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3211, 5, '2016-12-16 11:14:51', '2016-12-16 11:14:51', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Professor James Gomez, PhD</b> is the Executive Director of <img class="alignright  wp-image-3202" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="15591783_10157819886335307_1814133035_n" width="215" height="241" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>&nbsp;\r\n\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" />&nbsp;\r\n\r\n<strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-16 11:14:51', '2016-12-16 11:14:51', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3212, 5, '2016-12-16 11:15:23', '2016-12-16 11:15:23', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Professor James Gomez, PhD</b> is the Executive Director of <img class="alignright wp-image-3202" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="15591783_10157819886335307_1814133035_n" width="215" height="241" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-16 11:15:23', '2016-12-16 11:15:23', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3213, 5, '2016-12-22 01:33:39', '2016-12-22 01:33:39', '<p style="text-align: justify;">On the eve of the historic vote, Asia Centre convened a roundtable to discuss perspectives and predictions on the outcome of the US Presidential Elections. Entitled, “The 2016 US Elections: Change At Last?” the event was held in partnership with the Asian American Journalists Association (AAJA).</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The roundtable panel featured a former US a<img class="alignright wp-image-3190" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15000245_1333205466698678_6490108670422864360_o-600x393.jpg" alt="15000245_1333205466698678_6490108670422864360_o" width="360" height="236" />mbassador, academics of various nationalities and disciplines and a journalist. All discussants provided their insight and analysis on the campaign period, what they saw as key determinants of the election and the impact the results would have on Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Margaret MacMillion, Former Ambassador of the United States to Rwanda discussed the foreign policy implications. Kevin Downey form Thammasat University and Jerimiah Morris from Mahidol University International College, both American nationals living and teaching in Thailand, discussed the political system in the US and political discourse in a “post-fact” world. Pablo Ramirez, Bangkok University, a Mexican national, examined campaign rhetoric towards hispanics and its meaning for Mexico - US relations. Mike Raomanachai from AAJA shared his experiences covering the Democratic convention during previous elections and discussed the role that media coverage and social media in particular has played.</span></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3191 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15016445_1333205746698650_8976982019918068679_o-600x466.jpg" alt="15016445_1333205746698650_8976982019918068679_o" width="316" height="245" /></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Salient points raised during the discussion included: </span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span style="font-weight: 400;">The dissonance between the elites and the electorate;</span></li>\r\n 	<li style="text-align: justify;">The inherent two-party nature of the US electoral system and the adaptability of the Republican Party despite current internal difficulties;</li>\r\n 	<li style="text-align: justify;">As during the Brexit debate in the UK, the American electoral campaign  discourse was far removed from facts on the ground;</li>\r\n 	<li style="text-align: justify;">The pressures imposed by populist forces on the independence of media in a post-fact world;</li>\r\n 	<li style="text-align: justify;">The global uncertainty that would accompany a Trump presidency in the form of a more isolationist and burden sharing relationship with US allies and</li>\r\n 	<li style="text-align: justify;">The disaffection with the United States felt across Latin America in light of the anti-hispanic and anti-Mexican rhetoric that was crassly exploited for political gain.</li>\r\n</ul>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">During the Q&amp;A session, participants pondered the impact of FBI investigations into Hillary <img class="alignright wp-image-3192" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o-600x450.jpg" alt="15039482_1333205440032014_2138696706444697529_o" width="355" height="266" />Clinton’s emails, how the rhetoric of the campaign was being received outside US and the continued viability of a two party system given Trump’s candidacy on the Republican party.</span><span style="font-weight: 400;"> Much attention was also focused on the rise of highly populist political discourse in an age of austerity and the willingness of the disaffected and disenfranchised middle classes to accept post-factual discourse, often driven by a “fake news” originating over social media. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Consistent with polling, panelists at the Asian Centre roundtable predicted a Trump defeat. However, the result has shown otherwise.  The Centre will continue to monitor the impact of the Trump presidency in Asia. </span></p>', 'The 2016 US Elections: Change At Last?', '', 'inherit', 'closed', 'closed', '', '3193-revision-v1', '', '', '2016-12-22 01:33:39', '2016-12-22 01:33:39', '', 3193, 'http://asiacentre.co.th/other/3193-revision-v1/', 0, 'revision', '', 0),
(3214, 5, '2016-12-22 01:35:47', '2016-12-22 01:35:47', '', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '14717235_1305365989482626_7800097046532877793_n', '', '', '2016-12-23 13:59:44', '2016-12-23 13:59:44', '', 3174, 'http://asiacentre.co.th/wp-content/uploads/2016/10/14717235_1305365989482626_7800097046532877793_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(3215, 5, '2016-12-22 01:37:03', '2016-12-22 01:37:03', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\n<p style="text-align: justify;">A diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</p>\r\n\r\n\r\n[caption id="attachment_3214" align="alignleft" width="355"]<img class="wp-image-3214" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14717235_1305365989482626_7800097046532877793_n-600x450.jpg" alt="14717235_1305365989482626_7800097046532877793_n" width="355" height="266" /> Asia Centre''s Dr. Robin Ramcharan facilitating the Q&amp;A[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" />The Focus on Life discussion and photo exhibition was part of the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-22 01:37:03', '2016-12-22 01:37:03', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3217, 5, '2016-12-22 01:41:40', '2016-12-22 01:41:40', '<h2><strong>International Education Programme (IEP)</strong></h2>\r\n<p style="text-align: justify;">The International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>IEP Bangkok (Thailand)</strong></h2>\r\n<p style="text-align: justify;">IEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic connection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organisations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Programme Structure</strong></h2>\r\n<p style="text-align: justify;">IEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Teaching Methods</strong></h2>\r\n<p style="text-align: justify;">IEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</p>\r\n<p style="text-align: justify;"></p>\r\n\r\n<h2 style="text-align: justify;"><strong>Teaching Materials </strong></h2>\r\n<p style="text-align: justify;">The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">For more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2016-12-22 01:41:40', '2016-12-22 01:41:40', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(3219, 5, '2016-12-22 01:42:22', '2016-12-22 01:42:22', '', 'Asia Centre''s Media and Communication Workshop', '', 'inherit', 'closed', 'closed', '', 'img_20160922_101844', '', '', '2016-12-23 13:49:42', '2016-12-23 13:49:42', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/IMG_20160922_101844.jpg', 0, 'attachment', 'image/jpeg', 0),
(3220, 5, '2016-12-22 01:42:32', '2016-12-22 01:42:32', '', 'Asia Centre''s Media and Communication Workshop', '', 'inherit', 'closed', 'closed', '', 'img_20160922_101630_1', '', '', '2016-12-23 13:49:31', '2016-12-23 13:49:31', '', 2171, 'http://asiacentre.co.th/wp-content/uploads/2016/12/IMG_20160922_101630_1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3221, 5, '2016-12-22 01:42:35', '2016-12-22 01:42:35', '', 'Asia Centre''s Media and Communication Workshop', '', 'inherit', 'closed', 'closed', '', '14914826_10202859464004726_798943903_n', '', '', '2016-12-23 13:49:19', '2016-12-23 13:49:19', '', 2171, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14914826_10202859464004726_798943903_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(3222, 5, '2016-12-22 01:42:36', '2016-12-22 01:42:36', '', 'Asia Centre''s Media and Communication Workshop', '', 'inherit', 'closed', 'closed', '', '14886183_10202859479245107_1525629335_n', '', '', '2016-12-23 13:49:00', '2016-12-23 13:49:00', '', 2171, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14886183_10202859479245107_1525629335_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(3223, 5, '2016-12-22 01:42:37', '2016-12-22 01:42:37', '', 'Asia Centre''s Media and Communication Workshop', '', 'inherit', 'closed', 'closed', '', '14875254_10202859471524914_416256527_n', '', '', '2016-12-23 13:48:42', '2016-12-23 13:48:42', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/14875254_10202859471524914_416256527_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(3224, 5, '2016-12-22 01:46:46', '2016-12-22 01:46:46', '<h2><strong>International Education Programme (IEP)</strong></h2>\r\n<p style="text-align: justify;">The International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>IEP Bangkok (Thailand)</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3221 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14914826_10202859464004726_798943903_n-600x444.jpg" alt="14914826_10202859464004726_798943903_n" width="354" height="262" />IEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic\r\nconnection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organisations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>Programme Structure</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright  wp-image-3222" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14886183_10202859479245107_1525629335_n-600x450.jpg" alt="14886183_10202859479245107_1525629335_n" width="366" height="275" />IEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</p>\r\n\r\n<h2 style="text-align: justify;"><strong><img class="alignright  wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="148" height="263" />Teaching Methods</strong></h2>\r\n<p style="text-align: justify;">IEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>Teaching Materials </strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3220 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/IMG_20160922_101630_1-600x337.jpg" alt="img_20160922_101630_1" width="303" height="170" />The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</p>\r\n<p style="text-align: justify;">For more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2016-12-22 01:46:46', '2016-12-22 01:46:46', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(3225, 5, '2016-12-22 01:50:55', '2016-12-22 01:50:55', '<h2><strong>International Education Programme (IEP)</strong></h2>\r\n<p style="text-align: justify;">The International Education Programme (IEP) is a specially designed curriculum for students to take part in academic, cultural and professional activities in key destination countries abroad. The IEP includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. The Asia Centre aims to provide students with a holistic overview of the world and to better prepare them for global citizenship.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>IEP Bangkok (Thailand)</strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3221 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14914826_10202859464004726_798943903_n-600x444.jpg" alt="14914826_10202859464004726_798943903_n" width="354" height="262" />IEP Bangkok exposes students to the emerging ASEAN Economic Community and its strategic\r\nconnection to Asia and the rest of the world. Located in the heart of Thailand, Bangkok is one of Asia’s most popular cities, with deep historical, economic and political significance. A truly global city, Bangkok hosts a variety of multinational companies, United Nations agencies as well as international and nonprofit organisations. Bangkok is also fast becoming a regional educational hub and is home to some of Thailand’s foremost tertiary institutions such as Bangkok University, Chulalongkorn University, Mahidol University and Thammasat University. Drawing on the diversity and opportunities that this capital city presents, IEP Bangkok connects students to these networks through its various programmes.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>Programme Structure</strong></h2>\r\n<p style="text-align: justify;"><img class="alignright wp-image-3222" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14886183_10202859479245107_1525629335_n-600x450.jpg" alt="14886183_10202859479245107_1525629335_n" width="366" height="275" />IEP offers specialised courses within a suite of programmes on Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others. Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</p>\r\n\r\n<h2 style="text-align: justify;"><strong><img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="148" height="263" />Teaching Methods</strong></h2>\r\n<p style="text-align: justify;">IEP employs a mixture of lecture, discussion and practical application, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</p>\r\n\r\n<h2 style="text-align: justify;"><strong>Teaching Materials </strong></h2>\r\n<p style="text-align: justify;"><img class=" wp-image-3220 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/IMG_20160922_101630_1-600x337.jpg" alt="img_20160922_101630_1" width="303" height="170" />The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</p>\r\n<p style="text-align: justify;">To learn more about our 2 week Media &amp; Communications Workshop <a href="http://asiacentre.co.th/news/latest-news/media-communications-workshop-2016/" target="_blank">click here</a>.</p>\r\n<p style="text-align: justify;">For more information please contact us at <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>', 'International Educational Programme', '', 'inherit', 'closed', 'closed', '', '2171-revision-v1', '', '', '2016-12-22 01:50:55', '2016-12-22 01:50:55', '', 2171, 'http://asiacentre.co.th/other/2171-revision-v1/', 0, 'revision', '', 0),
(3228, 6, '2016-12-22 05:53:41', '2016-12-22 05:53:41', '<p style="text-align: justify;"><span style="font-weight: 400;">\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\n&nbsp;\n\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="Students visiting organisation booths and interacting with representatives." width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\n&nbsp;\n\n&nbsp;\n\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\n&nbsp;\n\n&nbsp;\n\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-autosave-v1', '', '', '2016-12-22 05:53:41', '2016-12-22 05:53:41', '', 3122, 'http://asiacentre.co.th/other/3122-autosave-v1/', 0, 'revision', '', 0),
(3233, 6, '2016-12-22 11:03:09', '2016-12-22 11:03:09', '<p style="text-align: justify;">Asia<img class="wp-image-3065 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o-600x460.jpg" alt="14918847_1326888830663675_4103291665663509381_o" width="357" height="274" /> Centre will be launching a brand new event series called - Spark Sessions - designed to provide a platform for individuals to connect, inspire and build community. Spark Sessions go beyond your average networking sessions, because at Asia Centre we believe in doing things differently. Forget the fussy ties, rehearsed pitches and name card collecting. We’re opting for connection, conversation and genuine engagement.</p>\r\n<p style="text-align: justify;">The inaugural edition of the Spark Sessions will focus on engaging youth. Asia Centre invites university students from all disciplines to an informal and free get together to interact with representatives from international organizations, NGOs, social enterprises and civil society.</p>\r\n<p style="text-align: justify;"><span style="color: #993300;">IF YOU ARE</span><span class="text_exposed_show"><span style="color: #993300;"> A STUDENT, RESEARCHER OR SOMEONE INTERESTED IN COMMUNITY ENGAGEMENT, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n</span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Better understand some of the critical issues tackled by international organizations, NGOs, social enterprises and civil society</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Browse through the “community centre” where attending organisations will set up stands</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Ask questions and explore internship opportunities</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Be a part of a socially engaged community and discover how you can contribute</span></li>\r\n</ul>\r\n<span style="color: #993300;">IF YOU ARE A BANGKOK BASED NGO, CIVIL SOCIETY ORGANISATION OR SOCIAL ENTERPRISE, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n<ul>\r\n 	<li>Connect, Converse and Engage with representatives from Bangkok based international organisations, NGOs, civil society and social enterprise. We hope that this platform can SPARK cooperation and new collaborative projects between organisations.</li>\r\n 	<li>Engage with young talents and university students</li>\r\n 	<li>Connect with prospective interns who are passionate about your cause</li>\r\n 	<li>Raise awareness about your organisation, its objectives and projects for the coming year</li>\r\n</ul>\r\nAttendance is free, light refreshments and snacks will be provided.\r\n\r\nIf your organisation is interested in participating in this event, please contact us at contact@asiacentre.co.th.\r\n\r\n<a href="https://www.facebook.com/events/215682748843461/" target="_blank"><img class="aligncenter wp-image-3069" src="http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920-600x338.png" alt="facebook-like-share-ss-1920" width="213" height="120" /></a>\r\n\r\n<a href="https://docs.google.com/forms/d/e/1FAIpQLSeEJqCVS2iZz9xlu0VmHEGpaDrHIBPSaqpVjnH2PA84Zf-_xQ/viewform" target="_blank"><img class="aligncenter wp-image-3070" src="http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286-600x128.png" alt="register-now-button55286" width="352" height="75" /></a>\r\n\r\nThis event is supported by the Heinrich Böll Stiftung, Southeast Asia.<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="113" height="84" />', 'Spark Sessions: An Alternative Networking Event (past event)', '', 'trash', 'closed', 'closed', '', '3233__trashed', '', '', '2017-01-10 14:11:26', '2017-01-10 07:11:26', '', 0, 'http://asiacentre.co.th/?p=3233', 0, 'post', '', 0),
(3234, 6, '2016-12-22 11:03:09', '2016-12-22 11:03:09', '<p style="text-align: justify;">Asia<img class="wp-image-3065 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o-600x460.jpg" alt="14918847_1326888830663675_4103291665663509381_o" width="357" height="274" /> Centre will be launching a brand new event series called - Spark Sessions - designed to provide a platform for individuals to connect, inspire and build community. Spark Sessions go beyond your average networking sessions, because at Asia Centre we believe in doing things differently. Forget the fussy ties, rehearsed pitches and name card collecting. We’re opting for connection, conversation and genuine engagement.</p>\r\n<p style="text-align: justify;">The inaugural edition of the Spark Sessions will focus on engaging youth. Asia Centre invites university students from all disciplines to an informal and free get together to interact with representatives from international organizations, NGOs, social enterprises and civil society.</p>\r\n<p style="text-align: justify;"><span style="color: #993300;">IF YOU ARE</span><span class="text_exposed_show"><span style="color: #993300;"> A STUDENT, RESEARCHER OR SOMEONE INTERESTED IN COMMUNITY ENGAGEMENT, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n</span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Better understand some of the critical issues tackled by international organizations, NGOs, social enterprises and civil society</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Browse through the “community centre” where attending organisations will set up stands</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Ask questions and explore internship opportunities</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Be a part of a socially engaged community and discover how you can contribute</span></li>\r\n</ul>\r\n<span style="color: #993300;">IF YOU ARE A BANGKOK BASED NGO, CIVIL SOCIETY ORGANISATION OR SOCIAL ENTERPRISE, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n<ul>\r\n 	<li>Connect, Converse and Engage with representatives from Bangkok based international organisations, NGOs, civil society and social enterprise. We hope that this platform can SPARK cooperation and new collaborative projects between organisations.</li>\r\n 	<li>Engage with young talents and university students</li>\r\n 	<li>Connect with prospective interns who are passionate about your cause</li>\r\n 	<li>Raise awareness about your organisation, its objectives and projects for the coming year</li>\r\n</ul>\r\nAttendance is free, light refreshments and snacks will be provided.\r\n\r\nIf your organisation is interested in participating in this event, please contact us at contact@asiacentre.co.th.\r\n\r\n<a href="https://www.facebook.com/events/215682748843461/" target="_blank"><img class="aligncenter wp-image-3069" src="http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920-600x338.png" alt="facebook-like-share-ss-1920" width="213" height="120" /></a>\r\n\r\n<a href="https://docs.google.com/forms/d/e/1FAIpQLSeEJqCVS2iZz9xlu0VmHEGpaDrHIBPSaqpVjnH2PA84Zf-_xQ/viewform" target="_blank"><img class="aligncenter wp-image-3070" src="http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286-600x128.png" alt="register-now-button55286" width="352" height="75" /></a>\r\n\r\nThis event is supported by the Heinrich Böll Stiftung, Southeast Asia.<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="113" height="84" />', 'Spark Sessions: An Alternative Networking Event (past event)', '', 'inherit', 'closed', 'closed', '', '3233-revision-v1', '', '', '2016-12-22 11:03:09', '2016-12-22 11:03:09', '', 3233, 'http://asiacentre.co.th/other/3233-revision-v1/', 0, 'revision', '', 0),
(3237, 6, '2016-12-22 11:12:46', '2016-12-22 11:12:46', '<b>A Political Utopia called Singapore: </b><b>Will the PAP stay in power another 50 years?</b>\n\n<b>\n</b><img class=" wp-image-2410 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Singapore-Election-Ballot-Box.jpg" alt="Singapore Election Ballot Box" width="285" height="167" />\n\nSince its independence in 1965, Singapore has been continuously governed by the People''s Action Party (PAP) as it won every General Election. In the 2011 General Election, the PAP won 60.1% of the valid votes the lowest in its entire election history fueling discussion of political change in the city-state.  But in the 2015 General Election, the PAP dramatically increased their vote share to  69.9% of the valid ballots cast, surprising even some of its own party candidates. Is the PAP''s landslide victory at the recent polls irrefutable proof that Singaporeans still want the PAP to stay in power indefinitely? Has the PAP won elections fair and square?  Jeannette, an opposition politician who contested against the PAP candidate in both the 2011 and 2015 General Election, offers her perspective of politics in Singapore.\n\n&nbsp;\n\n<b>Speaker</b>\n\n<span style="font-weight: 400;"><img class=" wp-image-2409 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/02/Jeanette.png" alt="Jeanette" width="216" height="185" />Jeannette Aruldoss is a lawyer and opposition politician from Singapore.  She entered politics in 2009 when she joined an opposition political party.  She subsequently ran at the 2011 General Election as a candidate of the National Solidarity Party (NSP) against the incumbent PAP Member of Parliament at the Single Member Constituency seat of Mountbatten (Mountbatten SMC).</span>\n\n<span style="font-weight: 400;">Jeannette served as NSP’s Vice-President from July 2011 to October 2013 and as NSP’s Secretary General from October 2013 to January 2015.  At the 2015 General Election, Jeannette returned to contest the seat at Mountbatten SMC, this time as a candidate of the Singapore People’s Party.</span>\n\n<span style="font-weight: 400;">Jeannette, 52 is a full-time practising lawyer of 27 years'' standing.  She is happily married to a non-lawyer and has four children aged 18 to 26.  She shares her socio-political views at her blog at </span><a href="http://jeannettechongaruldoss.blogspot.sg/"><span style="font-weight: 400;">http://jeannettechongaruldoss.blogspot.sg/</span></a>\n\n&nbsp;', 'A Political Utopia Called Singapore', '', 'inherit', 'closed', 'closed', '', '2408-autosave-v1', '', '', '2016-12-22 11:12:46', '2016-12-22 11:12:46', '', 2408, 'http://asiacentre.co.th/other/2408-autosave-v1/', 0, 'revision', '', 0),
(3241, 6, '2016-12-23 09:06:53', '2016-12-23 02:06:53', '', 'home page 08', '', 'trash', 'closed', 'closed', '', '__trashed-2', '', '', '2017-01-10 13:29:14', '2017-01-10 06:29:14', '', 0, 'http://asiacentre.co.th/?post_type=hom_page&#038;p=3241', 0, 'hom_page', '', 0),
(3242, 6, '2016-12-23 09:17:34', '2016-12-23 09:17:34', ' ', '', '', 'publish', 'closed', 'closed', '', '3242', '', '', '2016-12-23 09:17:34', '2016-12-23 09:17:34', '', 0, 'http://asiacentre.co.th/other/3242/', 1, 'nav_menu_item', '', 0),
(3243, 6, '2017-01-20 16:12:16', '2017-01-20 09:12:16', '[row]\n\n[column col="4"]\n<h6><a href="http://asiacentre.co.th/asia-centre/" target="_blank">ABOUT</a></h6>\nThe Asia Centre, registered as an educational enterprise in 2015 in Bangkok, Thailand, seeks to connect peoples and regions through collaborative partnerships.\n<h6>SOCIAL ENTERPRISE</h6>\nOperating as a social enterprise it aims to enhance its partners’ communications capacity, global networking, knowledge base, research skills and training capacity.\n<h6>SERVICES</h6>\nWe provide consultancy and advisory services for academic and professional development, communications and outreach, research and publications, development and technical assistance to educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector.\n\n[/column]\n\n[column col="4"]\n<h6>UPCOMING EVENTS</h6>\n[upcoming_events items_number="5"]\n<h6></h6>\n[/column]\n\n[column col="4"]\n\n&nbsp;\n\n[wpdevart_like_box profile_id="asiacentre.co.th" animation_efect="none" show_border="show" border_color="#fff" stream="show" connections="show" width="350" height="450" header="small" cover_photo="show" locale="en_US"]\n\n&nbsp;\n\n<iframe src="https://www.youtube.com/embed/imUfXuJaHgo" width="300" height="250" frameborder="0" allowfullscreen="allowfullscreen"></iframe>\n\n[/column]\n\n[/row]\n\n[gap height="40"]', '3 columns for home page', '', 'inherit', 'closed', 'closed', '', '320-autosave-v1', '', '', '2017-01-20 16:12:16', '2017-01-20 09:12:16', '', 320, 'http://asiacentre.co.th/other/320-autosave-v1/', 0, 'revision', '', 0),
(3245, 6, '2016-12-23 10:21:34', '2016-12-23 10:21:34', '<p style="text-align: justify;"><span style="font-weight: 400;">\r\nSpark Sessions: An Alternative Networking Event <img class="alignright wp-image-3126" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181264_1350490221636869_5106384943070841109_n-600x400.jpg" alt="15181264_1350490221636869_5106384943070841109_n" width="390" height="260" />proved to be Asia Centre’s most popular event to date with over 70 participants taking part. This is the Centre’s new platform for connecting and exploring collaboration among civil society. Held on evening of 25 November at Asia Centre’s premises, the event also provided youth participants with the opportunity to talk with representatives from NGOs and civil society about volunteer and internship opportunities. It was also an opportunity to learn about the key projects that these organisations have lined up for 2017. </span></p>\r\n&nbsp;\r\n\r\n[caption id="attachment_3128" align="alignleft" width="319"]<img class="wp-image-3128" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15196018_1351322344886990_3955904930894907268_o-600x400.jpg" alt="15196018_1351322344886990_3955904930894907268_o" width="319" height="212" /> Students visiting organisation booths and interacting with representatives.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Spark Sessions provided a much needed civic space for members of the Bangkok community to converse, connect and engage with organizations such as  ALTSEAN-Burma, UNESCO Bangkok, Amnesty International Regional Office, Forum-Asia, IOM-X, The Thai Committee for Refugees Foundation and Boat People SOS. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3125" align="alignright" width="310"]<img class="wp-image-3125" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15168807_1351353578217200_4300539616157149004_o-600x400.jpg" alt="15168807_1351353578217200_4300539616157149004_o" width="310" height="206" /> Forum Asia sharing their projects for 2017.[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The programme was designed to to create relaxed atmosphere to let ideas flow, and for people to mix and talk easily. The main activities consisted of information sharing and networking through each organization’s stands which displayed brochures, movies, books and campaigns along with information on areas for youth involvement and collaboration.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[caption id="attachment_3127" align="alignleft" width="359"]<img class="wp-image-3127" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15181600_1350490241636867_8475522455204204596_n-600x400.jpg" alt="15181600_1350490241636867_8475522455204204596_n" width="359" height="239" /> Winners of the Best Photo Contest![/caption]\r\n<p style="text-align: justify;">In keeping with the inclusive and celebratory tone of the event, Asia Centre created a photo corner where participants got creative with props and signs in the hopes of winning the best photo of the night award.</p>\r\n<p style="text-align: justify;">Spark Sessions is a new format of event for Asia Centre, on that is centred on interactive exchange, community building and youth involvement. From the buzz in the air and eagerness to embark on the next step of engagement through volunteering, internships and collaborative ventures, Spark Sessions is set to become a regular feature on the Asia Centre calendar.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"> </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Stay tuned for the next instalment!</span></p>', 'Spark Sessions #1', '', 'inherit', 'closed', 'closed', '', '3122-revision-v1', '', '', '2016-12-23 10:21:34', '2016-12-23 10:21:34', '', 3122, 'http://asiacentre.co.th/other/3122-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3246, 6, '2016-12-23 10:29:31', '2016-12-23 10:29:31', '<p style="text-align: justify;">On the eve of the historic vote, Asia Centre convened a roundtable to discuss perspectives and predictions on the outcome of the US Presidential Elections. Entitled, “The 2016 US Elections: Change At Last?” the event was held in partnership with the Asian American Journalists Association (AAJA).</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The roundtable panel featured a former US a<img class="alignright wp-image-3190" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15000245_1333205466698678_6490108670422864360_o-600x393.jpg" alt="15000245_1333205466698678_6490108670422864360_o" width="360" height="236" />mbassador, academics of various nationalities and disciplines and a journalist. All discussants provided their insight and analysis on the campaign period, what they saw as key determinants of the election and the impact the results would have on Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Margaret MacMillion, Former Ambassador of the United States to Rwanda discussed the foreign policy implications. Kevin Downey form Thammasat University and Jerimiah Morris from Mahidol University International College, both American nationals living and teaching in Thailand, discussed the political system in the US and political discourse in a “post-fact” world. Pablo Ramirez, Bangkok University, a Mexican national, examined campaign rhetoric towards hispanics and its meaning for Mexico - US relations. Mike Raomanachai from AAJA shared his experiences covering the Democratic convention during previous elections and discussed the role that media coverage and social media in particular has played.</span></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3191 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15016445_1333205746698650_8976982019918068679_o-600x466.jpg" alt="15016445_1333205746698650_8976982019918068679_o" width="316" height="245" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Salient points raised during the discussion included: </span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span style="font-weight: 400;">The dissonance between the elites and the electorate;</span></li>\r\n 	<li style="text-align: justify;">The inherent two-party nature of the US electoral system and the adaptability of the Republican Party despite current internal difficulties;</li>\r\n 	<li style="text-align: justify;">As during the Brexit debate in the UK, the American electoral campaign  discourse was far removed from facts on the ground;</li>\r\n 	<li style="text-align: justify;">The pressures imposed by populist forces on the independence of media in a post-fact world;</li>\r\n 	<li style="text-align: justify;">The global uncertainty that would accompany a Trump presidency in the form of a more isolationist and burden sharing relationship with US allies and</li>\r\n 	<li style="text-align: justify;">The disaffection with the United States felt across Latin America in light of the anti-hispanic and anti-Mexican rhetoric that was crassly exploited for political gain.</li>\r\n</ul>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">During the Q&amp;A session, participants pondered the impact of FBI investigations into Hillary <img class="alignright wp-image-3192" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15039482_1333205440032014_2138696706444697529_o-600x450.jpg" alt="15039482_1333205440032014_2138696706444697529_o" width="355" height="266" />Clinton’s emails, how the rhetoric of the campaign was being received outside US and the continued viability of a two party system given Trump’s candidacy on the Republican party.</span><span style="font-weight: 400;"> Much attention was also focused on the rise of highly populist political discourse in an age of austerity and the willingness of the disaffected and disenfranchised middle classes to accept post-factual discourse, often driven by a “fake news” originating over social media. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Consistent with polling, panelists at the Asian Centre roundtable predicted a Trump defeat. However, the result has shown otherwise.  The Centre will continue to monitor the impact of the Trump presidency in Asia. </span></p>', 'The 2016 US Elections: Change At Last?', '', 'inherit', 'closed', 'closed', '', '3193-revision-v1', '', '', '2016-12-23 10:29:31', '2016-12-23 10:29:31', '', 3193, 'http://asiacentre.co.th/other/3193-revision-v1/', 0, 'revision', '', 0),
(3247, 6, '2016-12-23 10:36:18', '2016-12-23 10:36:18', '<p style="text-align: justify;"><span style="font-weight: 400;">New York-based Japanese photographer and anti-death penalty<img class="alignright wp-image-3176" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14692067_1305368372815721_7421157843130629890_o-600x450.jpg" alt="14692067_1305368372815721_7421157843130629890_o" width="218" height="164" /> activist Toshi Kazama held a photo exhibition and discussion of his work on 11 October 2016 at The Sukosol Hotel. </span><span style="font-weight: 400;">Asia Centre facilitated the discussion and networking session following Mr Kazama’s presentation which focused on how he uses photography as a tool to express his point of view on human rights and specifically on the death penalty.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3175 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14680837_1305365772815981_4734870401466601176_o-600x345.jpg" alt="14680837_1305365772815981_4734870401466601176_o" width="354" height="203" /></span></p>\r\n<p style="text-align: justify;">A diverse crowd of about 35 people came together to listen to Mr Kazama narrate the stories behind each picture exhibited; those of people on death row and the execution methods in various countries. Asia Centre’s Dr. Robin Ramcharan managed the audience’’s queries on Mr. Kazama’s perspective on the use of the death penalty in the ASEAN region.</p>\r\n\r\n\r\n[caption id="attachment_3214" align="alignleft" width="355"]<img class="wp-image-3214" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14717235_1305365989482626_7800097046532877793_n-600x450.jpg" alt="14717235_1305365989482626_7800097046532877793_n" width="355" height="266" /> Asia Centre''s Dr. Robin Ramcharan facilitating the Q&amp;A[/caption]\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Key questions from the audience centred around events in the Philippines and Indonesia that\r\nhave reignited the debate on the the use of the death penalty to tackle crime. Other issues raised by the audience touched on the morality of the death penalty and the role of the media.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This audience discussion was followed by a networking session where participants could view the  photo exhibition and further their conversations with Mr. Kazama.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3178" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14725642_1305365979482627_6934809242565258751_n-360x480.jpg" alt="14725642_1305365979482627_6934809242565258751_n" width="160" height="214" />The Focus on Life discussion and photo exhibition was part of the End Crime Not Life regional campaign against the death penalty which will continue its tour through major cities in ASEAN. You can learn more about the campaign at the following link: </span><a href="http://www.endcrimenotlife.com/"><span style="font-weight: 400;">http://www.endcrimenotlife.com/</span></a></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The photo exhibition, discussion and networking was a parallel event to the SEAHRN 4th International Conference on Human Rights and Peace in Southeast Asia facilitated by Asia Centre. </span></p>', 'Asia Centre Facilitates Focus On Life Discussion', '', 'inherit', 'closed', 'closed', '', '3174-revision-v1', '', '', '2016-12-23 10:36:18', '2016-12-23 10:36:18', '', 3174, 'http://asiacentre.co.th/other/3174-revision-v1/', 0, 'revision', '', 0),
(3249, 6, '2016-12-23 10:37:33', '2016-12-23 10:37:33', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />Classroom sessions during the first week were focused on understanding the marketing and communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" />At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-autosave-v1', '', '', '2016-12-23 10:37:33', '2016-12-23 10:37:33', '', 3157, 'http://asiacentre.co.th/other/3157-autosave-v1/', 0, 'revision', '', 0),
(3250, 6, '2016-12-23 10:37:39', '2016-12-23 10:37:39', '<p style="text-align: justify;"><span style="font-weight: 400;">From 19 to 30 September 2016, Asia Centre held a Media &amp; Communications Workshop for <img class="alignright wp-image-3089" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="399" height="295" />students from the University of Liberal Arts Bangladesh. The two week experiential learning programme was designed to give students an introduction to the Asian media landscape, hone their practical skills and undertake a multimedia project of their own.</span></p>\r\n<p style="text-align: justify;">The programme kicked off with an orientation to the course and brainstorming for their media project under the guidance of Asia Centre’s Dr. James Gomez and Dr Robin. Ramcharan. The group then participated in a team building scavenger hunt to help them work together and learn to navigate Bangkok.</p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3158 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14364622_1283840524968506_3090058256514272589_n-600x450.jpg" alt="14364622_1283840524968506_3090058256514272589_n" width="295" height="221" />Classroom sessions during the first week were focused on understanding the marketing and communication strategies for businesses. Bamboo Labs, a social media and digital marketing start-up introduced students to their latest software designed to help people who are learning English. They introduced their product and discussed some of the challenges in getting it to the target markets. </span><span style="font-weight: 400;">Students also participated in a session facilitated by </span><span style="font-weight: 400;">Brice Degeyter from The Football Agency, a</span> <span style="font-weight: 400;">sports sponsorship and activation company using the platform of football to attract, connect and engage with the consumers in Asia.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Beyond the classroom, students were able to network with journalists, political commentators and academics at the Foreign Correspondents Club of Thailand. The highlight of the event was a panel discussion on Religious Tolerance in Thailand featuring Mrs Angkhana Neelapaijit, a Commissioner from the National Human Rights Commission of Thailand.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">They also visited the ASEAN Cultural Centre <img class="alignright wp-image-3159" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15356032_10157758692690307_796600347_n-600x450.jpg" alt="15356032_10157758692690307_796600347_n" width="295" height="221" />which provided an excellent introduction to the diversity of the region and the historical linkages between Southeast Asian countries through trade as well as the spread of religion and colonisation.  Beyond the fun of the interactive exhibitions on national costumes and glimpses into the food and flavours of Southeast Asia, the visit also provided critical information on the populations, politics and present day conditions in the region.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="wp-image-3090 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="418" height="234" />Their introduction to the Thai media landscape came in the form of a visit to Voice TV, one of the country''s most popular news and variety channels. Students got the opportunity to tour the studios, witness a live broadcast and field their questions to Voice TV’s lead news anchor Teerat Ratanasevi.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Week one of the workshop rounded off with students pitching their projects to their advisors who provided advice and critique on their objectives and strategies for carrying out their multimedia projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">In the second week of the workshop, a visit to the Thai Public Broadcasting Service allowed students to understand some of the challenges of producing critical content in the context of shrinking civil and political space for discourse. They also toured the studios and spoke with staff in the television and radio broadcasting departments. They were able to network with students and faculty at Stenden University, Thailand during a discussion on academic and industry collaboration.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Students spent much of the week venturing out into the big city to <img class="alignright wp-image-3156" src="http://asiacentre.co.th/wp-content/uploads/2016/12/14449052_10210243376938805_9012318743256930180_n-270x480.jpg" alt="14449052_10210243376938805_9012318743256930180_n" width="184" height="327" />conduct their interviews and take photos and videos for their final project. Navigating the bustling alleyways of Chinatown was an excellent opportunity to understand the dynamics of the different communities within Bangkok and to contemplate the impact of China on the region. They also toured areas relevant to their particular subject matter.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\n<img class="wp-image-3161 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15397589_10157758692590307_1481510794_o-600x450.jpg" alt="15397589_10157758692590307_1481510794_o" width="335" height="251" />At the end of the week the students presented their findings to a panel of experts including journalists, media and communications experts and lecturers. The topics covered in the multimedia projects displayed a diverse and nuanced appreciation of Bangkok, from its train system to the everyday experiences of Muslim minorities and the off the beaten track adventures of backpackers. Presented through storytelling, short videos and photo essays, the students also made efforts to uncover lessons that could apply to their own lives in Bangladesh, from developing Bangladesh as the next budget travel hotspot to inclusive urban planning strategies.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nThe workshop was structured to include learning  and practical components with in-class activities complemented by learning visits to media companies and opportunities to network and interact with industry professionals. At the end to two weeks the students displayed critical thinking, developed insight into the media landscape and understood the context surrounding each story. They also demonstrated their professional skills and competencies in interviewing, photography and video editing in the execution of their projects.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre will be running the <a href="http://asiacentre.co.th/event/media-communications-workshop/" target="_blank">Media &amp; Communications Workshop </a>on a regular basis, if you are interested in honing your professional skills as a budding journalist, building your network in media and communications and  learning to think critically about issues facing the region, sign up for our next workshop from 9-20th January 2017.</span></p>', 'Media & Communications Workshop 2016', '', 'inherit', 'closed', 'closed', '', '3157-revision-v1', '', '', '2016-12-23 10:37:39', '2016-12-23 10:37:39', '', 3157, 'http://asiacentre.co.th/other/3157-revision-v1/', 0, 'revision', '', 0),
(3253, 6, '2016-12-23 13:18:58', '2016-12-23 13:18:58', 'Asia Centre’s Media &amp; Communications Workshop', 'Media and Communications Workshop', '', 'publish', 'closed', 'closed', '', 'media-and-communications-workshop', '', '', '2016-12-23 13:32:41', '2016-12-23 13:32:41', '', 0, 'http://asiacentre.co.th/?post_type=gallery&#038;p=3253', 0, 'gallery', '', 0),
(3254, 6, '2016-12-23 13:23:59', '2016-12-23 13:23:59', 'Asia Centre’s Media &amp; Communications Workshop', 'Media and Communications Workshop', '', 'inherit', 'closed', 'closed', '', '3253-autosave-v1', '', '', '2016-12-23 13:23:59', '2016-12-23 13:23:59', '', 3253, 'http://asiacentre.co.th/other/3253-autosave-v1/', 0, 'revision', '', 0),
(3255, 6, '2016-12-23 13:31:38', '2016-12-23 13:31:38', '', 'media-communication-workshop-asiacentre-1', 'Asia Centre''s Media and Communication Workshop', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-1', '', '', '2016-12-23 13:43:07', '2016-12-23 13:43:07', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-1.jpg', 0, 'attachment', 'image/jpeg', 0),
(3256, 6, '2016-12-23 13:31:45', '2016-12-23 13:31:45', '', 'media-communication-workshop-asiacentre-2', '', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-2', '', '', '2016-12-23 13:48:19', '2016-12-23 13:48:19', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-2.jpg', 0, 'attachment', 'image/jpeg', 0),
(3257, 6, '2016-12-23 13:31:50', '2016-12-23 13:31:50', '', 'media-communication-workshop-asiacentre-3', '', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-3', '', '', '2016-12-23 13:48:13', '2016-12-23 13:48:13', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-3.jpg', 0, 'attachment', 'image/jpeg', 0),
(3258, 6, '2016-12-23 13:31:55', '2016-12-23 13:31:55', '', 'media-communication-workshop-asiacentre-4', 'Asia Centre''s Media and Communication Workshop', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-4', '', '', '2016-12-23 13:44:43', '2016-12-23 13:44:43', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-4.jpg', 0, 'attachment', 'image/jpeg', 0),
(3259, 6, '2016-12-23 13:32:05', '2016-12-23 13:32:05', '', 'media-communication-workshop-asiacentre-5', '', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-5', '', '', '2016-12-23 13:48:05', '2016-12-23 13:48:05', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-5.jpg', 0, 'attachment', 'image/jpeg', 0),
(3260, 6, '2016-12-23 13:32:13', '2016-12-23 13:32:13', '', 'media-communication-workshop-asiacentre-6', '', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-6', '', '', '2016-12-23 13:47:58', '2016-12-23 13:47:58', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-6.jpg', 0, 'attachment', 'image/jpeg', 0),
(3261, 6, '2016-12-23 13:32:17', '2016-12-23 13:32:17', '', 'media-communication-workshop-asiacentre-7', 'Asia Centre''s Media and Communication Workshop', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-7', '', '', '2016-12-23 13:45:59', '2016-12-23 13:45:59', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-7.jpg', 0, 'attachment', 'image/jpeg', 0),
(3262, 6, '2016-12-23 13:32:21', '2016-12-23 13:32:21', '', 'media-communication-workshop-asiacentre-8', '', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-8', '', '', '2016-12-23 13:47:47', '2016-12-23 13:47:47', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-8.jpg', 0, 'attachment', 'image/jpeg', 0),
(3263, 6, '2016-12-23 13:32:25', '2016-12-23 13:32:25', '', 'media-communication-workshop-asiacentre-9', '', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-9', '', '', '2016-12-23 13:47:41', '2016-12-23 13:47:41', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-9.jpg', 0, 'attachment', 'image/jpeg', 0),
(3264, 6, '2016-12-23 13:32:31', '2016-12-23 13:32:31', '', 'media-communication-workshop-asiacentre-10', '', 'inherit', 'closed', 'closed', '', 'media-communication-workshop-asiacentre-10', '', '', '2016-12-23 13:47:27', '2016-12-23 13:47:27', '', 3253, 'http://asiacentre.co.th/wp-content/uploads/2016/12/media-communication-workshop-asiacentre-10.jpg', 0, 'attachment', 'image/jpeg', 0),
(3265, 6, '2016-12-23 14:56:10', '2016-12-23 14:56:10', '', 'asiacentre-media-communication-workshop', '', 'inherit', 'closed', 'closed', '', 'asiacentre-media-communication-workshop', '', '', '2016-12-23 14:57:32', '2016-12-23 14:57:32', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-media-communication-workshop.png', 0, 'attachment', 'image/png', 0),
(3272, 6, '2016-12-23 16:11:25', '2016-12-23 16:11:25', 'Asia Centre is a social enterprise that serves as an independent networking hub for academic and civil society in the region. It provides meeting facilities and services for academic and professional development, communications and outreach, research and publications, and development and technical assistance.\r\n\r\nAsia Centre connects peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector.\r\n\r\nAsia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in the region.', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2016-12-23 16:11:25', '2016-12-23 16:11:25', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3273, 6, '2016-12-23 17:45:11', '0000-00-00 00:00:00', '', 'social media', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-12-23 17:45:11', '2016-12-23 17:45:11', '', 0, 'http://asiacentre.co.th/?post_type=chunk&#038;p=3273', 0, 'chunk', '', 0),
(3275, 6, '2016-12-28 16:25:31', '2016-12-28 09:25:31', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\n\n&nbsp;\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\n\n\n<hr />\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="187" /></p>\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\n\n\n<hr />\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="280" height="187" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\n&nbsp;\n\n&nbsp;\n\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-autosave-v1', '', '', '2016-12-28 16:25:31', '2016-12-28 09:25:31', '', 300, 'http://asiacentre.co.th/other/300-autosave-v1/', 0, 'revision', '', 0),
(3276, 6, '2016-12-23 18:23:54', '2016-12-23 18:23:54', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class=" wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:23:54', '2016-12-23 18:23:54', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3277, 6, '2016-12-23 18:25:05', '2016-12-23 18:25:05', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignright wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:25:05', '2016-12-23 18:25:05', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3278, 6, '2016-12-23 18:26:48', '2016-12-23 18:26:48', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="294" height="196" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="308" height="205" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:26:48', '2016-12-23 18:26:48', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3279, 6, '2016-12-23 18:29:34', '2016-12-23 18:29:34', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="260" height="173" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="alignleft wp-image-3200" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="264" height="176" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:29:34', '2016-12-23 18:29:34', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3280, 6, '2016-12-23 18:30:27', '2016-12-23 18:30:27', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="260" height="173" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. <img class="wp-image-3200 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="264" height="176" />She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:30:27', '2016-12-23 18:30:27', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3281, 6, '2016-12-23 18:31:02', '2016-12-23 18:31:02', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="260" height="173" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n<img class="wp-image-3200 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="264" height="176" />\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:31:02', '2016-12-23 18:31:02', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3282, 6, '2016-12-23 18:31:41', '2016-12-23 18:31:41', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n&nbsp;\r\n<div class="yj6qo ajU"></div>\r\n&nbsp;\r\n<p style="text-align: justify;"><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="260" height="173" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="264" height="176" />\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:31:41', '2016-12-23 18:31:41', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3283, 6, '2016-12-23 18:32:35', '2016-12-23 18:32:35', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="text-align: left;"></p>\r\n<img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="260" height="173" /><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="264" height="176" />\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:32:35', '2016-12-23 18:32:35', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3284, 6, '2016-12-23 18:34:00', '2016-12-23 18:34:00', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px;"><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="260" height="173" /></p>\r\n<p style="padding-left: 30px;"></p>\r\n<p style="padding-left: 30px;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="264" height="176" />\r\n<p style="text-align: justify;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:34:00', '2016-12-23 18:34:00', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3285, 6, '2016-12-23 18:39:48', '2016-12-23 18:39:48', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Professor James Gomez, PhD</b></span> is the Executive Director of <img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="text-align: justify; padding-left: 30px;"></p>\r\n<p style="padding-left: 30px;"><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="278" height="185" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="261" height="174" />\r\n<p style="text-align: justify; padding-left: 210px;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:39:48', '2016-12-23 18:39:48', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3286, 6, '2016-12-23 18:42:01', '2016-12-23 18:42:01', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the<img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="278" height="185" /> Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a <img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="261" height="174" />Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:42:01', '2016-12-23 18:42:01', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3287, 6, '2016-12-23 18:42:46', '2016-12-23 18:42:46', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the<img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="278" height="185" /> Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a <img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="261" height="174" />Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:42:46', '2016-12-23 18:42:46', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3288, 6, '2016-12-23 18:43:03', '2016-12-23 18:43:03', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the<img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="278" height="185" /> Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a <img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="261" height="174" />Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:43:03', '2016-12-23 18:43:03', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3289, 6, '2016-12-23 18:45:12', '2016-12-23 18:45:12', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="292" height="194" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the\r\nCentre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a <img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="298" height="198" />Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:45:12', '2016-12-23 18:45:12', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3290, 6, '2016-12-23 18:46:23', '2016-12-23 18:46:23', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the<img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="277" height="185" />\r\nCentre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a <img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="298" height="198" />Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:46:23', '2016-12-23 18:46:23', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3291, 6, '2016-12-23 18:48:18', '2016-12-23 18:48:18', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="311" height="207" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the\r\n\r\n\r\nCentre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from </span><span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"></p>\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="298" height="198" /> D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre.\r\nShe is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:48:18', '2016-12-23 18:48:18', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3292, 6, '2016-12-23 18:49:40', '2016-12-23 18:49:40', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="311" height="207" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="298" height="198" /> D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:49:40', '2016-12-23 18:49:40', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3293, 6, '2016-12-23 18:51:24', '2016-12-23 18:51:24', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:51:24', '2016-12-23 18:51:24', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3294, 6, '2016-12-23 18:52:35', '2016-12-23 18:52:35', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:52:35', '2016-12-23 18:52:35', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3295, 6, '2016-12-23 18:53:36', '2016-12-23 18:53:36', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:53:36', '2016-12-23 18:53:36', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3296, 6, '2016-12-23 18:56:00', '2016-12-23 18:56:00', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"></p>\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:56:00', '2016-12-23 18:56:00', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3297, 6, '2016-12-23 18:56:48', '2016-12-23 18:56:48', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #ff6600;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><strong>Patcharee Rattanarong</strong><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:56:48', '2016-12-23 18:56:48', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3298, 6, '2016-12-23 18:58:01', '2016-12-23 18:58:01', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #993300;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #993300;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #993300;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 18:58:01', '2016-12-23 18:58:01', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3299, 6, '2016-12-23 19:04:20', '2016-12-23 19:04:20', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 19:04:20', '2016-12-23 19:04:20', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3300, 6, '2016-12-23 19:07:58', '2016-12-23 19:07:58', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"></p>\r\n<p style="text-align: justify; padding-left: 30px;"></p>\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-23 19:07:58', '2016-12-23 19:07:58', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3301, 6, '2016-12-23 19:12:15', '2016-12-23 19:12:15', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="color: #c96d14;"><strong><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="186" />Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b><img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="282" height="188" /></b></span></p>\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b>Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'trash', 'closed', 'closed', '', 'management-team__trashed', '', '', '2016-12-28 16:26:05', '2016-12-28 09:26:05', '', 0, 'http://asiacentre.co.th/?page_id=3301', 0, 'page', '', 0),
(3302, 6, '2016-12-23 19:11:53', '2016-12-23 19:11:53', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\r\n\r\n&nbsp;\r\n\r\n<span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b>Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'inherit', 'closed', 'closed', '', '3301-revision-v1', '', '', '2016-12-23 19:11:53', '2016-12-23 19:11:53', '', 3301, 'http://asiacentre.co.th/other/3301-revision-v1/', 0, 'revision', '', 0),
(3303, 6, '2016-12-23 19:13:43', '2016-12-23 19:13:43', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\n\n&nbsp;\n\n<span style="color: #c96d14;"><strong><img class="alignnone  wp-image-3201" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="487" height="325" />Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\n\n&nbsp;\n<p style="text-align: justify;"><span style="color: #c96d14;"><b>Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'inherit', 'closed', 'closed', '', '3301-autosave-v1', '', '', '2016-12-23 19:13:43', '2016-12-23 19:13:43', '', 3301, 'http://asiacentre.co.th/other/3301-autosave-v1/', 0, 'revision', '', 0),
(3304, 6, '2016-12-23 19:14:48', '2016-12-23 19:14:48', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\r\n\r\n&nbsp;\r\n\r\n<span style="color: #c96d14;"><strong><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="186" />Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b><img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="282" height="188" />Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'inherit', 'closed', 'closed', '', '3301-revision-v1', '', '', '2016-12-23 19:14:48', '2016-12-23 19:14:48', '', 3301, 'http://asiacentre.co.th/other/3301-revision-v1/', 0, 'revision', '', 0),
(3305, 6, '2016-12-23 19:15:32', '2016-12-23 19:15:32', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="color: #c96d14;"><strong><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="186" />Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b><img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="282" height="188" /></b></span></p>\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b>Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'inherit', 'closed', 'closed', '', '3301-revision-v1', '', '', '2016-12-23 19:15:32', '2016-12-23 19:15:32', '', 3301, 'http://asiacentre.co.th/other/3301-revision-v1/', 0, 'revision', '', 0),
(3306, 6, '2016-12-23 19:16:02', '2016-12-23 19:16:02', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="color: #c96d14;"><strong><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="186" />Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b><img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="282" height="188" /></b></span></p>\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b>Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'inherit', 'closed', 'closed', '', '3301-revision-v1', '', '', '2016-12-23 19:16:02', '2016-12-23 19:16:02', '', 3301, 'http://asiacentre.co.th/other/3301-revision-v1/', 0, 'revision', '', 0),
(3307, 6, '2016-12-23 19:16:47', '2016-12-23 19:16:47', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="color: #c96d14;"><strong><img class="wp-image-3201 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="186" />Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b><img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="282" height="188" /></b></span></p>\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b>Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'inherit', 'closed', 'closed', '', '3301-revision-v1', '', '', '2016-12-23 19:16:47', '2016-12-23 19:16:47', '', 3301, 'http://asiacentre.co.th/other/3301-revision-v1/', 0, 'revision', '', 0),
(3308, 6, '2016-12-23 19:18:29', '2016-12-23 19:18:29', '<span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<span style="color: #c96d14;"><strong><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="186" />Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b><img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="282" height="188" /></b></span></p>\r\n<p style="text-align: justify;"><span style="color: #c96d14;"><b>Michelle D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat.</span></p>', 'Management Team-1', '', 'inherit', 'closed', 'closed', '', '3301-revision-v1', '', '', '2016-12-23 19:18:29', '2016-12-23 19:18:29', '', 3301, 'http://asiacentre.co.th/other/3301-revision-v1/', 0, 'revision', '', 0),
(3309, 6, '2016-12-27 03:01:13', '2016-12-27 03:01:13', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n<p style="text-align: justify;"><strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong></p>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:01:13', '2016-12-27 03:01:13', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3310, 6, '2016-12-27 03:01:44', '2016-12-27 03:01:44', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:01:44', '2016-12-27 03:01:44', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3311, 6, '2016-12-27 03:02:26', '2016-12-27 03:02:26', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:02:26', '2016-12-27 03:02:26', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3312, 6, '2016-12-27 03:03:50', '2016-12-27 03:03:50', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:03:50', '2016-12-27 03:03:50', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3313, 6, '2016-12-27 03:04:32', '2016-12-27 03:04:32', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" />[separator style="regular"]</p>\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:04:32', '2016-12-27 03:04:32', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3314, 6, '2016-12-27 03:04:59', '2016-12-27 03:04:59', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n<p style="text-align: justify;">[separator style="regular"]</p>\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:04:59', '2016-12-27 03:04:59', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3315, 6, '2016-12-27 03:05:33', '2016-12-27 03:05:33', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">[separator style="regular"]</p>\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:05:33', '2016-12-27 03:05:33', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3316, 6, '2016-12-27 03:06:32', '2016-12-27 03:06:32', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:06:32', '2016-12-27 03:06:32', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3317, 6, '2016-12-27 03:07:08', '2016-12-27 03:07:08', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:07:08', '2016-12-27 03:07:08', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3318, 6, '2016-12-27 03:08:10', '2016-12-27 03:08:10', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:08:10', '2016-12-27 03:08:10', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3319, 6, '2016-12-27 03:08:52', '2016-12-27 03:08:52', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n[separator style="regular"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:08:52', '2016-12-27 03:08:52', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3320, 6, '2016-12-27 03:10:26', '2016-12-27 03:10:26', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n[separator style="regular"]\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:10:26', '2016-12-27 03:10:26', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3321, 6, '2016-12-27 03:11:01', '2016-12-27 03:11:01', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:11:01', '2016-12-27 03:11:01', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3322, 6, '2016-12-27 03:11:32', '2016-12-27 03:11:32', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:11:32', '2016-12-27 03:11:32', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3323, 6, '2016-12-27 03:12:05', '2016-12-27 03:12:05', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:12:05', '2016-12-27 03:12:05', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3324, 6, '2016-12-27 03:12:34', '2016-12-27 03:12:34', '&nbsp;\r\n\r\nThe Centre provides training opportunities to interns to undertake substantive and practical work in two professional streams: a communications stream and a research stream.\r\n\r\n&nbsp;\r\n\r\n[row]\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Communications Intern</strong></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Communications Intern will assist with writing content, taking photos, creating videos, uploading information onto the website, posting on social media sites of the Centre, maintaining an active mailing list and compiling and disseminating an e-newsletter. The Intern will also assist in laying out brochures, flyers, posters and assist with digital marketing and outreach.</span></p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Updating and managing website content</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Digital marketing and outreach</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Design and layout for promotional material and online publications</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Marketing of events and conferences</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Setting up directory of NGOs and institutions</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Developing a communications action plan</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[column col="6"]\r\n<p style="text-align: justify;"><strong>Research Intern</strong></p>\r\n<p style="text-align: justify;">The Research Intern will undertake research and draft project notes and proposals. These duties will include the development of training materials and preparation of programme schedules. The Intern will also compile information for book manuscripts, commentaries and journal articles. Other responsibilities include coordinating meetings and seminars.</p>\r\n&nbsp;\r\n<p style="text-align: justify;"><b>Internship tasks</b></p>\r\n\r\n<ul>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Undertake research, write summaries and assist in drafting reports</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Communicate via email with researchers and publishers</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Prepare materials for presentations and meetings</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in organizing activities, taking photos and writing event reports for social media</span></li>\r\n 	<li style="font-weight: 400; text-align: justify;"><span style="font-weight: 400;">Assist in conference preparations</span></li>\r\n</ul>\r\n[/column]\r\n\r\n[/row]\r\n\r\n[separator style="regular"]\r\n<p style="text-align: justify;"><strong>Why Asia Centre?</strong></p>\r\n<p style="text-align: justify;">Asia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.</p>\r\n<p style="text-align: justify;"><img class="wp-image-2990 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/14555558_10157448681250307_1824900953_n.jpg" alt="14555558_10157448681250307_1824900953_n" width="326" height="244" /><img class="wp-image-2992 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/12717821_1132756900076870_5762799772999519120_n.jpg" alt="12717821_1132756900076870_5762799772999519120_n" width="331" height="248" /></p>\r\n&nbsp;\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Eligibility<img class="alignright size-full wp-image-2035" src="http://asiacentre.co.th/wp-content/uploads/2015/09/intern.jpg" alt="intern" width="260" height="182" /></strong>\r\n<p style="text-align: justify;">Internships are offered to Thai citizens and foreign students currently enrolled in tertiary institutions in Thailand and abroad.</p>\r\n<p style="text-align: justify;"><strong>Duration</strong></p>\r\n<p style="text-align: justify;">The Centre recruits interns for a period of 3 to 6 months. Longer internships can be considered on a case by case basis.</p>\r\n<p style="text-align: justify;"><strong>General Conditions</strong></p>\r\n<p style="text-align: justify;">The internship is non-remunerated. Interns are expected to work between 24 to 40 hours per week.</p>\r\n<p style="text-align: justify;"><strong>Application Procedure</strong></p>\r\n<p style="text-align: justify;">Interested students should submit, in one pdf document, the following information to: <a href="mailto:info@asiacentre.co.th">info@asiacentre.co.th</a></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;">Official letter of university enrolment</li>\r\n 	<li style="text-align: justify;">Copy of passport</li>\r\n 	<li style="text-align: justify;">CV</li>\r\n 	<li style="text-align: justify;">Cover letter stating their skills, interests and availability (i.e. 3 or 6 months)</li>\r\n</ul>', 'Internship Programme', '', 'inherit', 'closed', 'closed', '', '2032-revision-v1', '', '', '2016-12-27 03:12:34', '2016-12-27 03:12:34', '', 2032, 'http://asiacentre.co.th/other/2032-revision-v1/', 0, 'revision', '', 0),
(3325, 6, '2016-12-27 03:26:53', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-12-27 03:26:53', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3325', 1, 'nav_menu_item', '', 0),
(3326, 6, '2016-12-27 03:26:53', '0000-00-00 00:00:00', '<p>All Past Events</p>\n', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-12-27 03:26:53', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3326', 1, 'nav_menu_item', '', 0),
(3327, 6, '2016-12-27 03:26:53', '0000-00-00 00:00:00', '<p>Upcoming Events</p>\n', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-12-27 03:26:53', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3327', 1, 'nav_menu_item', '', 0),
(3328, 6, '2016-12-27 03:33:30', '0000-00-00 00:00:00', '', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-12-27 03:33:30', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3328', 1, 'nav_menu_item', '', 0),
(3329, 6, '2016-12-27 03:34:57', '2016-12-27 03:34:57', '', 'Social Media', '', 'publish', 'closed', 'closed', '', 'social-media', '', '', '2016-12-27 03:34:57', '2016-12-27 03:34:57', '', 0, 'http://asiacentre.co.th/?p=3329', 1, 'nav_menu_item', '', 0),
(3330, 6, '2016-12-27 03:38:46', '2016-12-27 03:38:46', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:38:46', '2016-12-27 03:38:46', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3331, 6, '2016-12-27 03:39:15', '2016-12-27 03:39:15', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:39:15', '2016-12-27 03:39:15', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3332, 6, '2016-12-27 03:39:34', '2016-12-27 03:39:34', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:39:34', '2016-12-27 03:39:34', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3333, 6, '2016-12-27 03:40:58', '2016-12-27 03:40:58', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:40:58', '2016-12-27 03:40:58', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3334, 6, '2016-12-27 03:43:18', '2016-12-27 03:43:18', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;">[separator style="fatty"]</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:43:18', '2016-12-27 03:43:18', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3335, 6, '2016-12-27 03:44:00', '2016-12-27 03:44:00', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n<p style="padding-left: 30px; text-align: justify;"></p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:44:00', '2016-12-27 03:44:00', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3336, 6, '2016-12-27 03:44:27', '2016-12-27 03:44:27', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:44:27', '2016-12-27 03:44:27', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3337, 6, '2016-12-27 03:45:01', '2016-12-27 03:45:01', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="316" height="210" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="316" height="210" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:45:01', '2016-12-27 03:45:01', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3338, 6, '2016-12-27 03:46:39', '2016-12-27 03:46:39', 'The management team oversees the day-to-day running of Asia Centre, develops its programmes and executes its activities and events.\r\n\r\n&nbsp;\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><b>Profess<img class="wp-image-3202 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15591783_10157819886335307_1814133035_n.jpg" alt="James Gomez" width="173" height="194" />or James Gomez, PhD</b></span> is the Executive Director of Asia Centre. He provides the strategic vision and direction for the Centre''s operations. Professor Gomez has over 25 years of international experience working for public and private universities, research institutes, think-tanks, inter-governmental organizations and international NGOs. He serves as a technical expert and external consultant to international agencies and universities.</p>\r\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\r\n\r\n\r\n<hr />\r\n<p style="padding-left: 30px; text-align: justify;"><img class="wp-image-3201 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15194347_1351369458215612_864402045354347617_o-600x400.jpg" alt="15194347_1351369458215612_864402045354347617_o" width="280" height="187" /></p>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="color: #c96d14;"><strong>Patcharee Rattanarong</strong></span><span style="font-weight: 400;"> is the Centre Manager at Asia Centre. She oversees the marketing and promotion of the </span>Centre and manages the space. Patcharee has a keen interest in real estate with over 10 years experience in property dealings.  She holds a Masters from <span style="font-weight: 400;">Prince of Songkla University in Southern Thailand.</span></p>\r\n<p style="padding-left: 30px; text-align: justify;">[row]</p>\r\n\r\n\r\n<hr />\r\n<p style="text-align: justify; padding-left: 30px;"><span style="color: #c96d14;"><b>Michelle<img class="wp-image-3200 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/12/15167658_1351371914882033_7900735831384572977_o-600x400.jpg" alt="15167658_1351371914882033_7900735831384572977_o" width="280" height="187" /> D’cruz </b></span><span style="font-weight: 400;">is Programme Coordinator at Asia Centre. She is currently pursuing a Master’s in Human Rights at the Institute of Human Rights and Peace Studies, Mahidol University. Michelle has an LLB(Hons) from the National University of Singapore. In 2016 she graduated from Seoul National University’s Winter Course on Human Rights and Asia. She was previously with MARUAH- Working Group for an ASEAN Human Rights Mechanism; where she worked on research and policy papers, events and assisted in  running the Secretariat. </span></p>\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Management Team', '', 'inherit', 'closed', 'closed', '', '300-revision-v1', '', '', '2016-12-27 03:46:39', '2016-12-27 03:46:39', '', 300, 'http://asiacentre.co.th/other/300-revision-v1/', 0, 'revision', '', 0),
(3341, 6, '2016-12-27 05:55:17', '2016-12-27 05:55:17', ' ', '', '', 'publish', 'closed', 'closed', '', '3341', '', '', '2016-12-27 05:55:17', '2016-12-27 05:55:17', '', 0, 'http://asiacentre.co.th/other/3341/', 2, 'nav_menu_item', '', 0),
(3344, 6, '2016-12-27 06:22:03', '2016-12-27 06:22:03', '', 'Home Page-4', '', 'inherit', 'closed', 'closed', '', '316-autosave-v1', '', '', '2016-12-27 06:22:03', '2016-12-27 06:22:03', '', 316, 'http://asiacentre.co.th/other/316-autosave-v1/', 0, 'revision', '', 0),
(3346, 6, '2016-12-27 06:49:56', '2016-12-27 06:49:56', '<h4>Academic Services</h4>\r\nThe Centre’s academics specialize in the teaching of academic writing, critical thinking and study strategies, communication studies, international relations, international law, political science and research methodology at tertiary institutions for undergraduate and post-graduate degrees.\r\n\r\nAdditionally, we provide advice to students on their capstone papers, independent study projects, master and doctoral theses and we undertake proofreading.\r\n\r\nOur academic services, inclusive of research, are available for both academic and not- academic clients. We undertake research work for commissioned projects such as occasional papers, baseline studies, specialist reports and policy briefs. For academics, we can advise on research projects, grant applications and finalizing manuscripts for academic publications.\r\n\r\nFor tertiary institutions, we can advise on accreditation matters and consult on compiling quality assurance reports. We undertake external curriculum review, serve as external examiners and participate in review committees.', 'Academic Services', '', 'publish', 'closed', 'closed', '', 'academic-services', '', '', '2016-12-27 06:52:03', '2016-12-27 06:52:03', '', 1937, 'http://asiacentre.co.th/?page_id=3346', 0, 'page', '', 0),
(3347, 6, '2016-12-27 06:49:56', '2016-12-27 06:49:56', '<h4>Academic Services</h4>\r\nThe Centre’s academics specialize in the teaching of academic writing, critical thinking and study strategies, communication studies, international relations, international law, political science and research methodology at tertiary institutions for undergraduate and post-graduate degrees.\r\n\r\nAdditionally, we provide advice to students on their capstone papers, independent study projects, master and doctoral theses and we undertake proofreading.\r\n\r\nOur academic services, inclusive of research, are available for both academic and not- academic clients. We undertake research work for commissioned projects such as occasional papers, baseline studies, specialist reports and policy briefs. For academics, we can advise on research projects, grant applications and finalizing manuscripts for academic publications.\r\n\r\nFor tertiary institutions, we can advise on accreditation matters and consult on compiling quality assurance reports. We undertake external curriculum review, serve as external examiners and participate in review committees.', 'Academic Services', '', 'inherit', 'closed', 'closed', '', '3346-revision-v1', '', '', '2016-12-27 06:49:56', '2016-12-27 06:49:56', '', 3346, 'http://asiacentre.co.th/other/3346-revision-v1/', 0, 'revision', '', 0),
(3348, 6, '2016-12-27 06:52:54', '2016-12-27 06:52:54', ' ', '', '', 'publish', 'closed', 'closed', '', '3348', '', '', '2017-01-17 13:11:29', '2017-01-17 06:11:29', '', 1937, 'http://asiacentre.co.th/other/3348/', 17, 'nav_menu_item', '', 0),
(3349, 6, '2016-12-27 06:54:35', '2016-12-27 06:54:35', 'We provide technical assistance and advice to non-governmental organizations and donor agencies supporting the non-profit sector. We seek to facilitate knowledge transfer between experts and civil society practitioners in Asia and the rest of the world.\r\n\r\nThis assistance includes advising in the following key areas: context assessments and political analyses for intervention strategies, communications strategies, grants &amp; loan applications, project monitoring &amp; evaluation, technical writing and documentation.', 'NGO Services', '', 'publish', 'closed', 'closed', '', 'ngo-services', '', '', '2016-12-27 06:54:35', '2016-12-27 06:54:35', '', 0, 'http://asiacentre.co.th/?page_id=3349', 0, 'page', '', 0),
(3350, 6, '2016-12-27 06:54:35', '2016-12-27 06:54:35', 'We provide technical assistance and advice to non-governmental organizations and donor agencies supporting the non-profit sector. We seek to facilitate knowledge transfer between experts and civil society practitioners in Asia and the rest of the world.\r\n\r\nThis assistance includes advising in the following key areas: context assessments and political analyses for intervention strategies, communications strategies, grants &amp; loan applications, project monitoring &amp; evaluation, technical writing and documentation.', 'NGO Services', '', 'inherit', 'closed', 'closed', '', '3349-revision-v1', '', '', '2016-12-27 06:54:35', '2016-12-27 06:54:35', '', 3349, 'http://asiacentre.co.th/other/3349-revision-v1/', 0, 'revision', '', 0),
(3351, 6, '2016-12-27 06:55:10', '2016-12-27 06:55:10', '<h4>Professional Development Services</h4>\r\nWe conduct professional development services on areas such as leadership, advocacy campaigns, strategic planning, online communications and performance management. We can produce course syllabi and training programs based on our client needs. This can also include training of trainers.\r\n\r\nOur trainers and facilitators come from our list of in-house consultants who are selected based on the clients’ training needs. To this end, the Centre’s experts are experienced in imparting knowledge to adult learners. We are experienced in self-directed learning where learners acquire knowledge through problem solving and task oriented exercises.', 'Professional Development Services', '', 'publish', 'closed', 'closed', '', 'professional-development-services', '', '', '2016-12-27 06:55:10', '2016-12-27 06:55:10', '', 1937, 'http://asiacentre.co.th/?page_id=3351', 0, 'page', '', 0),
(3352, 6, '2016-12-27 06:55:10', '2016-12-27 06:55:10', '<h4>Professional Development Services</h4>\r\nWe conduct professional development services on areas such as leadership, advocacy campaigns, strategic planning, online communications and performance management. We can produce course syllabi and training programs based on our client needs. This can also include training of trainers.\r\n\r\nOur trainers and facilitators come from our list of in-house consultants who are selected based on the clients’ training needs. To this end, the Centre’s experts are experienced in imparting knowledge to adult learners. We are experienced in self-directed learning where learners acquire knowledge through problem solving and task oriented exercises.', 'Professional Development Services', '', 'inherit', 'closed', 'closed', '', '3351-revision-v1', '', '', '2016-12-27 06:55:10', '2016-12-27 06:55:10', '', 3351, 'http://asiacentre.co.th/other/3351-revision-v1/', 0, 'revision', '', 0),
(3353, 6, '2016-12-27 06:55:41', '2016-12-27 06:55:41', '<h4>Expert Advisory Service</h4>\r\nThe Centre’s experts can provide professional knowledge via speaking engagements as guest lecturers and speakers at academic, civil society and public events and provide advice on specific policy areas. These can include participation at conferences, meetings, media briefings and interviews.', 'Expert Advisory Service', '', 'publish', 'closed', 'closed', '', 'expert-advisory-service', '', '', '2016-12-27 06:55:41', '2016-12-27 06:55:41', '', 1937, 'http://asiacentre.co.th/?page_id=3353', 0, 'page', '', 0),
(3354, 6, '2016-12-27 06:55:41', '2016-12-27 06:55:41', '<h4>Expert Advisory Service</h4>\r\nThe Centre’s experts can provide professional knowledge via speaking engagements as guest lecturers and speakers at academic, civil society and public events and provide advice on specific policy areas. These can include participation at conferences, meetings, media briefings and interviews.', 'Expert Advisory Service', '', 'inherit', 'closed', 'closed', '', '3353-revision-v1', '', '', '2016-12-27 06:55:41', '2016-12-27 06:55:41', '', 3353, 'http://asiacentre.co.th/other/3353-revision-v1/', 0, 'revision', '', 0),
(3355, 6, '2016-12-27 06:57:19', '2016-12-27 06:57:19', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy-oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate an exchange of knowledge between the peoples of Asia and the rest of the world.\r\n<h4></h4>', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-revision-v1', '', '', '2016-12-27 06:57:19', '2016-12-27 06:57:19', '', 1937, 'http://asiacentre.co.th/other/1937-revision-v1/', 0, 'revision', '', 0),
(3359, 6, '2016-12-27 07:15:34', '2016-12-27 07:15:34', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy-oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate an exchange of knowledge between the peoples of Asia and the rest of the world.\n<ul>\n 	<li><a href="http://asiacentre.co.th/services/academic-services/">Academic Services</a></li>\n 	<li><a href="http://asiacentre.co.th/services/expert-advisory-service/">Expert Advisory Service</a></li>\n 	<li><a href="http://asiacentre.co.th/meetings/">Learning</a></li>\n 	<li><a href="http://asiacentre.co.th/ngo-services/">NGO Services</a></li>\n 	<li><a href="http://asiacentre.co.th/services/professional-development-services/">Professional Development Services</a></li>\n</ul>\n&nbsp;\n<h4></h4>', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-autosave-v1', '', '', '2016-12-27 07:15:34', '2016-12-27 07:15:34', '', 1937, 'http://asiacentre.co.th/other/1937-autosave-v1/', 0, 'revision', '', 0),
(3360, 6, '2016-12-27 07:07:34', '2016-12-27 07:07:34', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy-oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate an exchange of knowledge between the peoples of Asia and the rest of the world.\r\n<ul>\r\n 	<li>Academic Services</li>\r\n 	<li>Expert Advisory Service</li>\r\n 	<li>Learning</li>\r\n 	<li>NGO Services</li>\r\n 	<li>Professional Development Services</li>\r\n</ul>\r\n<h4></h4>', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-revision-v1', '', '', '2016-12-27 07:07:34', '2016-12-27 07:07:34', '', 1937, 'http://asiacentre.co.th/other/1937-revision-v1/', 0, 'revision', '', 0),
(3361, 6, '2016-12-27 07:11:17', '2016-12-27 07:11:17', 'The Centre provides flexible and tailored services to international and non-governmental organizations, education providers, public sector agencies and civil society. We provide advisory and policy-oriented solutions for the benefit of our clients as follows. In providing all of these services, we seek to facilitate an exchange of knowledge between the peoples of Asia and the rest of the world.\r\n<ul>\r\n 	<li><a href="http://asiacentre.co.th/services/academic-services/">Academic Services</a></li>\r\n 	<li><a href="http://asiacentre.co.th/services/expert-advisory-service/">Expert Advisory Service</a></li>\r\n 	<li><a href="http://asiacentre.co.th/meetings/">Learning</a></li>\r\n 	<li><a href="http://asiacentre.co.th/ngo-services/">NGO Services</a></li>\r\n 	<li><a href="http://asiacentre.co.th/services/professional-development-services/">Professional Development Services</a></li>\r\n</ul>\r\n<h4></h4>', 'Services', '', 'inherit', 'closed', 'closed', '', '1937-revision-v1', '', '', '2016-12-27 07:11:17', '2016-12-27 07:11:17', '', 1937, 'http://asiacentre.co.th/other/1937-revision-v1/', 0, 'revision', '', 0),
(3362, 6, '2016-12-27 07:48:55', '2016-12-27 07:48:55', '', 'Getting to Asia Centre', '', 'publish', 'closed', 'closed', '', 'getting-to-asia-centre', '', '', '2016-12-27 07:48:55', '2016-12-27 07:48:55', '', 0, 'http://asiacentre.co.th/?p=3362', 1, 'nav_menu_item', '', 0),
(3363, 6, '2016-12-27 07:48:55', '2016-12-27 07:48:55', ' ', '', '', 'publish', 'closed', 'closed', '', '3363', '', '', '2016-12-27 07:48:55', '2016-12-27 07:48:55', '', 0, 'http://asiacentre.co.th/?p=3363', 2, 'nav_menu_item', '', 0),
(3364, 6, '2016-12-27 07:48:55', '2016-12-27 07:48:55', ' ', '', '', 'publish', 'closed', 'closed', '', '3364', '', '', '2016-12-27 07:48:55', '2016-12-27 07:48:55', '', 39, 'http://asiacentre.co.th/?p=3364', 3, 'nav_menu_item', '', 0),
(3366, 6, '2016-12-27 08:03:47', '2016-12-27 08:03:47', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\r\n\r\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\r\n\r\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\r\n\r\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\r\n<ul>\r\n 	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\r\n 	<li><a href="http://asiacentre.co.th/writing-institute/">Writing Institute</a>\r\n<p class="page-title"></p>\r\n</li>\r\n</ul>', 'Learning', '', 'inherit', 'closed', 'closed', '', '1939-revision-v1', '', '', '2016-12-27 08:03:47', '2016-12-27 08:03:47', '', 1939, 'http://asiacentre.co.th/other/1939-revision-v1/', 0, 'revision', '', 0),
(3369, 6, '2016-12-27 08:56:47', '0000-00-00 00:00:00', ' ', '', '', 'draft', 'closed', 'closed', '', '', '', '', '2016-12-27 08:56:47', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3369', 1, 'nav_menu_item', '', 0),
(3377, 6, '2016-12-27 10:48:18', '2016-12-27 03:48:18', '', '', '', 'trash', 'closed', 'closed', '', '__trashed-5', '', '', '2017-01-10 16:41:11', '2017-01-10 09:41:11', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3377', 0, 'event', '', 0),
(3379, 6, '2016-12-28 02:45:12', '2016-12-28 02:45:12', '', 'ben1-asiacentre-event-space', '', 'inherit', 'closed', 'closed', '', 'ben1-asiacentre-event-space', '', '', '2016-12-28 02:45:12', '2016-12-28 02:45:12', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/Ben1-asiacentre-event-space.jpeg', 0, 'attachment', 'image/jpeg', 0),
(3383, 6, '2016-12-28 03:54:55', '0000-00-00 00:00:00', '<h2><b>Nationalism, Citizenship and Statelessness: </b><b>Current Issues and Developments in Asia</b></h2>\r\n<img class="aligncenter wp-image-3098 size-medium" src="http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster-e1480055488282-600x370.jpg" alt="fb-poster" width="600" height="370" />\r\n<p style="text-align: justify;"><span style="font-weight: 400;">On 18 January 2017, Asia Centre will be convening the </span><b>Benedict Anderson 1st Anniversary Memorial Roundtable </b><span style="font-weight: 400;">to discuss contemporary issues surrounding nationalism, citizenship and statelessness across Asia. Nationalism remains a powerful force in current times as it fuels growth from the 54 states of UN in 1945 to 193 members to date.  In the wake of Brexit and the Trump victory, it is driving energies in Scotland, Catalonia and elsewhere. As a result, states are seeking to keep strong control over citizenship and immigration while enacting laws to render political opponents and vulnerable people stateless in the name of security. This Roundtable seeks to reflect on and discuss these issues in the context of contemporary developments in Asia such as the Chakmas in India, Uyghurs in China, Rohingyas in Myanmar, Hmong in Laos and others. This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016 at the Asia Centre. The Roundtable is organised to celebrate the memory, life and work of Professor Benedict Anderson a well known academic who engaged in these issues.</span></p>\r\n<p style="text-align: justify;">This event is free.</p>\r\n<p style="text-align: justify;"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdYIN2vKrpsUw2nEjzazXp83fNeVQv9-3kkCLLPB4NADgHxGQ/viewform" target="_blank"><img class="aligncenter wp-image-3066" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png" alt="screen-shot-2016-11-03-at-16-26-44" width="199" height="72" /></a></p>\r\n<p style="text-align: center;">Please do share this event within your networks. <a href="https://www.facebook.com/events/1598500940456726/" target="_blank"><img class="wp-image-3068 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png" alt="screen-shot-2016-11-03-at-16-46-31" width="184" height="43" /></a></p>', 'Benedict Anderson  1st Anniversary Memorial Roundtable (test)', '', 'draft', 'closed', 'closed', '', 'benedict-anderson-1st-anniversary-memorial-roundtable-test', '', '', '2016-12-28 03:54:55', '2016-12-28 03:54:55', '', 0, 'http://asiacentre.co.th/?post_type=tribe_events&#038;p=3383', 0, 'tribe_events', '', 0),
(3384, 6, '2016-12-28 03:54:55', '2016-12-28 03:54:55', '<h2><b>Nationalism, Citizenship and Statelessness: </b><b>Current Issues and Developments in Asia</b></h2>\r\n<img class="aligncenter wp-image-3098 size-medium" src="http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster-e1480055488282-600x370.jpg" alt="fb-poster" width="600" height="370" />\r\n<p style="text-align: justify;"><span style="font-weight: 400;">On 18 January 2017, Asia Centre will be convening the </span><b>Benedict Anderson 1st Anniversary Memorial Roundtable </b><span style="font-weight: 400;">to discuss contemporary issues surrounding nationalism, citizenship and statelessness across Asia. Nationalism remains a powerful force in current times as it fuels growth from the 54 states of UN in 1945 to 193 members to date.  In the wake of Brexit and the Trump victory, it is driving energies in Scotland, Catalonia and elsewhere. As a result, states are seeking to keep strong control over citizenship and immigration while enacting laws to render political opponents and vulnerable people stateless in the name of security. This Roundtable seeks to reflect on and discuss these issues in the context of contemporary developments in Asia such as the Chakmas in India, Uyghurs in China, Rohingyas in Myanmar, Hmong in Laos and others. This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016 at the Asia Centre. The Roundtable is organised to celebrate the memory, life and work of Professor Benedict Anderson a well known academic who engaged in these issues.</span></p>\r\n<p style="text-align: justify;">This event is free.</p>\r\n<p style="text-align: justify;"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdYIN2vKrpsUw2nEjzazXp83fNeVQv9-3kkCLLPB4NADgHxGQ/viewform" target="_blank"><img class="aligncenter wp-image-3066" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png" alt="screen-shot-2016-11-03-at-16-26-44" width="199" height="72" /></a></p>\r\n<p style="text-align: center;">Please do share this event within your networks. <a href="https://www.facebook.com/events/1598500940456726/" target="_blank"><img class="wp-image-3068 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png" alt="screen-shot-2016-11-03-at-16-46-31" width="184" height="43" /></a></p>', 'Benedict Anderson  1st Anniversary Memorial Roundtable (test)', '', 'inherit', 'closed', 'closed', '', '3383-revision-v1', '', '', '2016-12-28 03:54:55', '2016-12-28 03:54:55', '', 3383, 'http://asiacentre.co.th/other/3383-revision-v1/', 0, 'revision', '', 0),
(3385, 6, '2016-12-28 04:13:39', '2016-12-27 21:13:39', '<h2><b>Nationalism, Citizenship and Statelessness: </b><b>Current Issues and Developments in Asia</b></h2>\r\n<img class="aligncenter wp-image-3098 size-medium" src="http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster-e1480055488282-600x370.jpg" alt="fb-poster" width="600" height="370" />\r\n<p style="text-align: justify;"><span style="font-weight: 400;">On 18 January 2017, Asia Centre will be convening the </span><b>Benedict Anderson 1st Anniversary Memorial Roundtable </b><span style="font-weight: 400;">to discuss contemporary issues surrounding nationalism, citizenship and statelessness across Asia. Nationalism remains a powerful force in current times as it fuels growth from the 54 states of UN in 1945 to 193 members to date.  In the wake of Brexit and the Trump victory, it is driving energies in Scotland, Catalonia and elsewhere. As a result, states are seeking to keep strong control over citizenship and immigration while enacting laws to render political opponents and vulnerable people stateless in the name of security. This Roundtable seeks to reflect on and discuss these issues in the context of contemporary developments in Asia such as the Chakmas in India, Uyghurs in China, Rohingyas in Myanmar, Hmong in Laos and others. This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016 at the Asia Centre. The Roundtable is organised to celebrate the memory, life and work of Professor Benedict Anderson a well known academic who engaged in these issues.</span></p>\r\n<p style="text-align: justify;">This event is free.</p>\r\n<p style="text-align: justify;"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdYIN2vKrpsUw2nEjzazXp83fNeVQv9-3kkCLLPB4NADgHxGQ/viewform" target="_blank"><img class="aligncenter wp-image-3066" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png" alt="screen-shot-2016-11-03-at-16-26-44" width="199" height="72" /></a></p>\r\n<p style="text-align: center;">Please do share this event within your networks. <a href="https://www.facebook.com/events/1598500940456726/" target="_blank"><img class="wp-image-3068 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png" alt="screen-shot-2016-11-03-at-16-46-31" width="184" height="43" /></a></p>', 'Benedict Anderson  1st Anniversary Memorial Roundtable', '', 'trash', 'closed', 'closed', '', '__trashed', '', '', '2016-12-28 16:05:13', '2016-12-28 09:05:13', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3385', 0, 'event', '', 0),
(3386, 6, '2016-12-28 04:19:40', '2016-12-28 04:19:40', '', 'asia-centre-logo', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo-2', '', '', '2016-12-28 04:19:40', '2016-12-28 04:19:40', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/Asia-centre-Logo.jpg', 0, 'attachment', 'image/jpeg', 0),
(3387, 6, '2016-12-28 04:21:34', '2016-12-28 04:21:34', '', 'Asiacentre', '', 'inherit', 'closed', 'closed', '', 'asia-centre-logo-flat-color', '', '', '2016-12-28 04:21:58', '2016-12-28 04:21:58', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/Asia-Centre-Logo-Flat-Color.jpg', 0, 'attachment', 'image/jpeg', 0),
(3388, 6, '2016-12-28 04:57:20', '2016-12-28 04:57:20', '<h2><b>Nationalism, Citizenship and Statelessness: </b><b>Current Issues and Developments in Asia</b></h2>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">On 18 January 2017, Asia Centre will be convening the </span><b>Benedict Anderson 1st Anniversary Memorial Roundtable </b><span style="font-weight: 400;">to discuss contemporary issues surrounding nationalism, citizenship and statelessness across Asia. Nationalism remains a powerful force in current times as it fuels growth from the 54 states of UN in 1945 to 193 members to date.  In the wake of Brexit and the Trump victory, it is driving energies in Scotland, Catalonia and elsewhere. As a result, states are seeking to keep strong control over citizenship and immigration while enacting laws to render political opponents and vulnerable people stateless in the name of security. This Roundtable seeks to reflect on and discuss these issues in the context of contemporary developments in Asia such as the Chakmas in India, Uyghurs in China, Rohingyas in Myanmar, Hmong in Laos and others. This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016 at the Asia Centre. The Roundtable is organised to celebrate the memory, life and work of Professor Benedict Anderson a well known academic who engaged in these issues.</span></p>\r\n<p style="text-align: justify;">This event is free.</p>\r\n<p style="text-align: justify;"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdYIN2vKrpsUw2nEjzazXp83fNeVQv9-3kkCLLPB4NADgHxGQ/viewform" target="_blank"><img class="aligncenter wp-image-3066" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png" alt="screen-shot-2016-11-03-at-16-26-44" width="199" height="72" /></a></p>\r\n<p style="text-align: center;">Please do share this event within your networks. <a href="https://www.facebook.com/events/1598500940456726/" target="_blank"><img class="wp-image-3068 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png" alt="screen-shot-2016-11-03-at-16-46-31" width="184" height="43" /></a></p>', 'Benedict Anderson  1st Anniversary Memorial Roundtable (test)', '', 'publish', 'closed', 'closed', '', 'benedict-anderson-1st-anniversary-memorial-roundtable-test', '', '', '2016-12-28 13:35:50', '2016-12-28 06:35:50', '', 0, 'http://asiacentre.co.th/?post_type=espresso_events&#038;p=3388', 0, 'espresso_events', '', 0),
(3389, 6, '2016-12-28 04:51:35', '2016-12-27 21:51:35', '<h2><b>Nationalism, Citizenship and Statelessness: </b><b>Current Issues and Developments in Asia</b></h2>\r\n<img class="aligncenter wp-image-3098 size-medium" src="http://asiacentre.co.th/wp-content/uploads/2016/11/FB-Poster-e1480055488282-600x370.jpg" alt="fb-poster" width="600" height="370" />\r\n<p style="text-align: justify;"><span style="font-weight: 400;">On 18 January 2017, Asia Centre will be convening the </span><b>Benedict Anderson 1st Anniversary Memorial Roundtable </b><span style="font-weight: 400;">to discuss contemporary issues surrounding nationalism, citizenship and statelessness across Asia. Nationalism remains a powerful force in current times as it fuels growth from the 54 states of UN in 1945 to 193 members to date.  In the wake of Brexit and the Trump victory, it is driving energies in Scotland, Catalonia and elsewhere. As a result, states are seeking to keep strong control over citizenship and immigration while enacting laws to render political opponents and vulnerable people stateless in the name of security. This Roundtable seeks to reflect on and discuss these issues in the context of contemporary developments in Asia such as the Chakmas in India, Uyghurs in China, Rohingyas in Myanmar, Hmong in Laos and others. This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016 at the Asia Centre. The Roundtable is organised to celebrate the memory, life and work of Professor Benedict Anderson a well known academic who engaged in these issues.</span></p>\r\n<p style="text-align: justify;">This event is free.</p>\r\n<p style="text-align: justify;"><a href="https://docs.google.com/forms/d/e/1FAIpQLSdYIN2vKrpsUw2nEjzazXp83fNeVQv9-3kkCLLPB4NADgHxGQ/viewform" target="_blank"><img class="aligncenter wp-image-3066" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.26.44-600x218.png" alt="screen-shot-2016-11-03-at-16-26-44" width="199" height="72" /></a></p>\r\n<p style="text-align: center;">Please do share this event within your networks. <a href="https://www.facebook.com/events/1598500940456726/" target="_blank"><img class="wp-image-3068 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Screen-Shot-2016-11-03-at-16.46.31-600x140.png" alt="screen-shot-2016-11-03-at-16-46-31" width="184" height="43" /></a></p>', 'Benedict Anderson  1st Anniversary Memorial Roundtable', '', 'trash', 'closed', 'closed', '', '__trashed-4', '', '', '2016-12-28 16:05:40', '2016-12-28 09:05:40', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3389', 0, 'event', '', 0),
(3393, 6, '2016-12-28 05:12:54', '0000-00-00 00:00:00', 'No Biography Provided', 'Pat Rat', 'No Biography Provided', 'publish', 'open', 'open', '', 'pat-rat', '', '', '2016-12-28 05:12:54', '0000-00-00 00:00:00', '', 0, '', 0, 'espresso_attendees', '', 0),
(3394, 6, '2016-12-28 05:21:25', '2016-12-28 05:21:25', '', 'asiacentre-logo', '', 'inherit', 'closed', 'closed', '', 'asiacentre-logo', '', '', '2017-01-11 16:43:33', '2017-01-11 09:43:33', '', 3476, 'http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-logo.png', 1, 'attachment', 'image/png', 0),
(3396, 6, '2016-12-28 05:40:29', '2016-12-28 05:40:29', '<p style="text-align: justify;">Asia Centre’s Media &amp; Communications Workshop  is designed to give students an introduction to<img class="wp-image-3086 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Professional-skills.png" alt="professional-skills" width="363" height="205" /> the Asian media landscape and the opportunity to undertake a project that allows for innovation and practical application of their knowledge and skills. Students will be mentored in conceptualising and carrying out their media projects by the Asia Centre. In particular students will be acquainted with how media policy and practices in Asia  are affected by socio-economic factors, cultural context, style of governance and technology. As part of the internship students will be expected to engage in practical media tasks to develop their professional skills including writing, reporting, incorporating digital media elements and disseminating information to media outlets.</p>\n&nbsp;\n\n<b>Course Objectives</b>\n<ul>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Provide students with an appreciation of the Asian media landscape</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Review case studies to develop a contextual appreciation of key laws, governance frameworks, socio-economic and cultural contexts that impact media policy and practices.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Develop students critical thinking, research and interviewing skills.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Equip students with skills to execute and present a multimedia report incorporating written, digital and social media elements.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Enable student to hone and apply their professional skills through practical assignments.</span></li>\n</ul>\n<img class="alignright wp-image-3088" src="http://asiacentre.co.th/wp-content/uploads/2016/11/15146880_10157669480405307_331213641_o-600x450.jpg" alt="15146880_10157669480405307_331213641_o" width="311" height="233" /> <img class="wp-image-3089 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="318" height="235" /> <img class="wp-image-3090 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="446" height="250" />\n\n&nbsp;\n\n<b>Learning Outcomes</b>\n\n<span style="font-weight: 400;">At the end of this course students will be able to:</span>\n<ul>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand key developments and issues facing the Asian media landscape</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand media policy and practices in their historical, socio-cultural, economic and political contexts in selected countries</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Think critically and attain competency in conducting research and interviews</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Acquire practical experience in executing and presenting a multimedia research project.</span></li>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Improve media related professional skills and competencies</span></li>\n</ul>\n<p style="text-align: justify;"><b>Programme Structure</b></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">This workshop will be be structured to include learning  and practical components. Students will attend and participate in a mixture of activities for experiential learning. The practical component will take the form of producing multimedia report on a project topic of their choice. This will be complemented by visits to media companies, opportunities to interact and network with leading journalists and foreign correspondents, freedom of expression advocates, as well as students and instructors in media and communications programmes in selected Bangkok based universities.</span></p>\n<p style="text-align: justify;"><img class="size-medium wp-image-3094 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-1--600x251.jpg" alt="programme-week-1" width="600" height="251" /> <img class="size-medium wp-image-3095 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-2-600x245.jpg" alt="programme-week-2" width="600" height="245" /></p>\n<span style="font-weight: 400;">Media Project timeslots are for students to work on developing their multimedia project (in groups or individually), conducting research and producing the final output. Students will work under the guidance of an Asia Centre supervisor.</span>\n<p style="text-align: justify;"><strong>Workshop Fees - </strong>USD$450</p>\nThe course fees cover instruction &amp; materials. Students are expected to bear their own costs for flights, accommodation, meals, local travel and entrance fees to special events.\n\nTo register, please drop us an email at contact@asiacentre.co.th\n\n&nbsp;', 'Media & Communications Workshop', '', 'inherit', 'closed', 'closed', '', '3085-autosave-v1', '', '', '2016-12-28 05:40:29', '2016-12-28 05:40:29', '', 3085, 'http://asiacentre.co.th/other/3085-autosave-v1/', 0, 'revision', '', 0),
(3399, 6, '2016-12-28 13:47:22', '2016-12-28 06:47:22', '<h6>UPCOMING EVENTS</h6>\r\n[upcoming_events items_number="5"]', 'Upcoming Events', '', 'publish', 'closed', 'closed', '', 'upcoming-events', '', '', '2016-12-28 13:51:23', '2016-12-28 06:51:23', '', 0, 'http://asiacentre.co.th/?post_type=chunk&#038;p=3399', 0, 'chunk', '', 0),
(3400, 6, '2016-12-28 13:51:07', '2016-12-28 06:51:07', '<h6>UPCOMING EVENTS</h6>\n[upcoming_events items_number="5"]', 'Upcoming Events', '', 'inherit', 'closed', 'closed', '', '3399-autosave-v1', '', '', '2016-12-28 13:51:07', '2016-12-28 06:51:07', '', 3399, 'http://asiacentre.co.th/other/3399-autosave-v1/', 0, 'revision', '', 0),
(3401, 6, '2016-12-28 13:52:52', '2016-12-28 06:52:52', '<h6>Past EVENTS</h6>\r\n[past_events items_number="10"]\r\n\r\n[Event categories_slug="past-event"]', 'Past Events', '', 'trash', 'closed', 'closed', '', 'past-events__trashed', '', '', '2016-12-28 14:09:11', '2016-12-28 07:09:11', '', 0, 'http://asiacentre.co.th/?post_type=chunk&#038;p=3401', 0, 'chunk', '', 0),
(3403, 6, '2016-12-28 14:07:09', '2016-12-28 07:07:09', '<h6>Past EVENTS</h6>\n[past_events items_number="10"]\n\n[E categovries_slug="past-event"]', 'Past Events', '', 'inherit', 'closed', 'closed', '', '3401-autosave-v1', '', '', '2016-12-28 14:07:09', '2016-12-28 07:07:09', '', 3401, 'http://asiacentre.co.th/other/3401-autosave-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3405, 6, '2016-12-28 14:03:05', '2016-12-28 07:03:05', '<p style="text-align: justify;">[accordion_wrapper]\r\n\r\nStart adding accordion containers here...\r\n\r\n[/accordion_wrapper][accordion_wrapper]\r\n\r\nStart adding accordion containers here...\r\n\r\n[/accordion_wrapper]Asia<img class="wp-image-3065 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o-600x460.jpg" alt="14918847_1326888830663675_4103291665663509381_o" width="357" height="274" /> Centre will be launching a brand new event series called - Spark Sessions - designed to provide a platform for individuals to connect, inspire and build community. Spark Sessions go beyond your average networking sessions, because at Asia Centre we believe in doing things differently. Forget the fussy ties, rehearsed pitches and name card collecting. We’re opting for connection, conversation and genuine engagement.</p>\r\n<p style="text-align: justify;">The inaugural edition of the Spark Sessions will focus on engaging youth. Asia Centre invites university students from all disciplines to an informal and free get together to interact with representatives from international organizations, NGOs, social enterprises and civil society.</p>\r\n<p style="text-align: justify;"><span style="color: #993300;">IF YOU ARE</span><span class="text_exposed_show"><span style="color: #993300;"> A STUDENT, RESEARCHER OR SOMEONE INTERESTED IN COMMUNITY ENGAGEMENT, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n</span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Better understand some of the critical issues tackled by international organizations, NGOs, social enterprises and civil society</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Browse through the “community centre” where attending organisations will set up stands</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Ask questions and explore internship opportunities</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Be a part of a socially engaged community and discover how you can contribute</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n<span style="color: #993300;">IF YOU ARE A BANGKOK BASED NGO, CIVIL SOCIETY ORGANISATION OR SOCIAL ENTERPRISE, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n<ul>\r\n 	<li>Connect, Converse and Engage with representatives from Bangkok based international organisations, NGOs, civil society and social enterprise. We hope that this platform can SPARK cooperation and new collaborative projects between organisations.</li>\r\n 	<li>Engage with young talents and university students</li>\r\n 	<li>Connect with prospective interns who are passionate about your cause</li>\r\n 	<li>Raise awareness about your organisation, its objectives and projects for the coming year</li>\r\n</ul>\r\n&nbsp;\r\n\r\nAttendance is free, light refreshments and snacks will be provided.\r\n\r\n&nbsp;\r\n\r\nIf your organisation is interested in participating in this event, please contact us at contact@asiacentre.co.th.\r\n\r\n&nbsp;\r\n\r\n<a href="https://www.facebook.com/events/215682748843461/" target="_blank"><img class="aligncenter wp-image-3069" src="http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920-600x338.png" alt="facebook-like-share-ss-1920" width="213" height="120" /></a>\r\n\r\n&nbsp;\r\n\r\n<a href="https://docs.google.com/forms/d/e/1FAIpQLSeEJqCVS2iZz9xlu0VmHEGpaDrHIBPSaqpVjnH2PA84Zf-_xQ/viewform" target="_blank"><img class="aligncenter wp-image-3070" src="http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286-600x128.png" alt="register-now-button55286" width="352" height="75" /></a>\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\nThis event is supported by the Heinrich Böll Stiftung, Southeast Asia.<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="113" height="84" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;', 'Spark Sessions: An Alternative Networking Event', '', 'trash', 'closed', 'closed', '', '__trashed-3', '', '', '2016-12-28 16:05:27', '2016-12-28 09:05:27', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3405', 0, 'event', '', 0),
(3406, 6, '2016-12-28 14:32:23', '2016-12-28 07:32:23', '<p style="text-align: justify;">Asia Centre’s Media &amp; Communications Workshop  is designed to give students an introduction to<img class="wp-image-3086 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Professional-skills.png" alt="professional-skills" width="363" height="205" /> the Asian media landscape and the opportunity to undertake a project that allows for innovation and practical application of their knowledge and skills. Students will be mentored in conceptualising and carrying out their media projects by the Asia Centre. In particular students will be acquainted with how media policy and practices in Asia  are affected by socio-economic factors, cultural context, style of governance and technology. As part of the internship students will be expected to engage in practical media tasks to develop their professional skills including writing, reporting, incorporating digital media elements and disseminating information to media outlets.</p>\r\n<b>Course Objectives</b>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Provide students with an appreciation of the Asian media landscape</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Review case studies to develop a contextual appreciation of key laws, governance frameworks, socio-economic and cultural contexts that impact media policy and practices.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Develop students critical thinking, research and interviewing skills.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Equip students with skills to execute and present a multimedia report incorporating written, digital and social media elements.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Enable student to hone and apply their professional skills through practical assignments.</span></li>\r\n</ul>\r\n<img class="alignright wp-image-3088" src="http://asiacentre.co.th/wp-content/uploads/2016/11/15146880_10157669480405307_331213641_o-600x450.jpg" alt="15146880_10157669480405307_331213641_o" width="311" height="233" /><img class="wp-image-3089 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14500703_10210243375978781_116785850124513616_o-600x444.jpg" alt="14500703_10210243375978781_116785850124513616_o" width="318" height="235" /><img class="wp-image-3090 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14352502_1286411821378043_4165059938118413393_o-600x336.jpg" alt="14352502_1286411821378043_4165059938118413393_o" width="446" height="250" />\r\n\r\n<b>Learning Outcomes</b>\r\n\r\n<span style="font-weight: 400;">At the end of this course students will be able to:</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand key developments and issues facing the Asian media landscape</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Understand media policy and practices in their historical, socio-cultural, economic and political contexts in selected countries</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Think critically and attain competency in conducting research and interviews</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Acquire practical experience in executing and presenting a multimedia research project.</span></li>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Improve media related professional skills and competencies</span></li>\r\n</ul>\r\n<p style="text-align: justify;"><b>Programme Structure</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">This workshop will be be structured to include learning  and practical components. Students will attend and participate in a mixture of activities for experiential learning. The practical component will take the form of producing multimedia report on a project topic of their choice. This will be complemented by visits to media companies, opportunities to interact and network with leading journalists and foreign correspondents, freedom of expression advocates, as well as students and instructors in media and communications programmes in selected Bangkok based universities.</span></p>\r\n<p style="text-align: justify;"><img class="size-medium wp-image-3094 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-1--600x251.jpg" alt="programme-week-1" width="600" height="251" /><img class="size-medium wp-image-3095 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2016/11/Programme-Week-2-600x245.jpg" alt="programme-week-2" width="600" height="245" /></p>\r\n<span style="font-weight: 400;">Media Project timeslots are for students to work on developing their multimedia project (in groups or individually), conducting research and producing the final output. Students will work under the guidance of an Asia Centre supervisor.</span>\r\n<p style="text-align: justify;"><strong>Workshop Fees - </strong>USD$450</p>\r\nThe course fees cover instruction &amp; materials. Students are expected to bear their own costs for flights, accommodation, meals, local travel and entrance fees to special events.\r\n\r\nTo register, please drop us an email at contact@asiacentre.co.th', 'Media & Communications Workshop', '', 'publish', 'closed', 'closed', '', 'media-communications-workshop', '', '', '2016-12-28 14:55:45', '2016-12-28 07:55:45', '', 0, 'http://asiacentre.co.th/?post_type=espresso_events&#038;p=3406', 0, 'espresso_events', '', 0),
(3409, 6, '2016-12-28 15:24:12', '2016-12-28 08:24:12', 'Asia Centre provides specialised courses to support various areas in tertiary education and professional skills development.\n\nWe adopt a collaborative approach to course design and hence work closely with our clients and institutional partners to develop curriculum that suits their needs.\n\nExperiential learning and practical application are core tenets of our courses, as we aim to provide participants with tangible lessons, unique networking opportunities and core competencies.\n\nThe courses are delivered in collaboration with our Centre Associates many of whom are leading scholars and  industry experts in their respective fields."\n<ul>\n 	<li><a href="http://asiacentre.co.th/intl-education-programme/">International Educational Programme</a></li>\n 	<li><a href="http://asiacentre.co.th/writing-institute/">Writing Institute</a></li>\n</ul>\n[gap height="40"]\n\n[separator style="regular"]\n\n&nbsp;', 'Learning', '', 'inherit', 'closed', 'closed', '', '1939-autosave-v1', '', '', '2016-12-28 15:24:12', '2016-12-28 08:24:12', '', 1939, 'http://asiacentre.co.th/other/1939-autosave-v1/', 0, 'revision', '', 0),
(3410, 6, '2016-12-28 15:30:34', '2016-12-28 08:30:34', '', 'Benedict Anderson 1st Anniversary Memorial Roundtable', '', 'trash', 'closed', 'closed', '', '__trashed-2', '', '', '2016-12-28 16:05:20', '2016-12-28 09:05:20', '', 0, 'http://asiacentre.co.th/?post_type=event&#038;p=3410', 0, 'event', '', 0),
(3411, 6, '2016-12-28 15:53:46', '2016-12-28 08:53:46', '<p style="text-align: justify;">Asia<img class="wp-image-3065 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/11/14918847_1326888830663675_4103291665663509381_o-600x460.jpg" alt="14918847_1326888830663675_4103291665663509381_o" width="357" height="274" /> Centre will be launching a brand new event series called - Spark Sessions - designed to provide a platform for individuals to connect, inspire and build community. Spark Sessions go beyond your average networking sessions, because at Asia Centre we believe in doing things differently. Forget the fussy ties, rehearsed pitches and name card collecting. We’re opting for connection, conversation and genuine engagement.</p>\r\n<p style="text-align: justify;">The inaugural edition of the Spark Sessions will focus on engaging youth. Asia Centre invites university students from all disciplines to an informal and free get together to interact with representatives from international organizations, NGOs, social enterprises and civil society.</p>\r\n<p style="text-align: justify;"><span style="color: #993300;">IF YOU ARE</span><span class="text_exposed_show"><span style="color: #993300;"> A STUDENT, RESEARCHER OR SOMEONE INTERESTED IN COMMUNITY ENGAGEMENT, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n</span></p>\r\n\r\n<ul>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Better understand some of the critical issues tackled by international organizations, NGOs, social enterprises and civil society</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Browse through the “community centre” where attending organisations will set up stands</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Ask questions and explore internship opportunities</span></li>\r\n 	<li style="text-align: justify;"><span class="text_exposed_show">Be a part of a socially engaged community and discover how you can contribute</span></li>\r\n</ul>\r\n<span style="color: #993300;">IF YOU ARE A BANGKOK BASED NGO, CIVIL SOCIETY ORGANISATION OR SOCIAL ENTERPRISE, SPARK SESSIONS OFFERS YOU THE OPPORTUNITY TO</span>\r\n<ul>\r\n 	<li>Connect, Converse and Engage with representatives from Bangkok based international organisations, NGOs, civil society and social enterprise. We hope that this platform can SPARK cooperation and new collaborative projects between organisations.</li>\r\n 	<li>Engage with young talents and university students</li>\r\n 	<li>Connect with prospective interns who are passionate about your cause</li>\r\n 	<li>Raise awareness about your organisation, its objectives and projects for the coming year</li>\r\n</ul>\r\nAttendance is free, light refreshments and snacks will be provided.\r\n\r\nIf your organisation is interested in participating in this event, please contact us at contact@asiacentre.co.th.\r\n\r\n<a href="https://www.facebook.com/events/215682748843461/" target="_blank"><img class="aligncenter wp-image-3069" src="http://asiacentre.co.th/wp-content/uploads/2016/11/facebook-like-share-ss-1920-600x338.png" alt="facebook-like-share-ss-1920" width="213" height="120" /></a>\r\n\r\n<a href="https://docs.google.com/forms/d/e/1FAIpQLSeEJqCVS2iZz9xlu0VmHEGpaDrHIBPSaqpVjnH2PA84Zf-_xQ/viewform" target="_blank"><img class="aligncenter wp-image-3070" src="http://asiacentre.co.th/wp-content/uploads/2016/11/register-now-button55286-600x128.png" alt="register-now-button55286" width="352" height="75" /></a>\r\n\r\nThis event is supported by the Heinrich Böll Stiftung, Southeast Asia.<img class="wp-image-3062 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/10/hbs-logo-separate2-600x443.jpg" alt="hbs-logo-separate2" width="113" height="84" />', 'Spark Sessions: An Alternative Networking Event', '', 'publish', 'closed', 'closed', '', 'spark-sessions-alternative-networking-event', '', '', '2016-12-28 15:55:14', '2016-12-28 08:55:14', '', 0, 'http://asiacentre.co.th/?post_type=espresso_events&#038;p=3411', 0, 'espresso_events', '', 0),
(3413, 6, '2016-12-28 16:32:09', '2016-12-28 09:32:09', '', 'Mission', '', 'inherit', 'closed', 'closed', '', '1951-autosave-v1', '', '', '2016-12-28 16:32:09', '2016-12-28 09:32:09', '', 1951, 'http://asiacentre.co.th/other/1951-autosave-v1/', 0, 'revision', '', 0),
(3415, 6, '2016-12-28 16:57:18', '2016-12-28 09:57:18', '', 'Home Page-test', '', 'trash', 'closed', 'closed', '', '__trashed', '', '', '2017-01-10 13:28:57', '2017-01-10 06:28:57', '', 0, 'http://asiacentre.co.th/?post_type=hom_page&#038;p=3415', 0, 'hom_page', '', 0),
(3416, 6, '2016-12-29 08:29:40', '2016-12-29 01:29:40', '', 'asiacentre-internship', '', 'inherit', 'closed', 'closed', '', 'asiacentre-internship-2', '', '', '2016-12-29 08:29:40', '2016-12-29 01:29:40', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-internship-1.png', 0, 'attachment', 'image/png', 0),
(3421, 6, '2016-12-29 09:39:08', '2016-12-29 02:39:08', '', 'Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report', '', 'inherit', 'closed', 'closed', '', 'benedict-anderson-1st-anniversary-memorial-roundtable-report', '', '', '2017-01-20 12:49:44', '2017-01-20 05:49:44', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/Benedict-Anderson-1st-Anniversary-Memorial-Roundtable-Report.png', 0, 'attachment', 'image/png', 0),
(3424, 6, '2016-12-29 09:46:36', '2016-12-29 02:46:36', '', 'asiacentre-media-communication-workshop-2', '', 'inherit', 'closed', 'closed', '', 'asiacentre-media-communication-workshop-2', '', '', '2016-12-29 09:46:36', '2016-12-29 02:46:36', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-media-communication-workshop-2.png', 0, 'attachment', 'image/png', 0),
(3425, 6, '2016-12-29 10:33:23', '2016-12-29 03:33:23', '', 'asiacentre-conference-NHRI-extended', '', 'inherit', 'closed', 'closed', '', 'asiacentre-conference-nhri-extended', '', '', '2017-01-17 15:08:42', '2017-01-17 08:08:42', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/asiacentre-conference-NHRI-extended.png', 0, 'attachment', 'image/png', 0),
(3426, 6, '2016-12-29 10:40:57', '2016-12-29 03:40:57', '', 'job-oppornunities-hiring-digitalmarketing-communication-officer', '', 'inherit', 'closed', 'closed', '', 'job-oppornunities-hiring-digitalmarketing-communication-officer-2', '', '', '2016-12-29 10:40:57', '2016-12-29 03:40:57', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2016/12/job-oppornunities-hiring-digitalmarketing-communication-officer-1.png', 0, 'attachment', 'image/png', 0),
(3428, 6, '2016-12-29 12:48:27', '2016-12-29 05:48:27', '<a href="http://asiacentre.co.th/event/universal-periodic-review-in-southeast-asia/">Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment</a>\r\n\r\n<a href="http://asiacentre.co.th/event/southeast-asia-the-upr-all-talk-no-action/">Southeast Asia &amp; The UPR: All Talk &amp; No Action?</a>', 'UPR Conference', '', 'publish', 'closed', 'closed', '', 'upr', '', '', '2016-12-29 12:53:16', '2016-12-29 05:53:16', '', 0, 'http://asiacentre.co.th/?post_type=gallery&#038;p=3428', 0, 'gallery', '', 0),
(3429, 6, '2016-12-29 12:47:34', '2016-12-29 05:47:34', '', 'image1', '', 'inherit', 'closed', 'closed', '', 'image1-2', '', '', '2016-12-29 12:53:16', '2016-12-29 05:53:16', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image1.jpeg', 1, 'attachment', 'image/jpeg', 0),
(3430, 6, '2016-12-29 12:47:35', '2016-12-29 05:47:35', '', 'image2', '', 'inherit', 'closed', 'closed', '', 'image2-2', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image2.jpeg', 2, 'attachment', 'image/jpeg', 0),
(3431, 6, '2016-12-29 12:47:37', '2016-12-29 05:47:37', '', 'image3', '', 'inherit', 'closed', 'closed', '', 'image3', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image3.jpeg', 3, 'attachment', 'image/jpeg', 0),
(3432, 6, '2016-12-29 12:47:38', '2016-12-29 05:47:38', '', 'image4', '', 'inherit', 'closed', 'closed', '', 'image4', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image4.jpeg', 4, 'attachment', 'image/jpeg', 0),
(3433, 6, '2016-12-29 12:47:40', '2016-12-29 05:47:40', '', 'image5', '', 'inherit', 'closed', 'closed', '', 'image5', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image5.jpeg', 5, 'attachment', 'image/jpeg', 0),
(3434, 6, '2016-12-29 12:47:41', '2016-12-29 05:47:41', '', 'image6', '', 'inherit', 'closed', 'closed', '', 'image6', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image6.jpeg', 6, 'attachment', 'image/jpeg', 0),
(3435, 6, '2016-12-29 12:47:42', '2016-12-29 05:47:42', '', 'image7', 'Universal Periodic Review in Southeast Asia: An Evidence-Based Regional Assessment', 'inherit', 'closed', 'closed', '', 'image7', '', '', '2017-01-20 16:37:03', '2017-01-20 09:37:03', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image7.jpeg', 0, 'attachment', 'image/jpeg', 0),
(3436, 6, '2016-12-29 12:47:43', '2016-12-29 05:47:43', '', 'image8', '', 'inherit', 'closed', 'closed', '', 'image8', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image8.jpeg', 7, 'attachment', 'image/jpeg', 0),
(3437, 6, '2016-12-29 12:47:45', '2016-12-29 05:47:45', '', 'image9', '', 'inherit', 'closed', 'closed', '', 'image9', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image9.jpeg', 9, 'attachment', 'image/jpeg', 0),
(3438, 6, '2016-12-29 12:47:46', '2016-12-29 05:47:46', '', 'image10', '', 'inherit', 'closed', 'closed', '', 'image10', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image10.jpeg', 10, 'attachment', 'image/jpeg', 0),
(3439, 6, '2016-12-29 12:47:47', '2016-12-29 05:47:47', '', 'image11', '', 'inherit', 'closed', 'closed', '', 'image11', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image11.jpeg', 12, 'attachment', 'image/jpeg', 0),
(3440, 6, '2016-12-29 12:47:48', '2016-12-29 05:47:48', '', 'image12', '', 'inherit', 'closed', 'closed', '', 'image12', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image12.jpeg', 13, 'attachment', 'image/jpeg', 0),
(3441, 6, '2016-12-29 12:47:51', '2016-12-29 05:47:51', '', 'image13', '', 'inherit', 'closed', 'closed', '', 'image13', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image13.jpeg', 14, 'attachment', 'image/jpeg', 0),
(3443, 6, '2016-12-29 12:47:53', '2016-12-29 05:47:53', '', 'image15', '', 'inherit', 'closed', 'closed', '', 'image15', '', '', '2016-12-29 12:53:17', '2016-12-29 05:53:17', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image15.jpeg', 8, 'attachment', 'image/jpeg', 0),
(3444, 6, '2016-12-29 12:47:54', '2016-12-29 05:47:54', '', 'upr-asiacentre', '', 'inherit', 'closed', 'closed', '', 'image16', '', '', '2017-01-11 11:29:42', '2017-01-11 04:29:42', '', 3428, 'http://asiacentre.co.th/wp-content/uploads/2016/12/image16.jpeg', 15, 'attachment', 'image/jpeg', 0),
(3446, 6, '2016-12-29 13:55:48', '2016-12-29 06:55:48', '<ol>\r\n 	<li><code>archive.php</code></li>\r\n</ol>', 'Past Event', '', 'trash', 'closed', 'closed', '', 'past-event__trashed', '', '', '2016-12-29 13:56:18', '2016-12-29 06:56:18', '', 0, 'http://asiacentre.co.th/?post_type=chunk&#038;p=3446', 0, 'chunk', '', 0),
(3447, 6, '2016-12-29 13:57:03', '2016-12-29 06:57:03', 'archive.php', 'achieve page', '', 'trash', 'closed', 'closed', '', 'achieve-page__trashed', '', '', '2016-12-30 16:28:54', '2016-12-30 09:28:54', '', 0, 'http://asiacentre.co.th/?page_id=3447', 0, 'page', '', 0),
(3448, 6, '2016-12-29 13:57:03', '2016-12-29 06:57:03', 'archive.php', 'achieve page', '', 'inherit', 'closed', 'closed', '', '3447-revision-v1', '', '', '2016-12-29 13:57:03', '2016-12-29 06:57:03', '', 3447, 'http://asiacentre.co.th/other/3447-revision-v1/', 0, 'revision', '', 0),
(3449, 6, '2016-12-30 16:28:28', '2016-12-30 09:28:28', '&lt;?php\r\n/**\r\n* Archive: Gallery /// gallery CPT\r\n*/\r\n?&gt;\r\n\r\n&lt;?php\r\n// print site header\r\nget_header();\r\n?&gt;\r\n\r\n&lt;?php\r\n// sidebar\r\n$sidebar_class = '''';\r\n$sidebar_pos = vp_option( ''vpt_option.sidebar_position'' );\r\nif( $sidebar_pos == ''left'' ) $sidebar_class = '' col-lg-push-4 col-md-push-4'';\r\n// query\r\n$paged = get_query_var( ''paged'' ) ? get_query_var( ''paged'' ) : 1;\r\n$gal_query = new WP_Query( array( ''post_type'' =&gt; ''gallery'', ''paged'' =&gt; $paged ) );\r\n?&gt;\r\n\r\n&lt;div class="row no-gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;div class="col-lg-8 col-md-8&lt;?php echo $sidebar_class; ?&gt;"&gt;&lt;!-- doc body wrapper --&gt;\r\n\r\n&lt;div class="col-padded"&gt;&lt;!-- inner custom column --&gt;\r\n\r\n&lt;div class="row gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;div class="col-lg-12 col-md-12"&gt;\r\n\r\n&lt;h1 class="page-title"&gt;&lt;?php _e( ''School Galleries'', ''kazaz'' ); ?&gt;&lt;/h1&gt;&lt;!-- course category title --&gt;\r\n\r\n&lt;/div&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php if( $gal_query-&gt;have_posts() ) : ?&gt;\r\n\r\n&lt;div class="row gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;div class="col-lg-12 col-md-12"&gt;\r\n\r\n&lt;?php while( $gal_query-&gt;have_posts() ) : $gal_query-&gt;the_post(); ?&gt;\r\n\r\n&lt;?php\r\n$photos_num = 0;\r\n$this_post_images =&amp; get_children( array(\r\n''post_parent'' =&gt; get_the_ID(),\r\n''post_type'' =&gt; ''attachment'',\r\n''post_mime_type'' =&gt; ''image''\r\n) );\r\n\r\nif( !empty( $this_post_images ) ) {\r\n// how many photos?\r\n$photos_num = count( $this_post_images );\r\nif( $photos_num &lt; 10 ) $photos_num = ''0'' . $photos_num;\r\n}\r\n?&gt;\r\n\r\n&lt;div id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class( ''gallery-wrapper'' ); ?&gt;&gt;&lt;!-- gallery single wrap --&gt;\r\n\r\n&lt;figure class="gallery-last-photo clearfix"&gt;\r\n&lt;a href="&lt;?php the_permalink(); ?&gt;" title="&lt;?php the_title_attribute( array( ''before'' =&gt; ''Permalink to: '', ''after'' =&gt; '''' ) ); ?&gt;"&gt;\r\n&lt;?php the_post_thumbnail(); ?&gt;\r\n&lt;/a&gt;\r\n&lt;/figure&gt;\r\n\r\n&lt;div class="gallery-info"&gt;\r\n&lt;span class="gallery-photos-num"&gt;&lt;?php echo $photos_num; ?&gt;&lt;/span&gt;\r\n&lt;span class="gallery-photos-tag"&gt;&lt;?php echo _x( ''Photos'', ''galleries category page, NN photos'', ''kazaz'' ); ?&gt;&lt;/span&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class="gallery-meta"&gt;\r\n&lt;h1 class="gallery-title"&gt;\r\n&lt;a href="&lt;?php the_permalink(); ?&gt;" rel="bookmark" title="&lt;?php the_title_attribute( array( ''before'' =&gt; ''Permalink to: '', ''after'' =&gt; '''' ) ); ?&gt;"&gt;\r\n&lt;?php the_title(); ?&gt;\r\n&lt;/a&gt;\r\n&lt;/h1&gt;\r\n&lt;p class="gallery-description"&gt;\r\n&lt;?php echo wp_trim_excerpt(); ?&gt;\r\n&lt;/p&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;/div&gt;&lt;!-- gallery single wrap end --&gt;\r\n\r\n&lt;?php endwhile; ?&gt;\r\n\r\n&lt;/div&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php k_pagination(); // pagination ?&gt;\r\n\r\n&lt;?php else : ?&gt;\r\n\r\n&lt;div class="row gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;?php get_template_part( ''content'', ''none'' ); ?&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php endif; ?&gt;\r\n\r\n&lt;/div&gt;&lt;!-- inner custom column end --&gt;\r\n\r\n&lt;/div&gt;&lt;!-- doc body wrapper end --&gt;\r\n\r\n&lt;?php\r\n// print sidebar wrappers - open\r\nk_sidebar_head();\r\n\r\n// print sidebar content\r\nget_template_part( ''sidebars/sidebar-galleries'' );\r\n\r\n// print sidebar wrappers - close\r\nk_sidebar_foot();\r\n?&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php\r\n// print site footer\r\nget_footer();\r\n?&gt;', 'Archive-Gallery', '', 'trash', 'closed', 'closed', '', 'archive-gallery__trashed', '', '', '2016-12-30 16:29:02', '2016-12-30 09:29:02', '', 0, 'http://asiacentre.co.th/?page_id=3449', 0, 'page', '', 0),
(3450, 6, '2016-12-30 16:26:14', '2016-12-30 09:26:14', '<?php\r\n/**\r\n * Archive: Gallery /// gallery CPT\r\n */\r\n?>\r\n\r\n<?php\r\n// print site header\r\nget_header();\r\n?>\r\n\r\n<?php\r\n// sidebar\r\n$sidebar_class = '''';\r\n$sidebar_pos = vp_option( ''vpt_option.sidebar_position'' );\r\nif( $sidebar_pos == ''left'' ) $sidebar_class = '' col-lg-push-4 col-md-push-4'';\r\n// query\r\n$paged = get_query_var( ''paged'' ) ? get_query_var( ''paged'' ) : 1;\r\n$gal_query = new WP_Query( array( ''post_type'' => ''gallery'', ''paged'' => $paged ) );\r\n?>\r\n\r\n	<div class="row no-gutter"><!-- row -->\r\n\r\n		<div class="col-lg-8 col-md-8<?php echo $sidebar_class; ?>"><!-- doc body wrapper -->\r\n		\r\n			<div class="col-padded"><!-- inner custom column -->\r\n			\r\n	        	<div class="row gutter"><!-- row -->\r\n	            \r\n	            	<div class="col-lg-12 col-md-12">\r\n	        \r\n	                	<h1 class="page-title"><?php _e( ''School Galleries'', ''kazaz'' ); ?></h1><!-- course category title -->\r\n	                \r\n	                </div>\r\n	            \r\n	            </div><!-- row end -->\r\n				\r\n			<?php if( $gal_query->have_posts() ) : ?>\r\n				\r\n				<div class="row gutter"><!-- row -->\r\n				\r\n					<div class="col-lg-12 col-md-12">\r\n				\r\n							<?php while( $gal_query->have_posts() ) : $gal_query->the_post(); ?>\r\n							\r\n								<?php\r\n								$photos_num = 0;\r\n								$this_post_images =& get_children( array(\r\n									''post_parent'' => get_the_ID(),\r\n									''post_type'' => ''attachment'',\r\n									''post_mime_type'' => ''image''\r\n								) );\r\n								\r\n								if( !empty( $this_post_images ) ) {\r\n									// how many photos?\r\n									$photos_num = count( $this_post_images );\r\n									if( $photos_num < 10 ) $photos_num = ''0'' . $photos_num;\r\n								}\r\n								?>\r\n		                    	\r\n                                <div id="post-<?php the_ID(); ?>" <?php post_class( ''gallery-wrapper'' ); ?>><!-- gallery single wrap -->\r\n                                \r\n                            		<figure class="gallery-last-photo clearfix">\r\n                            			<a href="<?php the_permalink(); ?>" title="<?php the_title_attribute( array( ''before'' => ''Permalink to: '', ''after'' => '''' ) ); ?>">\r\n                            			<?php the_post_thumbnail(); ?>\r\n                            			</a>\r\n                            		</figure>\r\n                            		\r\n                            		<div class="gallery-info">\r\n                            			<span class="gallery-photos-num"><?php echo $photos_num; ?></span>\r\n                            			<span class="gallery-photos-tag"><?php echo _x( ''Photos'', ''galleries category page, NN photos'', ''kazaz'' ); ?></span>\r\n                            		</div>\r\n                                    \r\n                                    <div class="gallery-meta">\r\n                                    	<h1 class="gallery-title">\r\n	                                    	<a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute( array( ''before'' => ''Permalink to: '', ''after'' => '''' ) ); ?>">\r\n	                                    	<?php the_title(); ?>\r\n	                                    	</a>\r\n                                    	</h1>\r\n                                        <p class="gallery-description">\r\n                                    	<?php echo wp_trim_excerpt(); ?>\r\n                                    	</p>\r\n                                    </div>\r\n                                \r\n                                </div><!-- gallery single wrap end -->\r\n							\r\n							<?php endwhile; ?>\r\n				\r\n					</div>\r\n				\r\n				</div><!-- row end -->\r\n				\r\n			<?php k_pagination(); // pagination ?>\r\n					\r\n			<?php else : ?>\r\n			\r\n				<div class="row gutter"><!-- row -->\r\n			\r\n				<?php get_template_part( ''content'', ''none'' ); ?>\r\n			\r\n				</div><!-- row end -->\r\n\r\n			<?php endif; ?>\r\n				\r\n			</div><!-- inner custom column end -->\r\n			\r\n		</div><!-- doc body wrapper end -->\r\n			\r\n		<?php\r\n		// print sidebar wrappers - open\r\n		k_sidebar_head();\r\n		\r\n		// print sidebar content\r\n		get_template_part( ''sidebars/sidebar-galleries'' );\r\n		\r\n		// print sidebar wrappers - close\r\n		k_sidebar_foot();\r\n		?>\r\n		\r\n	</div><!-- row end -->\r\n\r\n<?php\r\n// print site footer\r\nget_footer();\r\n?>', 'Archive-Gallery', '', 'inherit', 'closed', 'closed', '', '3449-revision-v1', '', '', '2016-12-30 16:26:14', '2016-12-30 09:26:14', '', 3449, 'http://asiacentre.co.th/other/3449-revision-v1/', 0, 'revision', '', 0),
(3451, 6, '2016-12-30 16:27:29', '2016-12-30 09:27:29', '&lt;?php\r\n/**\r\n* Archive: Gallery /// gallery CPT\r\n*/\r\n?&gt;\r\n\r\n&lt;?php\r\n// print site header\r\nget_header();\r\n?&gt;\r\n\r\n&lt;?php\r\n// sidebar\r\n$sidebar_class = '''';\r\n$sidebar_pos = vp_option( ''vpt_option.sidebar_position'' );\r\nif( $sidebar_pos == ''left'' ) $sidebar_class = '' col-lg-push-4 col-md-push-4'';\r\n// query\r\n$paged = get_query_var( ''paged'' ) ? get_query_var( ''paged'' ) : 1;\r\n$gal_query = new WP_Query( array( ''post_type'' =&gt; ''gallery'', ''paged'' =&gt; $paged ) );\r\n?&gt;\r\n\r\n&lt;div class="row no-gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;div class="col-lg-8 col-md-8&lt;?php echo $sidebar_class; ?&gt;"&gt;&lt;!-- doc body wrapper --&gt;\r\n\r\n&lt;div class="col-padded"&gt;&lt;!-- inner custom column --&gt;\r\n\r\n&lt;div class="row gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;div class="col-lg-12 col-md-12"&gt;\r\n\r\n&lt;h1 class="page-title"&gt;&lt;?php _e( ''School Galleries'', ''kazaz'' ); ?&gt;&lt;/h1&gt;&lt;!-- course category title --&gt;\r\n\r\n&lt;/div&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php if( $gal_query-&gt;have_posts() ) : ?&gt;\r\n\r\n&lt;div class="row gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;div class="col-lg-12 col-md-12"&gt;\r\n\r\n&lt;?php while( $gal_query-&gt;have_posts() ) : $gal_query-&gt;the_post(); ?&gt;\r\n\r\n&lt;?php\r\n$photos_num = 0;\r\n$this_post_images =&amp; get_children( array(\r\n''post_parent'' =&gt; get_the_ID(),\r\n''post_type'' =&gt; ''attachment'',\r\n''post_mime_type'' =&gt; ''image''\r\n) );\r\n\r\nif( !empty( $this_post_images ) ) {\r\n// how many photos?\r\n$photos_num = count( $this_post_images );\r\nif( $photos_num &lt; 10 ) $photos_num = ''0'' . $photos_num;\r\n}\r\n?&gt;\r\n\r\n&lt;div id="post-&lt;?php the_ID(); ?&gt;" &lt;?php post_class( ''gallery-wrapper'' ); ?&gt;&gt;&lt;!-- gallery single wrap --&gt;\r\n\r\n&lt;figure class="gallery-last-photo clearfix"&gt;\r\n&lt;a href="&lt;?php the_permalink(); ?&gt;" title="&lt;?php the_title_attribute( array( ''before'' =&gt; ''Permalink to: '', ''after'' =&gt; '''' ) ); ?&gt;"&gt;\r\n&lt;?php the_post_thumbnail(); ?&gt;\r\n&lt;/a&gt;\r\n&lt;/figure&gt;\r\n\r\n&lt;div class="gallery-info"&gt;\r\n&lt;span class="gallery-photos-num"&gt;&lt;?php echo $photos_num; ?&gt;&lt;/span&gt;\r\n&lt;span class="gallery-photos-tag"&gt;&lt;?php echo _x( ''Photos'', ''galleries category page, NN photos'', ''kazaz'' ); ?&gt;&lt;/span&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;div class="gallery-meta"&gt;\r\n&lt;h1 class="gallery-title"&gt;\r\n&lt;a href="&lt;?php the_permalink(); ?&gt;" rel="bookmark" title="&lt;?php the_title_attribute( array( ''before'' =&gt; ''Permalink to: '', ''after'' =&gt; '''' ) ); ?&gt;"&gt;\r\n&lt;?php the_title(); ?&gt;\r\n&lt;/a&gt;\r\n&lt;/h1&gt;\r\n&lt;p class="gallery-description"&gt;\r\n&lt;?php echo wp_trim_excerpt(); ?&gt;\r\n&lt;/p&gt;\r\n&lt;/div&gt;\r\n\r\n&lt;/div&gt;&lt;!-- gallery single wrap end --&gt;\r\n\r\n&lt;?php endwhile; ?&gt;\r\n\r\n&lt;/div&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php k_pagination(); // pagination ?&gt;\r\n\r\n&lt;?php else : ?&gt;\r\n\r\n&lt;div class="row gutter"&gt;&lt;!-- row --&gt;\r\n\r\n&lt;?php get_template_part( ''content'', ''none'' ); ?&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php endif; ?&gt;\r\n\r\n&lt;/div&gt;&lt;!-- inner custom column end --&gt;\r\n\r\n&lt;/div&gt;&lt;!-- doc body wrapper end --&gt;\r\n\r\n&lt;?php\r\n// print sidebar wrappers - open\r\nk_sidebar_head();\r\n\r\n// print sidebar content\r\nget_template_part( ''sidebars/sidebar-galleries'' );\r\n\r\n// print sidebar wrappers - close\r\nk_sidebar_foot();\r\n?&gt;\r\n\r\n&lt;/div&gt;&lt;!-- row end --&gt;\r\n\r\n&lt;?php\r\n// print site footer\r\nget_footer();\r\n?&gt;', 'Archive-Gallery', '', 'inherit', 'closed', 'closed', '', '3449-revision-v1', '', '', '2016-12-30 16:27:29', '2016-12-30 09:27:29', '', 3449, 'http://asiacentre.co.th/other/3449-revision-v1/', 0, 'revision', '', 0),
(3453, 5, '2017-01-06 18:17:04', '2017-01-06 11:17:04', '', 'screen-shot-2017-01-06-at-18-07-42', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2017-01-06-at-18-07-42', '', '', '2017-01-20 17:40:55', '2017-01-20 10:40:55', '', 18, 'http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42.png', 0, 'attachment', 'image/png', 0),
(3454, 5, '2017-01-06 18:23:12', '2017-01-06 11:23:12', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class=" wp-image-3453 aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42.png" alt="screen-shot-2017-01-06-at-18-07-42" width="243" height="228" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n&nbsp;', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-06 18:23:12', '2017-01-06 11:23:12', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3455, 5, '2017-01-06 18:31:08', '2017-01-06 11:31:08', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\n<p style="text-align: justify;"><img class="aligncenter wp-image-3453" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42.png" alt="screen-shot-2017-01-06-at-18-07-42" width="243" height="228" /></p>\n\n<ul style="text-align: justify;">\n 	<li><b>Think-Tank</b></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\n\n<ul style="text-align: justify;">\n 	<li><b>Regional Hub </b></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\n\n<ul style="text-align: justify;">\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\n\n<ul style="text-align: justify;">\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\n<p style="text-align: justify;"><b>People </b></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\n&nbsp;', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-autosave-v1', '', '', '2017-01-06 18:31:08', '2017-01-06 11:31:08', '', 18, 'http://asiacentre.co.th/other/18-autosave-v1/', 0, 'revision', '', 0),
(3456, 5, '2017-01-06 18:33:01', '2017-01-06 11:33:01', '', 'screen-shot-2017-01-06-at-18-07-42', '', 'inherit', 'closed', 'closed', '', 'screen-shot-2017-01-06-at-18-07-42-2', '', '', '2017-01-06 18:33:01', '2017-01-06 11:33:01', '', 0, 'http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png', 0, 'attachment', 'image/png', 0),
(3457, 5, '2017-01-06 18:33:42', '2017-01-06 11:33:42', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n&nbsp;', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-06 18:33:42', '2017-01-06 11:33:42', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3459, 6, '2017-01-10 14:12:09', '2017-01-10 07:12:09', 'This post should display a <a title="Featured Images" href="http://en.support.wordpress.com/featured-images/#setting-a-featured-image" target="_blank">featured image</a>, if the theme <a title="Post Thumbnails" href="http://codex.wordpress.org/Post_Thumbnails" target="_blank">supports it</a>.\n\nNon-square images can provide some unique styling issues.\n\nThis post tests a vertical featured image.', 'Template: Featured Image (Vertical)', '', 'inherit', 'closed', 'closed', '', '1016-autosave-v1', '', '', '2017-01-10 14:12:09', '2017-01-10 07:12:09', '', 1016, 'http://asiacentre.co.th/other/1016-autosave-v1/', 0, 'revision', '', 0),
(3460, 6, '2017-01-10 16:00:46', '2017-01-10 09:00:46', '', 'Direction', '', 'publish', 'closed', 'closed', '', 'direction', '', '', '2017-01-10 16:00:46', '2017-01-10 09:00:46', '', 39, 'http://asiacentre.co.th/other/direction/', 2, 'nav_menu_item', '', 0),
(3461, 6, '2017-01-10 16:05:05', '0000-00-00 00:00:00', '', 'Book', '', 'draft', 'closed', 'closed', '', '', '', '', '2017-01-10 16:05:05', '2017-01-10 09:05:05', '', 0, 'http://asiacentre.co.th/?page_id=3461', 0, 'page', '', 0),
(3462, 6, '2017-01-11 11:10:03', '2017-01-11 04:10:03', ' ', '', '', 'publish', 'closed', 'closed', '', '3462', '', '', '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 0, 'http://asiacentre.co.th/other/3462/', 19, 'nav_menu_item', '', 0),
(3463, 6, '2017-01-11 11:11:17', '2017-01-11 04:11:17', ' ', '', '', 'publish', 'closed', 'closed', '', '3463', '', '', '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 0, 'http://asiacentre.co.th/other/3463/', 20, 'nav_menu_item', '', 0),
(3465, 6, '2017-01-11 11:14:33', '2017-01-11 04:14:33', ' ', '', '', 'publish', 'closed', 'closed', '', '3465', '', '', '2017-01-17 13:10:55', '2017-01-17 06:10:55', '', 0, 'http://asiacentre.co.th/other/3465/', 24, 'nav_menu_item', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3467, 6, '2017-01-11 11:27:14', '2017-01-11 04:27:14', ' ', '', '', 'publish', 'closed', 'closed', '', '3467', '', '', '2017-01-17 13:10:55', '2017-01-17 06:10:55', '', 0, 'http://asiacentre.co.th/other/3467/', 25, 'nav_menu_item', '', 0),
(3468, 6, '2017-01-11 11:27:14', '2017-01-11 04:27:14', '', 'Events', '', 'publish', 'closed', 'closed', '', 'event', '', '', '2017-01-17 13:10:55', '2017-01-17 06:10:55', '', 0, 'http://asiacentre.co.th/other/event/', 23, 'nav_menu_item', '', 0),
(3471, 6, '2017-01-11 11:44:33', '2017-01-11 04:44:33', '', 'Programmes', '', 'publish', 'closed', 'closed', '', 'programmes', '', '', '2017-01-17 13:00:07', '2017-01-17 06:00:07', '', 0, 'http://asiacentre.co.th/other/programmes/', 11, 'nav_menu_item', '', 0),
(3473, 6, '2017-01-11 11:54:36', '2017-01-11 04:54:36', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n[embed]http://asiacentre.co.th/gallery/upr/[/embed]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><img class="alignnone wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="383" height="542" /></a>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'publish', 'closed', 'closed', '', 'human-rights', '', '', '2017-01-20 17:01:48', '2017-01-20 10:01:48', '', 0, 'http://asiacentre.co.th/?page_id=3473', 0, 'page', '', 0),
(3474, 6, '2017-01-11 11:54:36', '2017-01-11 04:54:36', '<h4>Expert Advisory Service</h4>\r\nThe Centre’s experts can provide professional knowledge via speaking engagements as guest lecturers and speakers at academic, civil society and public events and provide advice on specific policy areas. These can include participation at conferences, meetings, media briefings and interviews.\r\n<h4>NGO Service</h4>\r\nWe provide technical assistance and advice to non-governmental organizations and donor agencies supporting the non-profit sector. We seek to facilitate knowledge transfer between experts and civil society practitioners in Asia and the rest of the world.\r\n\r\nThis assistance includes advising in the following key areas: context assessments and political analyses for intervention strategies, communications strategies, grants &amp; loan applications, project monitoring &amp; evaluation, technical writing and documentation.\r\n<h4>Professional Development Services</h4>\r\nWe conduct professional development services on areas such as leadership, advocacy campaigns, strategic planning, online communications and performance management. We can produce course syllabi and training programs based on our client needs. This can also include training of trainers.\r\n\r\nOur trainers and facilitators come from our list of in-house consultants who are selected based on the clients’ training needs. To this end, the Centre’s experts are experienced in imparting knowledge to adult learners. We are experienced in self-directed learning where learners acquire knowledge through problem solving and task oriented exercises.', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-11 11:54:36', '2017-01-11 04:54:36', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3475, 6, '2017-01-11 11:55:19', '2017-01-11 04:55:19', ' ', '', '', 'publish', 'closed', 'closed', '', '3475', '', '', '2017-01-17 13:00:07', '2017-01-17 06:00:07', '', 0, 'http://asiacentre.co.th/other/3475/', 12, 'nav_menu_item', '', 0),
(3476, 6, '2017-01-11 16:43:02', '2017-01-11 09:43:02', '<img class=" wp-image-2863 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/Asia-Centre-Logo-Flat-Color-GA-3-1.png" alt="Asia-Centre-Logo-Flat-Color-GA (3) (1)" width="325" height="134" />\r\n<img class="wp-image-2604 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="306" height="88" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>HUMAN RIGHTS IN SOUTHEAST ASIA: </strong><strong>CIVIL SOCIETY PERSPECTIVES </strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Abstract</strong>\r\n\r\n&nbsp;\r\n\r\nThis book provides a civil society perspective on human rights in Southeast Asia. It features practitioner-author views on their engagement with the protection of human rights in the region through the Universal Periodic Review (UPR) of the United Nations Human Rights Council. Through evidence-based research the practitioner-authors, collectively, identify gaps in human rights reporting and advocacy in the UPR, including on hard issues – such as the right to life, freedom of expression, extra-judicial killings and arbitrary detention - that are sometimes omitted in the current context of the rise of illiberal democracy in the region and elsewhere. The authors point to avenues for effective civil society concertation as the third cycle of the UPR begins in 2017. The practitioner-authors hail from civil society and human rights commissions as well as from academia. The book is based on the human rights programme of Asia Centre.\r\n\r\n&nbsp;\r\n\r\n© Asia Centre and Gerakbudaya Enterprises 2017', 'HUMAN RIGHTS IN SOUTHEAST ASIA:  CIVIL SOCIETY PERSPECTIVES', '', 'publish', 'closed', 'closed', '', 'human-rights-in-southeast-asia-civil-society-perspectives', '', '', '2017-01-11 16:43:33', '2017-01-11 09:43:33', '', 0, 'http://asiacentre.co.th/?p=3476', 0, 'post', '', 0),
(3477, 6, '2017-01-11 16:43:02', '2017-01-11 09:43:02', '<img class=" wp-image-2863 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/Asia-Centre-Logo-Flat-Color-GA-3-1.png" alt="Asia-Centre-Logo-Flat-Color-GA (3) (1)" width="325" height="134" />\r\n<img class="wp-image-2604 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="306" height="88" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>HUMAN RIGHTS IN SOUTHEAST ASIA: </strong><strong>CIVIL SOCIETY PERSPECTIVES </strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Abstract</strong>\r\n\r\n&nbsp;\r\n\r\nThis book provides a civil society perspective on human rights in Southeast Asia. It features practitioner-author views on their engagement with the protection of human rights in the region through the Universal Periodic Review (UPR) of the United Nations Human Rights Council. Through evidence-based research the practitioner-authors, collectively, identify gaps in human rights reporting and advocacy in the UPR, including on hard issues – such as the right to life, freedom of expression, extra-judicial killings and arbitrary detention - that are sometimes omitted in the current context of the rise of illiberal democracy in the region and elsewhere. The authors point to avenues for effective civil society concertation as the third cycle of the UPR begins in 2017. The practitioner-authors hail from civil society and human rights commissions as well as from academia. The book is based on the human rights programme of Asia Centre.\r\n\r\n&nbsp;\r\n\r\n© Asia Centre and Gerakbudaya Enterprises 2017', 'HUMAN RIGHTS IN SOUTHEAST ASIA:  CIVIL SOCIETY PERSPECTIVES', '', 'inherit', 'closed', 'closed', '', '3476-revision-v1', '', '', '2017-01-11 16:43:02', '2017-01-11 09:43:02', '', 3476, 'http://asiacentre.co.th/other/3476-revision-v1/', 0, 'revision', '', 0),
(3478, 6, '2017-01-11 16:43:33', '2017-01-11 09:43:33', '<img class=" wp-image-2863 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2016/09/Asia-Centre-Logo-Flat-Color-GA-3-1.png" alt="Asia-Centre-Logo-Flat-Color-GA (3) (1)" width="325" height="134" />\r\n<img class="wp-image-2604 alignright" src="http://asiacentre.co.th/wp-content/uploads/2016/04/gerak.png" alt="gerak" width="306" height="88" />\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n&nbsp;\r\n\r\n<strong>HUMAN RIGHTS IN SOUTHEAST ASIA: </strong><strong>CIVIL SOCIETY PERSPECTIVES </strong>\r\n\r\n&nbsp;\r\n\r\n<strong>Abstract</strong>\r\n\r\n&nbsp;\r\n\r\nThis book provides a civil society perspective on human rights in Southeast Asia. It features practitioner-author views on their engagement with the protection of human rights in the region through the Universal Periodic Review (UPR) of the United Nations Human Rights Council. Through evidence-based research the practitioner-authors, collectively, identify gaps in human rights reporting and advocacy in the UPR, including on hard issues – such as the right to life, freedom of expression, extra-judicial killings and arbitrary detention - that are sometimes omitted in the current context of the rise of illiberal democracy in the region and elsewhere. The authors point to avenues for effective civil society concertation as the third cycle of the UPR begins in 2017. The practitioner-authors hail from civil society and human rights commissions as well as from academia. The book is based on the human rights programme of Asia Centre.\r\n\r\n&nbsp;\r\n\r\n© Asia Centre and Gerakbudaya Enterprises 2017', 'HUMAN RIGHTS IN SOUTHEAST ASIA:  CIVIL SOCIETY PERSPECTIVES', '', 'inherit', 'closed', 'closed', '', '3476-revision-v1', '', '', '2017-01-11 16:43:33', '2017-01-11 09:43:33', '', 3476, 'http://asiacentre.co.th/other/3476-revision-v1/', 0, 'revision', '', 0),
(3480, 5, '2017-01-17 10:17:35', '2017-01-17 03:17:35', '', 'nhri-conference-call-deadline-extended', '', 'inherit', 'closed', 'closed', '', 'nhri-conference-call-deadline-extended', '', '', '2017-01-20 17:01:48', '2017-01-20 10:01:48', '', 3473, 'http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg', 1, 'attachment', 'image/jpeg', 0),
(3481, 6, '2017-01-20 17:00:16', '2017-01-20 10:00:16', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\n\n&nbsp;\n\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\n\n&nbsp;\n\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\n\n&nbsp;\n\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\n\n&nbsp;\n<ul>\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\n</ul>\n[embed]http://asiacentre.co.th/gallery/upr/[/embed]\n\n&nbsp;\n<ul>\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\n</ul>\n<img class="alignnone wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="383" height="542" />\n<ul>\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\n</ul>\n&nbsp;\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-autosave-v1', '', '', '2017-01-20 17:00:16', '2017-01-20 10:00:16', '', 3473, 'http://asiacentre.co.th/other/3473-autosave-v1/', 0, 'revision', '', 0),
(3482, 6, '2017-01-17 12:50:10', '2017-01-17 05:50:10', '<h1><b>Human Rights Programme </b></h1>\r\n<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><i><span style="font-weight: 400;">UPR</span></i></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-17 12:50:10', '2017-01-17 05:50:10', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3483, 6, '2017-01-17 12:51:08', '2017-01-17 05:51:08', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><i><span style="font-weight: 400;">UPR</span></i></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-17 12:51:08', '2017-01-17 05:51:08', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3484, 6, '2017-01-17 12:51:44', '2017-01-17 05:51:44', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><i><span style="font-weight: 400;">UPR</span></i></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-17 12:51:44', '2017-01-17 05:51:44', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3485, 6, '2017-01-17 12:58:21', '2017-01-17 05:58:21', '<span style="font-weight: 400;">The education programme offers specially designed curricula for students to take part in academic, cultural and professional exchanges abroad. It includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. Asia Centre aims to equip students with a holistic overview of the world and to better prepare them for global citizenship.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Structure</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The programme offers specialised courses within a suite of programmes on </span><span style="font-weight: 400;">Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others.</span><span style="font-weight: 400;"> Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Teaching Methods</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">Asia Centre employs a mixture of lectures, discussions and practical applications, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Materials</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/media-communications-workshop-2016/" target="_blank"><i><span style="font-weight: 400;">ULAB partnership</span></i></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/asia-centre-partners-stenden-university-to-teach-asean-studies/" target="_blank"><em><span style="font-weight: 400;">Stenden partnership</span></em></a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;', 'Education Programme', '', 'publish', 'closed', 'closed', '', 'education-programme', '', '', '2017-01-19 12:25:59', '2017-01-19 05:25:59', '', 0, 'http://asiacentre.co.th/?page_id=3485', 0, 'page', '', 0),
(3486, 6, '2017-01-17 12:58:21', '2017-01-17 05:58:21', '<span style="font-weight: 400;">The education programme offers specially designed curricula for students to take part in academic, cultural and professional exchanges abroad. It includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. Asia Centre aims to equip students with a holistic overview of the world and to better prepare them for global citizenship.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Structure</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The programme offers specialised courses within a suite of programmes on </span><span style="font-weight: 400;">Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others.</span><span style="font-weight: 400;"> Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Teaching Methods</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">Asia Centre employs a mixture of lectures, discussions and practical applications, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Materials</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/media-communications-workshop-2016/" target="_blank"><i><span style="font-weight: 400;">ULAB partnership</span></i></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Stenden partnership</span></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;', 'Education Programme', '', 'inherit', 'closed', 'closed', '', '3485-revision-v1', '', '', '2017-01-17 12:58:21', '2017-01-17 05:58:21', '', 3485, 'http://asiacentre.co.th/other/3485-revision-v1/', 0, 'revision', '', 0),
(3487, 6, '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 'Education', '', 'publish', 'closed', 'closed', '', 'education', '', '', '2017-01-17 13:10:54', '2017-01-17 06:10:54', '', 0, 'http://asiacentre.co.th/other/education/', 13, 'nav_menu_item', '', 0),
(3488, 6, '2017-01-17 13:14:11', '2017-01-17 06:14:11', '<p style="text-align: left;"><strong>Call for Partnerships</strong></p>\r\n<p style="text-align: left;">The Centre invites expressions of interest for partnerships on its <a href="http://asiacentre.co.th/human-rights/" target="_blank">human rights</a> and <a href="http://asiacentre.co.th/education-programme/" target="_blank">education programmes.</a></p>\r\n<p style="text-align: left;">Asia Centre seeks to connect peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector. The Centre <a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank">currently partners</a> with a variety of institutions.</p>\r\n<p style="text-align: left;">Prospective partners, upon agreeing to collaborate on a project or activity, shall enter into a formal relationship following the Centre''s partnership policy.</p>\r\n<p style="text-align: left;">Submit your expression of interest and/or proposals to:  contact@asiacentre.co.th</p>', 'Partnerships', '', 'publish', 'closed', 'closed', '', 'parnerships', '', '', '2017-01-17 13:36:27', '2017-01-17 06:36:27', '', 0, 'http://asiacentre.co.th/?page_id=3488', 0, 'page', '', 0),
(3489, 6, '2017-01-17 13:14:11', '2017-01-17 06:14:11', '', 'Partnerships', '', 'inherit', 'closed', 'closed', '', '3488-revision-v1', '', '', '2017-01-17 13:14:11', '2017-01-17 06:14:11', '', 3488, 'http://asiacentre.co.th/other/3488-revision-v1/', 0, 'revision', '', 0),
(3490, 6, '2017-01-17 13:14:56', '2017-01-17 06:14:56', ' ', '', '', 'publish', 'closed', 'closed', '', '3490', '', '', '2017-01-17 13:14:56', '2017-01-17 06:14:56', '', 0, 'http://asiacentre.co.th/other/3490/', 29, 'nav_menu_item', '', 0),
(3491, 6, '2017-01-17 13:35:21', '2017-01-17 06:35:21', '<p style="text-align: left;"><strong>Call for Partnerships</strong></p>\n<p style="text-align: left;">The Centre invites expressions of interest for partnerships on its <a href="http://asiacentre.co.th/human-rights/" target="_blank">human rights</a> and <a href="http://asiacentre.co.th/education-programme/" target="_blank">education programmes.</a></p>\n<p style="text-align: left;">Asia Centre seeks to connect peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector. The Centre <a href="http://asiacentre.co.th/asia-centre/partners/">currently partners</a> with a variety of institutions.</p>\n<p style="text-align: left;">Prospective partners, upon agreeing to collaborate on a project or activity, shall enter into a formal relationship following the Centre''s partnership policy.</p>\n<p style="text-align: left;">Submit your expression of interest and/or proposals to:  contact@asiacentre.co.th</p>', 'Partnerships', '', 'inherit', 'closed', 'closed', '', '3488-autosave-v1', '', '', '2017-01-17 13:35:21', '2017-01-17 06:35:21', '', 3488, 'http://asiacentre.co.th/other/3488-autosave-v1/', 0, 'revision', '', 0),
(3492, 6, '2017-01-17 13:31:51', '2017-01-17 06:31:51', '<p style="text-align: left;"><strong>Call for Partnerships</strong></p>\r\n<p style="text-align: left;">The Centre invites expressions of interest for partnerships on its <a href="http://asiacentre.co.th/human-rights/" target="_blank">human rights</a> and <a href="http://asiacentre.co.th/education-programme/" target="_blank">education programmes.</a></p>\r\n<p style="text-align: left;">Asia Centre seeks to connect peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector. We</p>\r\n<p style="text-align: left;">Prospective partners, upon agreeing to collaborate on a project or activity, shall enter into a formal relationship following the Centre''s partnership policy.</p>\r\n<p style="text-align: left;"></p>\r\n<p style="text-align: left;">Submit your expression of interest and/or proposals to:  contact@asiacentre.co.th</p>\r\n<p style="text-align: left;"></p>', 'Partnerships', '', 'inherit', 'closed', 'closed', '', '3488-revision-v1', '', '', '2017-01-17 13:31:51', '2017-01-17 06:31:51', '', 3488, 'http://asiacentre.co.th/other/3488-revision-v1/', 0, 'revision', '', 0),
(3493, 6, '2017-01-17 13:35:33', '2017-01-17 06:35:33', '<p style="text-align: left;"><strong>Call for Partnerships</strong></p>\r\n<p style="text-align: left;">The Centre invites expressions of interest for partnerships on its <a href="http://asiacentre.co.th/human-rights/" target="_blank">human rights</a> and <a href="http://asiacentre.co.th/education-programme/" target="_blank">education programmes.</a></p>\r\n<p style="text-align: left;">Asia Centre seeks to connect peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector. The Centre <a href="http://asiacentre.co.th/asia-centre/partners/">currently partners</a> with a variety of institutions.</p>\r\n<p style="text-align: left;">Prospective partners, upon agreeing to collaborate on a project or activity, shall enter into a formal relationship following the Centre''s partnership policy.</p>\r\n<p style="text-align: left;">Submit your expression of interest and/or proposals to:  contact@asiacentre.co.th</p>', 'Partnerships', '', 'inherit', 'closed', 'closed', '', '3488-revision-v1', '', '', '2017-01-17 13:35:33', '2017-01-17 06:35:33', '', 3488, 'http://asiacentre.co.th/other/3488-revision-v1/', 0, 'revision', '', 0),
(3494, 6, '2017-01-17 13:36:27', '2017-01-17 06:36:27', '<p style="text-align: left;"><strong>Call for Partnerships</strong></p>\r\n<p style="text-align: left;">The Centre invites expressions of interest for partnerships on its <a href="http://asiacentre.co.th/human-rights/" target="_blank">human rights</a> and <a href="http://asiacentre.co.th/education-programme/" target="_blank">education programmes.</a></p>\r\n<p style="text-align: left;">Asia Centre seeks to connect peoples and regions through collaborative partnerships with educational institutions, international organizations, non-profit organizations and other institution in the private and public sector. The Centre <a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank">currently partners</a> with a variety of institutions.</p>\r\n<p style="text-align: left;">Prospective partners, upon agreeing to collaborate on a project or activity, shall enter into a formal relationship following the Centre''s partnership policy.</p>\r\n<p style="text-align: left;">Submit your expression of interest and/or proposals to:  contact@asiacentre.co.th</p>', 'Partnerships', '', 'inherit', 'closed', 'closed', '', '3488-revision-v1', '', '', '2017-01-17 13:36:27', '2017-01-17 06:36:27', '', 3488, 'http://asiacentre.co.th/other/3488-revision-v1/', 0, 'revision', '', 0),
(3495, 6, '2017-01-17 17:30:15', '2017-01-17 10:30:15', 'Asia Centre is conveniently located at the 17<sup>th</sup> floor of Phayathai Plaza Building off the BTS\r\nPhayathai and Airport Link stations in Central Bangkok.\r\n<ul>\r\n 	<li>Take either the BTS or Airport Link and stop at Phayathai station</li>\r\n 	<li>Go out through Exit 1 and walk down the stairs</li>\r\n 	<li>At the bottom of the stairs turn left and walk 50m along the pavement towards Rachatewi BTS</li>\r\n 	<li>Phayathai Plaza Building will be on your right, enter the building and walk towards the back</li>\r\n 	<li>At the back towards the right, take the elevators serving floors 17-27</li>\r\n 	<li>Alight on the 17<sup>th</sup> floor and turn left, you will arrive at the Asia Centre</li>\r\n</ul>\r\n<strong>วิธีการเดินทาง</strong>\r\n\r\nAsia Centre ตั้งอยู่ในตึกพญาไท พลาซ่า ชั้น 17 ติดบีทีเอส และ แอร์พอร์ต ลิงค์ สถานีพญาไท\r\n<ul>\r\n 	<li>ลงที่ สถานี พญาไท ทางออก 1</li>\r\n 	<li>ลงบันได และเดินย้อนขึ้นมาทางซ้ายมือ (ไปพารากอน/ บีทีเอสราชเทวี)</li>\r\n 	<li>ประมาณ 20 เมตร ก็จะเห็นตึกพญาไท พลาซ่า อยู่ทางขวามือ</li>\r\n 	<li>เดินเข้าไปในตึก ผ่านธนาคารกรุงเทพ จนถึงลิฟต์ด้านใน ให้ใช้ลิฟต์แถวกลาง เป็นลิฟต์ที่ใช้สำหรับชั้น <span style="color: #ff6600;"><strong>17-27</strong></span></li>\r\n 	<li>กดลิฟต์ชั้น 17 ซึ่งจอดเป็นชั้นแรก</li>\r\n 	<li>ออกจากลิฟต์ชั้น 17 เลี้ยวซ้าย ก็จะถึง <strong><a class="profileLink" href="https://www.facebook.com/asiacentre.co.th/" data-hovercard="/ajax/hovercard/page.php?id=284220758263826">ASIA Centre</a> </strong>อยู่ในตำแหน่งที่ 2 ทางด้านซ้ายมือ</li>\r\n</ul>\r\n<div class="text_exposed_show"></div>\r\n<img class="alignnone size-medium wp-image-2541" src="http://asiacentre.co.th/wp-content/uploads/2016/03/Direction-to-Asia-Centre-1-1140x530.jpg" alt="Direction to Asia Centre" width="1140" height="530" />\r\n\r\n<strong>Parking</strong>\r\n\r\nHourly parking is available at Phayathai Plaza Building. Visitor parking are at the free gear lots on every floor or regular lots at the 10 floor. Visitors can enjoy two hour free parking with the Asia Centre stamp. Another option is to park at Siam Paragon or Central World and take the BTS to Phayathai station.\r\n\r\nParking Rates:\r\n1) Visitors are entitled to 15 min of free parking\r\n2) Asia Centre 1 stamp entitles you to 2 hours free parking, thereafter 30 baht/hour\r\n3) Extended parking (2 stamps)\r\nDay Rate : 100 bath for parking between 07:00-19:00 PM\r\nNight Rate: 60 baht for parking between 19:01-06.59 PM.\r\nSaturday &amp; Sunday Rate: 50 baht for 24 hours\r\n\r\nPlease retain your parking coupon as you will need to get stamps from Asia Centre to enjoy these parking rates.\r\n\r\nที่จอดรถ\r\n- จอดรถในช่องขวางและปลดเกียร์ว่างได้ทุกชั้น\r\n- จอดรถในช่องจอดรถได้ในชั้น 10\r\n\r\nอัตราค่าที่จอดรถ<span class="text_exposed_show">\r\n1. รถผู้มาติดต่อ จอดฟรี 15 นาทีแรก\r\n2. มี 1 ตราประทับ จอดฟรี 2 ชั่วโมงแรก ต่อไปคิด 30 บาท/ชั่วโมง\r\n3. มี 2 ตราประทับ\r\nกลางวัน 07:00-19:00 น. เหมาจ่าย 100 บาท\r\nกลางคืน 19:01-06.59 น. เหมาจ่าย 60 บาท\r\nเสาร์, อาทิตย์ เหมาจ่าย 24 ชั่วโมง 50 บาท</span>\r\n\r\n<img class="alignnone size-medium wp-image-2217" src="http://asiacentre.co.th/wp-content/uploads/2015/09/Car-Park-PP-1140x420.jpg" alt="Car Park PP" width="1140" height="420" />\r\n\r\n<strong>Please refer to the map below for a location overview.</strong>\r\n\r\n<img class="alignnone size-full wp-image-3038" src="http://asiacentre.co.th/wp-content/uploads/2016/10/Asia-Centre-Map-update-1.jpg" alt="asia-centre-map-update" width="1063" height="650" />\r\n\r\n&nbsp;\r\n\r\n<iframe style="border: 0;" src="https://www.google.com/maps/embed?pb=!1m14!1m8!1m3!1d15501.49714848407!2d100.532498!3d13.756288!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xc54d13b8a0284a40!2sASIA+Centre+Co.%2C+Ltd.!5e0!3m2!1sen!2sth!4v1475804628679" width="600" height="450" frameborder="0" allowfullscreen="allowfullscreen"></iframe>', 'Direction', '', 'inherit', 'closed', 'closed', '', '2064-revision-v1', '', '', '2017-01-17 17:30:15', '2017-01-17 10:30:15', '', 2064, 'http://asiacentre.co.th/other/2064-revision-v1/', 0, 'revision', '', 0),
(3496, 6, '2017-01-18 10:11:13', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2017-01-18 10:11:13', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3496', 0, 'post', '', 0),
(3497, 6, '2017-01-18 13:47:32', '2017-01-18 06:47:32', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-18 13:47:32', '2017-01-18 06:47:32', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3498, 5, '2017-01-19 12:21:45', '2017-01-19 05:21:45', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre delivered a series of lectures on ASEAN and its international relations as the teaching partner of Stenden University’s, Thailand campus.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3499 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/stenden.png" alt="stenden" width="149" height="149" />Known as</span><a href="https://stenden.com/en/about-stenden/" target="_blank"><i><span style="font-weight: 400;"> Stenden University of Applied Sciences</span></i></a><span style="font-weight: 400;">, the Dutch university was created from the merger of CHN University Netherlands and Drenthe University, two premier institutions of higher education in the northern part of the Netherlands. The Thailand campus is part of Stenden’s overseas branches in South Africa, Qatar and Indonesia.</span></p>\r\n<p style="text-align: justify;">The Asian Centre lectures complemented Stenden University’s ASEAN studies module in Thailand\r\nand were designed to provide a diverse class of international relations and business students with an introduction and insight to the regional association.</p>\r\n<p style="text-align: justify;">The delivery of lecturers was part of Asia Centre’s<img class="alignright wp-image-3500" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16010480_10157961979360307_1873655252_o-600x450.jpg" alt="16010480_10157961979360307_1873655252_o" width="287" height="215" /> education programme through which it partners with higher education institutions and think tanks to provide teaching services. These include specially designed curricula and tailored courses on a range of topics, from international relations to media and business and entrepreneurship.</p>\r\n<p style="text-align: justify;">In total 3 lectures were delivered for Stenden and included in-class discussions, which allowed students to clarify their understanding of the issues and to attempt to critically analyse ASEAN’s security and human rights frameworks.</p>\r\n<p style="text-align: justify;">Asia Centre and Stenden University are currently exploring further opportunities for educational partnership.</p>\r\n&nbsp;', 'Asia Centre partners with Stenden University to teach ASEAN Studies', '', 'publish', 'closed', 'closed', '', 'asia-centre-partners-stenden-university-to-teach-asean-studies', '', '', '2017-01-19 16:34:48', '2017-01-19 09:34:48', '', 0, 'http://asiacentre.co.th/?p=3498', 0, 'post', '', 0),
(3499, 5, '2017-01-19 12:18:04', '2017-01-19 05:18:04', '', 'stenden', '', 'inherit', 'closed', 'closed', '', 'stenden', '', '', '2017-01-19 16:34:48', '2017-01-19 09:34:48', '', 3498, 'http://asiacentre.co.th/wp-content/uploads/2017/01/stenden.png', 0, 'attachment', 'image/png', 0),
(3500, 5, '2017-01-19 12:19:59', '2017-01-19 05:19:59', '', '16010480_10157961979360307_1873655252_o', '', 'inherit', 'closed', 'closed', '', '16010480_10157961979360307_1873655252_o', '', '', '2017-01-19 16:34:49', '2017-01-19 09:34:49', '', 3498, 'http://asiacentre.co.th/wp-content/uploads/2017/01/16010480_10157961979360307_1873655252_o.jpg', 1, 'attachment', 'image/jpeg', 0),
(3501, 5, '2017-01-19 12:20:45', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2017-01-19 12:20:45', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3501', 0, 'post', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3502, 5, '2017-01-19 12:21:45', '2017-01-19 05:21:45', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre delivered a series of lectures on ASEAN and its international relations as the teaching partner of Stenden University’s, Thailand campus. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3499 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/stenden.png" alt="stenden" width="149" height="149" />Known as</span><a href="https://stenden.com/en/about-stenden/" target="_blank"><i><span style="font-weight: 400;"> Stenden University of Applied Sciences</span></i></a><span style="font-weight: 400;">, the Dutch university was created from the merger of CHN University Netherlands and Drenthe University, two premier institutions of higher education in the northern part of the Netherlands. The Thailand campus is part of Stenden’s overseas branches in South Africa, Qatar and Indonesia.</span></p>\r\n<p style="text-align: justify;">The Asian Centre lectures complemented Stenden University’s ASEAN studies module in Thailand\r\nand were designed to provide a diverse class of international relations and business students with an introduction and insight to the regional association.</p>\r\n<p style="text-align: justify;">The delivery of lecturers was part of Asia Centre’s education programme through which it partners<img class="alignright  wp-image-3500" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16010480_10157961979360307_1873655252_o-600x450.jpg" alt="16010480_10157961979360307_1873655252_o" width="287" height="215" /> with higher education institutions and think tanks to provide teaching services. These include specially designed curricula and tailored courses on a range of topics, from international relations to media and business and entrepreneurship.</p>\r\n<p style="text-align: justify;">In total 3 lectures were delivered for Stenden and included in-class discussions, which allowed students to clarify their understanding of the issues and to attempt to critically analyse ASEAN’s security and human rights frameworks.</p>\r\n<p style="text-align: justify;">Asia Centre and Stenden University are currently exploring further opportunities for educational partnership.</p>\r\n&nbsp;', 'Asia Centre partners Stenden University to teach ASEAN Studies', '', 'inherit', 'closed', 'closed', '', '3498-revision-v1', '', '', '2017-01-19 12:21:45', '2017-01-19 05:21:45', '', 3498, 'http://asiacentre.co.th/other/3498-revision-v1/', 0, 'revision', '', 0),
(3503, 5, '2017-01-19 12:23:14', '2017-01-19 05:23:14', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre delivered a series of lectures on ASEAN and its international relations as the teaching partner of Stenden University’s, Thailand campus.</span></p>\n<p style="text-align: justify;"></p>\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3499 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/stenden.png" alt="stenden" width="149" height="149" />Known as</span><a href="https://stenden.com/en/about-stenden/" target="_blank"><i><span style="font-weight: 400;"> Stenden University of Applied Sciences</span></i></a><span style="font-weight: 400;">, the Dutch university was created from the merger of CHN University Netherlands and Drenthe University, two premier institutions of higher education in the northern part of the Netherlands. The Thailand campus is part of Stenden’s overseas branches in South Africa, Qatar and Indonesia.</span></p>\n<p style="text-align: justify;"></p>\n<p style="text-align: justify;">The Asian Centre lectures complemented Stenden University’s ASEAN studies module in Thailand\nand were designed to provide a diverse class of international relations and business students with an introduction and insight to the regional association.</p>\n<p style="text-align: justify;"></p>\n<p style="text-align: justify;">The delivery of lecturers was part of Asia Centre’s<img class="alignright wp-image-3500" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16010480_10157961979360307_1873655252_o-600x450.jpg" alt="16010480_10157961979360307_1873655252_o" width="287" height="215" /> education programme through which it partners with higher education institutions and think tanks to provide teaching services. These include specially designed curricula and tailored courses on a range of topics, from international relations to media and business and entrepreneurship.</p>\n<p style="text-align: justify;"></p>\n<p style="text-align: justify;">In total 3 lectures were delivered for Stenden and included in-class discussions, which allowed students to clarify their understanding of the issues and to attempt to critically analyse ASEAN’s security and human rights frameworks.</p>\n<p style="text-align: justify;">Asia Centre and Stenden University are currently exploring further opportunities for educational partnership.</p>\n&nbsp;', 'Asia Centre partners Stenden University to teach ASEAN Studies', '', 'inherit', 'closed', 'closed', '', '3498-autosave-v1', '', '', '2017-01-19 12:23:14', '2017-01-19 05:23:14', '', 3498, 'http://asiacentre.co.th/other/3498-autosave-v1/', 0, 'revision', '', 0),
(3504, 5, '2017-01-19 12:23:20', '2017-01-19 05:23:20', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre delivered a series of lectures on ASEAN and its international relations as the teaching partner of Stenden University’s, Thailand campus.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3499 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/stenden.png" alt="stenden" width="149" height="149" />Known as</span><a href="https://stenden.com/en/about-stenden/" target="_blank"><i><span style="font-weight: 400;"> Stenden University of Applied Sciences</span></i></a><span style="font-weight: 400;">, the Dutch university was created from the merger of CHN University Netherlands and Drenthe University, two premier institutions of higher education in the northern part of the Netherlands. The Thailand campus is part of Stenden’s overseas branches in South Africa, Qatar and Indonesia.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">The Asian Centre lectures complemented Stenden University’s ASEAN studies module in Thailand\r\nand were designed to provide a diverse class of international relations and business students with an introduction and insight to the regional association.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">The delivery of lecturers was part of Asia Centre’s<img class="alignright wp-image-3500" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16010480_10157961979360307_1873655252_o-600x450.jpg" alt="16010480_10157961979360307_1873655252_o" width="287" height="215" /> education programme through which it partners with higher education institutions and think tanks to provide teaching services. These include specially designed curricula and tailored courses on a range of topics, from international relations to media and business and entrepreneurship.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">In total 3 lectures were delivered for Stenden and included in-class discussions, which allowed students to clarify their understanding of the issues and to attempt to critically analyse ASEAN’s security and human rights frameworks.</p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">Asia Centre and Stenden University are currently exploring further opportunities for educational partnership.</p>\r\n&nbsp;', 'Asia Centre partners Stenden University to teach ASEAN Studies', '', 'inherit', 'closed', 'closed', '', '3498-revision-v1', '', '', '2017-01-19 12:23:20', '2017-01-19 05:23:20', '', 3498, 'http://asiacentre.co.th/other/3498-revision-v1/', 0, 'revision', '', 0),
(3505, 5, '2017-01-19 12:24:40', '2017-01-19 05:24:40', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre delivered a series of lectures on ASEAN and its international relations as the teaching partner of Stenden University’s, Thailand campus.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3499 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/stenden.png" alt="stenden" width="149" height="149" />Known as</span><a href="https://stenden.com/en/about-stenden/" target="_blank"><i><span style="font-weight: 400;"> Stenden University of Applied Sciences</span></i></a><span style="font-weight: 400;">, the Dutch university was created from the merger of CHN University Netherlands and Drenthe University, two premier institutions of higher education in the northern part of the Netherlands. The Thailand campus is part of Stenden’s overseas branches in South Africa, Qatar and Indonesia.</span></p>\r\n<p style="text-align: justify;">The Asian Centre lectures complemented Stenden University’s ASEAN studies module in Thailand\r\nand were designed to provide a diverse class of international relations and business students with an introduction and insight to the regional association.</p>\r\n<p style="text-align: justify;">The delivery of lecturers was part of Asia Centre’s<img class="alignright wp-image-3500" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16010480_10157961979360307_1873655252_o-600x450.jpg" alt="16010480_10157961979360307_1873655252_o" width="287" height="215" /> education programme through which it partners with higher education institutions and think tanks to provide teaching services. These include specially designed curricula and tailored courses on a range of topics, from international relations to media and business and entrepreneurship.</p>\r\n<p style="text-align: justify;">In total 3 lectures were delivered for Stenden and included in-class discussions, which allowed students to clarify their understanding of the issues and to attempt to critically analyse ASEAN’s security and human rights frameworks.</p>\r\n<p style="text-align: justify;">Asia Centre and Stenden University are currently exploring further opportunities for educational partnership.</p>\r\n&nbsp;', 'Asia Centre partners Stenden University to teach ASEAN Studies', '', 'inherit', 'closed', 'closed', '', '3498-revision-v1', '', '', '2017-01-19 12:24:40', '2017-01-19 05:24:40', '', 3498, 'http://asiacentre.co.th/other/3498-revision-v1/', 0, 'revision', '', 0),
(3506, 5, '2017-01-19 12:25:59', '2017-01-19 05:25:59', '<span style="font-weight: 400;">The education programme offers specially designed curricula for students to take part in academic, cultural and professional exchanges abroad. It includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. Asia Centre aims to equip students with a holistic overview of the world and to better prepare them for global citizenship.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Structure</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The programme offers specialised courses within a suite of programmes on </span><span style="font-weight: 400;">Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others.</span><span style="font-weight: 400;"> Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Teaching Methods</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">Asia Centre employs a mixture of lectures, discussions and practical applications, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Materials</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/media-communications-workshop-2016/" target="_blank"><i><span style="font-weight: 400;">ULAB partnership</span></i></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/asia-centre-partners-stenden-university-to-teach-asean-studies/" target="_blank"><em><span style="font-weight: 400;">Stenden partnership</span></em></a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;', 'Education Programme', '', 'inherit', 'closed', 'closed', '', '3485-revision-v1', '', '', '2017-01-19 12:25:59', '2017-01-19 05:25:59', '', 3485, 'http://asiacentre.co.th/other/3485-revision-v1/', 0, 'revision', '', 0),
(3507, 5, '2017-01-19 12:26:03', '2017-01-19 05:26:03', '<span style="font-weight: 400;">The education programme offers specially designed curricula for students to take part in academic, cultural and professional exchanges abroad. It includes in-class instruction, educational trips to local universities as well as site visits to professional and community establishments. Asia Centre aims to equip students with a holistic overview of the world and to better prepare them for global citizenship.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Structure</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The programme offers specialised courses within a suite of programmes on </span><span style="font-weight: 400;">Asian culture and international studies, business and entrepreneurship, development and the nonprofit sector, media and communications and others.</span><span style="font-weight: 400;"> Individual courses within the programmes can be designed to meet the specific needs of our clients. Courses can be structured as credit-bearing courses to meet the transferability of credit and the curriculum requirements of students’ home institutions. Specialised courses can also be run as non-credit bearing courses. Each programme typically can run for between 1 to 4 weeks. Courses are run on-demand.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Teaching Methods</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">Asia Centre employs a mixture of lectures, discussions and practical applications, facilitated by noted academics and leading practitioners. Most of the instruction and advising will take place on-site at the Asia Centre’s facilities. This will be complemented by guest lectures at selected Bangkok-based universities, professional visits and experiential learning trips. Students will be given the opportunity to apply the knowledge they gain through practical exercises, group work and assessments.</span>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">Programme Materials</span></li>\r\n</ul>\r\n<span style="font-weight: 400;">The course outline will be delivered to students via email in advance of their arrival. Asia Centre will also provide e-learning material in the form of preparatory readings and notes, to give students an introduction and background to the topics that will be covered. We will also provide a supplementary reading list for students who wish to do some independent study on the topics covered in the course outline. The remaining course material such as copies of teaching presentations, handouts and worksheets will be given out at the start of the course. Students will be encouraged to take their own notes and to actively engage in class discussions and activities.</span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/media-communications-workshop-2016/" target="_blank"><i><span style="font-weight: 400;">ULAB partnership</span></i></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/asia-centre-partners-stenden-university-to-teach-asean-studies/" target="_blank"><em><span style="font-weight: 400;">Stenden partnership</span></em></a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;', 'Education Programme', '', 'inherit', 'closed', 'closed', '', '3485-autosave-v1', '', '', '2017-01-19 12:26:03', '2017-01-19 05:26:03', '', 3485, 'http://asiacentre.co.th/other/3485-autosave-v1/', 0, 'revision', '', 0),
(3508, 5, '2017-01-19 13:49:23', '0000-00-00 00:00:00', '', 'Auto Draft', '', 'auto-draft', 'closed', 'closed', '', '', '', '', '2017-01-19 13:49:23', '0000-00-00 00:00:00', '', 0, 'http://asiacentre.co.th/?p=3508', 0, 'post', '', 0),
(3509, 5, '2017-01-19 14:04:57', '2017-01-19 07:04:57', '<p style="text-align: justify;"><span style="font-weight: 400;">The Benedict Anderson 1st Anniversary Memorial Roundtable was a tribute to the life and legacy\r\nof the late professor. Centring on the topic Nationalism, Citizenship and Statelessness: Current Issues and Developments in Asia, the discussion attracted an audience of some 65 people, and featured a panel of diverse expertise. </span><span style="font-weight: 400;">This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016, and will be an annual feature in the Asia Centre calendar.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3513 alignright" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16143015_1422420567777167_3257024904827770099_n-600x450.jpg" alt="16143015_1422420567777167_3257024904827770099_n" width="319" height="239" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Professor Kenneth Christie of Royal Roads University in British Columbia, Canada, and an expert on peace, development and security, provided an overview of Anderson’s concept of “imagined communities”.  The point was made that the nation-state and nationalism are modern constructions. Citizenship entailed a sense of shared community among diverse peoples with common values and rights.  The construction of shared communities was a global phenomenon as </span><span style="font-weight: 400;">Anderson sought to show in his comparisons of nationalist experiments around the world.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3511" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16174390_1422420874443803_8317045771845445222_n-600x450.jpg" alt="16174390_1422420874443803_8317045771845445222_n" width="314" height="235" />Ms Chontida Auikool, a lecturer from Thammasat University’s ASEAN-China programme provided insight into the Indonesian Chinese community’s struggle for inclusion and integration, and how anti-Chinese sentiment plays out in contemporary developments.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Maritime nomadic communities in the region who face inter-generational statelessness are often rendered invisible according to Asia Pacific Refugee Rights Network (APRRN) Senior Programme Officer Ms. Helen Brunt. Using a case study of the communities in the Sulu Zone, she argued that migration flows in the region predate the development of nation states, a legacy that contributes to statelessness. Their lack of documentation and being labelled ‘illegal migrants’ condemns them to continued discrimination. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nDr. Kevin Downey, a lecturer at Thammasat University and expert on political development, identity, civil society, and democratization in South and Southeast Asia discussed the lack of causal explanations for negative views on immigrants, ‘the other side of statelessness’. He went on to offer a hypothesis premised on the notion of insecurity and precarity in the era of globalisation, which features many dislocations and rising economic inequality. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3515 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/15977588_1422421147777109_1951656290648111029_n-600x450.jpg" alt="15977588_1422421147777109_1951656290648111029_n" width="323" height="242" />In the question and answer period moderated by Asia Centre’s Dr. Robin Ramcharan, potential flashpoints were mentioned. The two that were highlighted are: Rakhine State in Myanmar and the rise of intolerance in Indonesia. These are areas to monitor going forward, despite progress in democratizing both countries.</span></p>\r\n<p style="text-align: justify;"><b>A Life Beyond Boundaries</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The event also saw the Bangkok launch of Anderson’s memoir <img class="alignright wp-image-3516" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16144061_10157986411310307_943290719_n-360x480.jpg" alt="16144061_10157986411310307_943290719_n" width="195" height="260" /></span><i><span style="font-weight: 400;">A Life Beyond Boundaries</span></i><span style="font-weight: 400;">. Anderson defied his contemporaries by "globalizing" the study of nationalism and engaging in comparisons of seemingly disparate nation-states. In this work he also critically assesses the nation-state as a  unit of analysis, noting that people globally formed communities around a great variety of interests that transcended boundaries and nations. A limited number of copies is available at Asia Centre for 450 Baht, if you are interested in getting a copy you can drop us an email at info@asiacentre.co.th.</span></p>\r\n<p style="text-align: justify;">You can view images from the event <a href="https://www.facebook.com/pg/asiacentre.co.th/photos/?tab=album&amp;album_id=1422427541109803" target="_blank">here.</a></p>', 'Benedict Anderson 1st Anniversary Memorial Roundtable', '', 'publish', 'closed', 'closed', '', 'benedict-anderson-1st-anniversary-memorial-roundtable', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 0, 'http://asiacentre.co.th/?p=3509', 0, 'post', '', 0),
(3510, 5, '2017-01-19 14:01:21', '2017-01-19 07:01:21', '', '16174393_1422421001110457_7479200004431334526_n', '', 'inherit', 'closed', 'closed', '', '16174393_1422421001110457_7479200004431334526_n', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 3509, 'http://asiacentre.co.th/wp-content/uploads/2017/01/16174393_1422421001110457_7479200004431334526_n.jpg', 0, 'attachment', 'image/jpeg', 0),
(3511, 5, '2017-01-19 14:01:22', '2017-01-19 07:01:22', '', '16174390_1422420874443803_8317045771845445222_n', '', 'inherit', 'closed', 'closed', '', '16174390_1422420874443803_8317045771845445222_n', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 3509, 'http://asiacentre.co.th/wp-content/uploads/2017/01/16174390_1422420874443803_8317045771845445222_n.jpg', 1, 'attachment', 'image/jpeg', 0),
(3512, 5, '2017-01-19 14:01:22', '2017-01-19 07:01:22', '', '16144785_10157990728360307_688990583_n', '', 'inherit', 'closed', 'closed', '', '16144785_10157990728360307_688990583_n', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 3509, 'http://asiacentre.co.th/wp-content/uploads/2017/01/16144785_10157990728360307_688990583_n.jpg', 2, 'attachment', 'image/jpeg', 0),
(3513, 5, '2017-01-19 14:01:23', '2017-01-19 07:01:23', '', '16143015_1422420567777167_3257024904827770099_n', '', 'inherit', 'closed', 'closed', '', '16143015_1422420567777167_3257024904827770099_n', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 3509, 'http://asiacentre.co.th/wp-content/uploads/2017/01/16143015_1422420567777167_3257024904827770099_n.jpg', 3, 'attachment', 'image/jpeg', 0),
(3514, 5, '2017-01-19 14:01:24', '2017-01-19 07:01:24', '', '16128767_10157990728085307_5104749_n', '', 'inherit', 'closed', 'closed', '', '16128767_10157990728085307_5104749_n', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 3509, 'http://asiacentre.co.th/wp-content/uploads/2017/01/16128767_10157990728085307_5104749_n.jpg', 4, 'attachment', 'image/jpeg', 0),
(3515, 5, '2017-01-19 14:01:26', '2017-01-19 07:01:26', '', '15977588_1422421147777109_1951656290648111029_n', '', 'inherit', 'closed', 'closed', '', '15977588_1422421147777109_1951656290648111029_n', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 3509, 'http://asiacentre.co.th/wp-content/uploads/2017/01/15977588_1422421147777109_1951656290648111029_n.jpg', 5, 'attachment', 'image/jpeg', 0),
(3516, 5, '2017-01-19 14:04:23', '2017-01-19 07:04:23', '', '16144061_10157986411310307_943290719_n', '', 'inherit', 'closed', 'closed', '', '16144061_10157986411310307_943290719_n', '', '', '2017-01-19 16:34:32', '2017-01-19 09:34:32', '', 3509, 'http://asiacentre.co.th/wp-content/uploads/2017/01/16144061_10157986411310307_943290719_n.jpg', 6, 'attachment', 'image/jpeg', 0),
(3517, 5, '2017-01-19 14:04:57', '2017-01-19 07:04:57', '<p style="text-align: justify;"><span style="font-weight: 400;">The Benedict Anderson 1st Anniversary Memorial Roundtable was a tribute to the life and legacy\r\nof the late professor. Centring on the topic Nationalism, Citizenship and Statelessness: Current Issues and Developments in Asia, the discussion attracted an audience of some 65 people, and featured a panel of diverse expertise. </span><span style="font-weight: 400;">This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016, and will be an annual feature in the Asia Centre calendar.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><img class="wp-image-3513 alignright" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16143015_1422420567777167_3257024904827770099_n-600x450.jpg" alt="16143015_1422420567777167_3257024904827770099_n" width="319" height="239" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Professor Kenneth Christie of Royal Roads University in British Columbia, Canada, and an expert on peace, development and security, provided an overview of Anderson’s concept of “imagined communities”.  The point was made that the nation-state and nationalism are modern constructions. Citizenship entailed a sense of shared community among diverse peoples with common values and rights.  The construction of shared communities was a global phenomenon as </span><span style="font-weight: 400;">Anderson sought to show in his comparisons of nationalist experiments around the world.  </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright  wp-image-3511" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16174390_1422420874443803_8317045771845445222_n-600x450.jpg" alt="16174390_1422420874443803_8317045771845445222_n" width="314" height="235" />Ms Chontida Auikool, a lecturer from Thammasat University’s ASEAN-China programme provided insight into the Indonesian Chinese community’s struggle for inclusion and integration, and how anti-Chinese sentiment plays out in contemporary developments.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Maritime nomadic communities in the region who face inter-generational statelessness are often rendered invisible according to Asia Pacific Refugee Rights Network (APRRN) Senior Programme Officer Ms. Helen Brunt. Using a case study of the communities in the Sulu Zone, she argued that migration flows in the region predate the development of nation states, a legacy that contributes to statelessness. Their lack of documentation and being labelled ‘illegal migrants’ condemns them to continued discrimination. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nDr. Kevin Downey, a lecturer at Thammasat University and expert on political development, identity, civil society, and democratization in South and Southeast Asia discussed the lack of causal explanations for negative views on immigrants, ‘the other side of statelessness’. He went on to offer a hypothesis premised on the notion of insecurity and precarity in the era of globalisation, which features many dislocations and rising economic inequality. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3515 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/15977588_1422421147777109_1951656290648111029_n-600x450.jpg" alt="15977588_1422421147777109_1951656290648111029_n" width="323" height="242" />In the question and answer period moderated by Asia Centre’s Dr. Robin Ramcharan, potential flashpoints were mentioned. The two that were highlighted are: Rakhine State in Myanmar and the rise of intolerance in Indonesia. These are areas to monitor going forward, despite progress in democratizing both countries. </span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><b><img class="alignright  wp-image-3516" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16144061_10157986411310307_943290719_n-360x480.jpg" alt="16144061_10157986411310307_943290719_n" width="235" height="313" />A Life Beyond Boundaries</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The event also saw the Bangkok launch of Anderson’s memoir </span><i><span style="font-weight: 400;">A Life Beyond Boundaries</span></i><span style="font-weight: 400;">. Anderson defied his contemporaries by "globalizing" the study of nationalism and engaging in comparisons of seemingly disparate nation-states. In this work he also critically assesses the nation-state as a  unit of analysis, noting that people globally formed communities around a great variety of interests that transcended boundaries and nations. A limited number of copies is available at Asia Centre for 450 Baht.</span></p>\r\n<p style="text-align: justify;">You can view images from the event <a href="https://www.facebook.com/pg/asiacentre.co.th/photos/?tab=album&amp;album_id=1422427541109803" target="_blank">here.</a></p>', 'Benedict Anderson 1st Anniversary Memorial Roundtable', '', 'inherit', 'closed', 'closed', '', '3509-revision-v1', '', '', '2017-01-19 14:04:57', '2017-01-19 07:04:57', '', 3509, 'http://asiacentre.co.th/other/3509-revision-v1/', 0, 'revision', '', 0),
(3518, 5, '2017-01-19 14:06:01', '2017-01-19 07:06:01', '<p style="text-align: justify;"><span style="font-weight: 400;">The Benedict Anderson 1st Anniversary Memorial Roundtable was a tribute to the life and legacy\nof the late professor. Centring on the topic Nationalism, Citizenship and Statelessness: Current Issues and Developments in Asia, the discussion attracted an audience of some 65 people, and featured a panel of diverse expertise. </span><span style="font-weight: 400;">This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016, and will be an annual feature in the Asia Centre calendar.</span></p>\n<p style="text-align: justify;"><img class="wp-image-3513 alignright" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16143015_1422420567777167_3257024904827770099_n-600x450.jpg" alt="16143015_1422420567777167_3257024904827770099_n" width="319" height="239" /></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">Professor Kenneth Christie of Royal Roads University in British Columbia, Canada, and an expert on peace, development and security, provided an overview of Anderson’s concept of “imagined communities”.  The point was made that the nation-state and nationalism are modern constructions. Citizenship entailed a sense of shared community among diverse peoples with common values and rights.  The construction of shared communities was a global phenomenon as </span><span style="font-weight: 400;">Anderson sought to show in his comparisons of nationalist experiments around the world.  </span></p>\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3511" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16174390_1422420874443803_8317045771845445222_n-600x450.jpg" alt="16174390_1422420874443803_8317045771845445222_n" width="314" height="235" />Ms Chontida Auikool, a lecturer from Thammasat University’s ASEAN-China programme provided insight into the Indonesian Chinese community’s struggle for inclusion and integration, and how anti-Chinese sentiment plays out in contemporary developments.</span></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">Maritime nomadic communities in the region who face inter-generational statelessness are often rendered invisible according to Asia Pacific Refugee Rights Network (APRRN) Senior Programme Officer Ms. Helen Brunt. Using a case study of the communities in the Sulu Zone, she argued that migration flows in the region predate the development of nation states, a legacy that contributes to statelessness. Their lack of documentation and being labelled ‘illegal migrants’ condemns them to continued discrimination. </span></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">\nDr. Kevin Downey, a lecturer at Thammasat University and expert on political development, identity, civil society, and democratization in South and Southeast Asia discussed the lack of causal explanations for negative views on immigrants, ‘the other side of statelessness’. He went on to offer a hypothesis premised on the notion of insecurity and precarity in the era of globalisation, which features many dislocations and rising economic inequality. </span></p>\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3515 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/15977588_1422421147777109_1951656290648111029_n-600x450.jpg" alt="15977588_1422421147777109_1951656290648111029_n" width="323" height="242" />In the question and answer period moderated by Asia Centre’s Dr. Robin Ramcharan, potential flashpoints were mentioned. The two that were highlighted are: Rakhine State in Myanmar and the rise of intolerance in Indonesia. These are areas to monitor going forward, despite progress in democratizing both countries.</span></p>\n<p style="text-align: justify;"></p>\n<p style="text-align: justify;"></p>\n<p style="text-align: justify;"><b>A Life Beyond Boundaries</b></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">The event also saw the Bangkok launch of Anderson’s memoir <img class="alignright  wp-image-3516" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16144061_10157986411310307_943290719_n-360x480.jpg" alt="16144061_10157986411310307_943290719_n" width="195" height="260" /></span><i><span style="font-weight: 400;">A Life Beyond Boundaries</span></i><span style="font-weight: 400;">. Anderson defied his contemporaries by "globalizing" the study of nationalism and engaging in comparisons of seemingly disparate nation-states. In this work he also critically assesses the nation-state as a  unit of analysis, noting that people globally formed communities around a great variety of interests that transcended boundaries and nations. A limited number of copies is available at Asia Centre for 450 Baht.</span></p>\n<p style="text-align: justify;">You can view images from the event <a href="https://www.facebook.com/pg/asiacentre.co.th/photos/?tab=album&amp;album_id=1422427541109803" target="_blank">here.</a></p>', 'Benedict Anderson 1st Anniversary Memorial Roundtable', '', 'inherit', 'closed', 'closed', '', '3509-autosave-v1', '', '', '2017-01-19 14:06:01', '2017-01-19 07:06:01', '', 3509, 'http://asiacentre.co.th/other/3509-autosave-v1/', 0, 'revision', '', 0),
(3519, 5, '2017-01-19 14:06:07', '2017-01-19 07:06:07', '<p style="text-align: justify;"><span style="font-weight: 400;">The Benedict Anderson 1st Anniversary Memorial Roundtable was a tribute to the life and legacy\r\nof the late professor. Centring on the topic Nationalism, Citizenship and Statelessness: Current Issues and Developments in Asia, the discussion attracted an audience of some 65 people, and featured a panel of diverse expertise. </span><span style="font-weight: 400;">This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016, and will be an annual feature in the Asia Centre calendar.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3513 alignright" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16143015_1422420567777167_3257024904827770099_n-600x450.jpg" alt="16143015_1422420567777167_3257024904827770099_n" width="319" height="239" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Professor Kenneth Christie of Royal Roads University in British Columbia, Canada, and an expert on peace, development and security, provided an overview of Anderson’s concept of “imagined communities”.  The point was made that the nation-state and nationalism are modern constructions. Citizenship entailed a sense of shared community among diverse peoples with common values and rights.  The construction of shared communities was a global phenomenon as </span><span style="font-weight: 400;">Anderson sought to show in his comparisons of nationalist experiments around the world.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3511" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16174390_1422420874443803_8317045771845445222_n-600x450.jpg" alt="16174390_1422420874443803_8317045771845445222_n" width="314" height="235" />Ms Chontida Auikool, a lecturer from Thammasat University’s ASEAN-China programme provided insight into the Indonesian Chinese community’s struggle for inclusion and integration, and how anti-Chinese sentiment plays out in contemporary developments.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Maritime nomadic communities in the region who face inter-generational statelessness are often rendered invisible according to Asia Pacific Refugee Rights Network (APRRN) Senior Programme Officer Ms. Helen Brunt. Using a case study of the communities in the Sulu Zone, she argued that migration flows in the region predate the development of nation states, a legacy that contributes to statelessness. Their lack of documentation and being labelled ‘illegal migrants’ condemns them to continued discrimination. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nDr. Kevin Downey, a lecturer at Thammasat University and expert on political development, identity, civil society, and democratization in South and Southeast Asia discussed the lack of causal explanations for negative views on immigrants, ‘the other side of statelessness’. He went on to offer a hypothesis premised on the notion of insecurity and precarity in the era of globalisation, which features many dislocations and rising economic inequality. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3515 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/15977588_1422421147777109_1951656290648111029_n-600x450.jpg" alt="15977588_1422421147777109_1951656290648111029_n" width="323" height="242" />In the question and answer period moderated by Asia Centre’s Dr. Robin Ramcharan, potential flashpoints were mentioned. The two that were highlighted are: Rakhine State in Myanmar and the rise of intolerance in Indonesia. These are areas to monitor going forward, despite progress in democratizing both countries.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;"><b>A Life Beyond Boundaries</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The event also saw the Bangkok launch of Anderson’s memoir <img class="alignright  wp-image-3516" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16144061_10157986411310307_943290719_n-360x480.jpg" alt="16144061_10157986411310307_943290719_n" width="195" height="260" /></span><i><span style="font-weight: 400;">A Life Beyond Boundaries</span></i><span style="font-weight: 400;">. Anderson defied his contemporaries by "globalizing" the study of nationalism and engaging in comparisons of seemingly disparate nation-states. In this work he also critically assesses the nation-state as a  unit of analysis, noting that people globally formed communities around a great variety of interests that transcended boundaries and nations. A limited number of copies is available at Asia Centre for 450 Baht.</span></p>\r\n<p style="text-align: justify;"></p>\r\n<p style="text-align: justify;">You can view images from the event <a href="https://www.facebook.com/pg/asiacentre.co.th/photos/?tab=album&amp;album_id=1422427541109803" target="_blank">here.</a></p>', 'Benedict Anderson 1st Anniversary Memorial Roundtable', '', 'inherit', 'closed', 'closed', '', '3509-revision-v1', '', '', '2017-01-19 14:06:07', '2017-01-19 07:06:07', '', 3509, 'http://asiacentre.co.th/other/3509-revision-v1/', 0, 'revision', '', 0),
(3520, 5, '2017-01-19 14:09:49', '2017-01-19 07:09:49', '<div style="text-align: justify;"><img class="wp-image-3521 alignright" src="http://asiacentre.co.th/wp-content/uploads/2017/01/skorea-600x370.jpg" alt="skorea" width="384" height="237" />Students from Korea University received a briefing at Asia Centre on Tuesday, 17 January 2017, on contemporary challenges facing ASEAN.</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">Dr. Robin Ramcharan lectured the undergraduates on regional geopolitical affairs, on ASEAN integration challenges and on the regional human rights mechanisms. The students were keenly interested in China''s engagement with ASEAN and in Thaland''s history, culture and political system. The students were accompanied Dr. Park Bun Soon of Korea University.</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">Asia Centre welcomes such exchanges and looks forward to further exchanges with students and academics from Korea.</div>', 'Briefing on ASEAN to Korea University Students', '', 'publish', 'closed', 'closed', '', 'briefing-on-asean-to-korea-university-students', '', '', '2017-01-19 16:34:17', '2017-01-19 09:34:17', '', 0, 'http://asiacentre.co.th/?p=3520', 0, 'post', '', 0),
(3521, 5, '2017-01-19 14:09:35', '2017-01-19 07:09:35', '', 'skorea', '', 'inherit', 'closed', 'closed', '', 'skorea', '', '', '2017-01-19 16:34:17', '2017-01-19 09:34:17', '', 3520, 'http://asiacentre.co.th/wp-content/uploads/2017/01/skorea.jpg', 0, 'attachment', 'image/jpeg', 0),
(3522, 5, '2017-01-19 14:09:49', '2017-01-19 07:09:49', '<div><img class="alignright  wp-image-3521" src="http://asiacentre.co.th/wp-content/uploads/2017/01/skorea-600x370.jpg" alt="skorea" width="384" height="237" />Students from Korea University received a briefing at Asia Centre on Tuesday, 17 January 2017, on contemporary challenges facing ASEAN.</div>\r\n<div></div>\r\n<div>Dr. Robin Ramcharan lectured the undergraduates on regional geopolitical affairs, on ASEAN integration challenges and on the regional human rights mechanisms. The students were keenly interested in China''s engagement with ASEAN and in Thaland''s history, culture and political system. The students were accompanied Dr. Park Bun Soon of Korea University.</div>\r\n<div></div>\r\n<div>Asia Centre welcomes such exchanges and looks forward to further exchanges with students and academics from Korea.</div>', 'Briefing on ASEAN to Korea University Students', '', 'inherit', 'closed', 'closed', '', '3520-revision-v1', '', '', '2017-01-19 14:09:49', '2017-01-19 07:09:49', '', 3520, 'http://asiacentre.co.th/other/3520-revision-v1/', 0, 'revision', '', 0),
(3523, 5, '2017-01-19 14:10:04', '2017-01-19 07:10:04', '<div style="text-align: justify;"><img class="wp-image-3521 alignright" src="http://asiacentre.co.th/wp-content/uploads/2017/01/skorea-600x370.jpg" alt="skorea" width="384" height="237" />Students from Korea University received a briefing at Asia Centre on Tuesday, 17 January 2017, on contemporary challenges facing ASEAN.</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">Dr. Robin Ramcharan lectured the undergraduates on regional geopolitical affairs, on ASEAN integration challenges and on the regional human rights mechanisms. The students were keenly interested in China''s engagement with ASEAN and in Thaland''s history, culture and political system. The students were accompanied Dr. Park Bun Soon of Korea University.</div>\r\n<div style="text-align: justify;"></div>\r\n<div style="text-align: justify;">Asia Centre welcomes such exchanges and looks forward to further exchanges with students and academics from Korea.</div>', 'Briefing on ASEAN to Korea University Students', '', 'inherit', 'closed', 'closed', '', '3520-revision-v1', '', '', '2017-01-19 14:10:04', '2017-01-19 07:10:04', '', 3520, 'http://asiacentre.co.th/other/3520-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3524, 5, '2017-01-19 16:23:54', '2017-01-19 09:23:54', '<p style="text-align: justify;"><span style="font-weight: 400;">The Benedict Anderson 1st Anniversary Memorial Roundtable was a tribute to the life and legacy\r\nof the late professor. Centring on the topic Nationalism, Citizenship and Statelessness: Current Issues and Developments in Asia, the discussion attracted an audience of some 65 people, and featured a panel of diverse expertise. </span><span style="font-weight: 400;">This event follows our inaugural memorial Debating Imagined Communities: A Tribute to Benedict Anderson held on 30 January 2016, and will be an annual feature in the Asia Centre calendar.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3513 alignright" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16143015_1422420567777167_3257024904827770099_n-600x450.jpg" alt="16143015_1422420567777167_3257024904827770099_n" width="319" height="239" /></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Professor Kenneth Christie of Royal Roads University in British Columbia, Canada, and an expert on peace, development and security, provided an overview of Anderson’s concept of “imagined communities”.  The point was made that the nation-state and nationalism are modern constructions. Citizenship entailed a sense of shared community among diverse peoples with common values and rights.  The construction of shared communities was a global phenomenon as </span><span style="font-weight: 400;">Anderson sought to show in his comparisons of nationalist experiments around the world.  </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class="alignright wp-image-3511" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16174390_1422420874443803_8317045771845445222_n-600x450.jpg" alt="16174390_1422420874443803_8317045771845445222_n" width="314" height="235" />Ms Chontida Auikool, a lecturer from Thammasat University’s ASEAN-China programme provided insight into the Indonesian Chinese community’s struggle for inclusion and integration, and how anti-Chinese sentiment plays out in contemporary developments.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">Maritime nomadic communities in the region who face inter-generational statelessness are often rendered invisible according to Asia Pacific Refugee Rights Network (APRRN) Senior Programme Officer Ms. Helen Brunt. Using a case study of the communities in the Sulu Zone, she argued that migration flows in the region predate the development of nation states, a legacy that contributes to statelessness. Their lack of documentation and being labelled ‘illegal migrants’ condemns them to continued discrimination. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">\r\nDr. Kevin Downey, a lecturer at Thammasat University and expert on political development, identity, civil society, and democratization in South and Southeast Asia discussed the lack of causal explanations for negative views on immigrants, ‘the other side of statelessness’. He went on to offer a hypothesis premised on the notion of insecurity and precarity in the era of globalisation, which features many dislocations and rising economic inequality. </span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3515 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/15977588_1422421147777109_1951656290648111029_n-600x450.jpg" alt="15977588_1422421147777109_1951656290648111029_n" width="323" height="242" />In the question and answer period moderated by Asia Centre’s Dr. Robin Ramcharan, potential flashpoints were mentioned. The two that were highlighted are: Rakhine State in Myanmar and the rise of intolerance in Indonesia. These are areas to monitor going forward, despite progress in democratizing both countries.</span></p>\r\n<p style="text-align: justify;"><b>A Life Beyond Boundaries</b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The event also saw the Bangkok launch of Anderson’s memoir <img class="alignright wp-image-3516" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16144061_10157986411310307_943290719_n-360x480.jpg" alt="16144061_10157986411310307_943290719_n" width="195" height="260" /></span><i><span style="font-weight: 400;">A Life Beyond Boundaries</span></i><span style="font-weight: 400;">. Anderson defied his contemporaries by "globalizing" the study of nationalism and engaging in comparisons of seemingly disparate nation-states. In this work he also critically assesses the nation-state as a  unit of analysis, noting that people globally formed communities around a great variety of interests that transcended boundaries and nations. A limited number of copies is available at Asia Centre for 450 Baht, if you are interested in getting a copy you can drop us an email at info@asiacentre.co.th.</span></p>\r\n<p style="text-align: justify;">You can view images from the event <a href="https://www.facebook.com/pg/asiacentre.co.th/photos/?tab=album&amp;album_id=1422427541109803" target="_blank">here.</a></p>', 'Benedict Anderson 1st Anniversary Memorial Roundtable', '', 'inherit', 'closed', 'closed', '', '3509-revision-v1', '', '', '2017-01-19 16:23:54', '2017-01-19 09:23:54', '', 3509, 'http://asiacentre.co.th/other/3509-revision-v1/', 0, 'revision', '', 0),
(3525, 5, '2017-01-19 16:34:48', '2017-01-19 09:34:48', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre delivered a series of lectures on ASEAN and its international relations as the teaching partner of Stenden University’s, Thailand campus.</span></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;"><img class=" wp-image-3499 alignleft" src="http://asiacentre.co.th/wp-content/uploads/2017/01/stenden.png" alt="stenden" width="149" height="149" />Known as</span><a href="https://stenden.com/en/about-stenden/" target="_blank"><i><span style="font-weight: 400;"> Stenden University of Applied Sciences</span></i></a><span style="font-weight: 400;">, the Dutch university was created from the merger of CHN University Netherlands and Drenthe University, two premier institutions of higher education in the northern part of the Netherlands. The Thailand campus is part of Stenden’s overseas branches in South Africa, Qatar and Indonesia.</span></p>\r\n<p style="text-align: justify;">The Asian Centre lectures complemented Stenden University’s ASEAN studies module in Thailand\r\nand were designed to provide a diverse class of international relations and business students with an introduction and insight to the regional association.</p>\r\n<p style="text-align: justify;">The delivery of lecturers was part of Asia Centre’s<img class="alignright wp-image-3500" src="http://asiacentre.co.th/wp-content/uploads/2017/01/16010480_10157961979360307_1873655252_o-600x450.jpg" alt="16010480_10157961979360307_1873655252_o" width="287" height="215" /> education programme through which it partners with higher education institutions and think tanks to provide teaching services. These include specially designed curricula and tailored courses on a range of topics, from international relations to media and business and entrepreneurship.</p>\r\n<p style="text-align: justify;">In total 3 lectures were delivered for Stenden and included in-class discussions, which allowed students to clarify their understanding of the issues and to attempt to critically analyse ASEAN’s security and human rights frameworks.</p>\r\n<p style="text-align: justify;">Asia Centre and Stenden University are currently exploring further opportunities for educational partnership.</p>\r\n&nbsp;', 'Asia Centre partners with Stenden University to teach ASEAN Studies', '', 'inherit', 'closed', 'closed', '', '3498-revision-v1', '', '', '2017-01-19 16:34:48', '2017-01-19 09:34:48', '', 3498, 'http://asiacentre.co.th/other/3498-revision-v1/', 0, 'revision', '', 0),
(3526, 5, '2017-01-19 16:35:39', '2017-01-19 09:35:39', '<b>Digital Marketing &amp; Communication Officer</b>\r\n\r\nAsia Centre is looking to hire a Digital Marketing &amp; Communication Officer to join our team. This is an exciting role within a young organisation, covering all aspects of communications and marketing including brand development, strategic events, PR, marketing campaigns, digital development and content writing.\r\n\r\nThe ideal candidate is effectively bilingual (in Thai &amp; English), enthusiastic, self-motivated and interested in growing and developing the organisation. This is an entry-level position with scope for advancement.\r\n\r\n<b>Duties &amp; Responsibilities Include (but are not limited to)</b>\r\n<ul>\r\n 	<li>Developing strategic communications plans for promotion and dissemination of corporate and programmatic content</li>\r\n 	<li>Implementation and management a range of online &amp; offline communication strategies targeting media and industry engagement</li>\r\n 	<li>Promoting Asia Centre and coordinating its corporate communications, public affairs, press releases and e-marketing development communication</li>\r\n 	<li>Manage the Asia Centre brand</li>\r\n 	<li>Develop/maintain social media profiles and quality content on Twitter, Facebook, and LinkedIn.</li>\r\n 	<li>Develop other, relevant social media outlets to support and expand our digital presence</li>\r\n 	<li>Recruit and maintain media partnerships</li>\r\n 	<li>Manage PR and press relations</li>\r\n 	<li>Assist in the preparation and drafting of various communications (including email, social media, blogs)</li>\r\n 	<li>Marketing of the business arm of Asia Centre by promoting us as a boutique meeting, seminar and conference space in Central Bangkok</li>\r\n</ul>\r\n<b>Required Skills and Qualifications</b>\r\n<ul>\r\n 	<li>Bachelor’s degree in Communications, Business Administration, Marketing, or a related field.</li>\r\n 	<li>Minimum 1 year of directly related marketing, public affairs, media relations, and/or marketing research experience</li>\r\n 	<li>High level of organizational and project coordination skills.</li>\r\n 	<li>Demonstrated working knowledge of Wordpress and basic web communication techniques; expertise in using office software packages, technology, and systems (spreadsheets, graphics, database programs).</li>\r\n 	<li>Knowledge and experience in using social media as a promotional/engagement tool.</li>\r\n 	<li>Experience in graphic design</li>\r\n 	<li>Able to speak, read and write effectively in Thai and English. A good command of English is indispensable.</li>\r\n 	<li>Ability to work in a multicultural environment</li>\r\n 	<li>Flexibility and adaptability within a dynamic work environment are essential assets</li>\r\n</ul>\r\n<b>Work Environment </b>\r\n\r\nAsia Centre offers the ideal candidate a fun and engaging work environment at our offices in Central Bangkok. We provide the opportunity to be a part of an internationally diverse team and to connect with our global network of partners in the corporate, nonprofit and academic sector.\r\n\r\n<b>How to apply</b>\r\n\r\nTo apply, submit - in one pdf document -  a brief cover letter, an updated CV (2 pages max), proof of prior work experience and scanned copies of your diplomas to (e-mail).\r\n\r\nAfter submission, please note that only short-listed candidates will be contacted. The position will remain open until filled.\r\n\r\nAs part of the application process Asia Centre reserves the right to verify the academic and professional credentials of short-listed candidates.<b> </b>\r\n\r\n<b>This position is open to Thai nationals only.</b>\r\n\r\n<b>About Asia Centre</b>\r\n\r\nAsia Centre is an independent think- tank and networking hub for academia and civil society in the region. The Centre’s core activities focus on education and human right’s policy research. It provides meeting facilities and services for academic and professional development, communications and outreach, research and publications, and development and technical assistance. Asia Centre connects peoples and regions through collaborative partnership with educational institutions, international organizations, non-profit organizations and other institutions in the private and public sector. Asia Centre harnesses its strategic location and strong international networks to co-convene activities to address contemporary issues in region.', 'Job Opportunities', '', 'inherit', 'closed', 'closed', '', '1955-revision-v1', '', '', '2017-01-19 16:35:39', '2017-01-19 09:35:39', '', 1955, 'http://asiacentre.co.th/other/1955-revision-v1/', 0, 'revision', '', 0),
(3527, 6, '2017-01-20 17:40:30', '2017-01-20 10:40:30', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\n\n<ul style="text-align: justify;">\n 	<li><b>Think-Tank</b></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\n\n<ul style="text-align: justify;">\n 	<li><b>Regional Hub </b></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\n\n<ul style="text-align: justify;">\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\n\n<ul style="text-align: justify;">\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\n</ul>\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\n<p style="text-align: justify;"><b>People </b></p>\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\n<p style="text-align: justify;">Download ASIA Centre Activities Report</p>\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a></p>\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZRNGM0RVA3Q2JaNDg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2015</a></p>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-autosave-v1', '', '', '2017-01-20 17:40:30', '2017-01-20 10:40:30', '', 18, 'http://asiacentre.co.th/other/18-autosave-v1/', 0, 'revision', '', 0),
(3528, 6, '2017-01-20 09:59:27', '2017-01-20 02:59:27', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\nASIA Centre Activities Report 2016', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 09:59:27', '2017-01-20 02:59:27', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3529, 6, '2017-01-20 10:00:46', '2017-01-20 03:00:46', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing">ASIA Centre Activities Report 2016</a>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 10:00:46', '2017-01-20 03:00:46', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3530, 6, '2017-01-20 10:01:51', '2017-01-20 03:01:51', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 10:01:51', '2017-01-20 03:01:51', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3531, 6, '2017-01-20 10:08:23', '2017-01-20 03:08:23', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<p style="text-align: justify;">Click here to view <a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a></p>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 10:08:23', '2017-01-20 03:08:23', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3532, 6, '2017-01-20 10:08:59', '2017-01-20 03:08:59', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a></p>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 10:08:59', '2017-01-20 03:08:59', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3533, 6, '2017-01-20 10:12:11', '2017-01-20 03:12:11', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a></p>\r\n<p style="text-align: justify;">ASIA Centre Activities Report 2015</p>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 10:12:11', '2017-01-20 03:12:11', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3534, 6, '2017-01-20 10:12:53', '2017-01-20 03:12:53', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZRNGM0RVA3Q2JaNDg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2015</a></p>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 10:12:53', '2017-01-20 03:12:53', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3535, 6, '2017-01-20 16:39:32', '2017-01-20 09:39:32', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n 	<li style="font-weight: 400;">[embed]http://asiacentre.co.th/gallery/upr/[/embed]</li>\r\n 	<li style="font-weight: 400;"></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 16:39:32', '2017-01-20 09:39:32', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3536, 6, '2017-01-20 16:46:04', '2017-01-20 09:46:04', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 16:46:04', '2017-01-20 09:46:04', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3537, 6, '2017-01-20 16:49:20', '2017-01-20 09:49:20', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n 	<li style="font-weight: 400;">[embed]http://asiacentre.co.th/gallery/upr/[/embed]\r\n<a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 16:49:20', '2017-01-20 09:49:20', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3538, 6, '2017-01-20 16:52:40', '2017-01-20 09:52:40', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;">[embed]http://asiacentre.co.th/gallery/upr/[/embed]\r\n<a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<img class="alignnone size-full wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="1239" height="1754" />\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 16:52:40', '2017-01-20 09:52:40', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3539, 6, '2017-01-20 16:53:50', '2017-01-20 09:53:50', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;">[embed]http://asiacentre.co.th/gallery/upr/[/embed]\r\n<a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<img class="alignnone  wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="586" height="829" />\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 16:53:50', '2017-01-20 09:53:50', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3540, 6, '2017-01-20 16:55:01', '2017-01-20 09:55:01', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n&nbsp;\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<img class="alignnone wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="586" height="829" />\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 16:55:01', '2017-01-20 09:55:01', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3541, 6, '2017-01-20 16:55:48', '2017-01-20 09:55:48', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n[embed]http://asiacentre.co.th/gallery/upr/[/embed]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<img class="alignnone wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="586" height="829" />\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 16:55:48', '2017-01-20 09:55:48', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3542, 6, '2017-01-20 17:00:19', '2017-01-20 10:00:19', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n[embed]http://asiacentre.co.th/gallery/upr/[/embed]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<img class="alignnone wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="383" height="542" />\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 17:00:19', '2017-01-20 10:00:19', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3543, 6, '2017-01-20 17:01:48', '2017-01-20 10:01:48', '<span style="font-weight: 400;">Asia Centre’s human rights programme explores how national and regional human rights mechanisms link up with international human rights mechanisms. This programme focuses on three core mechanisms: the Universal Periodic Review (UPR) in Southeast Asia, the ASEAN Intergovernmental Commission on Human Rights (AICHR) and the role of national human rights institutions (NHRIs). The Centre undertakes evidence-based research and policy analysis on these mechanisms, which hold the potential to enhance human rights protection in the region.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The human rights programme aims to enhance the capacity of all stakeholders, especially civil society organizations, to advance the protection of human rights in Southeast Asia. It also aims to foster networks of stakeholders on each of the mechanisms and to nurture them over time. </span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre undertakes evidence-based research, convenes expert conferences, conducts capacity building </span><span style="font-weight: 400;">trainings </span><span style="font-weight: 400;">and produces publications in the area of human rights through its partnership with a regional publisher, Gerakbudaya of Malaysia.</span>\r\n\r\n&nbsp;\r\n\r\n<span style="font-weight: 400;">The Centre will also bring together the different stakeholders regularly in innovative engagement settings to foster constructive dialogue and exchange best practices. </span>\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/news/latest-news/upr-conference-report/" target="_blank"><span style="font-weight: 400;">UPR</span></a></li>\r\n</ul>\r\n[embed]http://asiacentre.co.th/gallery/upr/[/embed]\r\n\r\n&nbsp;\r\n<ul>\r\n 	<li style="font-weight: 400;"><a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><span style="font-weight: 400;">NHRI activities. The Centre is convening a </span><span style="font-weight: 400;">conference </span><span style="font-weight: 400;">on National Human Rights Institutions in 2017, which will examine feature practitioner authors</span></a></li>\r\n</ul>\r\n<a href="http://asiacentre.co.th/event/nhriconference2017/" target="_blank"><img class="alignnone wp-image-3480" src="http://asiacentre.co.th/wp-content/uploads/2017/01/NHRI-Conference-Call-Deadline-Extended.jpg" alt="nhri-conference-call-deadline-extended" width="383" height="542" /></a>\r\n<ul>\r\n 	<li style="font-weight: 400;"><span style="font-weight: 400;">AICHR. (announcement on AICHR In 2018)</span></li>\r\n</ul>\r\n&nbsp;\r\n<h4></h4>', 'Human Rights', '', 'inherit', 'closed', 'closed', '', '3473-revision-v1', '', '', '2017-01-20 17:01:48', '2017-01-20 10:01:48', '', 3473, 'http://asiacentre.co.th/other/3473-revision-v1/', 0, 'revision', '', 0),
(3544, 6, '2017-01-20 17:40:55', '2017-01-20 10:40:55', '<p style="text-align: justify;"><span style="font-weight: 400;">Asia Centre is a social enterprise that seeks to improve the lives of people in the region through innovative and collaborative partnerships. It serves as a think-tank, regional hub, project partner and meeting space.</span></p>\r\n<p style="text-align: justify;"><img class="wp-image-3456 size-full aligncenter" src="http://asiacentre.co.th/wp-content/uploads/2017/01/Screen-Shot-2017-01-06-at-18.07.42-1.png" width="339" height="249" /></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Think-Tank</b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre undertakes independent, evidence-based policy research on critical issues affecting the region. The Centre convenes conferences, seminars and workshops  to discuss these issues and communicates policy advice through commentaries in the media and publications.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><b>Regional Hub </b></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre harnesses its strategic location and strong international networks to convene activities to deliberate on issues from a regional perspective. It serves as hub for academic and civil society to network and forge linkages.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/asia-centre/partners/" target="_blank"><b>Project Partner</b></a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre works with partners to develop programs, implement projects, and convene activities  that serve to, inter alia, extend the partner’s reach across the region.</span></p>\r\n\r\n<ul style="text-align: justify;">\r\n 	<li><a href="http://asiacentre.co.th/meeting-spaces/" target="_blank"><b>Meeting Space</b> </a></li>\r\n</ul>\r\n<p style="padding-left: 30px; text-align: justify;"><span style="font-weight: 400;">Asia Centre provides an affordable boutique space in central Bangkok, ideal for meetings, conferences and networking activities.</span></p>\r\n<p style="text-align: justify;"><b>People </b></p>\r\n<p style="text-align: justify;"><span style="font-weight: 400;">The Asia</span><span style="font-weight: 400;"> Centre’s work is guided by three groups of people comprising of the <a href="http://asiacentre.co.th/asia-centre/advisory-board/">Advisory Board</a>, <a href="http://asiacentre.co.th/asia-centre/centre-associates/" target="_blank">Centre Associates</a> and the <a href="http://asiacentre.co.th/team-members/" target="_blank">Management Team</a>. The Advisory Board is made up of a panel of international academics that provide advice on the strategic direction of the Centre’s programmes. Centre Associates are experts in their field of specialty, whom the Centre draws on to execute or deliver selected activities. The day to day operations of the Centre are handled by the Management Team.</span></p>\r\n<p style="text-align: justify;"><strong><span style="text-decoration: underline;">Download ASIA Centre Activities Report</span></strong></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZROTN0S05CN2ctNzg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2016</a></p>\r\n<p style="text-align: justify;"><a href="https://drive.google.com/file/d/0B7AkqYV4R9ZRNGM0RVA3Q2JaNDg/view?usp=sharing" target="_blank">ASIA Centre Activities Report 2015</a></p>', 'Asia Centre', '', 'inherit', 'closed', 'closed', '', '18-revision-v1', '', '', '2017-01-20 17:40:55', '2017-01-20 10:40:55', '', 18, 'http://asiacentre.co.th/other/18-revision-v1/', 0, 'revision', '', 0),
(3545, 6, '2017-01-23 13:56:15', '2017-01-23 06:56:15', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n<strong>Asia Centre ให้บริการเช่า ห้องประชุม ฝึกอบรม สัมมนา workshop</strong>\r\n\r\nรายวัน รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ คอมพิวเตอร์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n* ที่จอดรถ\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 13:56:15', '2017-01-23 06:56:15', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3546, 6, '2017-01-23 14:05:48', '2017-01-23 07:05:48', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n<strong>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</strong>\r\n\r\nรายวัน รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ คอมพิวเตอร์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n* ที่จอดรถ\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 14:05:48', '2017-01-23 07:05:48', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3547, 6, '2017-01-23 14:06:17', '2017-01-23 07:06:17', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</strong>\r\n\r\nรายวัน รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ คอมพิวเตอร์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n* ที่จอดรถ\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n&nbsp;\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 14:06:17', '2017-01-23 07:06:17', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0);
INSERT INTO `wp_posts` (`ID`, `post_author`, `post_date`, `post_date_gmt`, `post_content`, `post_title`, `post_excerpt`, `post_status`, `comment_status`, `ping_status`, `post_password`, `post_name`, `to_ping`, `pinged`, `post_modified`, `post_modified_gmt`, `post_content_filtered`, `post_parent`, `guid`, `menu_order`, `post_type`, `post_mime_type`, `comment_count`) VALUES
(3548, 6, '2017-01-23 16:59:39', '2017-01-23 09:59:39', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[separator style="regular"]\r\n\r\n<strong>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</strong>\r\n\r\nรายวัน รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ คอมพิวเตอร์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n* ที่จอดรถ\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n[separator style="regular"]\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 16:59:39', '2017-01-23 09:59:39', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3549, 6, '2017-01-23 17:00:07', '2017-01-23 10:00:07', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[separator style="regular"]\r\n<h4><strong>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</strong></h4>\r\nรายวัน รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ คอมพิวเตอร์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n* ที่จอดรถ\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n[separator style="regular"]\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 17:00:07', '2017-01-23 10:00:07', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3550, 6, '2017-01-23 17:03:09', '2017-01-23 10:03:09', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[separator style="regular"]\r\n<h4>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</h4>\r\nเปิดให้บริการ รายครึ่งวัน, รายวัน, รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ เหมาะสำหรับการประชุมบริษัท การประชุมส่วนตัว การอบรม การสัมมนา งานเสวนา การประชุมเชิงปฏิบัติการ Workshop การสาธิตสินค้า งานเปิดตัวสินค้า หนังสือ งานฉายภาพยนต์ ฯลฯ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ คอมพิวเตอร์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n&nbsp;\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n* ที่จอดรถ\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n[separator style="regular"]\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 17:03:09', '2017-01-23 10:03:09', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3551, 6, '2017-01-23 17:08:38', '2017-01-23 10:08:38', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[separator style="regular"]\r\n<h4>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</h4>\r\nเปิดให้บริการ รายครึ่งวัน, รายวัน, รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ เหมาะสำหรับการประชุมบริษัท การประชุมส่วนตัว การอบรม การสัมมนา งานเสวนา การประชุมเชิงปฏิบัติการ Workshop การสาธิตสินค้า งานเปิดตัวสินค้า หนังสือ งานฉายภาพยนต์ ฯลฯ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n* ที่จอดรถ\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n[separator style="regular"]\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 17:08:38', '2017-01-23 10:08:38', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0),
(3552, 6, '2017-01-23 17:10:50', '2017-01-23 10:10:50', 'Asia Centre offers meeting services at its boutique and cosy facilities conveniently located in the heart of Bangkok, 20 metres away from Phayathai BTS and Airport Link. Our spaces are perfect for private meetings, conferences, training workshops, networking sessions and other boutique events such as book launches, readings, screenings, etc.\r\n\r\n[separator style="regular"]\r\n\r\n<strong>We can host up to 40 (seating) and 60 (seating and standing). The following are available:</strong>\r\n<ul>\r\n 	<li>Flexible room layouts (networking, theatre, classroom, round table, boardroom)</li>\r\n 	<li>High-speed internet access, Skype video-conferencing, computers</li>\r\n 	<li>AV Equipment: flat-screen TV, projector, screen, wireless microphones, etc.</li>\r\n 	<li>Private lockers and lounge area</li>\r\n 	<li>Pantry with microwave, kettle, hot/cold water dispenser and fridge</li>\r\n</ul>\r\nOur services are competitively priced and low cost catering can be arranged through advanced booking. Additional on-demand meeting services include printing, photocopying and secretarial support.\r\n\r\n<a href="https://drive.google.com/a/asiacentre.co.th/file/d/0B8CIMc6y7oxkZUFCd05jcWVuMDA/view?usp=sharing" target="_blank">Click here to Download brochure</a>\r\n\r\n<strong>For more information in Thai please visit our Thai Facebook page</strong>\r\n\r\n<a href="https://www.facebook.com/asiacentre.rental" target="_blank">https://www.facebook.com/asiacentre.rental</a>\r\n\r\n[separator style="regular"]\r\n<h4>Asia Centre ให้บริการเช่าห้องประชุม สำหรับการฝึกอบรม สัมมนา workshop</h4>\r\nเปิดให้บริการ รายครึ่งวัน, รายวัน, รายชั่วโมง ห้องสวย อุปกรณ์ครบ ทันสมัย เดินทางสะดวก ติดบีทีเอส และแอร์พอร์ทลิงค์ พญาไท มีที่จอดรถ เหมาะสำหรับการประชุมบริษัท การประชุมส่วนตัว การอบรม การสัมมนา งานเสวนา การประชุมเชิงปฏิบัติการ Workshop การสาธิตสินค้า งานเปิดตัวสินค้า หนังสือ งานฉายภาพยนต์ ฯลฯ\r\n<ul>\r\n 	<li>รายละเอียดภายในห้อง\r\n* ตู้เก็บของ Build-in / โทรศัพท์ ฟรีอินเตอร์เน็ต Wi-Fi\r\n* ห้องฝึกอบรม สัมมนา/ห้องทำงานเล็ก/ห้องประชุม/ห้องครัว\r\n* เครื่องกดน้ำร้อน น้ำเย็น ไมโครเวฟ ตู้เย็น\r\n* ชุดเครื่องเสียง ไมโครโฟนไร้สาย\r\n* ชุดจอมอร์นิเตอร์ 120" Cinema screen ควบคุมด้วยรีโมท\r\n* โปรเจคเตอร์ไร้สาย ควบคุมด้วยรีโมท, ทีวี\r\n* ม่านไฟฟ้า ควบคุมด้วยรีโมท และสวิตช์</li>\r\n</ul>\r\n<ul>\r\n 	<li>สิ่งอำนวยความสะดวกภายในอาคาร\r\n* สะดวกสบายด้วยลิฟท์ระบบไฮสปีด จากชั้น G ถึงชั้น 17 ซึ่งจอดเป็นชั้นแรก\r\n* ระบบรักษาความปลอดภัย 24. ชม.\r\n<a href="http://asiacentre.co.th/contact-us/location/" target="_blank">* ที่จอดรถ</a>\r\nฟรี 2 ชั่วโมง (มีตราประทับ) ส่วนเกิน 30 บาท/ ชม\r\nเหมาจ่าย 2 ตราประทับ 07.00-19.00 น. 100 บาท\r\n* ธนาคาร เอทีเอ็ม ร้านกาแฟ\r\n* ใกล้ไปรษณีย์ ร้านอาหาร ร้านค้า</li>\r\n</ul>\r\n[separator style="regular"]\r\n\r\n[button style="btn-info" size="btn-md" label="Book Now" link="#bookingform" link_opens="_self"]\r\n\r\n[separator style="regular"]\r\n\r\n<strong>WEEKDAY RATES</strong>\r\n<table class="table table-striped" style="height: 292px;" width="746">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm) </em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">1,400</td>\r\n<td width="84">4,000</td>\r\n<td width="78">7,500</td>\r\n<td width="73">6,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion room</strong></td>\r\n<td width="51">750</td>\r\n<td width="84">1,500</td>\r\n<td width="78">2,500</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">1,500</td>\r\n<td width="84">4,500</td>\r\n<td width="78">8,500</td>\r\n<td width="73">7,000</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>WEEKEND AND PUBLIC HOLIDAY RATES </strong>\r\n<table class="table table-striped" width="441">\r\n<tbody>\r\n<tr>\r\n<td width="83"><strong>Room Type</strong></td>\r\n<td width="51"><strong>1 hour</strong></td>\r\n<td width="84"><strong>Half day</strong></td>\r\n<td width="78"><strong>Full day</strong></td>\r\n<td width="73"><strong>Evening</strong></td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong> </strong></td>\r\n<td width="51"><em>Min.3 hrs\r\n</em><em>(8-5pm)</em></td>\r\n<td width="84">08.00-12.00\r\nor 13.00-17.00</td>\r\n<td width="78">08.00-17.00</td>\r\n<td width="73">17.00-21.00</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Seminar Room</strong></td>\r\n<td width="51">2,400</td>\r\n<td width="84">7,000</td>\r\n<td width="78">14,000</td>\r\n<td width="73">8,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Discussion Room</strong></td>\r\n<td width="51">NA</td>\r\n<td width="84">NA</td>\r\n<td width="78">NA</td>\r\n<td width="73">NA</td>\r\n<td width="73"></td>\r\n</tr>\r\n<tr>\r\n<td width="83"><strong>Both Rooms</strong></td>\r\n<td width="51">2,800</td>\r\n<td width="84">8,500</td>\r\n<td width="78">16,000</td>\r\n<td width="73">10,500</td>\r\n<td width="73"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<h3><strong>Room Capacity</strong></h3>\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td style="text-align: left;" width="76"><strong>Layout</strong></td>\r\n<td style="text-align: center;" width="75"><strong>Theatre</strong></td>\r\n<td style="text-align: center;" width="79"><strong>Classroom*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Round Table*</strong></td>\r\n<td style="text-align: center;" width="81"><strong>Boardroom*</strong></td>\r\n<td style="text-align: center;" width="59"><strong>Discussion Room</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="76"><strong>Number </strong></td>\r\n<td style="text-align: center;" width="75">40</td>\r\n<td style="text-align: center;" width="79">30</td>\r\n<td style="text-align: center;" width="81">24</td>\r\n<td style="text-align: center;" width="81">15</td>\r\n<td style="text-align: center;" width="59">4</td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n* Additional chairs available on request\r\n<h3><strong>Office Suite</strong></h3>\r\nWe also have an office suite that accommodates two working stations, which can be equipped as required.\r\n<table class="table table-striped">\r\n<tbody>\r\n<tr>\r\n<td width="116"><strong>Office Suite</strong></td>\r\n<td width="50"><strong>Weekly</strong></td>\r\n<td width="54"><strong>Monthly</strong></td>\r\n<td width="44"><strong>Yearly</strong></td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Full Unit (3 desks)</strong></td>\r\n<td width="50">10,000</td>\r\n<td width="54">30,000</td>\r\n<td width="44">25,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"><strong>Sharing (1 desk)</strong></td>\r\n<td width="50">3,000</td>\r\n<td width="54">10,000</td>\r\n<td width="44">8,000</td>\r\n</tr>\r\n<tr>\r\n<td width="116"></td>\r\n<td width="50"></td>\r\n<td width="54"></td>\r\n<td width="44"></td>\r\n</tr>\r\n</tbody>\r\n</table>\r\n<strong>REMARKS: </strong>\r\n<ul>\r\n 	<li>All Rate in Thai Baht. Rates are subjected to 7% VAT. Rate are subjected to change without prior notice.</li>\r\n 	<li>Full advance payment to confirm booking.</li>\r\n 	<li>Seminar Room Service: Price included use of Projector, Sound system, Wi-Fi internet, Hot/ Cold water dispenser.</li>\r\n 	<li>Catering started from 80 Baht/Person (3 in 1 Coffee + drinking water + 1 Snack, additional snack 30 Baht/pc.) 7 days advanced booking and minimum order 30 pax.</li>\r\n 	<li>A 500 Baht cleaning fee will be charged to self-catering events.</li>\r\n 	<li>Events that exceed the booking time by more than 15 minutes will be charged an additional full hour rate.</li>\r\n</ul>\r\n<a name="bookingform"></a>\r\n[separator style="regular"]\r\n<h1><strong>Space Booking Form</strong></h1>\r\n[formidable id=3]\r\n\r\n&nbsp;', 'Meeting Spaces', '', 'inherit', 'closed', 'closed', '', '1918-revision-v1', '', '', '2017-01-23 17:10:50', '2017-01-23 10:10:50', '', 1918, 'http://asiacentre.co.th/other/1918-revision-v1/', 0, 'revision', '', 0);

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `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=utf8;

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

INSERT INTO `wp_term_relationships` (`object_id`, `term_taxonomy_id`, `term_order`) VALUES
(71, 210, 0),
(77, 210, 0),
(78, 210, 0),
(111, 212, 0),
(335, 210, 0),
(336, 210, 0),
(337, 210, 0),
(338, 210, 0),
(339, 210, 0),
(358, 1, 0),
(358, 134, 0),
(358, 143, 0),
(358, 148, 0),
(555, 1, 0),
(555, 99, 0),
(555, 134, 0),
(555, 146, 0),
(555, 181, 0),
(559, 1, 0),
(559, 69, 0),
(559, 134, 0),
(559, 182, 0),
(562, 1, 0),
(562, 73, 0),
(562, 134, 0),
(562, 183, 0),
(565, 1, 0),
(565, 112, 0),
(565, 134, 0),
(565, 184, 0),
(568, 1, 0),
(568, 106, 0),
(568, 134, 0),
(568, 185, 0),
(575, 1, 0),
(575, 134, 0),
(575, 140, 0),
(575, 186, 0),
(579, 1, 0),
(579, 134, 0),
(579, 149, 0),
(579, 187, 0),
(582, 1, 0),
(582, 87, 0),
(582, 134, 0),
(582, 170, 0),
(582, 174, 0),
(582, 188, 0),
(587, 1, 0),
(587, 70, 0),
(587, 134, 0),
(587, 146, 0),
(587, 189, 0),
(993, 1, 0),
(993, 79, 0),
(993, 91, 0),
(993, 160, 0),
(996, 1, 0),
(996, 79, 0),
(996, 142, 0),
(996, 160, 0),
(1000, 1, 0),
(1000, 79, 0),
(1000, 81, 0),
(1000, 86, 0),
(1000, 113, 0),
(1000, 116, 0),
(1005, 1, 0),
(1005, 87, 0),
(1005, 109, 0),
(1005, 134, 0),
(1005, 146, 0),
(1005, 170, 0),
(1005, 171, 0),
(1005, 188, 0),
(1011, 77, 0),
(1011, 86, 0),
(1011, 93, 0),
(1011, 106, 0),
(1011, 160, 0),
(1011, 194, 0),
(1016, 1, 0),
(1016, 77, 0),
(1016, 86, 0),
(1016, 93, 0),
(1016, 106, 0),
(1016, 160, 0),
(1031, 1, 0),
(1031, 99, 0),
(1031, 109, 0),
(1031, 134, 0),
(1031, 146, 0),
(1031, 164, 0),
(1031, 181, 0),
(1148, 1, 0),
(1148, 78, 0),
(1148, 79, 0),
(1148, 160, 0),
(1149, 1, 0),
(1149, 78, 0),
(1149, 130, 0),
(1149, 160, 0),
(1149, 166, 0),
(1150, 1, 0),
(1150, 78, 0),
(1150, 160, 0),
(1151, 1, 0),
(1151, 66, 0),
(1151, 67, 0),
(1151, 68, 0),
(1151, 71, 0),
(1151, 72, 0),
(1151, 73, 0),
(1151, 77, 0),
(1151, 78, 0),
(1151, 79, 0),
(1151, 81, 0),
(1151, 85, 0),
(1151, 86, 0),
(1151, 87, 0),
(1151, 91, 0),
(1151, 92, 0),
(1151, 93, 0),
(1151, 97, 0),
(1151, 98, 0),
(1151, 99, 0),
(1151, 105, 0),
(1151, 106, 0),
(1151, 109, 0),
(1151, 111, 0),
(1151, 112, 0),
(1151, 115, 0),
(1151, 116, 0),
(1151, 122, 0),
(1151, 123, 0),
(1151, 124, 0),
(1151, 129, 0),
(1151, 134, 0),
(1151, 140, 0),
(1151, 146, 0),
(1151, 148, 0),
(1151, 151, 0),
(1151, 152, 0),
(1151, 159, 0),
(1151, 160, 0),
(1151, 165, 0),
(1151, 167, 0),
(1151, 169, 0),
(1151, 170, 0),
(1151, 171, 0),
(1151, 173, 0),
(1151, 174, 0),
(1152, 1, 0),
(1152, 72, 0),
(1152, 86, 0),
(1153, 1, 0),
(1153, 79, 0),
(1158, 1, 0),
(1158, 106, 0),
(1158, 134, 0),
(1158, 185, 0),
(1161, 1, 0),
(1161, 134, 0),
(1161, 188, 0),
(1163, 1, 0),
(1163, 106, 0),
(1163, 134, 0),
(1163, 146, 0),
(1163, 185, 0),
(1168, 1, 0),
(1168, 128, 0),
(1168, 160, 0),
(1169, 1, 0),
(1169, 86, 0),
(1169, 111, 0),
(1169, 165, 0),
(1170, 1, 0),
(1170, 79, 0),
(1170, 86, 0),
(1170, 111, 0),
(1171, 1, 0),
(1171, 79, 0),
(1171, 126, 0),
(1171, 160, 0),
(1173, 79, 0),
(1173, 81, 0),
(1173, 105, 0),
(1173, 165, 0),
(1173, 194, 0),
(1174, 79, 0),
(1174, 105, 0),
(1174, 116, 0),
(1174, 133, 0),
(1174, 165, 0),
(1174, 194, 0),
(1175, 1, 0),
(1175, 79, 0),
(1175, 81, 0),
(1175, 86, 0),
(1175, 105, 0),
(1175, 111, 0),
(1175, 165, 0),
(1176, 67, 0),
(1176, 79, 0),
(1176, 81, 0),
(1176, 116, 0),
(1176, 194, 0),
(1177, 67, 0),
(1177, 71, 0),
(1177, 79, 0),
(1177, 81, 0),
(1177, 106, 0),
(1177, 116, 0),
(1177, 194, 0),
(1178, 79, 0),
(1178, 81, 0),
(1178, 96, 0),
(1178, 105, 0),
(1178, 116, 0),
(1178, 194, 0),
(1179, 1, 0),
(1179, 79, 0),
(1179, 87, 0),
(1179, 117, 0),
(1179, 167, 0),
(1241, 1, 0),
(1241, 150, 0),
(1241, 160, 0),
(1446, 1, 0),
(1446, 79, 0),
(1446, 91, 0),
(1446, 160, 0),
(1636, 176, 0),
(1637, 176, 0),
(1638, 176, 0),
(1751, 192, 0),
(1752, 192, 0),
(1801, 213, 0),
(1803, 213, 0),
(1804, 213, 0),
(1805, 215, 0),
(1807, 213, 0),
(1808, 213, 0),
(1809, 213, 0),
(1810, 213, 0),
(1811, 213, 0),
(1812, 213, 0),
(1813, 213, 0),
(1814, 213, 0),
(1815, 213, 0),
(1820, 213, 0),
(1821, 214, 0),
(1822, 213, 0),
(1823, 213, 0),
(1824, 213, 0),
(1825, 213, 0),
(1826, 213, 0),
(1827, 215, 0),
(1828, 215, 0),
(1829, 215, 0),
(1830, 215, 0),
(1831, 215, 0),
(1833, 213, 0),
(1920, 191, 0),
(1936, 191, 0),
(1967, 218, 0),
(2067, 214, 0),
(2111, 191, 0),
(2115, 191, 0),
(2138, 191, 0),
(2146, 191, 0),
(2175, 191, 0),
(2188, 211, 0),
(2188, 229, 0),
(2266, 211, 0),
(2266, 228, 0),
(2284, 194, 0),
(2318, 191, 0),
(2328, 211, 0),
(2328, 225, 0),
(2334, 191, 0),
(2342, 194, 0),
(2349, 228, 0),
(2349, 235, 0),
(2360, 191, 0),
(2362, 191, 0),
(2363, 233, 0),
(2365, 233, 0),
(2367, 233, 0),
(2378, 233, 0),
(2382, 191, 0),
(2401, 191, 0),
(2402, 191, 0),
(2408, 211, 0),
(2408, 228, 0),
(2408, 236, 0),
(2412, 1, 0),
(2471, 212, 0),
(2471, 218, 0),
(2545, 194, 0),
(2556, 211, 0),
(2565, 194, 0),
(2565, 234, 0),
(2570, 1, 0),
(2573, 211, 0),
(2573, 236, 0),
(2580, 211, 0),
(2580, 228, 0),
(2597, 228, 0),
(2606, 1, 0),
(2609, 211, 0),
(2609, 225, 0),
(2618, 1, 0),
(2618, 194, 0),
(2618, 234, 0),
(2627, 229, 0),
(2627, 236, 0),
(2632, 211, 0),
(2632, 228, 0),
(2632, 236, 0),
(2653, 228, 0),
(2653, 236, 0),
(2667, 194, 0),
(2667, 234, 0),
(2678, 194, 0),
(2678, 234, 0),
(2692, 191, 0),
(2709, 194, 0),
(2709, 234, 0),
(2716, 194, 0),
(2716, 234, 0),
(2723, 194, 0),
(2723, 234, 0),
(2728, 194, 0),
(2728, 234, 0),
(2738, 194, 0),
(2738, 234, 0),
(2778, 194, 0),
(2778, 234, 0),
(2788, 1, 0),
(2790, 211, 0),
(2790, 229, 0),
(2790, 235, 0),
(2790, 236, 0),
(2828, 235, 0),
(2828, 236, 0),
(2859, 235, 0),
(2864, 194, 0),
(2864, 234, 0),
(2918, 191, 0),
(2955, 1, 0),
(2967, 191, 0),
(2968, 191, 0),
(2973, 1, 0),
(2976, 191, 0),
(3022, 235, 0),
(3064, 235, 0),
(3075, 211, 0),
(3075, 225, 0),
(3075, 236, 0),
(3085, 211, 0),
(3085, 229, 0),
(3085, 236, 0),
(3097, 211, 0),
(3097, 236, 0),
(3122, 194, 0),
(3122, 234, 0),
(3122, 241, 0),
(3122, 242, 0),
(3122, 243, 0),
(3122, 244, 0),
(3143, 1, 0),
(3143, 194, 0),
(3143, 234, 0),
(3157, 194, 0),
(3157, 234, 0),
(3169, 233, 0),
(3169, 234, 0),
(3174, 194, 0),
(3174, 234, 0),
(3193, 194, 0),
(3193, 234, 0),
(3233, 239, 0),
(3242, 240, 0),
(3253, 218, 0),
(3253, 245, 0),
(3329, 238, 0),
(3341, 193, 0),
(3348, 191, 0),
(3362, 247, 0),
(3363, 247, 0),
(3364, 247, 0),
(3383, 251, 0),
(3383, 252, 0),
(3383, 254, 0),
(3385, 211, 0),
(3385, 236, 0),
(3388, 219, 0),
(3388, 244, 0),
(3388, 248, 0),
(3388, 249, 0),
(3388, 254, 0),
(3389, 211, 0),
(3389, 236, 0),
(3405, 235, 0),
(3406, 117, 0),
(3406, 219, 0),
(3406, 242, 0),
(3406, 243, 0),
(3406, 244, 0),
(3406, 248, 0),
(3406, 249, 0),
(3406, 254, 0),
(3406, 255, 0),
(3411, 219, 0),
(3411, 248, 0),
(3411, 250, 0),
(3428, 212, 0),
(3428, 218, 0),
(3460, 193, 0),
(3462, 191, 0),
(3463, 191, 0),
(3465, 191, 0),
(3467, 191, 0),
(3468, 191, 0),
(3471, 191, 0),
(3475, 191, 0),
(3476, 256, 0),
(3487, 191, 0),
(3490, 191, 0),
(3498, 194, 0),
(3498, 234, 0),
(3498, 258, 0),
(3498, 259, 0),
(3498, 260, 0),
(3498, 261, 0),
(3509, 194, 0),
(3509, 234, 0),
(3509, 262, 0),
(3509, 263, 0),
(3509, 264, 0),
(3509, 265, 0),
(3509, 266, 0),
(3520, 194, 0),
(3520, 234, 0),
(3520, 259, 0),
(3520, 267, 0);

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_term_taxonomy` (
  `term_taxonomy_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `taxonomy` varchar(32) NOT NULL DEFAULT '',
  `description` longtext NOT NULL,
  `parent` bigint(20) unsigned NOT NULL DEFAULT '0',
  `count` bigint(20) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_taxonomy_id`),
  UNIQUE KEY `term_id_taxonomy` (`term_id`,`taxonomy`),
  KEY `taxonomy` (`taxonomy`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=268 ;

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

INSERT INTO `wp_term_taxonomy` (`term_taxonomy_id`, `term_id`, `taxonomy`, `description`, `parent`, `count`) VALUES
(1, 1, 'category', '', 0, 3),
(66, 66, 'post_tag', 'Tags posts about 8BIT.', 0, 0),
(67, 67, 'post_tag', '', 0, 0),
(68, 68, 'post_tag', 'Tags posts about Articles.', 0, 0),
(69, 69, 'post_tag', '', 0, 0),
(70, 70, 'post_tag', '', 0, 0),
(71, 71, 'post_tag', '', 0, 0),
(72, 72, 'post_tag', '', 0, 0),
(73, 73, 'post_tag', '', 0, 0),
(74, 74, 'post_tag', '', 0, 0),
(75, 75, 'post_tag', '', 0, 0),
(76, 76, 'post_tag', '', 0, 0),
(77, 77, 'post_tag', '', 0, 0),
(78, 78, 'post_tag', '', 0, 0),
(79, 79, 'post_tag', '', 0, 0),
(80, 80, 'post_tag', '', 0, 0),
(81, 81, 'post_tag', '', 0, 0),
(82, 82, 'post_tag', '', 0, 0),
(83, 83, 'post_tag', '', 0, 0),
(84, 84, 'post_tag', '', 0, 0),
(85, 85, 'post_tag', 'Tags posts about #dowork.', 0, 0),
(86, 86, 'post_tag', '', 0, 0),
(87, 87, 'post_tag', '', 0, 0),
(88, 88, 'post_tag', '', 0, 0),
(89, 89, 'post_tag', '', 0, 0),
(90, 90, 'post_tag', '', 0, 0),
(91, 91, 'post_tag', '', 0, 0),
(92, 92, 'post_tag', 'Tags posts about fail.', 0, 0),
(93, 93, 'post_tag', '', 0, 0),
(94, 94, 'post_tag', '', 0, 0),
(95, 95, 'post_tag', '', 0, 0),
(96, 96, 'post_tag', '', 0, 0),
(97, 97, 'post_tag', '', 0, 0),
(98, 98, 'post_tag', 'Tags posts about fun.', 0, 0),
(99, 99, 'post_tag', '', 0, 0),
(100, 100, 'post_tag', '', 0, 0),
(101, 101, 'post_tag', '', 0, 0),
(102, 102, 'post_tag', '', 0, 0),
(103, 103, 'post_tag', '', 0, 0),
(104, 104, 'post_tag', '', 0, 0),
(105, 105, 'post_tag', '', 0, 0),
(106, 106, 'post_tag', '', 0, 0),
(107, 107, 'post_tag', '', 0, 0),
(108, 108, 'post_tag', '', 0, 0),
(109, 109, 'post_tag', '', 0, 0),
(110, 110, 'post_tag', '', 0, 0),
(111, 111, 'post_tag', '', 0, 0),
(112, 112, 'post_tag', '', 0, 0),
(113, 113, 'post_tag', '', 0, 0),
(114, 114, 'post_tag', '', 0, 0),
(115, 115, 'post_tag', 'Tags posts about love.', 0, 0),
(116, 116, 'post_tag', '', 0, 0),
(117, 117, 'post_tag', '', 0, 1),
(118, 118, 'post_tag', '', 0, 0),
(119, 119, 'post_tag', '', 0, 0),
(120, 120, 'post_tag', '', 0, 0),
(121, 121, 'post_tag', '', 0, 0),
(122, 122, 'post_tag', 'Tags posts about motherships.', 0, 0),
(123, 123, 'post_tag', 'Tags posts about articles you must read.', 0, 0),
(124, 124, 'post_tag', 'Tags posts about that nailed it.', 0, 0),
(125, 125, 'post_tag', '', 0, 0),
(126, 126, 'post_tag', '', 0, 0),
(127, 127, 'post_tag', '', 0, 0),
(128, 128, 'post_tag', '', 0, 0),
(129, 129, 'post_tag', '', 0, 0),
(130, 130, 'post_tag', '', 0, 0),
(131, 131, 'post_tag', '', 0, 0),
(132, 132, 'post_tag', '', 0, 0),
(133, 133, 'post_tag', '', 0, 0),
(134, 134, 'post_tag', '', 0, 0),
(135, 135, 'post_tag', '', 0, 0),
(136, 136, 'post_tag', '', 0, 0),
(137, 137, 'post_tag', '', 0, 0),
(138, 138, 'post_tag', '', 0, 0),
(139, 139, 'post_tag', '', 0, 0),
(140, 140, 'post_tag', '', 0, 0),
(141, 141, 'post_tag', '', 0, 0),
(142, 142, 'post_tag', '', 0, 0),
(143, 143, 'post_tag', '', 0, 0),
(144, 144, 'post_tag', '', 0, 0),
(145, 145, 'post_tag', '', 0, 0),
(146, 146, 'post_tag', '', 0, 0),
(147, 147, 'post_tag', '', 0, 0),
(148, 148, 'post_tag', '', 0, 0),
(149, 149, 'post_tag', '', 0, 0),
(150, 150, 'post_tag', '', 0, 0),
(151, 151, 'post_tag', 'Tags posts about success.', 0, 0),
(152, 152, 'post_tag', 'Tags posts about swagger.', 0, 0),
(153, 153, 'post_tag', '', 0, 0),
(154, 154, 'post_tag', '', 0, 0),
(155, 155, 'post_tag', '', 0, 0),
(156, 156, 'post_tag', '', 0, 0),
(157, 157, 'post_tag', '', 0, 0),
(158, 158, 'post_tag', '', 0, 0),
(159, 159, 'post_tag', 'Tags posts about tags. #inception', 0, 0),
(160, 160, 'post_tag', '', 0, 0),
(161, 161, 'post_tag', '', 0, 0),
(162, 162, 'post_tag', '', 0, 0),
(163, 163, 'post_tag', '', 0, 0),
(164, 164, 'post_tag', '', 0, 0),
(165, 165, 'post_tag', '', 0, 0),
(166, 166, 'post_tag', '', 0, 0),
(167, 167, 'post_tag', '', 0, 0),
(168, 168, 'post_tag', '', 0, 0),
(169, 169, 'post_tag', 'Tags posts about things that cannot be unseen.', 0, 0),
(170, 170, 'post_tag', '', 0, 0),
(171, 171, 'post_tag', '', 0, 0),
(172, 172, 'post_tag', '', 0, 0),
(173, 173, 'post_tag', 'Tags posts about WordPress.', 0, 0),
(174, 174, 'post_tag', '', 0, 0),
(175, 175, 'post_tag', '', 0, 0),
(176, 176, 'nav_menu', '', 0, 3),
(181, 181, 'post_format', '', 0, 0),
(182, 182, 'post_format', '', 0, 0),
(183, 183, 'post_format', '', 0, 0),
(184, 184, 'post_format', '', 0, 0),
(185, 185, 'post_format', '', 0, 0),
(186, 186, 'post_format', '', 0, 0),
(187, 187, 'post_format', '', 0, 0),
(188, 188, 'post_format', '', 0, 0),
(189, 189, 'post_format', '', 0, 0),
(191, 191, 'nav_menu', '', 0, 29),
(192, 192, 'nav_menu', '', 0, 2),
(193, 193, 'nav_menu', '', 0, 2),
(194, 194, 'category', '', 234, 22),
(195, 195, 'post_tag', '', 0, 0),
(196, 196, 'post_tag', '', 0, 0),
(197, 197, 'post_tag', '', 0, 0),
(198, 198, 'post_tag', '', 0, 0),
(199, 199, 'post_tag', '', 0, 0),
(200, 200, 'post_tag', '', 0, 0),
(201, 201, 'post_tag', '', 0, 0),
(202, 202, 'post_tag', '', 0, 0),
(203, 203, 'post_tag', '', 0, 0),
(204, 204, 'post_tag', '', 0, 0),
(205, 205, 'post_tag', '', 0, 0),
(206, 206, 'post_tag', '', 0, 0),
(207, 207, 'post_tag', '', 0, 0),
(208, 208, 'post_tag', '', 0, 0),
(209, 209, 'post_tag', '', 0, 0),
(210, 210, 'courses', 'Default category for all Courses. It can not be deleted or renamed!', 0, 8),
(211, 211, 'events', 'Upcoming Events', 0, 13),
(212, 212, 'galleries', 'Default category for all Galleries. It can not be deleted or renamed!', 0, 2),
(213, 213, 'nav_menu', '', 0, 19),
(214, 214, 'nav_menu', '', 0, 2),
(215, 215, 'nav_menu', '', 0, 6),
(217, 217, 'courses', '', 0, 0),
(218, 218, 'galleries', '', 0, 4),
(219, 219, 'espresso_event_type', 'A single event that spans one or more consecutive days. Attendee''s register for the first date-time only', 0, 3),
(220, 220, 'espresso_event_type', 'Multiple, separate, but related events that occur on consecutive days. Attendee''s can register for any of the date-times', 0, 0),
(221, 221, 'espresso_event_type', ' Multiple events that occur over multiple non-consecutive days. Attendee''s register for the first date-time only', 0, 0),
(222, 222, 'espresso_event_type', 'Multiple events that occur over multiple non-consecutive days. Attendee''s can register for any of the date-times.', 0, 0),
(223, 223, 'espresso_event_type', 'An "event" that people can purchase tickets to gain access for anytime for this event regardless of date times on the event', 0, 0),
(225, 225, 'events', 'Two/Three Day Sessions', 211, 3),
(228, 228, 'events', 'Half Day Sessions', 211, 7),
(229, 229, 'events', 'Day Long Sessions', 211, 4),
(233, 233, 'category', '', 234, 5),
(234, 234, 'category', '', 0, 20),
(235, 235, 'events', 'All Past Events', 0, 6),
(236, 236, 'events', '', 0, 10),
(238, 238, 'nav_menu', '', 0, 1),
(239, 239, 'category', '', 246, 0),
(240, 240, 'nav_menu', '', 0, 1),
(241, 241, 'post_tag', '', 0, 1),
(242, 242, 'post_tag', '', 0, 2),
(243, 243, 'post_tag', '', 0, 2),
(244, 244, 'post_tag', '', 0, 3),
(245, 245, 'galleries', '', 0, 1),
(246, 246, 'category', '', 234, 0),
(247, 247, 'nav_menu', '', 0, 3),
(248, 248, 'espresso_event_categories', '', 0, 3),
(249, 249, 'espresso_event_categories', '', 248, 2),
(250, 250, 'espresso_event_categories', '', 248, 1),
(251, 251, 'tribe_events_cat', '', 0, 0),
(252, 252, 'tribe_events_cat', '', 251, 0),
(253, 253, 'tribe_events_cat', '', 251, 0),
(254, 254, 'post_tag', '', 0, 2),
(255, 255, 'post_tag', '', 0, 1),
(256, 256, 'category', '', 0, 1),
(257, 257, 'category', '', 0, 0),
(258, 258, 'post_tag', '', 0, 1),
(259, 259, 'post_tag', '', 0, 2),
(260, 260, 'post_tag', '', 0, 1),
(261, 261, 'post_tag', '', 0, 1),
(262, 262, 'post_tag', '', 0, 1),
(263, 263, 'post_tag', '', 0, 1),
(264, 264, 'post_tag', '', 0, 1),
(265, 265, 'post_tag', '', 0, 1),
(266, 266, 'post_tag', '', 0, 1),
(267, 267, 'post_tag', '', 0, 1);

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_termmeta` (
  `meta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `term_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`meta_id`),
  KEY `term_id` (`term_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_terms` (
  `term_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `name` varchar(200) NOT NULL DEFAULT '',
  `slug` varchar(200) NOT NULL DEFAULT '',
  `term_group` bigint(10) NOT NULL DEFAULT '0',
  PRIMARY KEY (`term_id`),
  KEY `slug` (`slug`(191)),
  KEY `name` (`name`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=268 ;

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

INSERT INTO `wp_terms` (`term_id`, `name`, `slug`, `term_group`) VALUES
(1, 'other', 'other', 0),
(66, '8BIT', '8bit', 0),
(67, 'alignment', 'alignment-2', 0),
(68, 'Articles', 'articles', 0),
(69, 'aside', 'aside', 0),
(70, 'audio', 'audio', 0),
(71, 'captions', 'captions-2', 0),
(72, 'categories', 'categories', 0),
(73, 'chat', 'chat', 0),
(74, 'chattels', 'chattels', 0),
(75, 'cienaga', 'cienaga', 0),
(76, 'claycold', 'claycold', 0),
(77, 'Codex', 'codex', 0),
(78, 'comments', 'comments-2', 0),
(79, 'content', 'content-2', 0),
(80, 'crushing', 'crushing', 0),
(81, 'css', 'css', 0),
(82, 'depo', 'depo', 0),
(83, 'dinarchy', 'dinarchy', 0),
(84, 'doolie', 'doolie', 0),
(85, 'dowork', 'dowork', 0),
(86, 'edge case', 'edge-case', 0),
(87, 'embeds', 'embeds-2', 0),
(88, 'energumen', 'energumen', 0),
(89, 'ephialtes', 'ephialtes', 0),
(90, 'eudiometer', 'eudiometer', 0),
(91, 'excerpt', 'excerpt-2', 0),
(92, 'Fail', 'fail', 0),
(93, 'featured image', 'featured-image', 0),
(94, 'figuriste', 'figuriste', 0),
(95, 'filler', 'filler', 0),
(96, 'formatting', 'formatting-2', 0),
(97, 'FTW', 'ftw', 0),
(98, 'Fun', 'fun', 0),
(99, 'gallery', 'gallery', 0),
(100, 'goes here', 'goes-here', 0),
(101, 'habergeon', 'habergeon', 0),
(102, 'hapless', 'hapless', 0),
(103, 'hartshorn', 'hartshorn', 0),
(104, 'hostility impregnability', 'hostility-impregnability', 0),
(105, 'html', 'html', 0),
(106, 'image', 'image', 0),
(107, 'impropriation', 'impropriation', 0),
(108, 'is', 'is', 0),
(109, 'jetpack', 'jetpack-2', 0),
(110, 'knave', 'knave', 0),
(111, 'layout', 'layout', 0),
(112, 'link', 'link', 0),
(113, 'lists', 'lists-2', 0),
(114, 'lorem', 'lorem', 0),
(115, 'Love', 'love', 0),
(116, 'markup', 'markup-2', 0),
(117, 'media', 'media', 0),
(118, 'misinformed', 'misinformed', 0),
(119, 'moil', 'moil', 0),
(120, 'more', 'more', 0),
(121, 'mornful', 'mornful', 0),
(122, 'Mothership', 'mothership', 0),
(123, 'Must Read', 'mustread', 0),
(124, 'Nailed It', 'nailedit', 0),
(125, 'outlaw', 'outlaw', 0),
(126, 'pagination', 'pagination', 0),
(127, 'pamphjlet', 'pamphjlet', 0),
(128, 'password', 'password-2', 0),
(129, 'Pictures', 'pictures', 0),
(130, 'pingbacks', 'pingbacks-2', 0),
(131, 'pneumatics', 'pneumatics', 0),
(132, 'portly portreeve', 'portly-portreeve', 0),
(133, 'post', 'post', 0),
(134, 'Post Formats', 'post-formats', 0),
(135, 'precipitancy', 'precipitancy', 0),
(136, 'privation', 'privation', 0),
(137, 'programme', 'programme', 0),
(138, 'psychological', 'psychological', 0),
(139, 'puncher', 'puncher', 0),
(140, 'quote', 'quote', 0),
(141, 'ramose', 'ramose', 0),
(142, 'read more', 'read-more', 0),
(143, 'readability', 'readability', 0),
(144, 'renegade', 'renegade', 0),
(145, 'retrocede', 'retrocede', 0),
(146, 'shortcode', 'shortcode', 0),
(147, 'stagnation unhorsed', 'stagnation-unhorsed', 0),
(148, 'standard', 'standard-2', 0),
(149, 'status', 'status', 0),
(150, 'sticky', 'sticky-2', 0),
(151, 'Success', 'success', 0),
(152, 'Swagger', 'swagger', 0),
(153, 'Tag A', 'tag-a', 0),
(154, 'Tag B', 'tag-b', 0),
(155, 'Tag C', 'tag-c', 0),
(156, 'tag1', 'tag1', 0),
(157, 'tag2', 'tag2', 0),
(158, 'tag3', 'tag3', 0),
(159, 'Tags', 'tags', 0),
(160, 'template', 'template', 0),
(161, 'text', 'text', 0),
(162, 'the man', 'the-man', 0),
(163, 'thunderheaded', 'thunderheaded', 0),
(164, 'tiled', 'tiled', 0),
(165, 'title', 'title', 0),
(166, 'trackbacks', 'trackbacks-2', 0),
(167, 'twitter', 'twitter-2', 0),
(168, 'unculpable', 'unculpable', 0),
(169, 'Unseen', 'unseen', 0),
(170, 'video', 'video', 0),
(171, 'videopress', 'videopress', 0),
(172, 'withered brandnew', 'withered-brandnew', 0),
(173, 'WordPress', 'wordpress', 0),
(174, 'wordpress.tv', 'wordpress-tv', 0),
(175, 'xanthopsia', 'xanthopsia', 0),
(176, 'All Pages', 'all-pages', 0),
(181, 'Gallery', 'post-format-gallery', 0),
(182, 'Aside', 'post-format-aside', 0),
(183, 'Chat', 'post-format-chat', 0),
(184, 'Link', 'post-format-link', 0),
(185, 'Image', 'post-format-image', 0),
(186, 'Quote', 'post-format-quote', 0),
(187, 'Status', 'post-format-status', 0),
(188, 'Video', 'post-format-video', 0),
(189, 'Audio', 'post-format-audio', 0),
(191, 'Main Navigation', 'main-navigation', 0),
(192, 'Social Menu', 'social-menu', 0),
(193, 'Top', 'top', 0),
(194, 'Latest News', 'latest-news', 0),
(195, 'books', 'books', 0),
(196, 'Boston', 'boston', 0),
(197, 'Cody Rotschild', 'cody-rotschild', 0),
(198, 'competition', 'competition', 0),
(199, 'games', 'games', 0),
(200, 'holidays', 'holidays', 0),
(201, 'knowledge exchange', 'knowledge-exchange', 0),
(202, 'Marc Bloom', 'marc-bloom', 0),
(203, 'meetings', 'meetings', 0),
(204, 'Megan Boyle', 'megan-boyle', 0),
(205, 'Montreal', 'montreal', 0),
(206, 'publications', 'publications', 0),
(207, 'school', 'school', 0),
(208, 'students', 'students', 0),
(209, 'students exchange', 'students-exchange', 0),
(210, 'course', 'course-2', 0),
(211, 'Upcoming Events', 'upcoming-events', 0),
(212, 'gallery', 'gallery', 0),
(213, 'Main Menu', 'main-menu', 0),
(214, 'Footer lelf', 'footer-lelf', 0),
(215, 'Footer Menu', 'footer-menu', 0),
(217, 'Courses', 'courses', 0),
(218, 'Galleries', 'galleries', 0),
(219, 'Single Event', 'single-event', 0),
(220, 'Multi Event', 'multi-event', 0),
(221, 'Event Series', 'event-series', 0),
(222, 'Recurring Event', 'recurring-event', 0),
(223, 'Ongoing Event', 'ongoing', 0),
(225, 'Conferences', 'conferences', 0),
(228, 'Seminars', 'seminars', 0),
(229, 'Workshops', 'workshops', 0),
(233, 'Commentary', 'commentary', 0),
(234, 'News', 'news', 0),
(235, 'Past Events', 'past-events', 0),
(236, 'Events', 'events', 0),
(238, 'Social media top', 'social-media-top', 0),
(239, 'Past Event', 'past-event', 0),
(240, 'Past event', 'past-event', 0),
(241, 'Spark sessions', 'spark-sessions', 0),
(242, 'volunteer', 'volunteer', 0),
(243, 'internship', 'internship', 0),
(244, 'civil society', 'civil-society', 0),
(245, 'Course-Galleries', 'course-galleries', 0),
(246, 'Event', 'event', 0),
(247, 'footer lelf1', 'footer-lelf1', 0),
(248, 'Event', 'event', 0),
(249, 'Upcoming Event', 'upcoming-event', 0),
(250, 'Past Event', 'past-event', 0),
(251, 'Event', 'event', 0),
(252, 'Upcoming event', 'upcoming-event', 0),
(253, 'Past event', 'past-event', 0),
(254, 'event', 'event', 0),
(255, 'workshop', 'workshop', 0),
(256, 'Books', 'books', 0),
(257, 'Articles', 'articles', 0),
(258, 'university', 'university', 0),
(259, 'asean', 'asean', 0),
(260, 'Stenden', 'stenden', 0),
(261, 'higher education', 'higher-education', 0),
(262, 'nationalism', 'nationalism', 0),
(263, 'Benedict Anderson', 'benedict-anderson', 0),
(264, 'Networking', 'networking', 0),
(265, 'Roundtable', 'roundtable', 0),
(266, 'Human Rights', 'human-rights', 0),
(267, 'Education', 'education', 0);

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_usermeta` (
  `umeta_id` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` bigint(20) unsigned NOT NULL DEFAULT '0',
  `meta_key` varchar(255) DEFAULT NULL,
  `meta_value` longtext,
  PRIMARY KEY (`umeta_id`),
  KEY `user_id` (`user_id`),
  KEY `meta_key` (`meta_key`(191))
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=297 ;

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

INSERT INTO `wp_usermeta` (`umeta_id`, `user_id`, `meta_key`, `meta_value`) VALUES
(1, 1, 'nickname', 'asiacentre.co.th'),
(2, 1, 'first_name', 'Barry'),
(3, 1, 'last_name', 'Gildea'),
(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:7:{s:13:"administrator";b:1;s:14:"frm_view_forms";b:1;s:14:"frm_edit_forms";b:1;s:16:"frm_delete_forms";b:1;s:19:"frm_change_settings";b:1;s:16:"frm_view_entries";b:1;s:18:"frm_delete_entries";b:1;}'),
(11, 1, 'wp_user_level', '10'),
(12, 1, 'dismissed_wp_pointers', 'wp360_locks,wp390_widgets,wp410_dfw,wpmudcs1'),
(13, 1, 'show_welcome_panel', '0'),
(15, 1, 'wp_dashboard_quick_press_last_post_id', '2603'),
(16, 1, 'nav_menu_recently_edited', '191'),
(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:3:{i:0;s:8:"add-post";i:1;s:12:"add-post_tag";i:2;s:15:"add-post_format";}'),
(19, 1, 'closedpostboxes_dashboard', 'a:3:{i:0;s:21:"dashboard_quick_press";i:1;s:17:"dashboard_primary";i:2;s:18:"dashboard_activity";}'),
(20, 1, 'metaboxhidden_dashboard', 'a:3:{i:0;s:24:"wpseo-dashboard-overview";i:1;s:17:"dashboard_primary";i:2;s:18:"dashboard_activity";}'),
(21, 1, 'meta-box-order_dashboard', 'a:4:{s:6:"normal";s:19:"dashboard_right_now";s:4:"side";s:58:"dashboard_quick_press,dashboard_primary,dashboard_activity";s:7:"column3";s:0:"";s:7:"column4";s:0:"";}'),
(22, 1, 'wp_user-settings', 'libraryContent=browse&posts_list_mode=list&hidetb=1&editor=tinymce&wplink=1&align=right&urlbutton=none&advImgDetails=show'),
(23, 1, 'wp_user-settings-time', '1444708843'),
(50, 1, 'closedpostboxes_page', 'a:3:{i:0;s:17:"customsidebars-mb";i:1;s:12:"postimagediv";i:2;s:10:"wpseo_meta";}'),
(51, 1, 'metaboxhidden_page', 'a:3:{i:0;s:10:"postcustom";i:1;s:7:"slugdiv";i:2;s:9:"authordiv";}'),
(53, 1, 'wpseo_ignore_tour', '1'),
(54, 1, 'wpseo_seen_about_version', '3.0.7'),
(55, 1, 'wpseo_dismissed_gsc_notice', '1'),
(56, 1, 'closedpostboxes_gallery', 'a:2:{i:0;s:10:"wpseo_meta";i:1;s:7:"slugdiv";}'),
(57, 1, 'metaboxhidden_gallery', 'a:0:{}'),
(58, 1, 'closedpostboxes_attachment', 'a:1:{i:0;s:10:"wpseo_meta";}'),
(59, 1, 'metaboxhidden_attachment', 'a:2:{i:0;s:7:"slugdiv";i:1;s:9:"authordiv";}'),
(60, 1, 'closedpostboxes_hom_page', 'a:1:{i:0;s:10:"wpseo_meta";}'),
(61, 1, 'metaboxhidden_hom_page', 'a:1:{i:0;s:7:"slugdiv";}'),
(62, 1, 'meta-box-order_gallery', 'a:3:{s:4:"side";s:35:"submitdiv,galleriesdiv,postimagediv";s:6:"normal";s:33:"gallery_upload,wpseo_meta,slugdiv";s:8:"advanced";s:0:"";}'),
(63, 1, 'screen_layout_gallery', '2'),
(64, 1, 'wp_media_library_mode', 'grid'),
(68, 1, 'closedpostboxes_slider', 'a:0:{}'),
(69, 1, 'metaboxhidden_slider', 'a:1:{i:0;s:7:"slugdiv";}'),
(71, 3, 'nickname', 'jamesgomez'),
(72, 3, 'first_name', 'James'),
(73, 3, 'last_name', 'Gomez'),
(74, 3, 'description', ''),
(75, 3, 'rich_editing', 'true'),
(76, 3, 'comment_shortcuts', 'false'),
(77, 3, 'admin_color', 'fresh'),
(78, 3, 'use_ssl', '0'),
(79, 3, 'show_admin_bar_front', 'true'),
(80, 3, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(81, 3, 'wp_user_level', '10'),
(82, 3, 'dismissed_wp_pointers', 'wpmudcs1'),
(83, 4, 'nickname', 'robinramcharan'),
(84, 4, 'first_name', 'Robin'),
(85, 4, 'last_name', 'Ramcharan'),
(86, 4, 'description', ''),
(87, 4, 'rich_editing', 'true'),
(88, 4, 'comment_shortcuts', 'false'),
(89, 4, 'admin_color', 'fresh'),
(90, 4, 'use_ssl', '0'),
(91, 4, 'show_admin_bar_front', 'true'),
(92, 4, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(93, 4, 'wp_user_level', '10'),
(94, 4, 'dismissed_wp_pointers', 'wpmudcs1'),
(95, 1, '_yoast_wpseo_profile_updated', '1443073806'),
(96, 1, 'wpseo_title', ''),
(97, 1, 'wpseo_metadesc', ''),
(98, 1, 'wpseo_metakey', ''),
(99, 1, 'wpseo_excludeauthorsitemap', ''),
(100, 1, 'googleplus', ''),
(101, 1, 'twitter', ''),
(102, 1, 'facebook', ''),
(103, 1, 'closedpostboxes_event', 'a:2:{i:0;s:17:"customsidebars-mb";i:1;s:10:"wpseo_meta";}'),
(104, 1, 'metaboxhidden_event', 'a:1:{i:0;s:7:"slugdiv";}'),
(105, 4, 'default_password_nag', ''),
(107, 4, 'wp_dashboard_quick_press_last_post_id', '2103'),
(109, 4, 'wpseo_ignore_tour', '1'),
(110, 1, 'wp_defaulttoplevel_page_espresso_eventscolumnshidden', '1'),
(111, 1, 'managetoplevel_page_espresso_eventscolumnshidden', 'a:1:{i:0;s:6:"author";}'),
(115, 3, 'default_password_nag', ''),
(117, 3, 'wp_dashboard_quick_press_last_post_id', '3197'),
(118, 3, 'wpseo_ignore_tour', '1'),
(119, 3, '_yoast_wpseo_profile_updated', '1455357324'),
(120, 3, 'wpseo_title', ''),
(121, 3, 'wpseo_metadesc', ''),
(122, 3, 'wpseo_metakey', ''),
(123, 3, 'wpseo_excludeauthorsitemap', ''),
(124, 3, 'googleplus', ''),
(125, 3, 'twitter', ''),
(126, 3, 'facebook', ''),
(127, 5, 'nickname', 'michelledcruz'),
(128, 5, 'first_name', 'Michelle'),
(129, 5, 'last_name', 'Dcruz'),
(130, 5, 'description', ''),
(131, 5, 'rich_editing', 'true'),
(132, 5, 'comment_shortcuts', 'false'),
(133, 5, 'admin_color', 'fresh'),
(134, 5, 'use_ssl', '0'),
(135, 5, 'show_admin_bar_front', 'true'),
(136, 5, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(137, 5, 'wp_user_level', '10'),
(138, 5, 'dismissed_wp_pointers', 'wpmudcs1'),
(139, 6, 'nickname', 'patcharee'),
(140, 6, 'first_name', 'Patcharee'),
(141, 6, 'last_name', 'Rattanarong'),
(142, 6, 'description', ''),
(143, 6, 'rich_editing', 'true'),
(144, 6, 'comment_shortcuts', 'false'),
(145, 6, 'admin_color', 'fresh'),
(146, 6, 'use_ssl', '0'),
(147, 6, 'show_admin_bar_front', 'true'),
(148, 6, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(149, 6, 'wp_user_level', '10'),
(150, 6, 'dismissed_wp_pointers', 'wpmudcs1,addtoany_settings_pointer'),
(151, 5, 'default_password_nag', ''),
(153, 5, 'closedpostboxes_dashboard', 'a:0:{}'),
(154, 5, 'metaboxhidden_dashboard', 'a:0:{}'),
(155, 5, 'wp_user-settings', 'mfold=o&libraryContent=browse&editor=tinymce&advImgDetails=show&wplink=1&align=right&hidetb=1'),
(156, 5, 'wp_user-settings-time', '1481886919'),
(157, 5, '_yoast_wpseo_profile_updated', '1455256000'),
(158, 5, 'wpseo_title', ''),
(159, 5, 'wpseo_metadesc', ''),
(160, 5, 'wpseo_metakey', ''),
(161, 5, 'wpseo_excludeauthorsitemap', ''),
(162, 5, 'googleplus', ''),
(163, 5, 'twitter', ''),
(164, 5, 'facebook', ''),
(165, 6, '_yoast_wpseo_profile_updated', '1481689479'),
(166, 6, 'wpseo_title', ''),
(167, 6, 'wpseo_metadesc', ''),
(168, 6, 'wpseo_metakey', ''),
(169, 6, 'wpseo_excludeauthorsitemap', ''),
(170, 6, 'googleplus', ''),
(171, 6, 'twitter', ''),
(172, 6, 'facebook', ''),
(173, 6, 'default_password_nag', ''),
(175, 6, 'wp_dashboard_quick_press_last_post_id', '3496'),
(178, 5, 'wp_dashboard_quick_press_last_post_id', '3479'),
(179, 5, 'wpseo_ignore_tour', '1'),
(182, 6, 'closedpostboxes_page', 'a:0:{}'),
(183, 6, 'metaboxhidden_page', 'a:1:{i:0;s:9:"authordiv";}'),
(186, 1, 'frm_ignore_tour', '1'),
(187, 6, 'frm_ignore_tour', '1'),
(189, 6, 'wp_user-settings', 'libraryContent=browse&advImgDetails=show&editor=tinymce&hidetb=1&mfold=o&imgsize=full'),
(190, 6, 'wp_user-settings-time', '1483090044'),
(191, 6, 'closedpostboxes_gallery', 'a:1:{i:0;s:10:"wpseo_meta";}'),
(192, 6, 'metaboxhidden_gallery', 'a:1:{i:0;s:7:"slugdiv";}'),
(193, 5, 'frm_ignore_tour', '1'),
(194, 5, 'wpseo_seen_about_version', '3.0.7'),
(195, 1, 'wp_limit_login_nag_ignore', 'true'),
(196, 5, 'nav_menu_recently_edited', '176'),
(197, 5, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";i:4;s:15:"title-attribute";}'),
(198, 5, 'metaboxhidden_nav-menus', 'a:10:{i:0;s:22:"add-post-type-hom_page";i:1;s:19:"add-post-type-event";i:2;s:20:"add-post-type-course";i:3;s:21:"add-post-type-gallery";i:4;s:20:"add-post-type-slider";i:5;s:19:"add-post-type-chunk";i:6;s:12:"add-post_tag";i:7;s:10:"add-events";i:8;s:11:"add-courses";i:9;s:13:"add-galleries";}'),
(199, 1, 'session_tokens', 'a:1:{s:64:"882b273facbebc679d8a8af1ff7aa4fe4de325ebd10e477bc26c883af7ea28b8";a:4:{s:10:"expiration";i:1461490386;s:2:"ip";s:14:"171.96.182.229";s:2:"ua";s:120:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_11_4) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/50.0.2661.75 Safari/537.36";s:5:"login";i:1461317586;}}'),
(200, 3, 'frm_ignore_tour', '1'),
(201, 3, 'closedpostboxes_dashboard', 'a:2:{i:0;s:24:"wpseo-dashboard-overview";i:1;s:21:"dashboard_quick_press";}'),
(202, 3, 'metaboxhidden_dashboard', 'a:0:{}'),
(203, 3, 'wpseo_seen_about_version', '3.0.7'),
(205, 3, 'wp_user-settings', 'libraryContent=browse&mfold=o&editor=tinymce&hidetb=1&advImgDetails=show'),
(206, 3, 'wp_user-settings-time', '1479355684'),
(207, 3, 'nav_menu_recently_edited', '191'),
(208, 3, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";i:4;s:15:"title-attribute";}'),
(209, 3, 'metaboxhidden_nav-menus', 'a:10:{i:0;s:22:"add-post-type-hom_page";i:1;s:19:"add-post-type-event";i:2;s:20:"add-post-type-course";i:3;s:21:"add-post-type-gallery";i:4;s:20:"add-post-type-slider";i:5;s:19:"add-post-type-chunk";i:6;s:12:"add-post_tag";i:7;s:10:"add-events";i:8;s:11:"add-courses";i:9;s:13:"add-galleries";}'),
(210, 3, 'closedpostboxes_page', 'a:0:{}'),
(211, 3, 'metaboxhidden_page', 'a:3:{i:0;s:10:"postcustom";i:1;s:7:"slugdiv";i:2;s:9:"authordiv";}'),
(212, 3, 'closedpostboxes_slider', 'a:0:{}'),
(213, 3, 'metaboxhidden_slider', 'a:1:{i:0;s:7:"slugdiv";}'),
(216, 3, 'closedpostboxes_post', 'a:0:{}'),
(217, 3, 'metaboxhidden_post', 'a:3:{i:0;s:10:"postcustom";i:1;s:7:"slugdiv";i:2;s:9:"authordiv";}'),
(218, 3, 'meta-box-order_post', 'a:3:{s:4:"side";s:69:"submitdiv,categorydiv,tagsdiv-post_tag,customsidebars-mb,postimagediv";s:6:"normal";s:51:"wpseo_meta,postexcerpt,postcustom,slugdiv,authordiv";s:8:"advanced";s:0:"";}'),
(219, 3, 'screen_layout_post', '2'),
(226, 6, 'wporg_favorites', ''),
(227, 1, 'closedpostboxes_post', 'a:2:{i:0;s:16:"tagsdiv-post_tag";i:1;s:17:"customsidebars-mb";}'),
(228, 1, 'metaboxhidden_post', 'a:5:{i:0;s:12:"revisionsdiv";i:1;s:11:"postexcerpt";i:2;s:10:"postcustom";i:3;s:7:"slugdiv";i:4;s:9:"authordiv";}'),
(231, 5, 'closedpostboxes_event', 'a:0:{}'),
(232, 5, 'metaboxhidden_event', 'a:1:{i:0;s:7:"slugdiv";}'),
(233, 6, 'wpseo_seen_about_version', '3.0.7'),
(234, 6, 'wpseo_ignore_tour', '1'),
(235, 5, 'session_tokens', 'a:2:{s:64:"b2445cee6c0f2735d80de319d2f713aa1c94eb430838a56b66657ad4ed23fe9c";a:4:{s:10:"expiration";i:1484815089;s:2:"ip";s:13:"27.145.194.69";s:2:"ua";s:115:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50";s:5:"login";i:1484642289;}s:64:"25ab923807aa71e9eb40da3e451ff2d1e04b012337e65ec2d9f0f2b4d613f8ba";a:4:{s:10:"expiration";i:1484975734;s:2:"ip";s:14:"27.145.194.104";s:2:"ua";s:115:"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12) AppleWebKit/602.1.50 (KHTML, like Gecko) Version/10.0 Safari/602.1.50";s:5:"login";i:1484802934;}}'),
(236, 5, 'closedpostboxes_post', 'a:0:{}'),
(237, 5, 'metaboxhidden_post', 'a:4:{i:0;s:11:"postexcerpt";i:1;s:10:"postcustom";i:2;s:7:"slugdiv";i:3;s:9:"authordiv";}'),
(239, 6, 'nav_menu_recently_edited', '191'),
(240, 6, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:"link-target";i:1;s:15:"title-attribute";i:2;s:11:"css-classes";i:3;s:3:"xfn";i:4;s:11:"description";}'),
(241, 6, 'metaboxhidden_nav-menus', 'a:1:{i:0;s:11:"add-courses";}'),
(248, 6, 'closedpostboxes_chunk', 'a:0:{}'),
(249, 6, 'metaboxhidden_chunk', 'a:1:{i:0;s:7:"slugdiv";}'),
(251, 8, 'nickname', 'patchareer'),
(252, 8, 'first_name', 'Patcharee'),
(253, 8, 'last_name', 'Rattanarong'),
(254, 8, 'description', ''),
(255, 8, 'rich_editing', 'true'),
(256, 8, 'comment_shortcuts', 'false'),
(257, 8, 'admin_color', 'fresh'),
(258, 8, 'use_ssl', '0'),
(259, 8, 'show_admin_bar_front', 'true'),
(260, 8, 'wp_capabilities', 'a:1:{s:13:"administrator";b:1;}'),
(261, 8, 'wp_user_level', '10'),
(262, 8, 'dismissed_wp_pointers', ''),
(263, 8, 'session_tokens', 'a:1:{s:64:"974f2300bca0d67878b1eee97280d74f277c323f3b23ad8c616cb995f27552c1";a:4:{s:10:"expiration";i:1481691935;s:2:"ip";s:13:"58.11.118.184";s:2:"ua";s:73:"Mozilla/5.0 (Windows NT 10.0; WOW64; rv:50.0) Gecko/20100101 Firefox/50.0";s:5:"login";i:1480482335;}}'),
(264, 8, 'wp_dashboard_quick_press_last_post_id', '3115'),
(265, 8, 'frm_ignore_tour', '1'),
(266, 8, 'wpseo_ignore_tour', '1'),
(267, 8, 'nav_menu_recently_edited', '191'),
(268, 8, 'managenav-menuscolumnshidden', 'a:5:{i:0;s:11:"link-target";i:1;s:11:"css-classes";i:2;s:3:"xfn";i:3;s:11:"description";i:4;s:15:"title-attribute";}'),
(269, 8, 'metaboxhidden_nav-menus', 'a:10:{i:0;s:22:"add-post-type-hom_page";i:1;s:19:"add-post-type-event";i:2;s:20:"add-post-type-course";i:3;s:21:"add-post-type-gallery";i:4;s:20:"add-post-type-slider";i:5;s:19:"add-post-type-chunk";i:6;s:12:"add-post_tag";i:7;s:10:"add-events";i:8;s:11:"add-courses";i:9;s:13:"add-galleries";}'),
(270, 8, 'closedpostboxes_event', 'a:0:{}'),
(271, 8, 'metaboxhidden_event', 'a:1:{i:0;s:7:"slugdiv";}'),
(272, 8, 'wpseo_seen_about_version', '3.0.7'),
(274, 8, '_yoast_wpseo_profile_updated', '1482371019'),
(275, 8, 'wpseo_title', ''),
(276, 8, 'wpseo_metadesc', ''),
(277, 8, 'wpseo_metakey', ''),
(278, 8, 'wpseo_excludeauthorsitemap', ''),
(279, 8, 'googleplus', ''),
(280, 8, 'twitter', ''),
(281, 8, 'facebook', ''),
(282, 6, 'session_tokens', 'a:2:{s:64:"292b5849a33330a4cff2ef642e7109823af3875650058600b9e8b07cb21b8014";a:4:{s:10:"expiration";i:1485326606;s:2:"ip";s:15:"124.121.239.220";s:2:"ua";s:109:"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36";s:5:"login";i:1485153806;}s:64:"475588be4ebc423feab8cc9849ffe60676e599b016144d93e3f3bc8672c7e321";a:4:{s:10:"expiration";i:1485338330;s:2:"ip";s:15:"124.121.239.220";s:2:"ua";s:109:"Mozilla/5.0 (Windows NT 10.0; WOW64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/55.0.2883.87 Safari/537.36";s:5:"login";i:1485165530;}}'),
(283, 6, 'closedpostboxes_nav-menus', 'a:0:{}'),
(284, 6, 'closedpostboxes_hom_page', 'a:0:{}'),
(285, 6, 'metaboxhidden_hom_page', 'a:1:{i:0;s:7:"slugdiv";}'),
(286, 6, 'closedpostboxes_slider', 'a:1:{i:0;s:10:"wpseo_meta";}'),
(287, 6, 'metaboxhidden_slider', 'a:1:{i:0;s:7:"slugdiv";}'),
(288, 6, 'closedpostboxes_event', 'a:1:{i:0;s:10:"wpseo_meta";}'),
(289, 6, 'metaboxhidden_event', 'a:1:{i:0;s:7:"slugdiv";}'),
(290, 6, 'closedpostboxes_post', 'a:0:{}'),
(291, 6, 'metaboxhidden_post', 'a:5:{i:0;s:12:"revisionsdiv";i:1;s:11:"postexcerpt";i:2;s:10:"postcustom";i:3;s:7:"slugdiv";i:4;s:9:"authordiv";}'),
(292, 6, 'wp_media_library_mode', 'grid'),
(293, 6, 'wp_defaulttoplevel_page_espresso_eventscolumnshidden', '1'),
(294, 6, 'managetoplevel_page_espresso_eventscolumnshidden', 'a:1:{i:0;s:6:"author";}'),
(295, 6, 'closedpostboxes_espresso_events', 'a:1:{i:0;s:27:"espresso_event_editor_venue";}'),
(296, 6, 'metaboxhidden_espresso_events', 'a:0:{}');

-- --------------------------------------------------------

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

CREATE TABLE IF NOT EXISTS `wp_users` (
  `ID` bigint(20) unsigned NOT NULL AUTO_INCREMENT,
  `user_login` varchar(60) NOT NULL DEFAULT '',
  `user_pass` varchar(255) NOT NULL DEFAULT '',
  `user_nicename` varchar(50) NOT NULL DEFAULT '',
  `user_email` varchar(100) NOT NULL DEFAULT '',
  `user_url` varchar(100) NOT NULL DEFAULT '',
  `user_registered` datetime NOT NULL DEFAULT '0000-00-00 00:00:00',
  `user_activation_key` varchar(255) NOT NULL DEFAULT '',
  `user_status` int(11) NOT NULL DEFAULT '0',
  `display_name` varchar(250) NOT NULL DEFAULT '',
  PRIMARY KEY (`ID`),
  KEY `user_login_key` (`user_login`),
  KEY `user_nicename` (`user_nicename`),
  KEY `user_email` (`user_email`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=9 ;

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

INSERT INTO `wp_users` (`ID`, `user_login`, `user_pass`, `user_nicename`, `user_email`, `user_url`, `user_registered`, `user_activation_key`, `user_status`, `display_name`) VALUES
(1, 'asiacentre.co.th', '$P$BNhHjFvc6t8/UYfHfXo7Ars7Bbg4dC/', 'asiacentre-co-th', 'barry.gildea@gmail.com', '', '2015-05-25 09:11:13', '1455558281:$P$BnrB6/9Mzq1RW5AX2eXQDfV3SpOTRj1', 0, 'asiacentre.co.th'),
(3, 'jamesgomez', '$P$BjfqM/xLPsKheqTwi25Y0L.cesH7B50', 'jamesgomez', 'james@asiacentre.co.th', 'http://asiacentre.co.th', '2015-09-24 05:48:29', '1455351888:$P$BaY1IgnjskjjsEYmcATA3nv.XfTUcD1', 0, 'James Gomez'),
(4, 'robinramcharan', '$P$BCRIr/JQIgnGAj0TiLaJKnGUEq97hs0', 'robinramcharan', 'robin@asiacentre.co.th', '', '2015-09-24 05:49:24', '1455354109:$P$Bj.pV33rl6ExCA2491gF/ceGfSFVy/0', 0, 'Robin Ramcharan'),
(5, 'michelledcruz', '$P$BWRTUA6K.v/JJ7PFmEMjdnkgOQo/Z11', 'michelledcruz', 'michelle@asiacentre.co.th', 'http://asiacentre.co.th', '2015-10-13 06:54:25', '1455254597:$P$BBuF.uCy45NCZY17wjk2AkK6gCYt9X1', 0, 'Michelle Dcruz'),
(6, 'patcharee', '$P$BIrlTbmyKEuudN/xW/mgiB.HlmOyS9.', 'patcharee', 'info@asiacentre.co.th', 'http://asiacentre.co.th', '2015-10-13 06:55:35', '1480385712:$P$Bds/ThqmIq9gvfyh4zaJ4kxJffVd.M1', 0, 'Patcharee Rattanarong'),
(8, 'patchareer', '$P$BYHxpYZ1TMGZt1yddFQi9AlfcSaXQ5/', 'patchareer', 'infoasiacentre@gmail.com', '', '2016-11-30 05:02:11', '', 0, 'Patcharee Rattanarong');

-- --------------------------------------------------------

--
-- Table structure for table `wp_wpgmza`
--

CREATE TABLE IF NOT EXISTS `wp_wpgmza` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `address` varchar(700) NOT NULL,
  `description` mediumtext NOT NULL,
  `pic` varchar(700) NOT NULL,
  `link` varchar(700) NOT NULL,
  `icon` varchar(700) NOT NULL,
  `lat` varchar(100) NOT NULL,
  `lng` varchar(100) NOT NULL,
  `anim` varchar(3) NOT NULL,
  `title` varchar(700) NOT NULL,
  `infoopen` varchar(3) NOT NULL,
  `category` varchar(500) NOT NULL,
  `approved` tinyint(1) DEFAULT '1',
  `retina` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=utf8 AUTO_INCREMENT=4 ;

--
-- Dumping data for table `wp_wpgmza`
--

INSERT INTO `wp_wpgmza` (`id`, `map_id`, `address`, `description`, `pic`, `link`, `icon`, `lat`, `lng`, `anim`, `title`, `infoopen`, `category`, `approved`, `retina`) VALUES
(3, 1, '13.756312,100.532647', '', '', '', '', '13.756312', '100.532647', '2', '', '1', '', 1, 0);

-- --------------------------------------------------------

--
-- Table structure for table `wp_wpgmza_categories`
--

CREATE TABLE IF NOT EXISTS `wp_wpgmza_categories` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `active` tinyint(1) NOT NULL,
  `category_name` varchar(50) NOT NULL,
  `category_icon` varchar(700) NOT NULL,
  `retina` tinyint(1) DEFAULT '0',
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_wpgmza_category_maps`
--

CREATE TABLE IF NOT EXISTS `wp_wpgmza_category_maps` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `cat_id` int(11) NOT NULL,
  `map_id` int(11) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_wpgmza_maps`
--

CREATE TABLE IF NOT EXISTS `wp_wpgmza_maps` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_title` varchar(50) NOT NULL,
  `map_width` varchar(6) NOT NULL,
  `map_height` varchar(6) NOT NULL,
  `map_start_lat` varchar(700) NOT NULL,
  `map_start_lng` varchar(700) NOT NULL,
  `map_start_location` varchar(700) NOT NULL,
  `map_start_zoom` int(10) NOT NULL,
  `default_marker` varchar(700) NOT NULL,
  `type` int(10) NOT NULL,
  `alignment` int(10) NOT NULL,
  `directions_enabled` int(10) NOT NULL,
  `styling_enabled` int(10) NOT NULL,
  `styling_json` mediumtext NOT NULL,
  `active` int(1) NOT NULL,
  `kml` varchar(700) NOT NULL,
  `bicycle` int(10) NOT NULL,
  `traffic` int(10) NOT NULL,
  `dbox` int(10) NOT NULL,
  `dbox_width` varchar(10) NOT NULL,
  `listmarkers` int(10) NOT NULL,
  `listmarkers_advanced` int(10) NOT NULL,
  `filterbycat` tinyint(1) NOT NULL,
  `ugm_enabled` int(10) NOT NULL,
  `ugm_category_enabled` tinyint(1) NOT NULL,
  `fusion` varchar(100) NOT NULL,
  `map_width_type` varchar(3) NOT NULL,
  `map_height_type` varchar(3) NOT NULL,
  `mass_marker_support` int(10) NOT NULL,
  `ugm_access` int(10) NOT NULL,
  `order_markers_by` int(10) NOT NULL,
  `order_markers_choice` int(10) NOT NULL,
  `show_user_location` int(3) NOT NULL,
  `default_to` varchar(700) NOT NULL,
  `other_settings` longtext NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB  DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;

--
-- Dumping data for table `wp_wpgmza_maps`
--

INSERT INTO `wp_wpgmza_maps` (`id`, `map_title`, `map_width`, `map_height`, `map_start_lat`, `map_start_lng`, `map_start_location`, `map_start_zoom`, `default_marker`, `type`, `alignment`, `directions_enabled`, `styling_enabled`, `styling_json`, `active`, `kml`, `bicycle`, `traffic`, `dbox`, `dbox_width`, `listmarkers`, `listmarkers_advanced`, `filterbycat`, `ugm_enabled`, `ugm_category_enabled`, `fusion`, `map_width_type`, `map_height_type`, `mass_marker_support`, `ugm_access`, `order_markers_by`, `order_markers_choice`, `show_user_location`, `default_to`, `other_settings`) VALUES
(1, 'Asia Centre Bangkok', '100', '400', '13.756312', '100.532647', '13.756312,100.532647', 16, '0', 1, 1, 1, 0, '', 0, '', 2, 2, 1, '250', 0, 0, 0, 0, 0, '', '\\%', 'px', 1, 0, 1, 2, 0, '', 'a:9:{s:21:"store_locator_enabled";i:2;s:22:"store_locator_distance";i:2;s:20:"store_locator_bounce";i:1;s:26:"store_locator_query_string";s:14:"ZIP / Address:";s:29:"wpgmza_store_locator_restrict";s:0:"";s:12:"map_max_zoom";s:1:"1";s:15:"transport_layer";i:2;s:17:"wpgmza_theme_data";s:113:"[ \\"visibility\\", \\"invert_lightness\\", \\"color\\", \\"weight\\", \\"hue\\", \\"saturation\\", \\"lightness\\", \\"gamma\\"]";s:22:"wpgmza_theme_selection";i:0;}');

-- --------------------------------------------------------

--
-- Table structure for table `wp_wpgmza_polygon`
--

CREATE TABLE IF NOT EXISTS `wp_wpgmza_polygon` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `polydata` longtext NOT NULL,
  `linecolor` varchar(7) NOT NULL,
  `lineopacity` varchar(7) NOT NULL,
  `fillcolor` varchar(7) NOT NULL,
  `opacity` varchar(3) NOT NULL,
  `title` varchar(250) NOT NULL,
  `link` varchar(700) NOT NULL,
  `ohfillcolor` varchar(7) NOT NULL,
  `ohlinecolor` varchar(7) NOT NULL,
  `ohopacity` varchar(3) NOT NULL,
  `polyname` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

-- --------------------------------------------------------

--
-- Table structure for table `wp_wpgmza_polylines`
--

CREATE TABLE IF NOT EXISTS `wp_wpgmza_polylines` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `map_id` int(11) NOT NULL,
  `polydata` longtext NOT NULL,
  `linecolor` varchar(7) NOT NULL,
  `linethickness` varchar(3) NOT NULL,
  `opacity` varchar(3) NOT NULL,
  `polyname` varchar(100) NOT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ;

/*!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 */;
