<style>
body {font-family: Arial, Helvetica, sans-serif;}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}

/* Modal Content */
.modal-content {
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 700px;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
</style>
<script>
jQuery('body').prepend(
'<div id="myModal" class="modal">'
	+'<div class="modal-content">'
		+'<label style="font-size:1.5em !important;">Please fill in your Email and Phone no.</label><span class="close">&times;</span><br><br>'
		+'<form id="form_vote" name="form_vote"><input type="hidden" name="votepostid" id="votepostid" value="">'
		+'<input type="hidden" name="votetype" id="votetype" value="">'
		+'<label>Email: </label>'
		+'<input type="text" id="email" name="email">'
		+'<label>Phone No.: </label>'
		+'<input type="number" id="phone" name="phone">'
		+'<input type="button" name="it_epoll_survey-vote-button" id="it_epoll_survey-vote-button" value="Submit" onclick="submitvote();"></form>'
	+'</div>'
+'</div>');

var modal = document.getElementById("myModal");
var btn = document.getElementById("myBtn");
var span = document.getElementsByClassName("close")[0];

span.onclick = function() {
  modal.style.display = "none";
}

window.onclick = function(event) {
  if (event.target == modal) {
    modal.style.display = "none";
  }
}


window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_on').html('ON - Koh Kai Ting &#038; Aw Boon Xin');	
})


function voteon(a){
	modal.style.display = "block";
	jQuery('#votetype').val('on');
}

function submitvote(){
	votetype = jQuery('#votetype').val();
	if(votetype == 'on'){
		submitvoteon();
	}else if(votetype == 'os'){
		submitvoteos();
	}
}

function submitvoteon(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownon').show();
		jQuery('.voteon').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownon').hide();
			jQuery('.voteon').show();
			
		  } else {
			jQuery('#countdownon').html(timeleft + " seconds remaining");
		   // document.getElementById("countdownon").innerHTML = timeleft + " seconds remaining";
		  }
		  timeleft -= 1;
		}, 1000);
			
			nama = jQuery('.nama').html();
			var form = jQuery('#form_vote')[0];
			var formData = new FormData(form);
			formData.append('action', 'rwvoting_submiton');
			formData.append('nama', 'Koh Kai Ting &#038; Aw Boon Xin');
			
				jQuery.ajax({
					type: "POST",
					url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
					data: formData,
					async: false,
					cache: false,
					contentType: false,
					enctype: 'multipart/form-data',
					processData: false,
					success: function (data) {
						var json = JSON.parse(data);
						percentage = json.percentage;
						msg_total = json.msg_total;
						
						jQuery('.percenton').html(percentage+'%');
						jQuery('.onwidth').css('width',percentage+'%');
						
						if(msg_total == 'Full'){
							alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
						}
					},
					error: function (data) {
						//console.log("fail: " + data);
					}
				});
	}
}


jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percenton&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percenton').html(result+'%');
		jQuery('.onwidth').css('width',result+'%');
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script><script>
window.addEventListener('load', function () {
	jQuery('.it_epoll_title_exact_os').html('OS - Koh Kai Ting &#038; Aw Boon Xin');
})

function voteos(a){
	modal.style.display = "block";
		jQuery('#votetype').val('os');
}

function submitvoteos(){
	email = jQuery('#email').val();
	phone = jQuery('#phone').val();

	if((email == '') || (phone == '')){
		alert('Please fill in your email and phone no.');
	}else{
		modal.style.display = "none";
		
		jQuery('#countdownos').show();
		jQuery('.voteos').hide();
		var timeleft = 10;
		var downloadTimer = setInterval(function(){
		  if(timeleft <= 0){
			clearInterval(downloadTimer);
			jQuery('#countdownos').hide();
			jQuery('.voteos').show();
			
		  } else {
			jQuery('#countdownos').html(timeleft + " seconds remaining");
		  }
		  timeleft -= 1;
		}, 1000);
			
		nama = jQuery('.nama').html();
		var form = jQuery('#form_vote')[0];
		var formData = new FormData(form);
		formData.append('action', 'rwvoting_submitos');
		formData.append('nama', 'Koh Kai Ting &#038; Aw Boon Xin');

		jQuery.ajax({
			type: "POST",
			url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
			data: formData,
			async: false,
			cache: false,
			contentType: false,
			enctype: 'multipart/form-data',
			processData: false,
			success: function (data) {
				var json = JSON.parse(data);
				percentage = json.percentage;
				msg_total = json.msg_total;
				
				jQuery('.percentos').html(percentage+'%');
				jQuery('.oswidth').css('width',percentage+'%');
				
				if(msg_total == 'Full'){
					alert('Maaf, anda telah melebihi had untuk mengundi. Terima Kasih atas undian anda.');
				}
			},
			error: function (data) {
				//console.log("fail: " + data);
			}
		});
	}
}

jQuery.ajax({
	type: "POST",
	url: 'https://www.artgallery.gov.my/bms/wp-admin/admin-ajax.php',
	data: 'action=rwvoting_percentos&postid=',
	success: function (data) {
		var str = data;
		result = str.trim();
		if(result == 'NAN'){
			result = 0;
		}
		
		if(result == 'nan'){
			result = 0;
		}
		
		jQuery('.percentos').html(result+'%');
		jQuery('.oswidth').css('width',result+'%');
		
	},
	error: function (data) {
		console.log("failed ");
	}
});
</script>{"id":6547,"date":"2023-09-06T14:13:52","date_gmt":"2023-09-06T06:13:52","guid":{"rendered":"https:\/\/www.artgallery.gov.my\/bms\/?p=6547"},"modified":"2025-06-20T14:37:43","modified_gmt":"2025-06-20T06:37:43","slug":"koh-kai-ting-aw-boon-xin","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=6547","title":{"rendered":"Koh Kai Ting &#038; Aw Boon Xin"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-10mdk5v-2d4956245049ef2fed94e37f95022e12 main_color avia-section-default avia-no-border-styling  avia-builder-el-0  el_before_av_section  avia-builder-el-first  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><main  role=\"main\" itemprop=\"mainContentOfPage\"  class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6547'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-z7jzyr-fc2717a08e6ceed69beb4cb3f8333c7f\">\n#top .av-special-heading.av-z7jzyr-fc2717a08e6ceed69beb4cb3f8333c7f{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-z7jzyr-fc2717a08e6ceed69beb4cb3f8333c7f .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-z7jzyr-fc2717a08e6ceed69beb4cb3f8333c7f .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-z7jzyr-fc2717a08e6ceed69beb4cb3f8333c7f .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-z7jzyr-fc2717a08e6ceed69beb4cb3f8333c7f av-special-heading-h2 custom-color-heading  avia-builder-el-1  el_before_av_one_third  avia-builder-el-first '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PROFIL<\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-xizklf-a9a3b675f446b3c636014814ceba9daa\">\n.flex_column.av-xizklf-a9a3b675f446b3c636014814ceba9daa{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-xizklf-a9a3b675f446b3c636014814ceba9daa av_one_third  avia-builder-el-2  el_after_av_heading  el_before_av_two_third  first flex_column_div av-animated-generic pop-up av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-vpfylv-14762d2a44c851601561138c711143b7\">\n#top .hr.hr-invisible.av-vpfylv-14762d2a44c851601561138c711143b7{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-vpfylv-14762d2a44c851601561138c711143b7 hr-invisible  avia-builder-el-3  el_before_av_iconlist  avia-builder-el-first '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lmn2dtcp-760864deb44ec717d2ea9a6511619e31\">\n#top .avia-icon-list-container.av-lmn2dtcp-760864deb44ec717d2ea9a6511619e31 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#edae44;\n}\n#top .avia-icon-list-container.av-lmn2dtcp-760864deb44ec717d2ea9a6511619e31 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-lmn2dtcp-760864deb44ec717d2ea9a6511619e31  avia-builder-el-4  el_after_av_hr  avia-builder-el-last '><ul class='avia-icon-list avia_animate_when_almost_visible avia-icon-list-left av-iconlist-big av-lmn2dtcp-760864deb44ec717d2ea9a6511619e31 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-lmn2b9jp-e59f05f579d5de2b34d0771c852b5ae9 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue80a' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: NAMA: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >NAMA: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">Koh Kai Ting &amp; Aw Boon Xin<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-v9wc03-7cdd644bb4f10e5111328af9399aea56 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue8b1' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: LOKASI: \"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >LOKASI: <\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><span class=\"nama\">\u00a0Bandar Penggaram, Jalan Ibrahim Kampung Pegawai Batu Pahat Johor<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-lmn2ds1s-cfac9626e7436cd7b4bfd3ef4c708341 avia-font-entypo-fontello avia-iconfont avia-font-entypo-fontello'><span class='av-icon-char' data-av_icon='\ue840' data-av_iconfont='entypo-fontello' aria-hidden=\"true\"><\/span><\/div><article class=\"article-icon-entry \"  itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class=\"iconlist_content_wrap\"><header class=\"entry-content-header\" aria-label=\"Icon: BIODATA PESERTA:\"><h4 class='av_iconlist_title iconlist_title  '  itemprop=\"headline\" >BIODATA PESERTA:<\/h4><\/header><div class='iconlist_content '  itemprop=\"text\" ><p><a href=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/CV-5.pdf\" target=\"_blank\" rel=\"noopener\">Koh Kai Ting &amp; Aw Boon Xin<\/a><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<\/ul><\/div><\/p><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-t3v9gj-167453063c2de3f86de98ec5e432c76b\">\n.flex_column.av-t3v9gj-167453063c2de3f86de98ec5e432c76b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-t3v9gj-167453063c2de3f86de98ec5e432c76b av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><p>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lo87cpzi-769caf22450835a6ee077ac009e90180\">\n.avia-image-container.av-lo87cpzi-769caf22450835a6ee077ac009e90180 img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-lo87cpzi-769caf22450835a6ee077ac009e90180 .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-lo87cpzi-769caf22450835a6ee077ac009e90180 av-styling- avia-align-center  avia-builder-el-6  el_before_av_image  avia-builder-el-first '   itemprop=\"image\" itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/ImageObject\" ><div class=\"avia-image-container-inner\"><div class=\"avia-image-overlay-wrap\"><img decoding=\"async\" fetchpriority=\"high\" class='wp-image-7570 avia-img-lazy-loading-not-7570 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-1030x517.jpg\" alt='' title='1700287799-picsay'  height=\"517\" width=\"1030\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-1030x517.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-300x150.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-768x385.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-1536x770.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-2048x1027.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-1500x752.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1700287799-picsay-705x354.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/div><\/div><\/div><br \/>\n<br \/>\n<\/p><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-p3jsf7-b0015b33712e93043c3030bbf17b1ec1 main_color avia-section-default avia-no-border-styling  avia-builder-el-9  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6547'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-2r5gf7-e54f6a45da8b60b89f0f4838d462a723\">\n.flex_column.av-2r5gf7-e54f6a45da8b60b89f0f4838d462a723{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-2r5gf7-e54f6a45da8b60b89f0f4838d462a723 av_four_fifth  avia-builder-el-10  el_before_av_one_full  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-ok94pf-6aa60cefd8175a0b5c5564229d397357\">\n.flex_column.av-ok94pf-6aa60cefd8175a0b5c5564229d397357{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-ok94pf-6aa60cefd8175a0b5c5564229d397357 av_one_full  avia-builder-el-11  el_after_av_four_fifth  el_before_av_hr  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-29eyb7-868a85b2ea539014624c3e9d73827e32\">\n#top .av-special-heading.av-29eyb7-868a85b2ea539014624c3e9d73827e32{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-29eyb7-868a85b2ea539014624c3e9d73827e32 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-29eyb7-868a85b2ea539014624c3e9d73827e32 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-29eyb7-868a85b2ea539014624c3e9d73827e32 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-29eyb7-868a85b2ea539014624c3e9d73827e32 av-special-heading-h2 custom-color-heading  avia-builder-el-12  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KETERANGAN <span style=\"color: #ffffff;\">KARYA<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-kjzstv-c25d1fb46e33146717ea813a8e5ff6df\">\n#top .hr.hr-invisible.av-kjzstv-c25d1fb46e33146717ea813a8e5ff6df{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-kjzstv-c25d1fb46e33146717ea813a8e5ff6df hr-invisible  avia-builder-el-13  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-lmn2ek30-f4e07497720d5c0f7ba37e18e58d2f78 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">Through our practice, which consists of installation, moving image, printmaking, and painting, we look into the system of power by understanding and challenging the study of the organised knowledge. Our inquiry is to disrupt the Power\/Knowledge by including the knowledge of the marginalised community and raise critical reflection on epistemological violence. I employ post qualitative research in my methodology. I recognized that research was not just a means of indexing transcripts but rather a collaboration with my research subjects. This approach prompted me to reimagine data analysis and the construction of subjectivity. It helps to enhance the richness of my research findings and capture subjugated knowledge. I attempted to dissolve the cultural boundaries previously existing in anthropocentrism study. With this mentorship, I hope to further develop my practice and strengthen my ability to challenge dominant narratives and create meaningful connections between the past and the present. I hope to learn from experienced mentors who can guide me in navigating the art world, refining my conceptual approach, and expanding my professional network.<\/p>\n<p style=\"text-align: justify;\">We aim to bring the old alley of Batu Pahat to life through the use of augmented reality (AR) activation. By employing metaphorical zoomorphism, I seek to add depth and vividness to the culture and history of Bandar penggaram at Batu Pahat, enhancing the storytelling experience.<\/p>\n<p style=\"text-align: justify;\">Using AR technology, we will incorporate metaphorical zoomorphism imagery, such as crabs, fishes, chickens, and nagas, in the form of traditional Wayang Kulit (shadow puppetry) onto the walls and surroundings of the old alley. In Tamil, Chinese and Malay culture, zoomorphism can be found in traditional folklore and mythology. Creatures like &#8220;harimau&#8221; (tiger) and &#8220;buaya&#8221; (crocodile) are often used as symbols of power, strength, and fearlessness. These creatures symbolize different aspects of the history and cultural heritage of Batu Pahat.<\/p>\n<p style=\"text-align: justify;\">Visitors will have the opportunity to scan the imagery with their mobile devices or AR devices, immersing themselves in an alternate reality realm. This immersive experience will delve deeper into the narratives and stories associated with Batu Pahat, allowing visitors to explore the hidden layers of its history, traditions, and symbolism.<\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-jqs9w3-294dde01ef4a90466c65595a074ee60f main_color avia-section-default avia-no-border-styling  avia-builder-el-15  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6547'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-e3aqr7-4e91d68bc7ea7fa0cc151f5eae34f541\">\n#top .hr.hr-invisible.av-e3aqr7-4e91d68bc7ea7fa0cc151f5eae34f541{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-e3aqr7-4e91d68bc7ea7fa0cc151f5eae34f541 hr-invisible  avia-builder-el-16  el_before_av_textblock  avia-builder-el-first '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-lmn2grvh-178daf37130b77f3c32dd8dbf731f5b4 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-large wp-image-6549\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-1030x579.jpg\" alt=\"\" width=\"1030\" height=\"579\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-1030x579.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-300x169.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-768x432.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-1536x864.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-2048x1152.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-1500x844.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-1-2-705x397.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-6550\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-1030x579.jpg\" alt=\"\" width=\"1030\" height=\"579\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-1030x579.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-300x169.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-768x432.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-1536x864.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-2048x1152.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-1500x844.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-2-705x397.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-6551\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-1030x579.jpg\" alt=\"\" width=\"1030\" height=\"579\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-1030x579.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-300x169.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-768x432.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-1536x864.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-2048x1152.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-1500x844.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-3-2-705x397.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-6552\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-1030x579.jpg\" alt=\"\" width=\"1030\" height=\"579\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-1030x579.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-300x169.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-768x432.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-1536x864.jpg 1536w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-2048x1152.jpg 2048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-1500x844.jpg 1500w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-4-2-705x397.jpg 705w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n<section  class='av_textblock_section av-lpmch98l-4023c22f9bd6721285f227d822a005ad '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone wp-image-8050\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/vnmgmf.png\" alt=\"\" width=\"871\" height=\"491\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/vnmgmf.png 658w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/vnmgmf-300x169.png 300w\" sizes=\"(max-width: 871px) 100vw, 871px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8049\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ghjgk.png\" alt=\"\" width=\"875\" height=\"492\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ghjgk.png 656w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ghjgk-300x169.png 300w\" sizes=\"(max-width: 875px) 100vw, 875px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8048\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/fhdfh.png\" alt=\"\" width=\"884\" height=\"491\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/fhdfh.png 668w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/fhdfh-300x167.png 300w\" sizes=\"(max-width: 884px) 100vw, 884px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8046\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/tyityoi.png\" alt=\"\" width=\"879\" height=\"489\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/tyityoi.png 654w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/tyityoi-300x167.png 300w\" sizes=\"(max-width: 879px) 100vw, 879px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8045\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/sryeru.png\" alt=\"\" width=\"872\" height=\"486\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/sryeru.png 655w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/sryeru-300x167.png 300w\" sizes=\"(max-width: 872px) 100vw, 872px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8043\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/jftfj.png\" alt=\"\" width=\"871\" height=\"491\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/jftfj.png 649w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/jftfj-300x169.png 300w\" sizes=\"(max-width: 871px) 100vw, 871px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8042\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/dxh.png\" alt=\"\" width=\"867\" height=\"482\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/dxh.png 655w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/dxh-300x167.png 300w\" sizes=\"(max-width: 867px) 100vw, 867px\" \/><img decoding=\"async\" class=\"alignnone wp-image-8044\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/cfjdf.png\" alt=\"\" width=\"864\" height=\"485\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/cfjdf.png 657w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/cfjdf-300x168.png 300w\" sizes=\"(max-width: 864px) 100vw, 864px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-t32jib-88d0478dbfbb3a0e2123ca43c808e979 main_color avia-section-default avia-no-border-styling  avia-builder-el-19  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6547'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-r0ksar-b2d067168ffe8942f71d4e487a02f232\">\n.flex_column.av-r0ksar-b2d067168ffe8942f71d4e487a02f232{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-r0ksar-b2d067168ffe8942f71d4e487a02f232 av_one_full  avia-builder-el-20  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-2j2lqr-01551c4d54349ce0469d421bbe3efbf5\">\n#top .av-special-heading.av-2j2lqr-01551c4d54349ce0469d421bbe3efbf5{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-2j2lqr-01551c4d54349ce0469d421bbe3efbf5 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-2j2lqr-01551c4d54349ce0469d421bbe3efbf5 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-2j2lqr-01551c4d54349ce0469d421bbe3efbf5 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-2j2lqr-01551c4d54349ce0469d421bbe3efbf5 av-special-heading-h2 custom-color-heading  avia-builder-el-21  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA <span style=\"color: #ffffff;\">AKHIR<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-o4tkpf-b5c98259994194bce0089abf10c9338b\">\n#top .hr.hr-invisible.av-o4tkpf-b5c98259994194bce0089abf10c9338b{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-o4tkpf-b5c98259994194bce0089abf10c9338b hr-invisible  avia-builder-el-22  el_after_av_one_full  el_before_av_textblock '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<section  class='av_textblock_section av-ml0tw3-714e0d9d124f45740fbffdc609f1f403 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p><img decoding=\"async\" class=\"alignnone size-large wp-image-8512\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-17-1030x460.png\" alt=\"\" width=\"1030\" height=\"460\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-17-1030x460.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-17-300x134.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-17-768x343.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-17-705x315.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/a-17.png 1272w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8513\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ab-1030x468.png\" alt=\"\" width=\"1030\" height=\"468\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ab-1030x468.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ab-300x136.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ab-768x349.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ab-705x320.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/ab.png 1254w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8514\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-13-1030x457.png\" alt=\"\" width=\"1030\" height=\"457\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-13-1030x457.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-13-300x133.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-13-768x341.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-13-705x313.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/b-13.png 1271w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8515\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-14-1030x474.png\" alt=\"\" width=\"1030\" height=\"474\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-14-1030x474.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-14-300x138.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-14-768x353.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-14-705x324.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-14.png 1272w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-l4aok3-afb8d136f6a7eec6ccd263a4dd6ce72b main_color avia-section-default avia-no-border-styling  avia-builder-el-24  el_after_av_section  el_before_av_section  avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6547'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-inu3hv-4b9e2e9ca5c22133f2e6af224834e8c3\">\n.flex_column.av-inu3hv-4b9e2e9ca5c22133f2e6af224834e8c3{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-inu3hv-4b9e2e9ca5c22133f2e6af224834e8c3 av_one_full  avia-builder-el-25  el_before_av_hr  avia-builder-el-first  first flex_column_div av-zero-column-padding  '     ><style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-h2yrsj-3d05c6246509875bb278cf8fa7f4abdf\">\n#top .av-special-heading.av-h2yrsj-3d05c6246509875bb278cf8fa7f4abdf{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-h2yrsj-3d05c6246509875bb278cf8fa7f4abdf .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-h2yrsj-3d05c6246509875bb278cf8fa7f4abdf .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-h2yrsj-3d05c6246509875bb278cf8fa7f4abdf .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-h2yrsj-3d05c6246509875bb278cf8fa7f4abdf av-special-heading-h2 custom-color-heading  avia-builder-el-26  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >PAUTAN <span style=\"color: #ffffff;\">VIDEO<\/span><\/h2><div class=\"special-heading-border\"><div class=\"special-heading-inner-border\"><\/div><\/div><\/div><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-gf92rn-4745019c79d8ec07717b0e54714b909c\">\n#top .hr.hr-invisible.av-gf92rn-4745019c79d8ec07717b0e54714b909c{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-gf92rn-4745019c79d8ec07717b0e54714b909c hr-invisible  avia-builder-el-27  el_after_av_one_full  el_before_av_video '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<div  class='avia-video av-dko38j-801cf600cc9068958511ba6268dad041 avia-video-16-9 av-no-preview-image avia-video-load-always av-lazyload-immediate av-lazyload-video-embed'  itemprop=\"video\" itemtype=\"https:\/\/schema.org\/VideoObject\"  data-original_url='https:\/\/youtu.be\/nEkR1jvVaEw?si=ooUMhD4Xe4Sd4Vrf'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Aw Boon Xin (Zoomorphism) | Zon Selatan BMS&#039;23\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/nEkR1jvVaEw?feature=oembed&autoplay=0&loop=0&controls=1&mute=0\" frameborder=\"0\" allow=\"accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share\" allowfullscreen><\/iframe><\/div><\/script><div class='av-click-to-play-overlay'><div class=\"avia_playpause_icon\"><\/div><\/div><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='undian23'  class='avia-section av-d2eq43-ae0b3d620403882dc1aa6d588ddf9313 main_color avia-section-default avia-no-border-styling  avia-builder-el-29  el_after_av_section  avia-builder-el-last  voting avia-bg-style-scroll container_wrap fullsize'  ><div class='container av-section-cont-open' ><div class='template-page content  av-content-full alpha units'><div class='post-entry post-entry-type-page post-entry-6547'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-aurcsz-f74c0c3cccfed8b835567cfb6aaddfbb sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-aurcsz-f74c0c3cccfed8b835567cfb6aaddfbb\">\n.flex_column.av-aurcsz-f74c0c3cccfed8b835567cfb6aaddfbb{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-aurcsz-f74c0c3cccfed8b835567cfb6aaddfbb av_one_half  avia-builder-el-30  el_before_av_one_half  avia-builder-el-first  first flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-8reqhf-4c9a128d3cc535cd5c9268ab87939bc9 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\" \"=\"\">\n\t<h1 class=\" it_epoll_title\">\n\t<span class=\"it_epoll_title_exact_on\"><\/span>\n\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/online.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231118_092056.jpg\">\n\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t<\/svg>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t<div class=\"it_epoll_survey-item-action \">\n\t\t\t\t\t<form id=\"form_voteon\">\n\t\t\t\t\t\t<input type=\"hidden\" name=\"onpostid\" id=\"onpostid\" value=\"\">\n\t\t\t\t\t\t<div id=\"countdownon\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteon\" value=\"Vote\" onclick=\"voteon('online');\">\n\t\t\t\t\t<\/form>\n\t\t\t\t<\/div>\n\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient onwidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percenton\"> 0% <\/span>\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"5\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 5 \/ 5 <\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/span>\n\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n\n<\/div><\/section><\/div><div class='av-flex-placeholder'><\/div>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-7mh6n7-b9b906e736f9f7efda87455c61d7a588\">\n.flex_column.av-7mh6n7-b9b906e736f9f7efda87455c61d7a588{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-7mh6n7-b9b906e736f9f7efda87455c61d7a588 av_one_half  avia-builder-el-32  el_after_av_one_half  el_before_av_one_full  flex_column_table_cell av-equal-height-column av-align-top av-zero-column-padding  '     ><section  class='av_textblock_section av-60pa3n-4f6f2868c57a7b0b5e0dbddfda15d5ec '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" >\n<div class=\"it_epoll_container\">\n\t<h1 class=\"it_epoll_title\">\n\t\t<span class=\"it_epoll_title_exact_os\"><\/span>\n\t\t<span class=\"it_epoll_survey-stage\">\n\t\t<span class=\"it_epoll_stage it_epoll_live it_epoll_active\">Live<\/span>\n\t\t<span class=\"it_epoll_stage it_epoll_ended it_epoll_active\" style=\"display:none;\">Ended<\/span>\n\t<\/h1>\n\t<div class=\"it_epoll_inner\">\n\t\t<ul class=\"it_epoll_surveys it_epoll_grid\">\n\t\t\t<li class=\"it_epoll_survey-item\">\n\t\t\t\t<input type=\"hidden\" name=\"it_epoll_multivoting\" value=\"0\" id=\"it_epoll_multivoting\">\n\t\t\t\t<div class=\"it_epoll_survey-item-inner it_epoll_card_front\">\n\t\t\t\t\t<div class=\"it_epoll_big_cover it_epoll_blue_gradient\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/plugins\/rocketweb_voting\/front\/images\/onsite.jpg\">\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-country it_epoll_grid-only\">\n\t\t\t\t\t\t<img decoding=\"async\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231118_092056.jpg\">\n\t\t\t\t\t\t<div class=\"it_epoll_spinner\">\n\t\t\t\t\t\t\t<svg version=\"1.1\" id=\"it_epoll_tick\" xmlns=\"http:\/\/www.w3.org\/2000\/svg\" xmlns:xlink=\"http:\/\/www.w3.org\/1999\/xlink\" x=\"0px\" y=\"0px\" viewBox=\"0 0 37 37\" xml:space=\"preserve\">\n\t\t\t\t\t\t\t<path class=\"it_epoll_circ it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" d=\"\n\t\t\t\t\t\t\tM30.5,6.5L30.5,6.5c6.6,6.6,6.6,17.4,0,24l0,0c-6.6,6.6-17.4,6.6-24,0l0,0c-6.6-6.6-6.6-17.4,0-24l0,0C13.1-0.2,23.9-0.2,30.5,6.5z\"><\/path>\n\t\t\t\t\t\t\t<polyline class=\"it_epoll_tick it_epoll_path\" style=\"fill:none;stroke: #ffffff;stroke-width:1.5;stroke-linejoin:round;stroke-miterlimit:10;\" points=\"\n\t\t\t\t\t\t\t11.6,20 15.9,24.2 26.4,13.8 \"><\/polyline>\n\t\t\t\t\t\t\t<\/svg>\n\t\t\t\t\t\t<\/div>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-name\"><\/div>\n\t\t\t\t\t<div class=\"it_epoll_survey-item-action it_epoll_survey-item-action-disabled\">\n\t\t\t\t\t\t<form id=\"form_voteos\">\n\t\t\t\t\t\t\t\n\t\t\t\t\t\t\t<input type=\"hidden\" name=\"ospostid\" id=\"ospostid\" value=\"\">\n\t\t\t\t\t\t\t<div id=\"countdownos\" style=\"margin: 6px; display:none; background:linear-gradient(40deg,#45cafc,#303f9f)!important;padding: .82rem 2.14rem !important;.font-size:81rem !important\">10 seconds remaining<\/div>\n\t\t\t\t\t\t\t<input type=\"button\" name=\"it_epoll_survey-vote-button\" id=\"it_epoll_survey-vote-button\" class=\"it_epoll_blue_gradient voteos\" value=\"Vote\" onclick=\"voteos('os')\">\n\t\t\t\t\t\t<\/form>\n\t\t\t\t\t<\/div>\n\t\t\t\t\t<div class=\"it_epoll_pull-right\">\n\t\t\t\t\t\t<span class=\"it_epoll_survey-progress\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-bg\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-fg it_epoll_blue_gradient oswidth\" style=\"width:0%;\"><\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-labels\">\n\t\t\t\t\t\t\t\t<span class=\"it_epoll_survey-progress-label percentos\"> 0% <\/span>\n\t\t\t\t\t\t\t\t<input type=\"hidden\" name=\"it_epoll_poll_e_vote_count\" id=\"it_epoll_poll_e_vote_count\" value=\"3\">\n\t\t\t\t\t\t\t<span class=\"it_epoll_survey-completes\"> 3 \/ 3 <\/span>\n\t\t\t\t\t\t\t<\/span>\n\t\t\t\t\t\t<\/span>\n\t\t\t\t\t<\/div>\n\t\t\t\t<\/div>\n\t\t\t<\/li>\n\t\t\t<div style=\"clear:both;\"><\/div>\n\t\t<\/ul>\n\t<\/div>\n<\/div>\n<\/div><\/section><\/div><\/div><!--close column table wrapper. Autoclose: 1 -->\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-4ew39f-c17195b3acfb7b8b865d0719161ad3c6\">\n.flex_column.av-4ew39f-c17195b3acfb7b8b865d0719161ad3c6{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4ew39f-c17195b3acfb7b8b865d0719161ad3c6 av_one_full  avia-builder-el-34  el_after_av_one_half  avia-builder-el-last  first flex_column_div av-zero-column-padding  column-top-margin'     ><section  class='av_textblock_section av-1wkf2r-31bfd3b923ae6c0aa609bc66d83a1b50 '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: center;\"><img decoding=\"async\" src=\"https:\/\/chart.googleapis.com\/chart?chs=300x300&cht=qr&chl=https:\/\/www.artgallery.gov.my\/bms&choe=UTF-8\" \/><\/p>\n<\/div><\/section><\/div>\n\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":1,"featured_media":7564,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36,39],"tags":[55],"class_list":["post-6547","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms23","category-johor","tag-55"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6547","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=6547"}],"version-history":[{"count":21,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6547\/revisions"}],"predecessor-version":[{"id":8634,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6547\/revisions\/8634"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/7564"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6547"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6547"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6547"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}