zomidaily.org Ads.txt file

<!DOCTYPE html>
<html lang="en-US">
<head itemscope itemtype="https://schema.org/WebSite">
<meta charset="UTF-8" />
<meta name="description" content="Zomi Daily is an online news &amp; magazine portal for Zomi around the world. Let&#039;s promote Zomi people and their literature called Zolai (Zomi language) to the world!" />
<meta name="keywords" content="biakna, burma, burmese, chin, chin hill, chin people, chin state, chinhill, chinland, falam, hakha, inn kuan, Innkuan, kuki, lai, lamka, lusei, lushai, minam, mizo, mizoram, myanmar, ngeina, paite, teddim, tedim, zo, zogam, zolai, zoan, zo an, zo biakna, zo la, zo lam, zo mi, zo ngei na, zoan, zobiakna, zola, zolam, zomi, zongeina, zopau, zou, zomi refugee, zomi news" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>ZOMI DAILY &#8211; Online News &amp; Magazine</title>
<style>
.pro-wccp:before {
content: "\f160";
top: 3px;
}
.pro-wccp:before{
color:#02CA03 !important
}
.pro-wccp {
transform: rotate(45deg);
}
</style>
<script id="wccp_pro_disable_selection">

var image_save_msg = 'You are not allowed to save images!';

var no_menu_msg = 'Context menu disabled!';

var smessage = "Nadeihleh Comment ah hong zasak inmaw!";


"use strict";
/* This because search property "includes" does not supported by IE*/
if (!String.prototype.includes) {
String.prototype.includes = function(search, start) {
if (typeof start !== 'number') {
start = 0;
}

if (start + search.length > this.length) {
return false;
} else {
return this.indexOf(search, start) !== -1;
}
};
}
/*////////////////////////////////////*/
let canCall = true;

function call_disable_copy_WithDelay(e) {
if (canCall) {
canCall = false;
disable_copy(e);
setTimeout(() => {
canCall = true;
}, 1000);
}
}

function disable_copy(e)
{
window.wccp_pro_iscontenteditable_flag = false;

wccp_pro_log_to_console_if_allowed("disable_copy");

var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement

var target = e.target || e.srcElement;

var elemtype = e.target.nodeName;

elemtype = elemtype.toUpperCase();

if (apply_class_exclusion(e) == "Yes") return true;

if(wccp_pro_iscontenteditable(e) == true) {return true;}

if(is_content_editable_element(current_clicked_element) == true)
{
return true;
}
else
{
if (smessage !== "" && e.detail == 2)
show_wccp_pro_message(smessage);

if (isSafari)
{
return true;
}
else
{
//wccp_pro_clear_any_selection();

return false;
}
}

/*disable context menu when shift + right click is pressed*/
var shiftPressed = 0;

var evt = e?e:window.event;

if (parseInt(navigator.appVersion)>3) {

if (document.layers && navigator.appName=="Netscape")

shiftPressed = (e.modifiers-0>3);

else

shiftPressed = e.shiftKey;

if (shiftPressed) {

if (smessage !== "") show_wccp_pro_message(smessage);

var isFirefox = typeof InstallTrigger !== 'undefined'; /* Firefox 1.0+ */

if (isFirefox) {
evt.cancelBubble = true;
if (evt.stopPropagation) evt.stopPropagation();
if (evt.preventDefault()) evt.preventDefault();
show_wccp_pro_message (smessage);
wccp_pro_clear_any_selection();
return false;
}

wccp_pro_clear_any_selection();
return false;
}
}

if(e.which === 2 ){
var clickedTag_a = (e==null) ? event.srcElement.tagName : e.target.tagName;
show_wccp_pro_message(smessage);
wccp_pro_clear_any_selection(); return false;
}
var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);
var checker_IMG = 'checked';
if (elemtype == "IMG" && checker_IMG == 'checked' && e.detail == 2) {show_wccp_pro_message(alertMsg_IMG);wccp_pro_clear_any_selection();return false;}

//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
if (is_content_editable_element(elemtype) == false)
{
if (smessage !== "" && e.detail == 2)
show_wccp_pro_message(smessage);

if (isSafari)
{
return true;
}
else
{
wccp_pro_clear_any_selection(); return false;
}
}
else
{
return true;
}
}
////////////////////////////
function disable_copy_ie()
{
wccp_pro_log_to_console_if_allowed("disable_copy_ie_function_started");

var e = e || window.event;
/*also there is no e.target property in IE.*/
/*instead IE uses window.event.srcElement*/
var target = e.target || e.srcElement;

var elemtype = window.event.srcElement.nodeName;

elemtype = elemtype.toUpperCase();

if(wccp_pro_iscontenteditable(e) == true) return true;

if (apply_class_exclusion(e) == "Yes") return true;

if (elemtype == "IMG") {show_wccp_pro_message(alertMsg_IMG);return false;}

//elemtype must be merged by elemtype checker on function disable_copy & disable_hot_keys
if (is_content_editable_element(elemtype) == false)
{
return false;
}
}
function disable_drag_text(e)
{
wccp_pro_log_to_console_if_allowed("disable_drag_text");

/*var isSafari = /Safari/.test(navigator.userAgent) && /Apple Computer/.test(navigator.vendor);*/
/*if (isSafari) {show_wccp_pro_message(alertMsg_IMG);return false;}*/

var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement*/

var target = e.target || e.srcElement;

/*For contenteditable tags*/

if (apply_class_exclusion(e) == "Yes") return true;

var elemtype = e.target.nodeName;

elemtype = elemtype.toUpperCase();

var disable_drag_text_drop = 'checked';

if (disable_drag_text_drop != "checked") return true;

if (window.location.href.indexOf("/user/") > -1) {
return true; /*To allow users to drag & drop images when editing thier profiles*/
}

return false;
}

/*/////////////////special for safari Start////////////////*/
var onlongtouch;

var timer;

var touchduration = 1000; /*length of time we want the user to touch before we do something*/

var elemtype = "";

function touchstart(e)
{
wccp_pro_log_to_console_if_allowed("touchstart");

e = e || window.event;// also there is no e.target property in IE. instead IE uses window.event.srcElement

var target = e.target || e.srcElement;

var elemtype = e.target.nodeName;

elemtype = elemtype.toUpperCase();

//if (elemtype == "A") return;

if (apply_class_exclusion(elemtype) == 'Yes') return;
/*also there is no e.target property in IE.*/
/*instead IE uses window.event.srcElement*/

if(!wccp_pro_is_passive()) e.preventDefault();
if (!timer) {
timer = setTimeout(onlongtouch, touchduration);
}
}

function touchend()
{
wccp_pro_log_to_console_if_allowed("touchend");

/*stops short touches from firing the event*/
if (timer) {
clearTimeout(timer);
timer = null;
}
onlongtouch();
}

onlongtouch = function(e)/*this will clear the current selection if any_not_editable_thing selected*/
{
wccp_pro_log_to_console_if_allowed("onlongtouch");

if (is_content_editable_element(elemtype) == false)
{
if (window.getSelection) {
if (window.getSelection().empty) { /*Chrome*/
window.getSelection().empty();
} else if (window.getSelection().removeAllRanges) { /*Firefox*/
window.getSelection().removeAllRanges();
}
} else if (document.selection) { /*IE?*/
var textRange = document.body.createTextRange();
textRange.moveToElementText(element);
textRange.select();

document.selection.empty();
}
return false;
}
};

document.addEventListener("DOMContentLoaded", function(event)
{
window.addEventListener("touchstart", touchstart, false);
window.addEventListener("touchend", touchend, false);
});


function wccp_pro_is_passive()
{
wccp_pro_log_to_console_if_allowed("wccp_pro_is_passive");

var cold = false,
hike = function() {};

try {
var aid = Object.defineProperty({}, 'passive', {
get() {cold = true}
});
window.addEventListener('test', hike, aid);
window.removeEventListener('test', hike, aid);
} catch (e) {}

return cold;
}
/*/////////////////////////////////////////////////////////////////*/
function reEnable()
{
return true;
}

if(navigator.userAgent.indexOf('MSIE')==-1) //If not IE
{
document.ondragstart = disable_drag_text;
document.onselectstart = call_disable_copy_WithDelay;
document.onselectionchange = call_disable_copy_WithDelay;
//document.onmousedown = disable_copy;
//document.addEventListener('click', disable_copy, false);
//document.addEventListener('click', set_current_clicked_element, false);
document.addEventListener('mousedown', set_current_clicked_element, false);
//document.onclick = reEnable;
}else
{
document.onselectstart = disable_copy_ie;
}

var current_clicked_element = "";

var current_clicked_object = null;

function set_current_clicked_element(e)
{
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement

var target = e.target || e.srcElement;

var elemtype = e.target.nodeName;

elemtype = elemtype.toUpperCase();

current_clicked_element = elemtype;

wccp_pro_log_to_console_if_allowed("current_clicked_element = " + current_clicked_element, arguments.callee.name);
}
</script>
<script id="wccp_pro_css_disable_selection">
function wccp_pro_msieversion()
{
var ua = window.navigator.userAgent;
var msie = ua.indexOf("MSIE");
var msie2 = ua.indexOf("Edge");
var msie3 = ua.indexOf("Trident");

if (msie > -1 || msie2 > -1 || msie3 > -1) // If Internet Explorer, return version number
{
return "IE";
}
else // If another browser, return 0
{
return "otherbrowser";
}
}

var e = document.getElementsByTagName('H1')[0];
if(e && wccp_pro_msieversion() == "IE")
{
e.setAttribute('unselectable',"on");
}
</script>
<script id="wccp_pro_disable_hot_keys">
/*****************For contenteditable tags***************/
var wccp_pro_iscontenteditable_flag = false;

function wccp_pro_iscontenteditable(e)
{
var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement

var target = e.target || e.srcElement;

var iscontenteditable = "false";

if(typeof target.getAttribute!="undefined" )
{
iscontenteditable = target.getAttribute("contenteditable"); // Return true or false as string

if(typeof target.hasAttribute!="undefined")
{
if(target.hasAttribute("contenteditable"))
iscontenteditable = true;
}
}

wccp_pro_log_to_console_if_allowed("iscontenteditable:" + iscontenteditable);

var iscontenteditable2 = false;

if(typeof target.isContentEditable!="undefined" ) iscontenteditable2 = target.isContentEditable; // Return true or false as boolean

if(target.parentElement !=null) iscontenteditable2 = target.parentElement.isContentEditable;

if (iscontenteditable == "true" || iscontenteditable == true || iscontenteditable2 == true)
{
if(typeof target.style!="undefined" ) target.style.cursor = "text";

wccp_pro_iscontenteditable_flag = true;

wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: true");

return true;
}
wccp_pro_log_to_console_if_allowed("wccp_pro_iscontenteditable: false");
}
/******************************************************/
function wccp_pro_clear_any_selection()
{
if(window.wccp_pro_iscontenteditable_flag == true) return;

wccp_pro_log_to_console_if_allowed("wccp_pro_clear_any_selection");

var myName = wccp_pro_clear_any_selection.caller.toString();

myName = myName.substr('function '.length);

myName = myName.substr(0, myName.indexOf('('));

wccp_pro_log_to_console_if_allowed("called_by: " + myName);

if (window.getSelection)
{
if (window.getSelection().empty)
{ // Chrome
window.getSelection().empty();
} else if (window.getSelection().removeAllRanges)
{ // Firefox
window.getSelection().removeAllRanges();
}
} else if (document.selection)
{ // IE?
document.selection.empty();
}

//show_wccp_pro_message("You are not allowed to make this operation");
}


/*Is content_editable element*/
function is_content_editable_element(element_name = "")
{
if (element_name == "TEXT" || element_name == "#TEXT" || element_name == "TEXTAREA" || element_name == "INPUT" || element_name == "PASSWORD" || element_name == "SELECT" || element_name == "OPTION" || element_name == "EMBED" || element_name == "CODE" || element_name == "CODEBLOCK_WCCP")
{
wccp_pro_log_to_console_if_allowed("is_content_editable_element: true >>" + element_name);

return true;
}
wccp_pro_log_to_console_if_allowed("is_content_editable_element: false >>" + element_name);

return false;
}
/*Is selection enabled element*/
/*
function is_selection_enabled_element(element_name = "")
{
if (is_content_editable_element == true)
{
wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: true >>" + element_name);

return true;
}
wccp_pro_log_to_console_if_allowed("is_selection_enabled_element: false >>" + element_name);

return false;
}
*/
/*Hot keys function */
function disable_hot_keys(e)
{
wccp_pro_log_to_console_if_allowed("disable_hot_keys");

e = e || window.event;

//console.log(e);

if (!e) return;

var key;

if(window.event)
key = window.event.keyCode; /*IE*/
else if (e.hasOwnProperty("which")) key = e.which; /*firefox (97)*/

wccp_pro_log_to_console_if_allowed("Data:", key);


if (key == 123 || (e.ctrlKey && e.shiftKey && e.keyCode == 'J'.charCodeAt(0)) )//F12 chrome developer key disable
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');

return false;
}

var elemtype = e.target.tagName;

elemtype = elemtype.toUpperCase();

var sel = getSelectionTextAndContainerElement();

if(elemtype == "BODY" && sel.text != "") elemtype = sel.containerElement.tagName; /* no need for it when tag name is BODY, so we get the selected text tag name */

/*elemtype must be merged by elemtype checker on function disable_copy & disable_copy_ie*/
if (is_content_editable_element(elemtype) == true)
{
elemtype = 'TEXT';
}

if(wccp_pro_iscontenteditable(e) == true) elemtype = 'TEXT';

if (key == 44)/*For any emement type, text elemtype is not excluded here, (prntscr (44)*/
{
copyTextToClipboard("");
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}
if (e.ctrlKey || e.metaKey)
{
if (elemtype!= 'TEXT' && (key == 97 || key == 99 || key == 120 || key == 26 || key == 43))
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}
if (elemtype!= 'TEXT')
{

if (key == 65)
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}

if (key == 67)
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}

if (key == 88)
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}

if (key == 86)
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
} }

if (key == 85)
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}
if (key == 80)
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}
if (key == 44)
{
copyTextToClipboard("no");
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}

if (key == 73)//F12 chrome developer key disable
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
}


if (key == 83)
{
show_wccp_pro_message('Nadeihleh Comment ah hong zasak inmaw!');
return false;
} }
return true;
}


window.addEventListener('load', function (){
if(window.Zepto || !window.jQuery) jQuery = $;
jQuery(document).ready(function() {
jQuery(document).bind("keyup keydown", disable_hot_keys);
});
});

</script>
<style>
.wccp_pro_copy_code_button
{
line-height: 6px;
width: auto;
font-size: 8pt;
font-family: tahoma;
margin-top: 1px;
position:absolute;
top:0;
right:0;
border-radius: 4px;
opacity: 100%;
}
.wccp_pro_copy_code_button:hover
{
opacity: 100%;
}

.wccp_pro_copy_code_button[disabled]
{
opacity: 40%;
}
code,pre
{
overflow: visible;
white-space: pre-line;
}
</style>
<script id="wccp_pro_disable_Right_Click">

function wccp_pro_nocontext(e)
{
wccp_pro_log_to_console_if_allowed("wccp_pro_nocontext function");

const caller = wccp_pro_nocontext.caller;

if (caller) wccp_pro_log_to_console_if_allowed("Caller function is: " + caller.name);

e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement

if (apply_class_exclusion(e) == 'Yes') return true;

var exception_tags = 'NOTAG,';

var clickedTag = (e==null) ? event.srcElement.tagName : e.target.tagName;

wccp_pro_log_to_console_if_allowed("clickedTag: " + clickedTag);

var target = e.target || e.srcElement;

var parent_tag = ""; var parent_of_parent_tag = "";

if(target.parentElement != null)
{
parent_tag = target.parentElement.tagName;

if(target.parentElement.parentElement != null) parent_of_parent_tag = target.parentElement.parentElement.tagName;
}

var checker = 'checked';
if ((clickedTag == "IMG" || clickedTag == "FIGURE" || clickedTag == "SVG" || clickedTag == "PROTECTEDIMGDIV") && checker == 'checked') {
if (alertMsg_IMG != "")show_wccp_pro_message(alertMsg_IMG);
return false;
}else {exception_tags = exception_tags + 'IMG,';}

checker = '';
if ((clickedTag == "VIDEO" || clickedTag == "PROTECTEDWCCPVIDEO" || clickedTag == "EMBED") && checker == 'checked') {
if (alertMsg_VIDEO != "")show_wccp_pro_message(alertMsg_VIDEO);
return false;
}else {exception_tags = exception_tags + 'VIDEO,PROTECTEDWCCPVIDEO,EMBED,';}

checker = 'checked';
if ((clickedTag == "A" || clickedTag == "TIME" || parent_tag == "A" || parent_of_parent_tag == "A") && checker == 'checked') {
if (alertMsg_A != "")show_wccp_pro_message(alertMsg_A);
return false;
}else {exception_tags = exception_tags + 'A,';if(parent_tag == "A" || parent_of_parent_tag == "A") clickedTag = "A";}

checker = 'checked';
if ((clickedTag == "P" || clickedTag == "B" || clickedTag == "FONT" || clickedTag == "LI" || clickedTag == "UL" || clickedTag == "STRONG" || clickedTag == "OL" || clickedTag == "BLOCKQUOTE" || clickedTag == "TH" || clickedTag == "TR" || clickedTag == "TD" || clickedTag == "SPAN" || clickedTag == "EM" || clickedTag == "SMALL" || clickedTag == "I" || clickedTag == "BUTTON") && checker == 'checked') {
if (alertMsg_PB != "")show_wccp_pro_message(alertMsg_PB);
return false;
}else {exception_tags = exception_tags + 'P,B,FONT,LI,UL,STRONG,OL,BLOCKQUOTE,TD,SPAN,EM,SMALL,I,BUTTON,';}

checker = 'checked';
if ((clickedTag == "INPUT" || clickedTag == "PASSWORD") && checker == 'checked') {
if (alertMsg_INPUT != "")show_wccp_pro_message(alertMsg_INPUT);
return false;
}else {exception_tags = exception_tags + 'INPUT,PASSWORD,';}

checker = 'checked';
if ((clickedTag == "H1" || clickedTag == "H2" || clickedTag == "H3" || clickedTag == "H4" || clickedTag == "H5" || clickedTag == "H6" || clickedTag == "ASIDE" || clickedTag == "NAV") && checker == 'checked') {
if (alertMsg_H != "")show_wccp_pro_message(alertMsg_H);
return false;
}else {exception_tags = exception_tags + 'H1,H2,H3,H4,H5,H6,';}

checker = 'checked';
if (clickedTag == "TEXTAREA" && checker == 'checked') {
if (alertMsg_TEXTAREA != "")show_wccp_pro_message(alertMsg_TEXTAREA);
return false;
}else {exception_tags = exception_tags + 'TEXTAREA,';}

checker = 'checked';
if ((clickedTag == "DIV" || clickedTag == "BODY" || clickedTag == "HTML" || clickedTag == "ARTICLE" || clickedTag == "SECTION" || clickedTag == "NAV" || clickedTag == "HEADER" || clickedTag == "FOOTER") && checker == 'checked') {
if (alertMsg_EmptySpaces != "")show_wccp_pro_message(alertMsg_EmptySpaces);
return false;
}
else
{
if (exception_tags.indexOf(clickedTag)!=-1)
{
return true;
}
else
return false;
}
}

function disable_drag_images(e)
{return;
wccp_pro_log_to_console_if_allowed("disable_drag_images");

var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement

var target = e.target || e.srcElement;

//For contenteditable tags
if (apply_class_exclusion(e) == "Yes") return true;

var elemtype = e.target.nodeName;

if (elemtype != "IMG") {return;}

elemtype = elemtype.toUpperCase();

var disable_drag_drop_images = 'checked';

if (disable_drag_drop_images != "checked") return true;

if (window.location.href.indexOf("/user/") > -1) {
return true; //To allow users to drag & drop images when editing thier profiles
}

show_wccp_pro_message(alertMsg_IMG);

return false;
}

var alertMsg_IMG = "Nadeihleh Comment ah hong zasak inmaw!";
var alertMsg_A = "Nadeihleh Comment ah hong zasak inmaw!";
var alertMsg_PB = "Nadeihleh Comment ah hong zasak inmaw!";
var alertMsg_INPUT = "Nadeihleh Comment ah hong zasak inmaw!";
var alertMsg_H = "Nadeihleh Comment ah hong zasak inmaw!";
var alertMsg_TEXTAREA = "Nadeihleh Comment ah hong zasak inmaw!";
var alertMsg_EmptySpaces = "Nadeihleh Comment ah hong zasak inmaw!";
var alertMsg_VIDEO = "Nadeihleh Comment ah hong zasak inmaw!";
//document.oncontextmenu=null;
window.addEventListener('load', function (){
if(window.Zepto || !window.jQuery) jQuery = $;
jQuery(document).ready(function(){
jQuery(document).on('contextmenu', wccp_pro_nocontext);
});
});
window.addEventListener('load', function (){
if (typeof jQuery === 'undefined')
{
alert("no jquery");
document.oncontextmenu = wccp_pro_nocontext;
document.addEventListener("contextmenu",wccp_pro_nocontext);
window.addEventListener("contextmenu",wccp_pro_nocontext);
}
});
</script>

<script id="wccp_pro_disable_drag_images">
document.ondragstart = disable_drag_images;
window.addEventListener('load', function (){
if(window.Zepto || !window.jQuery) jQuery = $;
jQuery(document).ready(function(){
jQuery('img').each(function() {
jQuery(this).attr('draggable', false);
});
});
});
</script>
<style id="wccp_pro_style1">
img{
-moz-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
-khtml-user-select: none;
user-select: none;
-webkit-user-drag: none;
}
</style>
<script>
// JavaScript to delete the cookie after 5 seconds
window.addEventListener("load", function() {
setTimeout(function() {
// To delete a cookie, set its expiry date in the past
document.cookie = "my_insidewebsite_cookie=; expires=Thu, 01 Jan 1970 00:00:00 UTC; path=/;";
console.log("Cookie deleted");
}, 5000);
});
</script>
<script id="wccp_pro_class_exclusion">
function copyToClipboard(elem) {
// create hidden text element, if it doesn't already exist
var targetId = "_wccp_pro_hiddenCopyText_";
{
// must use a temporary form element for the selection and copy
target = document.getElementById(targetId);
if (!target) {
var target = document.createElement("textarea");
target.style.position = "absolute";
target.style.left = "-9999px";
target.style.top = "0";
target.id = targetId;
document.body.appendChild(target);
}
target.textContent = elem.textContent;
}
// select the content
var currentFocus = document.activeElement;
target.focus();
target.setSelectionRange(0, target.value.length);

// copy the selection
var succeed;
try {
succeed = document.execCommand("copy");
} catch(e) {
succeed = false;
}

// restore original focus
if (currentFocus && typeof currentFocus.focus === "function") {
currentFocus.focus();
}


// clear temporary content
target.textContent = "";
document.getElementsByTagName('span')[0].innerHTML = " ";
return succeed;
}
/**************************************************/
function wccp_pro_log_to_console_if_allowed(data = "")
{//return;
var myName = "";

if(wccp_pro_log_to_console_if_allowed.caller != null) myName = wccp_pro_log_to_console_if_allowed.caller.toString();

myName = myName.substr('function '.length);

myName = myName.substr(0, myName.indexOf('('));

}
/**************************************************/
function fallbackCopyTextToClipboard(text) {
var textArea = document.createElement("textarea");
textArea.value = text;
document.body.appendChild(textArea);
textArea.focus();
textArea.select();

try {
var successful = document.execCommand("copy");
var msg = successful ? "successful" : "unsuccessful";
wccp_pro_log_to_console_if_allowed("Fallback: Copying text command was " + msg);
} catch (err) {
console.error("Fallback: Oops, unable to copy", err);
}

document.body.removeChild(textArea);
}
/*****************************************/
function copyTextToClipboard(text) {
if (!navigator.clipboard) {
fallbackCopyTextToClipboard(text);
return;
}
navigator.clipboard.writeText(text).then(
function() {
console.log("Async: Copying to clipboard was successful!");
},
function(err) {
console.error("Async: Could not copy text: ", err);
}
);
}
/*****************************************/
/*getSelectionTextAndContainerElement*/
function getSelectionTextAndContainerElement()
{
var text = "", containerElement = null;
if (typeof window.getSelection != "undefined") {
var sel = window.getSelection();
if (sel.rangeCount) {
var node = sel.getRangeAt(0).commonAncestorContainer;
containerElement = node.nodeType == 1 ? node : node.parentNode;
if (typeof(containerElement.parentElement) != 'undefined') current_clicked_object = containerElement.parentElement;
text = sel.toString();
}
} else if (typeof document.selection != "undefined" && document.selection.type != "Control")
{
var textRange = document.selection.createRange();
containerElement = textRange.parentElement();
text = textRange.text;
}

return {
text: text,
containerElement: containerElement
};
}

function getSelectionParentElement() {
var parentEl = null, sel;

if (window.getSelection) {
sel = window.getSelection();
if (sel.rangeCount) {
parentEl = sel.getRangeAt(0).commonAncestorContainer;
//sel.getRangeAt(0).startContainer.parentNode;
if (parentEl.nodeType != 1) {
parentEl = parentEl.parentNode;
}
}
} else if ( (sel = document.selection) && sel.type != "Control") {
parentEl = sel.createRange().parentElement();
}

let arr = new Array();

arr["nodeName"] = "cant_find_parent_element";

if(parentEl != null)
return parentEl;
else
return arr;
}
/*****************************************/
function sleep(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
/*****************************************/
</script>

<script id="apply_class_exclusion">
function apply_class_exclusion(e)
{
wccp_pro_log_to_console_if_allowed(e);

var my_return = 'No';

var e = e || window.event; // also there is no e.target property in IE. instead IE uses window.event.srcElement

var target = e.target || e.srcElement || e || 'nothing';

var excluded_classes = '' + '';

var class_to_exclude = "";

if(target.parentElement != null)
{
class_to_exclude = target.className + ' ' + target.parentElement.className || '';
}else{
class_to_exclude = target.className;
}

var class_to_exclude_array = Array();

//console.log(class_to_exclude);

if (typeof(class_to_exclude) != 'undefined') class_to_exclude_array = class_to_exclude.split(" ");

//console.log (class_to_exclude_array);

class_to_exclude_array.forEach(function(item)
{
if(item != '' && excluded_classes.indexOf(item)>=0)
{
//target.style.cursor = "text";

//console.log ('Yes');

my_return = 'Yes';
}
});

try {
class_to_exclude = target.parentElement.getAttribute('class') || target.parentElement.className || '';
}
catch(err)
{
class_to_exclude = '';
}

if(class_to_exclude != '' && excluded_classes.indexOf(class_to_exclude)>=0)
{
//target.style.cursor = "text";
my_return = 'Yes';
}

return my_return;
}
</script>
<style id="wccp_pro_style2" data-asas-style="">


*[contenteditable] , [contenteditable] *,*[contenteditable="true"] , [contenteditable="true"] * { /* for contenteditable tags*/ , /* for tags inside contenteditable tags*/
-webkit-user-select: auto !important;
cursor: text !important;
user-select: text !important;
pointer-events: auto !important;
}

/*
*[contenteditable]::selection, [contenteditable] *::selection, [contenteditable="true"]::selection, [contenteditable="true"] *::selection { background: Highlight !important; color: HighlightText !important;}
*[contenteditable]::-moz-selection, [contenteditable="true"] *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
input::selection,textarea::selection, code::selection, code > *::selection { background: Highlight !important; color: HighlightText !important;}
input::-moz-selection,textarea::-moz-selection, code::-moz-selection, code > *::-moz-selection { background: Highlight !important; color: HighlightText !important;}
*/
a{ cursor: pointer ; pointer-events: auto !important;}

</style><style>TEXT,TEXTAREA,input[type="text"] {cursor: text !important; user-select: text !important;}</style> <script id="wccp_pro_alert_message">
window.addEventListener('DOMContentLoaded', function() {}); //This line to stop JS deffer function in wp-rockt pluign

window.addEventListener('load', function (){
// Create the first div element with the "oncontextmenu" attribute
const wccp_pro_mask = document.createElement('div');
wccp_pro_mask.setAttribute('oncontextmenu', 'return false;');
wccp_pro_mask.setAttribute('id', 'wccp_pro_mask');

// Create the second div element with the "msgmsg-box-wpcp hideme" classes
const wpcp_error_message = document.createElement('div');
wpcp_error_message.setAttribute('id', 'wpcp-error-message');
wpcp_error_message.setAttribute('class', 'msgmsg-box-wpcp hideme');

// Add a span element with the "error: " text inside the second div
const error_span = document.createElement('span');
error_span.innerText = 'error: ';
wpcp_error_message.appendChild(error_span);

// Add the error message text inside the second div
const error_text = document.createTextNode('Nadeihleh Comment ah hong zasak inmaw!');
wpcp_error_message.appendChild(error_text);

// Add the div elements to the document body
document.body.appendChild(wccp_pro_mask);
document.body.appendChild(wpcp_error_message);
});

var timeout_result;
function show_wccp_pro_message(smessage="", style="")
{
wccp_pro_log_to_console_if_allowed(smessage);

timeout = 3000;

if(style == "") style = "warning-wpcp";

if (smessage !== "" && timeout!=0)
{
var smessage_text = smessage;
jquery_fadeTo();
document.getElementById("wpcp-error-message").innerHTML = smessage_text;
document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp showme " + style;
clearTimeout(timeout_result);
timeout_result = setTimeout(hide_message, timeout);
}
else
{
clearTimeout(timeout_result);
timeout_result = setTimeout(hide_message, timeout);
}
}
function hide_message()
{
jquery_fadeOut();
document.getElementById("wpcp-error-message").className = "msgmsg-box-wpcp warning-wpcp hideme";
}
function jquery_fadeTo()
{
try {
jQuery("#wccp_pro_mask").fadeTo("slow", 0.3);
}
catch(err) {
//alert(err.message);
}
}
function jquery_fadeOut()
{
try {
jQuery("#wccp_pro_mask").fadeOut( "slow" );
}
catch(err) {}
}
</script>
<style>
#wccp_pro_mask
{
position: absolute;
bottom: 0;
left: 0;
position: fixed;
right: 0;
top: 0;
background-color: #000;
pointer-events: none;
display: none;
z-index: 10000;
animation: 0.5s ease 0s normal none 1 running ngdialog-fadein;
background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
}
#wpcp-error-message {
direction: ltr;
text-align: center;
transition: opacity 900ms ease 0s;
pointer-events: none;
z-index: 99999999;
}
.hideme {
opacity:0;
visibility: hidden;
}
.showme {
opacity:1;
visibility: visible;
}
.msgmsg-box-wpcp {
border-radius: 10px;
color: #555555;
font-family: Tahoma;
font-size: 12px;
margin: 10px !important;
padding: 10px 36px !important;
position: fixed;
width: 255px;
top: 50%;
left: 50%;
margin-top: -10px !important;
margin-left: -130px !important;
}
.msgmsg-box-wpcp b {
font-weight:bold;
}
.warning-wpcp {
background:#ffecec url('https://zomidaily.com/wp-content/plugins/wccp-pro/images/warning.png') no-repeat 10px 50%;
border:1px solid #f2bfbf;
-webkit-box-shadow: 0px 0px 34px 2px #f2bfbf;
-moz-box-shadow: 0px 0px 34px 2px #f2bfbf;
box-shadow: 0px 0px 34px 2px #f2bfbf;
}
.success-wpcp {
background: #fafafa url('https://zomidaily.com/wp-content/plugins/wccp-pro/images/success.png') no-repeat 10px 50%;
border: 1px solid #00b38f;
box-shadow: 0px 0px 34px 2px #adc;
}
</style>
<meta name='robots' content='max-image-preview:large' />
<style>img:is([sizes="auto" i], [sizes^="auto," i]) { contain-intrinsic-size: 3000px 1500px }</style>
<!-- Jetpack Site Verification Tags -->
<link rel='dns-prefetch' href='//stats.wp.com' />
<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//jetpack.wordpress.com' />
<link rel='dns-prefetch' href='//s0.wp.com' />
<link rel='dns-prefetch' href='//public-api.wordpress.com' />
<link rel='dns-prefetch' href='//0.gravatar.com' />
<link rel='dns-prefetch' href='//1.gravatar.com' />
<link rel='dns-prefetch' href='//2.gravatar.com' />
<link rel='preconnect' href='//i0.wp.com' />
<link rel='preconnect' href='//c0.wp.com' />
<link rel="alternate" type="application/rss+xml" title="ZOMI DAILY &raquo; Feed" href="https://zomidaily.com/feed/" />
<link rel="alternate" type="application/rss+xml" title="ZOMI DAILY &raquo; Comments Feed" href="https://zomidaily.com/comments/feed/" />
<link rel="canonical" href="https://zomidaily.com/" />
<script type="text/javascript">
/* <![CDATA[ */
window._wpemojiSettings = {"baseUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/72x72\/","ext":".png","svgUrl":"https:\/\/s.w.org\/images\/core\/emoji\/16.0.1\/svg\/","svgExt":".svg","source":{"concatemoji":"https:\/\/zomidaily.com\/wp-includes\/js\/wp-emoji-release.min.js?ver=6.8.2"}};
/*! This file is auto-generated */
!function(s,n){var o,i,e;function c(e){try{var t={supportTests:e,timestamp:(new Date).valueOf()};sessionStorage.setItem(o,JSON.stringify(t))}catch(e){}}function p(e,t,n){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);var t=new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data),a=(e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(n,0,0),new Uint32Array(e.getImageData(0,0,e.canvas.width,e.canvas.height).data));return t.every(function(e,t){return e===a[t]})}function u(e,t){e.clearRect(0,0,e.canvas.width,e.canvas.height),e.fillText(t,0,0);for(var n=e.getImageData(16,16,1,1),a=0;a<n.data.length;a++)if(0!==n.data[a])return!1;return!0}function f(e,t,n,a){switch(t){case"flag":return n(e,"\ud83c\udff3\ufe0f\u200d\u26a7\ufe0f","\ud83c\udff3\ufe0f\u200b\u26a7\ufe0f")?!1:!n(e,"\ud83c\udde8\ud83c\uddf6","\ud83c\udde8\u200b\ud83c\uddf6")&&!n(e,"\ud83c\udff4\udb40\udc67\udb40\udc62\udb40\udc65\udb40\udc6e\udb40\udc67\udb40\udc7f","\ud83c\udff4\u200b\udb40\udc67\u200b\udb40\udc62\u200b\udb40\udc65\u200b\udb40\udc6e\u200b\udb40\udc67\u200b\udb40\udc7f");case"emoji":return!a(e,"\ud83e\udedf")}return!1}function g(e,t,n,a){var r="undefined"!=typeof WorkerGlobalScope&&self instanceof WorkerGlobalScope?new OffscreenCanvas(300,150):s.createElement("canvas"),o=r.getContext("2d",{willReadFrequently:!0}),i=(o.textBaseline="top",o.font="600 32px Arial",{});return e.forEach(function(e){i[e]=t(o,e,n,a)}),i}function t(e){var t=s.createElement("script");t.src=e,t.defer=!0,s.head.appendChild(t)}"undefined"!=typeof Promise&&(o="wpEmojiSettingsSupports",i=["flag","emoji"],n.supports={everything:!0,everythingExceptFlag:!0},e=new Promise(function(e){s.addEventListener("DOMContentLoaded",e,{once:!0})}),new Promise(function(t){var n=function(){try{var e=JSON.parse(sessionStorage.getItem(o));if("object"==typeof e&&"number"==typeof e.timestamp&&(new Date).valueOf()<e.timestamp+604800&&"object"==typeof e.supportTests)return e.supportTests}catch(e){}return null}();if(!n){if("undefined"!=typeof Worker&&"undefined"!=typeof OffscreenCanvas&&"undefined"!=typeof URL&&URL.createObjectURL&&"undefined"!=typeof Blob)try{var e="postMessage("+g.toString()+"("+[JSON.stringify(i),f.toString(),p.toString(),u.toString()].join(",")+"));",a=new Blob([e],{type:"text/javascript"}),r=new Worker(URL.createObjectURL(a),{name:"wpTestEmojiSupports"});return void(r.onmessage=function(e){c(n=e.data),r.terminate(),t(n)})}catch(e){}c(n=g(i,f,p,u))}t(n)}).then(function(e){for(var t in e)n.supports[t]=e[t],n.supports.everything=n.supports.everything&&n.supports[t],"flag"!==t&&(n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&n.supports[t]);n.supports.everythingExceptFlag=n.supports.everythingExceptFlag&&!n.supports.flag,n.DOMReady=!1,n.readyCallback=function(){n.DOMReady=!0}}).then(function(){return e}).then(function(){var e;n.supports.everything||(n.readyCallback(),(e=n.source||{}).concatemoji?t(e.concatemoji):e.wpemoji&&e.twemoji&&(t(e.twemoji),t(e.wpemoji)))}))}((window,document),window._wpemojiSettings);
/* ]]> */
</script>
<link rel='stylesheet' id='authority-pro-css' href='https://zomidaily.com/wp-content/themes/zdmainblog/style.css?ver=1.0.5' type='text/css' media='all' />
<style id='authority-pro-inline-css' type='text/css'>

.single .content .entry-content > p:first-of-type {
color: #111111;
font-size: 20px;
font-size: 2rem;
font-style: italic;
line-height: 1.7;
margin: 0 0 35px;
}

</style>
<style id='wp-emoji-styles-inline-css' type='text/css'>

img.wp-smiley, img.emoji {
display: inline !important;
border: none !important;
box-shadow: none !important;
height: 1em !important;
width: 1em !important;
margin: 0 0.07em !important;
vertical-align: -0.1em !important;
background: none !important;
padding: 0 !important;
}
</style>
<link rel='stylesheet' id='wp-block-library-css' href='https://c0.wp.com/c/6.8.2/wp-includes/css/dist/block-library/style.min.css' type='text/css' media='all' />
<style id='classic-theme-styles-inline-css' type='text/css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<link rel='stylesheet' id='mediaelement-css' href='https://c0.wp.com/c/6.8.2/wp-includes/js/mediaelement/mediaelementplayer-legacy.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='wp-mediaelement-css' href='https://c0.wp.com/c/6.8.2/wp-includes/js/mediaelement/wp-mediaelement.min.css' type='text/css' media='all' />
<style id='jetpack-sharing-buttons-style-inline-css' type='text/css'>
.jetpack-sharing-buttons__services-list{display:flex;flex-direction:row;flex-wrap:wrap;gap:0;list-style-type:none;margin:5px;padding:0}.jetpack-sharing-buttons__services-list.has-small-icon-size{font-size:12px}.jetpack-sharing-buttons__services-list.has-normal-icon-size{font-size:16px}.jetpack-sharing-buttons__services-list.has-large-icon-size{font-size:24px}.jetpack-sharing-buttons__services-list.has-huge-icon-size{font-size:36px}@media print{.jetpack-sharing-buttons__services-list{display:none!important}}.editor-styles-wrapper .wp-block-jetpack-sharing-buttons{gap:0;padding-inline-start:0}ul.jetpack-sharing-buttons__services-list.has-background{padding:1.25em 2.375em}
</style>
<style id='global-styles-inline-css' type='text/css'>
:root{--wp--preset--aspect-ratio--square: 1;--wp--preset--aspect-ratio--4-3: 4/3;--wp--preset--aspect-ratio--3-4: 3/4;--wp--preset--aspect-ratio--3-2: 3/2;--wp--preset--aspect-ratio--2-3: 2/3;--wp--preset--aspect-ratio--16-9: 16/9;--wp--preset--aspect-ratio--9-16: 9/16;--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #ffffff;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}.is-layout-flex{flex-wrap: wrap;align-items: center;}.is-layout-flex > :is(*, div){margin: 0;}body .is-layout-grid{display: grid;}.is-layout-grid > :is(*, div){margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
:root :where(.wp-block-pullquote){font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='authority-fonts-css' href='//fonts.googleapis.com/css?family=Source+Sans+Pro%3A600%2C700%2C900%7CLibre+Baskerville%3A400%2C400italic%2C700&#038;ver=1.0.5' type='text/css' media='all' />
<link rel='stylesheet' id='dashicons-css' href='https://c0.wp.com/c/6.8.2/wp-includes/css/dashicons.min.css' type='text/css' media='all' />
<link rel='stylesheet' id='css-protect.css-css' href='https://zomidaily.com/wp-content/plugins/wccp-pro/css/css-protect.css?ver=22' type='text/css' media='all' />
<link rel='stylesheet' id='print-protection.css-css' href='https://zomidaily.com/wp-content/plugins/wccp-pro/css/print-protection.css?wccp_ver_num=22&#038;ver=6.8.2' type='text/css' media='all' />
<link rel='stylesheet' id='authority-front-styles-css' href='https://zomidaily.com/wp-content/themes/zdmainblog/css/style-front.css?ver=1.0.5' type='text/css' media='all' />
<link rel='stylesheet' id='authority-hero-styles-css' href='https://zomidaily.com/wp-content/themes/zdmainblog/css/style-hero.css?ver=1.0.5' type='text/css' media='all' />
<script type="text/javascript" src="https://c0.wp.com/c/6.8.2/wp-includes/js/jquery/jquery.min.js" id="jquery-core-js"></script>
<script type="text/javascript" src="https://c0.wp.com/c/6.8.2/wp-includes/js/jquery/jquery-migrate.min.js" id="jquery-migrate-js"></script>
<link rel="https://api.w.org/" href="https://zomidaily.com/wp-json/" /><link rel="EditURI" type="application/rsd+xml" title="RSD" href="https://zomidaily.com/xmlrpc.php?rsd" />
<style>img#wpstats{display:none}</style>
<link rel="next" href="https://zomidaily.com/page/2/" />
<meta itemprop="name" content="ZOMI DAILY" />
<meta itemprop="url" content="https://zomidaily.com/" />

<!-- Jetpack Open Graph Tags -->
<meta property="og:type" content="website" />
<meta property="og:title" content="ZOMI DAILY" />
<meta property="og:description" content="Online News &amp; Magazine" />
<meta property="og:url" content="https://zomidaily.com/" />
<meta property="og:site_name" content="ZOMI DAILY" />
<meta property="og:image" content="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=512%2C512&#038;ssl=1" />
<meta property="og:image:width" content="512" />
<meta property="og:image:height" content="512" />
<meta property="og:image:alt" content="" />
<meta property="og:locale" content="en_US" />
<meta name="twitter:site" content="@zomidaily" />

<!-- End Jetpack Open Graph Tags -->
<link rel="icon" href="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=32%2C32&#038;ssl=1" sizes="32x32" />
<link rel="icon" href="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=192%2C192&#038;ssl=1" sizes="192x192" />
<link rel="apple-touch-icon" href="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=180%2C180&#038;ssl=1" />
<meta name="msapplication-TileImage" content="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/09/cropped-favicon2.png?fit=270%2C270&#038;ssl=1" />
</head>
<body class="home blog wp-theme-genesis wp-child-theme-zdmainblog header-full-width full-width-content genesis-breadcrumbs-hidden has-featured-images front-page" itemscope itemtype="https://schema.org/WebPage"><ul class="genesis-skip-link"><li><a href="#genesis-content" class="screen-reader-shortcut"> Skip to main content</a></li><li><a href="#footer" class="screen-reader-shortcut"> Skip to footer</a></li></ul><div class="site-container"><h2 id="additional-menu-label" class="screen-reader-text">Additional menu</h2><header class="site-header" itemscope itemtype="https://schema.org/WPHeader"><div class="wrap"><div class="title-area"><h1 class="site-title" itemprop="headline"><a href="https://zomidaily.com/">ZOMI DAILY</a></h1><p class="site-description" itemprop="description">Online News &amp; Magazine</p></div><nav class="nav-primary" aria-label="Main" itemscope itemtype="https://schema.org/SiteNavigationElement" id="genesis-nav-primary"><div class="wrap"><ul id="menu-main-menu" class="menu genesis-nav-menu menu-primary js-superfish"><li id="menu-item-9482" class="menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-home menu-item-9482"><a href="https://zomidaily.com" aria-current="page" itemprop="url"><span itemprop="name">HOME</span></a></li>
<li id="menu-item-9469" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-has-children menu-item-9469"><a href="https://zomidaily.com/tag/news/" itemprop="url"><span itemprop="name">NEWS</span></a>
<ul class="sub-menu">
<li id="menu-item-12233" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-12233"><a href="https://zomidaily.com/tag/zomi/" itemprop="url"><span itemprop="name">ZOMI</span></a></li>
<li id="menu-item-26144" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-26144"><a href="https://zomidaily.com/tag/world/" itemprop="url"><span itemprop="name">WORLD</span></a></li>
<li id="menu-item-12234" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-12234"><a href="https://zomidaily.com/tag/myanmar/" itemprop="url"><span itemprop="name">MYANMAR</span></a></li>
<li id="menu-item-12235" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-12235"><a href="https://zomidaily.com/tag/malaysia/" itemprop="url"><span itemprop="name">MALAYSIA</span></a></li>
</ul>
</li>
<li id="menu-item-9473" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9473"><a href="https://zomidaily.com/tag/politics/" itemprop="url"><span itemprop="name">POLITICS</span></a></li>
<li id="menu-item-9472" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9472"><a href="https://zomidaily.com/tag/biakna/" itemprop="url"><span itemprop="name">BIAKNA</span></a></li>
<li id="menu-item-9475" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9475"><a href="https://zomidaily.com/tag/health/" itemprop="url"><span itemprop="name">HEALTH</span></a></li>
<li id="menu-item-9471" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-9471"><a href="https://zomidaily.com/tag/article/" itemprop="url"><span itemprop="name">ARTICLE</span></a></li>
<li id="menu-item-16447" class="menu-item menu-item-type-taxonomy menu-item-object-post_tag menu-item-16447"><a href="https://zomidaily.com/tag/interview/" itemprop="url"><span itemprop="name">INTERVIEW</span></a></li>
</ul></div></nav></div></header><div class="site-inner"><div class="wrap hero-section has-columns"><div class="hero-section-column left one-half first"><h2 class="hero-title">Hello! dammaw?</h2><p class="hero-description">Nakepnop nadeih giugiau aomleh Comment pan ahi zongin, Email zomidaily@gmail.com pan ahi zongin hong zasak inmaw. Suahsaknop, puahphatnop leh lakkhiat saknop cihte aom lehzong hong zasak inmaw, lungdam.</p></div><div class="hero-section-column right one-half">
<img class="hero-portrait" src="https://zomidaily.com/wp-content/uploads/2016/01/zdlogo.png" alt="" /><div class="hero-portrait-caption">ZOMI DAILY</div></div></div><div class="content-sidebar-wrap"><main class="content" id="genesis-content"><h2 class="screen-reader-text">Main Content</h2><div id="front-page-1" class="front-page-1"><div class="flexible-widgets widget-area widget-odd no-bg"><div class="wrap"><section id="featured-post-9" class="widget featured-content featuredpost"><div class="widget-wrap"><article class="post-26838 post type-post status-publish format-standard has-post-thumbnail category-file entry" aria-label="Maisakna pen mangngilh sitsetna hilo"><a href="https://zomidaily.com/maisakna-pen-mangngilh-sitsetna-hilo/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="22832" data-permalink="https://zomidaily.com/tangpi-khantohnading-pau-sian-lian/003mountain_sunset/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003mountain_sunset" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/07/002mountain_sunset.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/maisakna-pen-mangngilh-sitsetna-hilo/">Maisakna pen mangngilh sitsetna hilo</a></h4></header><div class="entry-content"><p>Maisakna pen mangngilh sitsetna hilo

Mi pawlkhat in, “maisakna pen mangngilh sitsetna hi” ci uh hi. Tua ahih leh maisak ing na cihte pen na maisak &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/maisakna-pen-mangngilh-sitsetna-hilo/">Continue Reading <span class="screen-reader-text">about Maisakna pen mangngilh sitsetna hilo</span> &#x2192;</a></p></div></article><article class="post-26788 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang tag-tuunlehzua entry" aria-label="Tuunnu&#8217; Itna ~ David Tuang"><a href="https://zomidaily.com/tuunnu-itna-david-tuang/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/05/10mothersday.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/05/10mothersday.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/05/10mothersday.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="19590" data-permalink="https://zomidaily.com/tuunnu-itna-dong-mung/mother-and-baby-blowing-bubbles/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/05/10mothersday.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;Getty Images\/iStockphoto&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;Mother and baby blowing bubbles in the park.&quot;,&quot;created_timestamp&quot;:&quot;1375897202&quot;,&quot;copyright&quot;:&quot;ostrinka&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;Mother and baby blowing bubbles&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="Mother and baby blowing bubbles" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/05/10mothersday.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/05/10mothersday.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/tuunnu-itna-david-tuang/">Tuunnu&#8217; Itna ~ David Tuang</a></h4></header><div class="entry-content"><p>Tuunnu' Itna ~ David Tuang

Ka neu lai-in, ka nu pen zingsang nai 4/5 pawl in tho den in, lam nawl khat ah, mehteh mehgah zuak in tu den ahih lam ka &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/tuunnu-itna-david-tuang/">Continue Reading <span class="screen-reader-text">about Tuunnu&#8217; Itna ~ David Tuang</span> &#x2192;</a></p></div></article><article class="post-26700 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-politics entry" aria-label="Zo/Chin/Zomi ~ Nang Kim Mang"><a href="https://zomidaily.com/zo-chin-zomi-nang-kim-mang/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="24051" data-permalink="https://zomidaily.com/khuahunluan-le-khangthak-te-nok-kam/003author_male/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003author_male" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2016/09/002author_male.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/zo-chin-zomi-nang-kim-mang/">Zo/Chin/Zomi ~ Nang Kim Mang</a></h4></header><div class="entry-content"><p>Zo/Chin/Zomi ~ Nang Kim Mang

I Pu/Pa te’ tenna Khamtung gam (Chin State, Myanmar) ah ni tumna gam lam pan British galkapte le American missionaryte &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/zo-chin-zomi-nang-kim-mang/">Continue Reading <span class="screen-reader-text">about Zo/Chin/Zomi ~ Nang Kim Mang</span> &#x2192;</a></p></div></article><article class="post-26664 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-biakna tag-davidtuang entry" aria-label="Na pianthak loh phamawh"><a href="https://zomidaily.com/na-pianthak-loh-phamawh/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="21403" data-permalink="https://zomidaily.com/003cross_parral/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003cross_parral" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/11/003cross_parral.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/na-pianthak-loh-phamawh/">Na pianthak loh phamawh</a></h4></header><div class="entry-content"><p>Na pianthak loh phamawh

Kumkhat khit kumkhat hong beibei-in, khua hun paiziate hong kidang semsem a, mulkimhuai lipkhaphuai leh patauhhuai thu &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/na-pianthak-loh-phamawh/">Continue Reading <span class="screen-reader-text">about Na pianthak loh phamawh</span> &#x2192;</a></p></div></article><article class="post-26660 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-zya entry" aria-label="ZYA &#8211; Vision, Mission, Objectives and Policy"><a href="https://zomidaily.com/zya-vision-mission-objectives-and-policy/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="193" data-permalink="https://zomidaily.com/zya-kilamzia-gencianna/001zya/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001zya" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/zya-vision-mission-objectives-and-policy/">ZYA &#8211; Vision, Mission, Objectives and Policy</a></h4></header><div class="entry-content"><p>ZYA - Vision, Mission, Objectives and Policy

1. Vision

To build holistic development in our communities through unity among the Zomis

2. &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/zya-vision-mission-objectives-and-policy/">Continue Reading <span class="screen-reader-text">about ZYA &#8211; Vision, Mission, Objectives and Policy</span> &#x2192;</a></p></div></article><article class="post-26658 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-zya entry" aria-label="Zomi Youth Association (ZYA) hong pianzia"><a href="https://zomidaily.com/zomi-youth-association-zya-hong-pianzia/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="193" data-permalink="https://zomidaily.com/zya-kilamzia-gencianna/001zya/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001zya" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001zya.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/zomi-youth-association-zya-hong-pianzia/">Zomi Youth Association (ZYA) hong pianzia</a></h4></header><div class="entry-content"><p>Zomi Youth Association (ZYA) hong pianzia - ZYA History

January 17, 2005 in Sia Mangpu (Pastor Peter Khual Lam Mang, Dr. Chin Do Kham naupa) in &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/zomi-youth-association-zya-hong-pianzia/">Continue Reading <span class="screen-reader-text">about Zomi Youth Association (ZYA) hong pianzia</span> &#x2192;</a></p></div></article><article class="post-26650 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Siangtho nuntakna bangzah takin thupi"><a href="https://zomidaily.com/siangtho-nuntakna-bangzah-takin-thupi/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/11/002rain.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/11/002rain.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/11/002rain.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="16244" data-permalink="https://zomidaily.com/guah-i-thusim-the-mystery-of-the-rain/002rain/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/11/002rain.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="002rain" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/11/002rain.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2017/11/002rain.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/siangtho-nuntakna-bangzah-takin-thupi/">Siangtho nuntakna bangzah takin thupi</a></h4></header><div class="entry-content"><p>Siangtho nuntakna bangzah takin thupi

Josef in, simmawh bawlsiatna leh haksatna tampitak a thuak banah Pasian mai-ah thuman citakin a siangthona &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/siangtho-nuntakna-bangzah-takin-thupi/">Continue Reading <span class="screen-reader-text">about Siangtho nuntakna bangzah takin thupi</span> &#x2192;</a></p></div></article><article class="post-26645 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Lamdawt tawnse dahni"><a href="https://zomidaily.com/lamdawt-tawnse-dahni/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="23779" data-permalink="https://zomidaily.com/lamphei-tawndah-leh-thupha-ngaidah-omlo-dr-sian-za-kham/002road_zuluk/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003road_zuluk" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2015/06/002road_zuluk.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/lamdawt-tawnse-dahni/">Lamdawt tawnse dahni</a></h4></header><div class="entry-content"><p>Lamdawt tawnse dahni

Lamdawt tot pen kitungbaih napi-in, kigim mahmah hi. Lamdawt tot pen hun tomno adingin, ahoih bang napi-in, mailam hun saupi &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/lamdawt-tawnse-dahni/">Continue Reading <span class="screen-reader-text">about Lamdawt tawnse dahni</span> &#x2192;</a></p></div></article><article class="post-26643 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-ngulkhanpau entry" aria-label="Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau"><a href="https://zomidaily.com/gamdang-tung-zomite-8-dr-ngul-khan-pau/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="102" data-permalink="https://zomidaily.com/tuhun-khristian-te-kisap-dr-ngul-khan-pau/001ngulkhanpau/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001ngulkhanpau" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/gamdang-tung-zomite-8-dr-ngul-khan-pau/">Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau</a></h4></header><div class="entry-content"><p>Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau

US President kiteelna November kha ciang om ding tawh kisai tulaitak gamsung makaite’n buaipih mahmah, &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/gamdang-tung-zomite-8-dr-ngul-khan-pau/">Continue Reading <span class="screen-reader-text">about Gamdang tung Zomite – 8 ~ Dr. Ngul Khan Pau</span> &#x2192;</a></p></div></article><article class="post-26626 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Mangngilh ngei kei ni"><a href="https://zomidaily.com/mangngilh-ngei-kei-ni/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/07/002lake_matteo.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/07/002lake_matteo.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/07/002lake_matteo.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="20330" data-permalink="https://zomidaily.com/lungkiat-hemkhia/003lake_matteo/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/07/002lake_matteo.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003lake_matteo" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/07/002lake_matteo.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/07/002lake_matteo.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/mangngilh-ngei-kei-ni/">Mangngilh ngei kei ni</a></h4></header><div class="entry-content"><p>Mangngilh ngei kei ni

◽️I lamet bangin hong pian loh ciang, lamet beisak pah kei ni. Pasian sungah lamet bei cih om ngeilo hi.

◽️Nuntakna haksa &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/mangngilh-ngei-kei-ni/">Continue Reading <span class="screen-reader-text">about Mangngilh ngei kei ni</span> &#x2192;</a></p></div></article><article class="post-26625 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Pilna cingtaak anei kuate hiam?"><a href="https://zomidaily.com/pilna-cingtaak-anei-kuate-hiam/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001mortarboard.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001mortarboard.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001mortarboard.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="1522" data-permalink="https://zomidaily.com/rev-smith-ngulh-za-thawng-d-d-kipia-ding/001mortarboard/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001mortarboard.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="002mortarboard_degree" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001mortarboard.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001mortarboard.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/pilna-cingtaak-anei-kuate-hiam/">Pilna cingtaak anei kuate hiam?</a></h4></header><div class="entry-content"><p>Pilna cingtaak anei kuate hiam?

Pilna nei pawlkhat in midangte' supna ding bek piangsak lel uh hi.

Pilna nei pawlkhat in midangte' buaina ding &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/pilna-cingtaak-anei-kuate-hiam/">Continue Reading <span class="screen-reader-text">about Pilna cingtaak anei kuate hiam?</span> &#x2192;</a></p></div></article><article class="post-26620 post type-post status-publish format-standard has-post-thumbnail category-file tag-myanmar tag-news tag-thangboi entry" aria-label="Tusawng Kawlgam Khuahun (25 Aug)"><a href="https://zomidaily.com/tusawng-kawlgam-khuahun-25-aug/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2014/12/001myanmarnews.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2014/12/001myanmarnews.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2014/12/001myanmarnews.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="2617" data-permalink="https://zomidaily.com/001myanmarnews/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2014/12/001myanmarnews.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001myanmarnews" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2014/12/001myanmarnews.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2014/12/001myanmarnews.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/tusawng-kawlgam-khuahun-25-aug/">Tusawng Kawlgam Khuahun (25 Aug)</a></h4></header><div class="entry-content"><p>Tusawng Kawlgam Khuahun (25 Aug)

Tukha (August 2024) ni 3 ni in Kawl galkapte' phualpi alianpen thumna ahi Lashio khuapi a om North Eastern Command &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/tusawng-kawlgam-khuahun-25-aug/">Continue Reading <span class="screen-reader-text">about Tusawng Kawlgam Khuahun (25 Aug)</span> &#x2192;</a></p></div></article><article class="post-26615 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang tag-tuunlehzua entry" aria-label="Nupate&#8217;n theihhuai mahmah pawlkhat (Part 2)"><a href="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-2/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="26592" data-permalink="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-1/29davidtuang/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="29davidtuang" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-2/">Nupate&#8217;n theihhuai mahmah pawlkhat (Part 2)</a></h4></header><div class="entry-content"><p>Nupate'n theihhuai mahmah pawlkhat (Part 2)

A lungsim leh a pumpi za-ah-za nang adingin hong kipiakhia na zi/pasal tungah itna maan nei den &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-2/">Continue Reading <span class="screen-reader-text">about Nupate&#8217;n theihhuai mahmah pawlkhat (Part 2)</span> &#x2192;</a></p></div></article><article class="post-26591 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang tag-tuunlehzua entry" aria-label="Nupate’n theihhuai mahmah pawlkhat (Part 1)"><a href="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-1/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="26592" data-permalink="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-1/29davidtuang/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="29davidtuang" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2024/07/29davidtuang.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-1/">Nupate’n theihhuai mahmah pawlkhat (Part 1)</a></h4></header><div class="entry-content"><p>Nupate’n theihhuai mahmah pawlkhat (Part 1)

(1) Nupa kaal-ah thusim a om nak leh nupa kaal kizopna cidam thei lo ahih manin, nupa kaal-ah thusim &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/nupaten-theihhuai-mahmah-pawlkhat-part-1/">Continue Reading <span class="screen-reader-text">about Nupate’n theihhuai mahmah pawlkhat (Part 1)</span> &#x2192;</a></p></div></article><article class="post-26588 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="Mun maan"><a href="https://zomidaily.com/mun-maan/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/04/002tree_malham.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/04/002tree_malham.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/04/002tree_malham.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="19194" data-permalink="https://zomidaily.com/kanu-leh-kapa-that-na-hihi/002tree_malham/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/04/002tree_malham.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="002tree_malham" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/04/002tree_malham.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/04/002tree_malham.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/mun-maan/">Mun maan</a></h4></header><div class="entry-content"><p>Mun maan

A masa in, “buaina bel a om thei zelzel mah hi-a, ahi zongin i buaina pawlkhatte pen i omna mun (i mun) a maan loh hang hi gige hi,” cih &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/mun-maan/">Continue Reading <span class="screen-reader-text">about Mun maan</span> &#x2192;</a></p></div></article><article class="post-26585 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-davidtuang entry" aria-label="A Pa&#8217; hun $20 tawh alei numeino"><a href="https://zomidaily.com/a-pa-hun-20-tawh-alei-numeino/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003family_flower.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003family_flower.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003family_flower.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="23250" data-permalink="https://zomidaily.com/a-lamdang-le-a-etteh-tak-innkuan-2-lian-tuang/003family_flower/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003family_flower.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="003family_flower" data-image-description="&lt;p&gt;Photo from Unsplash&lt;/p&gt;
" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003family_flower.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2019/10/003family_flower.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/a-pa-hun-20-tawh-alei-numeino/">A Pa&#8217; hun $20 tawh alei numeino</a></h4></header><div class="entry-content"><p>A Pa' hun $20 tawh alei numeino

Hun khat lai-in nupa kopkhat in tanu meino khat nei uh a, a pa in company khat ah nasem in lup hun lo buang inn ah &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/a-pa-hun-20-tawh-alei-numeino/">Continue Reading <span class="screen-reader-text">about A Pa&#8217; hun $20 tawh alei numeino</span> &#x2192;</a></p></div></article><article class="post-26566 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-ngulkhanpau entry" aria-label="Norway zinna ~ Dr. Ngul Khan Pau"><a href="https://zomidaily.com/norway-zinna-dr-ngul-khan-pau/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="102" data-permalink="https://zomidaily.com/tuhun-khristian-te-kisap-dr-ngul-khan-pau/001ngulkhanpau/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="001ngulkhanpau" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/001ngulkhanpau.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/norway-zinna-dr-ngul-khan-pau/">Norway zinna ~ Dr. Ngul Khan Pau</a></h4></header><div class="entry-content"><p>Norway zinna ~ Rev. Dr. Ngul Khan Pau

Norway gam tawh kisai tawm na gen masa ni. Leimai seh thumsuah seh nih mual vive hi a, suangtum mualpi le &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/norway-zinna-dr-ngul-khan-pau/">Continue Reading <span class="screen-reader-text">about Norway zinna ~ Dr. Ngul Khan Pau</span> &#x2192;</a></p></div></article><article class="post-26565 post type-post status-publish format-standard has-post-thumbnail category-file tag-article tag-nantalsuan tag-politics entry" aria-label="Pu Zo Thang (Commander in Chief) tung ah laikhak &#8211; Open letter"><a href="https://zomidaily.com/pu-zo-thang-commander-in-chief-tung-ah-laikhak/" class="alignnone" aria-hidden="true" tabindex="-1"><img width="336" height="200" src="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/02/13letter_dear.jpg?resize=336%2C200&amp;ssl=1" class="entry-image attachment-post" alt="" itemprop="image" decoding="async" loading="lazy" srcset="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/02/13letter_dear.jpg?resize=336%2C200&amp;ssl=1 336w, https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/02/13letter_dear.jpg?zoom=2&amp;resize=336%2C200&amp;ssl=1 672w" sizes="auto, (max-width: 336px) 100vw, 336px" data-attachment-id="17726" data-permalink="https://zomidaily.com/vondeih-kep-ding-133-dimno-pa/13letter_dear/" data-orig-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/02/13letter_dear.jpg?fit=767%2C432&amp;ssl=1" data-orig-size="767,432" data-comments-opened="1" data-image-meta="{&quot;aperture&quot;:&quot;0&quot;,&quot;credit&quot;:&quot;&quot;,&quot;camera&quot;:&quot;&quot;,&quot;caption&quot;:&quot;&quot;,&quot;created_timestamp&quot;:&quot;0&quot;,&quot;copyright&quot;:&quot;&quot;,&quot;focal_length&quot;:&quot;0&quot;,&quot;iso&quot;:&quot;0&quot;,&quot;shutter_speed&quot;:&quot;0&quot;,&quot;title&quot;:&quot;&quot;,&quot;orientation&quot;:&quot;0&quot;}" data-image-title="13letter_dear" data-image-description="" data-image-caption="" data-medium-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/02/13letter_dear.jpg?fit=767%2C432&amp;ssl=1" data-large-file="https://i0.wp.com/zomidaily.com/wp-content/uploads/2018/02/13letter_dear.jpg?fit=767%2C432&amp;ssl=1" /></a><header class="entry-header"><h4 class="entry-title" itemprop="headline"><a href="https://zomidaily.com/pu-zo-thang-commander-in-chief-tung-ah-laikhak/">Pu Zo Thang (Commander in Chief) tung ah laikhak &#8211; Open letter</a></h4></header><div class="entry-content"><p>Pu Zo Thang (Commander in Chief) tung ah laikhak - Open letter

Thu tampi kong gen ma-in, na dam uh hiam? ka cih kawm in zahtaakna kong pia nuam &#x02026;</p><p class="more-link-wrap"><a href="https://zomidaily.com/pu-zo-thang-commander-in-chief-tung-ah-laikhak/">Continue Reading <span class="screen-reader-text">about Pu Zo Thang (Commander in Chief) tung ah laikhak &#8211; Open letter</span> &#x2192;</a></p></div></article></div></section>
</div></div></div></main></div></div><div id="footer" class="footer-widgets"><h2 class="genesis-sidebar-title screen-reader-text">Footer</h2><div class="flexible-widgets widget-area widget-odd"><div class="wrap"><section id="custom_html-7" class="widget_text widget widget_custom_html"><div class="widget_text widget-wrap"><h3 class="widgettitle widget-title">Adang na simbeh nuamhia?</h3>
<div class="textwidget custom-html-widget"><p>Zomi Daily website tungah 2008 pekpan ihkaihkhop Article leh News akigawm in 12,845 valbang kikoihkhin hi. News leh Article na lunggulh bangbang anuai ah namek inla, nasim zelzel inmaw.....</p>

<p><a class="button" href="https://zomidaily.com/tag/news/">News thuthang</a>   <a class="button primary" href="https://zomidaily.com/tag/article/">Article tuamtuam</a></p></div></div></section>
</div></div></div><footer class="site-footer" itemscope itemtype="https://schema.org/WPFooter"><div class="wrap"><nav class="nav-secondary" aria-label="Secondary" itemscope itemtype="https://schema.org/SiteNavigationElement"><div class="wrap"><ul id="menu-social-menu" class="menu genesis-nav-menu menu-secondary js-superfish"><li id="menu-item-16270" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16270"><a target="_blank" href="https://www.facebook.com/ZomiDaily/" itemprop="url"><span itemprop="name">Facebook</span></a></li>
<li id="menu-item-16271" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16271"><a target="_blank" href="https://twitter.com/zomidaily" itemprop="url"><span itemprop="name">Twitter</span></a></li>
<li id="menu-item-16272" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16272"><a target="_blank" href="https://www.youtube.com/@zomidaily?sub_confirmation=1" itemprop="url"><span itemprop="name">YouTube</span></a></li>
<li id="menu-item-16273" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-16273"><a target="_blank" href="https://groups.google.com/forum/#!forum/zomidaily/join" itemprop="url"><span itemprop="name">Groupmail</span></a></li>
<li id="menu-item-17040" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17040"><a href="https://zomidaily.com/our-story/" itemprop="url"><span itemprop="name">Our story</span></a></li>
<li id="menu-item-17041" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17041"><a href="https://zomidaily.com/disclaimer/" itemprop="url"><span itemprop="name">Disclaimer</span></a></li>
<li id="menu-item-17042" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17042"><a href="https://zomidaily.com/contact-us/" itemprop="url"><span itemprop="name">Contact Us</span></a></li>
<li id="menu-item-17043" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-17043"><a href="https://zomidaily.com/about-us/" itemprop="url"><span itemprop="name">About Us</span></a></li>
</ul></div></nav><p>ESTD 2008 © Some <a href="https://zomidaily.com/">Rights</a> Reserved</p></div></footer></div><script type="speculationrules">
{"prefetch":[{"source":"document","where":{"and":[{"href_matches":"\/*"},{"not":{"href_matches":["\/wp-*.php","\/wp-admin\/*","\/wp-content\/uploads\/*","\/wp-content\/*","\/wp-content\/plugins\/*","\/wp-content\/themes\/zdmainblog\/*","\/wp-content\/themes\/genesis\/*","\/*\\?(.+)"]}},{"not":{"selector_matches":"a[rel~=\"nofollow\"]"}},{"not":{"selector_matches":".no-prefetch, .no-prefetch a"}}]},"eagerness":"conservative"}]}
</script>
<script type="text/javascript" src="https://c0.wp.com/c/6.8.2/wp-includes/js/hoverIntent.min.js" id="hoverIntent-js"></script>
<script type="text/javascript" src="https://zomidaily.com/wp-content/themes/genesis/lib/js/menu/superfish.min.js?ver=1.7.10" id="superfish-js"></script>
<script type="text/javascript" src="https://zomidaily.com/wp-content/themes/genesis/lib/js/menu/superfish.args.min.js?ver=3.6.0" id="superfish-args-js"></script>
<script type="text/javascript" src="https://zomidaily.com/wp-content/themes/genesis/lib/js/skip-links.min.js?ver=3.6.0" id="skip-links-js"></script>
<script type="text/javascript" id="authority-responsive-menu-js-extra">
/* <![CDATA[ */
var genesis_responsive_menu = {"mainMenu":"Menu","menuIconClass":"dashicons-before dashicons-menu","subMenu":"Submenu","subMenuIconClass":"dashicons-before dashicons-arrow-down-alt2","menuClasses":{"combine":[".nav-primary",".nav-social"],"others":[]}};
/* ]]> */
</script>
<script type="text/javascript" src="https://zomidaily.com/wp-content/themes/zdmainblog/js/responsive-menus.min.js?ver=1.0.5" id="authority-responsive-menu-js"></script>
<script type="text/javascript" id="wccp_pro_admin_bar_ajax-js-extra">
/* <![CDATA[ */
var ajax_object = {"ajaxurl":"https:\/\/zomidaily.com\/wp-admin\/admin-ajax.php","link":"https:\/\/zomidaily.com\/"};
/* ]]> */
</script>
<script type="text/javascript" src="https://zomidaily.com/wp-content/plugins/wccp-pro/js/admin_bar_ajax.js?ver=6.8.2" id="wccp_pro_admin_bar_ajax-js"></script>
<script type="text/javascript" src="https://zomidaily.com/wp-content/themes/zdmainblog/js/front.js?ver=1.0.5" id="authority-front-js-js"></script>
<script type="text/javascript" src="https://zomidaily.com/wp-content/themes/zdmainblog/js/hero.js?ver=1.0.5" id="authority-hero-js-js"></script>
<script type="text/javascript" id="jetpack-stats-js-before">
/* <![CDATA[ */
_stq = window._stq || [];
_stq.push([ "view", JSON.parse("{\"v\":\"ext\",\"blog\":\"74436939\",\"post\":\"0\",\"tz\":\"8\",\"srv\":\"zomidaily.com\",\"arch_home\":\"1\",\"j\":\"1:15.0\"}") ]);
_stq.push([ "clickTrackerInit", "74436939", "0" ]);
/* ]]> */
</script>
<script type="text/javascript" src="https://stats.wp.com/e-202538.js" id="jetpack-stats-js" defer="defer" data-wp-strategy="defer"></script>
</body></html>

Ads.Txt Alerts - A trading name of Red Volcano Limited

Waterloo Buildings, Second Floor Rear, 53 London Road, Southampton, Hampshire, United Kingdom, SO15 2AD

© Red Volcano 2020. All Rights Reserved.