<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 - Khairul Ehsani bin Sapari');	
})


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', 'Khairul Ehsani bin Sapari');
			
				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 - Khairul Ehsani bin Sapari');
})

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', 'Khairul Ehsani bin Sapari');

		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":6927,"date":"2023-09-14T15:28:17","date_gmt":"2023-09-14T07:28:17","guid":{"rendered":"https:\/\/www.artgallery.gov.my\/bms\/?p=6927"},"modified":"2025-06-20T14:32:36","modified_gmt":"2025-06-20T06:32:36","slug":"khairul-ehsani-bin-sapari","status":"publish","type":"post","link":"https:\/\/www.artgallery.gov.my\/bms\/?p=6927","title":{"rendered":"Khairul Ehsani bin Sapari"},"content":{"rendered":"<div id='av_section_1'  class='avia-section av-zcz1v3-cd144c4a094d180bd24720aaff90bb8b 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-6927'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-xk1373-0a32534533f0dd1168e5ac4e487067f3\">\n#top .av-special-heading.av-xk1373-0a32534533f0dd1168e5ac4e487067f3{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-xk1373-0a32534533f0dd1168e5ac4e487067f3 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-xk1373-0a32534533f0dd1168e5ac4e487067f3 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-xk1373-0a32534533f0dd1168e5ac4e487067f3 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-xk1373-0a32534533f0dd1168e5ac4e487067f3 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-vrck1b-e28999fa37eba619ed7c7dbf627ec8b6\">\n.flex_column.av-vrck1b-e28999fa37eba619ed7c7dbf627ec8b6{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-vrck1b-e28999fa37eba619ed7c7dbf627ec8b6 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-usvk3z-fcb2936dc533e6dce2857378b20972ae\">\n#top .hr.hr-invisible.av-usvk3z-fcb2936dc533e6dce2857378b20972ae{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-usvk3z-fcb2936dc533e6dce2857378b20972ae 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-ln1fkmfo-2b28672b6742d14ed1926f74b3d87245\">\n#top .avia-icon-list-container.av-ln1fkmfo-2b28672b6742d14ed1926f74b3d87245 .iconlist_icon{\ncolor:#ffffff;\nbackground-color:#edae44;\n}\n#top .avia-icon-list-container.av-ln1fkmfo-2b28672b6742d14ed1926f74b3d87245 .iconlist_icon svg:first-child{\nstroke:#ffffff;\nfill:#ffffff;\n}\n<\/style>\n<div  class='avia-icon-list-container av-ln1fkmfo-2b28672b6742d14ed1926f74b3d87245  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-ln1fkmfo-2b28672b6742d14ed1926f74b3d87245 avia-iconlist-animate'>\n<li><div class='iconlist_icon av-ln1fjfal-1a0107454defc34311d96b67a44d500c 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\">Khairul Ehsani bin Sapari<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-ln1fkkft-00169ad8eeb5ec657c01eee954178bd5 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\">Public spaces throughout Kuala Lumpur City<\/span><\/p>\n<\/div><\/div><footer class=\"entry-footer\"><\/footer><\/article><div class=\"iconlist-timeline\"><\/div><\/li>\n<li><div class='iconlist_icon av-ln1fk5pl-1f7fbacb0deb79d454353e981c79b468 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-29.pdf\" target=\"_blank\" rel=\"noopener\">Khairul Ehsani bin Sapari<\/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-su64b3-047df7a1f23b13f01c9738d21320795b\">\n.flex_column.av-su64b3-047df7a1f23b13f01c9738d21320795b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-su64b3-047df7a1f23b13f01c9738d21320795b av_two_third  avia-builder-el-5  el_after_av_one_third  avia-builder-el-last  flex_column_div av-zero-column-padding  '     ><p><br \/>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-lo6wrpws-3cfc6d18687654a6280949a2a1b48e3a\">\n.avia-image-container.av-lo6wrpws-3cfc6d18687654a6280949a2a1b48e3a img.avia_image{\nbox-shadow:none;\n}\n.avia-image-container.av-lo6wrpws-3cfc6d18687654a6280949a2a1b48e3a .av-image-caption-overlay-center{\ncolor:#ffffff;\n}\n<\/style>\n<div  class='avia-image-container av-lo6wrpws-3cfc6d18687654a6280949a2a1b48e3a av-styling- avia-align-center  avia-builder-el-7  el_after_av_image  el_before_av_image '   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-8574 avia-img-lazy-loading-not-8574 avia_image ' src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-16-1030x459.png\" alt='' title='c'  height=\"459\" width=\"1030\"  itemprop=\"thumbnailUrl\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-16-1030x459.png 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-16-300x134.png 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-16-768x342.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-16-705x314.png 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/c-16.png 1263w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/div><\/div><\/div><br \/>\n<\/p><\/div>\n\n<\/div><\/div><\/main><!-- close content main element --><\/div><\/div><div id='av_section_2'  class='avia-section av-pdtqm7-a6edcadb87dbb1d7114a1494b0b32339 main_color avia-section-default avia-no-border-styling  avia-builder-el-9  el_after_av_section  el_before_av_textblock  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-6927'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-onj0tr-2e6780e7e1725a3cfc6eb95b5dc13a22\">\n.flex_column.av-onj0tr-2e6780e7e1725a3cfc6eb95b5dc13a22{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-onj0tr-2e6780e7e1725a3cfc6eb95b5dc13a22 av_one_full  avia-builder-el-10  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-mh35vj-1b3faff2dcfe7a4c2991bbe639b8d3d9\">\n#top .av-special-heading.av-mh35vj-1b3faff2dcfe7a4c2991bbe639b8d3d9{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-mh35vj-1b3faff2dcfe7a4c2991bbe639b8d3d9 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-mh35vj-1b3faff2dcfe7a4c2991bbe639b8d3d9 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-mh35vj-1b3faff2dcfe7a4c2991bbe639b8d3d9 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-mh35vj-1b3faff2dcfe7a4c2991bbe639b8d3d9 av-special-heading-h2 custom-color-heading  avia-builder-el-11  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-kx7mr3-91882ca881013bbedd1a37a0cb7893c3\">\n#top .hr.hr-invisible.av-kx7mr3-91882ca881013bbedd1a37a0cb7893c3{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-kx7mr3-91882ca881013bbedd1a37a0cb7893c3 hr-invisible  avia-builder-el-12  el_after_av_one_full  avia-builder-el-last '><span class='hr-inner '><span class=\"hr-inner-style\"><\/span><\/span><\/div>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='after_section_2'  class='main_color av_default_container_wrap 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-6927'><div class='entry-content-wrapper clearfix'>\n<section  class='av_textblock_section av-ln1fm1cm-32b38bf33186cf2fb75d7e4bc6d3f34a '   itemscope=\"itemscope\" itemtype=\"https:\/\/schema.org\/BlogPosting\" itemprop=\"blogPost\" ><div class='avia_textblock'  itemprop=\"text\" ><p style=\"text-align: justify;\">Artist Statement<\/p>\n<p style=\"text-align: justify;\">My name is Khairul Ehsani Sapari. I&#8217;m a multidisciplinary artist. I&#8217;m 32 years old. As a young artist (yes 32 is young), I am on a creative journey that knows no bounds. My passion for artistic expression knows no limits, and I explore diverse media and platforms to give life to my ideas. From painting and ceramics to performance art and beyond, I thrive on experimenting with concepts and embracing rarely used media. For that goal, I worked with probably the only experimental collective still (kind of) standing in Klang Valley, Bukan Seni-Man, a splinter group made of central members of Arto Movement.<\/p>\n<p style=\"text-align: justify;\">My artworks serve as a visual diary of my daily life, capturing the moments, emotions, and struggles that shape my existence. They become a means to navigate the ever-changing art landscape, where creativity and challenges intertwine. Through art, I seek to bridge the gap between the traditional and the unconventional, challenging the boundaries of what art can be, even though I faces rough challenges from proponents who got too comfortable sitting on their high pedestals in this country&#8217;s small art scene.<\/p>\n<p style=\"text-align: justify;\">Each piece is a reflection of my relentless pursuit of self-discovery and growth as an artist. I find inspiration in the world around me, seeking connections in the seemingly mundane and absurd, and celebrating the beauty in imperfections. My art becomes a testament to the shared human experience, a canvas where vulnerability and authenticity intertwine.<\/p>\n<p style=\"text-align: justify;\">Embracing the unknown, I found new ways of storytelling, opening doors to dialogues that resonate with the viewer on a profound level, such as how I did in previous BMS. My creations are an invitation to explore and interpret, to engage in a dance of discovery and contemplation.<\/p>\n<p style=\"text-align: justify;\">Introduction and Concept<\/p>\n<p style=\"text-align: justify;\">&#8220;Sang Kancil, the beloved character from Malay folklore, is a clever, curious, and cunning young mousedeer. He is renowned for his wit and ability to outsmart animals larger and more powerful than himself. An astute observer with an insatiable curiosity and a sharp mind, Sang Kancil navigates through various situations with finesse, almost always emerging unscathed. While occasionally depicted as mischievous, his actions are never driven by malice. Instead, Sang Kancil represents the resilience of a seemingly small and vulnerable creature, persevering in a vast world where others may seek to exploit differences in size and stature.&#8221;<\/p>\n<p style=\"text-align: justify;\">Some might find his tales as timeless, serving as a learning materials for the younger generations to learn from. But as I grew older, each and every tales of Sang Kancil seemingly feels weirder and more absurd the more I read them. Why would the crocodiles line up and let him trample them? Why would the elephant throw himself into a hole for something he isn&#8217;t sure of? How can the tiger let himself fallen for such a simple ruse? When I was young, I simply brushed these absurd plots as a testament to the ingenuity of Sang Kancil, a folkloric symbol of intelligence and resilience, wondrous tales to educate children and entertain the working class adults. Then I realized that Sang Kancil wasn&#8217;t really that smart; all other characters are simply too stupid for their own good. Eventually I come to terms that the plots and the stories are simply absurd by design, intentionally exaggerated to emphasis the heroic qualities of the main character, just like many other folklore stories such as Sang Kelembai, B&#8217;er Rabbit, and Ramayana.<\/p>\n<p style=\"text-align: justify;\">Then I start to ponder, what would happen when Sang Kancil comes to Kuala Lumpur, a primate city where, many of its citizens, just like himself, regard themselves as heroes of their own stories and view others as weird, absurd, and bizarre whether they realized it or not? It started as a fun thought experiment. Then I decided to turn it into a performance art. A performance art where mundane activities and daily rituals are twisted into a series of absurd and bizarre strings of actions just by wearing a semi-anthromorphic head mask of Sang Kancil.<\/p>\n<p style=\"text-align: justify;\">Artwork Proposal<\/p>\n<p style=\"text-align: justify;\">I am proposing a performance art, played by myself. I will wear a mousedeer mask, with an attire befitting the situation I will be in. I will appear in public spaces around Kuala Lumpur wearing that mask, and observing how people live their daily life.<\/p>\n<p style=\"text-align: justify;\">My artwork will not be like Shia LaBeouf&#8217;s &#8220;#IAMSORRY&#8221; performance art in 2014, where the artist actively sought attention by wearing a provocative paper bag with the word [I AM NO LONGER POPULAR] written on it on his head, nor Anis Che Mat&#8217;s BMS 2021 mix media entry (which in my opinion, not a &#8216;true&#8217; performance art), where his masks were the central actors in the art piece, and not himself. Both pieces aimed to draw the audience&#8217;s attention towards the mask that they were wearing.<\/p>\n<p style=\"text-align: justify;\">My artwork will be similar to Marina Abramovic performance pieces, where absurdness was the central concept. By execution, my artwork will be similar to Liz Sexton, an American performance artist who wears animal masks in public places but my theme and concept is different from hers. My performance would not seek those kind of interactions, at least actively seeking them, although I do realize that being a performance art, it will attract some attention whether I want it or not. Furthermore, what will set my performance apart from theirs, or from most BMS entries, my performance art won&#8217;t be bound by a single place or time. The whole of Klang Valley can be my stage, and I will appear as Sang Kancil randomly throughout the BMS 2023 timeframe.<\/p>\n<p><img decoding=\"async\" class=\"alignnone size-large wp-image-8089\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231201_214059_PDF-Reader-1030x646.jpg\" alt=\"\" width=\"1030\" height=\"646\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231201_214059_PDF-Reader-1030x646.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231201_214059_PDF-Reader-300x188.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231201_214059_PDF-Reader-768x482.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231201_214059_PDF-Reader-705x442.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231201_214059_PDF-Reader.jpg 1079w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/><\/p>\n<p>Artwork Description<\/p>\n<p>Name: Sang Kancil dan Hidupan Harian Manusia di Kuala Lumpur.<\/p>\n<p>Artist: Khairul Ehsani Sapari.<\/p>\n<p>Sang Kancil Dan Hidupan Harian Manusia di Kuala Lumpur<\/p>\n<p>Year: 2023.<\/p>\n<p>Media: Performance art.<\/p>\n<p>Dimension: Time-based.<\/p>\n<p>Location: Public spaces throughout Kuala Lumpur City, Terminal Coffee Ampang.<\/p>\n<p style=\"text-align: justify;\">My artwork will be purely a performance art, without any physical or digital art representations, with a team ready to record my actions from a distance for documentations in case BMS judges and juries are unable to join and observe the performance. I was planning of seeking collaborations with several organizations such as ThinkCity, RAPIDKL, DBKL and KLCC Park management to allow me to perform in their properties, but eventually I decided against it as it will go towards the direction I don&#8217;t want to go. I did managed to secure an official location for one of my performance, in Terminal Coffee, a small caf\u00e9 located in Taman Putra Sulaiman, Ampang. I will be in this caf\u00e9 executing my performance piece every Saturday and Sunday throughout the final round of BMS session for 9 hours. The whole performance will be encountered starting the second week of November until the end of the final round of BMS.<\/p>\n<\/div><\/section>\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_3'  class='avia-section av-jcmt4v-0e3c7f19bca6eece3be570ea04b2d5fe main_color avia-section-default avia-no-border-styling  avia-builder-el-14  el_after_av_textblock  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-6927'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-gr1ojz-0d46b9dbdb74fccbf22cbd3aeb332d60\">\n.flex_column.av-gr1ojz-0d46b9dbdb74fccbf22cbd3aeb332d60{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-gr1ojz-0d46b9dbdb74fccbf22cbd3aeb332d60 av_one_full  avia-builder-el-15  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-fg1amn-abe2e5bfea5a169655230e67931ef605\">\n#top .av-special-heading.av-fg1amn-abe2e5bfea5a169655230e67931ef605{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-fg1amn-abe2e5bfea5a169655230e67931ef605 .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-fg1amn-abe2e5bfea5a169655230e67931ef605 .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-fg1amn-abe2e5bfea5a169655230e67931ef605 .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-fg1amn-abe2e5bfea5a169655230e67931ef605 av-special-heading-h2 custom-color-heading  avia-builder-el-16  avia-builder-el-no-sibling '><h2 class='av-special-heading-tag '  itemprop=\"headline\"  >KARYA <span style=\"color: #ffffff;\">CADANGAN<\/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-e21b8v-a456997c8c281543079bb168d7984a32\">\n#top .hr.hr-invisible.av-e21b8v-a456997c8c281543079bb168d7984a32{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-e21b8v-a456997c8c281543079bb168d7984a32 hr-invisible  avia-builder-el-17  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-ln1fnzmm-6254d8594eadeac5edc85fcc976111fa '   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-6930\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13-703x1030.png\" alt=\"\" width=\"703\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13-703x1030.png 703w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13-205x300.png 205w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13-768x1126.png 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13-1048x1536.png 1048w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13-1023x1500.png 1023w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13-481x705.png 481w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Cadangan-2-13.png 1234w\" sizes=\"(max-width: 703px) 100vw, 703px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_4'  class='avia-section av-lo8bg4qj-a518cf173943d571314193035e8c474f 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-6927'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-alssfz-5941c5a2093f8673f579b82726e8826b\">\n.flex_column.av-alssfz-5941c5a2093f8673f579b82726e8826b{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-alssfz-5941c5a2093f8673f579b82726e8826b 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-8wmpr3-c47995e2d62e5361812f6059f76e899f\">\n#top .av-special-heading.av-8wmpr3-c47995e2d62e5361812f6059f76e899f{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-8wmpr3-c47995e2d62e5361812f6059f76e899f .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-8wmpr3-c47995e2d62e5361812f6059f76e899f .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-8wmpr3-c47995e2d62e5361812f6059f76e899f .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-8wmpr3-c47995e2d62e5361812f6059f76e899f 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-7yzicv-61cf6e1920971e69edc4e698051db46c\">\n#top .hr.hr-invisible.av-7yzicv-61cf6e1920971e69edc4e698051db46c{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-7yzicv-61cf6e1920971e69edc4e698051db46c 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-lo8bfo9g-69549947c4ad33610a1420349aace0b2 '   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-7934\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_221928_WhatsApp-1030x931.jpg\" alt=\"\" width=\"1030\" height=\"931\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_221928_WhatsApp-1030x931.jpg 1030w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_221928_WhatsApp-300x271.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_221928_WhatsApp-768x694.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_221928_WhatsApp-705x637.jpg 705w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_221928_WhatsApp.jpg 1079w\" sizes=\"(max-width: 1030px) 100vw, 1030px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-7937\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_222150_Gallery-1000x1030.jpg\" alt=\"\" width=\"1000\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_222150_Gallery-1000x1030.jpg 1000w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_222150_Gallery-291x300.jpg 291w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_222150_Gallery-768x791.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_222150_Gallery-36x36.jpg 36w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_222150_Gallery-685x705.jpg 685w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/Screenshot_20231129_222150_Gallery.jpg 1079w\" sizes=\"(max-width: 1000px) 100vw, 1000px\" \/> <img decoding=\"async\" class=\"alignnone size-full wp-image-8105\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571469-picsay.jpg\" alt=\"\" width=\"770\" height=\"421\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571469-picsay.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571469-picsay-300x164.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571469-picsay-768x420.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571469-picsay-705x385.jpg 705w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8106\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571365-picsay.jpg\" alt=\"\" width=\"770\" height=\"417\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571365-picsay.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571365-picsay-300x162.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571365-picsay-768x416.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571365-picsay-705x382.jpg 705w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8107\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571429-picsay.jpg\" alt=\"\" width=\"770\" height=\"417\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571429-picsay.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571429-picsay-300x162.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571429-picsay-768x416.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571429-picsay-705x382.jpg 705w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8108\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571520-picsay.jpg\" alt=\"\" width=\"770\" height=\"417\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571520-picsay.jpg 770w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571520-picsay-300x162.jpg 300w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571520-picsay-768x416.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/1701571520-picsay-705x382.jpg 705w\" sizes=\"(max-width: 770px) 100vw, 770px\" \/> <img decoding=\"async\" class=\"alignnone size-large wp-image-8109\" src=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231203_092921-741x1030.jpg\" alt=\"\" width=\"741\" height=\"1030\" srcset=\"https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231203_092921-741x1030.jpg 741w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231203_092921-216x300.jpg 216w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231203_092921-768x1068.jpg 768w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231203_092921-507x705.jpg 507w, https:\/\/www.artgallery.gov.my\/bms\/wp-content\/uploads\/2023\/09\/photo_20231203_092921.jpg 770w\" sizes=\"(max-width: 741px) 100vw, 741px\" \/><\/p>\n<\/div><\/section>\n\n<\/div><\/div><\/div><!-- close content main div --><\/div><\/div><div id='av_section_5'  class='avia-section av-lo8bhjj6-eadf65c675999947cb52a9a591995b68 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-6927'><div class='entry-content-wrapper clearfix'>\n\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-5ndtlb-22162c7d404013bad2b1b995134d80b3\">\n.flex_column.av-5ndtlb-22162c7d404013bad2b1b995134d80b3{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-5ndtlb-22162c7d404013bad2b1b995134d80b3 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-lo8bh2bk-21ed6ad40eb60ad5d317baffbe930cbc\">\n#top .av-special-heading.av-lo8bh2bk-21ed6ad40eb60ad5d317baffbe930cbc{\npadding-bottom:10px;\ncolor:#edae44;\n}\nbody .av-special-heading.av-lo8bh2bk-21ed6ad40eb60ad5d317baffbe930cbc .av-special-heading-tag .heading-char{\nfont-size:25px;\n}\n.av-special-heading.av-lo8bh2bk-21ed6ad40eb60ad5d317baffbe930cbc .special-heading-inner-border{\nborder-color:#edae44;\n}\n.av-special-heading.av-lo8bh2bk-21ed6ad40eb60ad5d317baffbe930cbc .av-subheading{\nfont-size:15px;\n}\n<\/style>\n<div  class='av-special-heading av-lo8bh2bk-21ed6ad40eb60ad5d317baffbe930cbc 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-4ekivz-db9146bdbdcab46e5b506a274b03be57\">\n#top .hr.hr-invisible.av-4ekivz-db9146bdbdcab46e5b506a274b03be57{\nheight:10px;\n}\n<\/style>\n<div  class='hr av-4ekivz-db9146bdbdcab46e5b506a274b03be57 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-2t8p1r-f231c658105b2ba1093ce939ce449d84 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\/pT2wcWVD22M?list=PLU4NFwcrMHPTSNnpxahEq_YyqaX6sFbeg'><script type='text\/html' class='av-video-tmpl'><div class='avia-iframe-wrap'><iframe title=\"Khairul Ehsani Sapari (Sang Kancil Dan Hidupan Harian Manusia) | Zon Tengah KUL BMS&#039;23\" width=\"1500\" height=\"844\" src=\"https:\/\/www.youtube.com\/embed\/pT2wcWVD22M?list=PLU4NFwcrMHPTSNnpxahEq_YyqaX6sFbeg&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-cakafz-426f9b3e1992581397546ab737ac70a8 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-6927'><div class='entry-content-wrapper clearfix'>\n<div class='flex_column_table av-abj29b-e3a018b1e7653d3379352d860fed688e sc-av_one_half av-equal-height-column-flextable'>\n<style type=\"text\/css\" data-created_by=\"avia_inline_auto\" id=\"style-css-av-abj29b-e3a018b1e7653d3379352d860fed688e\">\n.flex_column.av-abj29b-e3a018b1e7653d3379352d860fed688e{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-abj29b-e3a018b1e7653d3379352d860fed688e 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-uu6rj-64302eb9428b08644675d2c4996d077a '   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\/khairul-ehsani-1.png\">\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-7w3rsf-07d3a5edffdcd33c6e6493afe6e99e91\">\n.flex_column.av-7w3rsf-07d3a5edffdcd33c6e6493afe6e99e91{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-7w3rsf-07d3a5edffdcd33c6e6493afe6e99e91 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-635t4f-c8a2756f42d71f17275dad70a5dbd449 '   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\/khairul-ehsani-1.png\">\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-4iomof-7b390c0bb1e88f11670d1a34fdfb18db\">\n.flex_column.av-4iomof-7b390c0bb1e88f11670d1a34fdfb18db{\nborder-radius:0px 0px 0px 0px;\npadding:0px 0px 0px 0px;\n}\n<\/style>\n<div  class='flex_column av-4iomof-7b390c0bb1e88f11670d1a34fdfb18db 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-2w6d27-9ad31eddf9f12e39afa06c4b47ea8ead '   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":7037,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[36,37],"tags":[55],"class_list":["post-6927","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-bms23","category-kuala-lumpur","tag-55"],"_links":{"self":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6927","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=6927"}],"version-history":[{"count":21,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6927\/revisions"}],"predecessor-version":[{"id":8835,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/posts\/6927\/revisions\/8835"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=\/wp\/v2\/media\/7037"}],"wp:attachment":[{"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=6927"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=6927"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.artgallery.gov.my\/bms\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=6927"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}