Home » today » Entertainment » “I want a woman who can walk around”… ‘Couple Palace’ cast members’ views on marriage

“I want a woman who can walk around”… ‘Couple Palace’ cast members’ views on marriage

if(redisJson.articles[i].article_image !== ” || redisJson.articles[i].article_image !== null){
html += ‘ ‘;
html += ‘ ‘;
html += ‘ ‘;
}

html += ‘ ‘;
html += ‘

‘; html += ‘Notification settings’; html += ‘Close notification’; html += ‘

‘;
html += ”;
$loginBox.after(html);
autoRemoveToast(redisJson.articles[i].apppush_Id); // Expiration time check: If it exists, analyze the content and expose if the expiration time is within the current time // Cookie exposure check: When exposed, check the exposure of the article in the cookie and then final exposure // If exposed, the article key is stored in the cookie // Cookie name: hk_sokbo_article_viewend let fcmArticleId = getFCMCookie(‘hk_sokbo_article_viewend’); let cookieData = Boolean(fcmArticleId) ? decodeURIComponent(fcmArticleId) + ‘,’ + redisJson.articles[i].article_id : redisJson.articles[i].article_id;
this.setFCMCookie(‘hk_sokbo_article_viewend’, cookieData, 1);
// 쿠키내용 : 기사키,기사키,기사키
// 쿠키만료시간 : 1일
// 쿠키 등록
}
$(“.toast-container .toast-item:not(.login-box-tst)”).addClass(“show”);

}

generateFcmToast = (rst) => {
let html=””;
let readArticles = decodeURIComponent(this.getFCMCookie(‘hk_sokbo_article_viewend’));
let denialAlarmType = decodeURIComponent(this.getFCMCookie(‘hk_denial_alarm_type’));
if(denialAlarmType.includes(denialAlarmType.includes(rst.data.apppush_type))){
return false;
}
if(readArticles.includes(denialAlarmType.includes(rst.data.apppush_type))){
return false;
}
const appuserPushId = Cookies.get(‘appuserPushId’);

html += ”;
html += ‘ ‘;
html += ‘ ‘;

if(rst.notification.image !== ” || rst.notification.image !== null){
html += ‘ ‘;
html += ‘ ‘;
html += ‘ ‘;
}

html += ‘ ‘;
html += ‘

‘; html += ‘Notification settings’; html += ‘Close notification’; html += ‘

‘; html += ”; $loginBox.before(html); autoRemoveToast(rst.fcmMessageId); // Expiration time check: If it exists, analyze the content and expose if the expiration time is within the current time // Cookie exposure check: When exposed, check the exposure of the article in the cookie and then final exposure // If exposed, the article key is stored in the cookie // Cookie name: hk_sokbo_article_viewend // let fcmArticleId = getFCMCookie(‘hk_sokbo_article_viewend’); // let cookieData = Boolean(fcmArticleId) ? decodeURIComponent(fcmArticleId) + ‘,’ + redisJson.articles[i].article_id : redisJson.articles[i].article_id;
// this.setFCMCookie(‘hk_sokbo_article_viewend’, cookieData, 1);
// 쿠키내용 : 기사키,기사키,기사키
// 쿠키만료시간 : 1일
// 쿠키 등록
$(“.toast-container .toast-item:not(.login-box-tst)”).addClass(“show”);
}

/* top notice EVT */
function closeNotice() {
$(“#topNotiArea .close”).on(‘click’, function () {
$(“#topNotiArea .close”).css(“display”, “none”);
$(“#topNotiArea”).slideUp(500);
});
}

function initAlarm() {
var $list = $(‘.toast-container .toast-item’);
var $pushList = $(‘.toast-container .toast-item:not(.login-box-tst)’);
var $loginBox = $(‘.toast-container .toast-item.login-box-tst’);

if ($($list.hasClass(“login-box-tst”)).length) {
$loginBox.removeClass(“hide”).addClass(“show”);
}
$pushList.each(function (idx) {
var $item = $(this);
setTimeout(function () {
$item.addClass(“show”);
}, 500 * (idx + 1));
});
}

function showAlarm() {
let redisJson = [];

$.ajax({
url: ”
method: “POST”,
data: {‘key’ : ‘whk_sokbo_article’},
success: function (response) {
if(response.code === ‘0000’){
if(response.data !== ‘notfound’){
redisJson = JSON.parse(response.data);
generateSokboToast(redisJson);
}
}
},
fail: function (err) {
}
});
}
// hk_denial_alarm_type
function setDenialAlarmType(denialType){
this.setFCMCookie(‘hk_denial_alarm_type’, denialType, 1);
}

function getFCMCookie(key){
key = new RegExp(key + ‘=([^;]*)’); return key.test(document.cookie) ? unescape(RegExp.$1) : ”; // Returns a value if there is a key corresponding to the key received as an argument } function setFCMCookie(key, value, expiredays) { let todayDate = new Date(); todayDate.setDate(todayDate.getDate() + expiredays); // Change cookie expiration date in units of current time + days //todayDate.setTime(todayDate.getTime() + (expiredays * 24 * 60 * 60 * 1000)); // Change cookie expiration date in milliseconds // document.cookie = key + “=” + escape(value) + “; path=/; expires=” + todayDate.toGMTString() + “;”; fn_setCookie(key, escape(value), {path:” expires: todayDate}); } function deleteCookie(name) { document.cookie = name + ‘=; expires=Thu, 01 Jan 1999 00:00:10 GMT;’ ; } function hideAlarm() { $(document).on(“click”, ‘.imp-toast .btn-close’, function () { var $this = $(this); $this.parents(“.toast -item”).removeClass(“show”).addClass(“hide”); }); $(document).on(“click”, ‘.login-box-tst .close’, function () { $( ‘.login-box-tst’).removeClass(“show”).addClass(“hide”); }); } function toggleAlarm() { $(document).on(“click”, ‘.imp-toast . btn-alarm’, function () { var $this = $(this); if (!($this.hasClass(“btn-alarm-disable”))) { $this.addClass(“btn-alarm-disable” ).attr(“title”, “Turn on notifications for today”); console.log(‘### ‘ + $this.data(‘denial’)); let denialType = $this.data(‘denial’); let hk_denial_alarm_type = getFCMCookie(‘hk_denial_alarm_type’); if(hk_denial_alarm_type.includes(denialType)) { return false; } denialType = Boolean(hk_denial_alarm_type) ? decodeURIComponent(hk_denial_alarm_type) + ‘,’ + denialType : denialType; setDenialAlarmType(denialType); } else { $this.removeClass(“btn-alarm-disable”).attr(“title”, “Turn off notifications for today”); let hk_denial_alarm_type = getFCMCookie(‘hk_denial_alarm_type’); const denialType = $this.data(‘denial’); if(hk_denial_alarm_type.includes(denialType)){ let str = hk_denial_alarm_type; let arr = str.split(‘,’); let filtered = arr.filter((element) => element !== denialType); deleteCookie(‘hk_denial_alarm_type’); setDenialAlarmType(filtered.join()); } // console.log(denialType); // deleteCookie(hk_denial_alarm_type); } }); } function fnOneDayNotView(){ this.setFCMCookie(‘hk_denial_login_area’, ‘Y’, 1); } function loginInfoView(){ if(!Boolean(Cookies.get(‘accessToken’))){ if(!Boolean(getFCMCookie(‘hk_denial_login_area’))){ var $loginBox = $(‘.toast-container .toast- item.login-box-tst’); $loginBox.removeClass(“hide”).addClass(“show”); } } } // Web push automatic deletion (10 minutes) var FCM_TOAST_LOG = {}; function autoRemoveToast(fcmMessageId){ FCM_TOAST_LOG[fcmMessageId] = setTimeout(function(){
$(“.toast-item[data-push-id='”+ fcmMessageId +”‘]”).find(‘.btn-close’).trigger(“click”);
delete FCM_TOAST_LOG[fcmMessageId]; }, 600000); }; $(function () { showAlarm(); // Close top notification area closeNotice(); loginInfoView(); // Display push alarm // initAlarm(); // Breaking news / single item inquiry setInterval( () => showAlarm( ) , 1000 * 60 * 1 ); // Close push alarm, toggle off alarm hideAlarm(); toggleAlarm(); }); “I want a woman who can walk around”… ‘Couple Palace’ cast members’ view of marriage “) } else { $(‘#top-area’).html(“

n” + ” Hello.n” + ” ” + data.memPenName + “

“)
}

// 이벤트 및 프로모션 수신 동의 체크
$(‘#email-setting-switch’).prop(‘checked’, data.eventAgreeEmail === ‘Y’);
$(‘#sms-setting-switch’).prop(‘checked’, data.eventSmsAgree === ‘Y’);
$(‘#nLetter-setting-switch’).prop(‘checked’, data.nLetterAgree === ‘Y’);
},
error: function (req, stat, err) {
// console.log(err);
}
});
}

function onClickSignUp() {
authType=”enroll”;
// Cookies.set(‘authType’, ‘enroll’, {path: ”
fn_setCookie(‘authType’, ‘enroll’, {path: ”
if (navigator.userAgent.indexOf(‘Mobile-App’) > -1) {
var data = {
type: ‘SIGN_UP_NICE’
};
window.ReactNativeWebView.postMessage(JSON.stringify(data));
} else {
openCpPopup();

}
}

function onClickMyPage() {
if (Cookies.get(‘accessToken’) != null) {
location.href=”
} else {
location.href=”
}
}

“I want a woman who can walk around”… ‘Couple Palace’ cast members’ views on marriage

Mnet’s ‘Couple Palace’ is the prelude to the mega-couple matching, and the first round is revealed in advance.
What are the conditions for marriage between single men and women?
First broadcast on January 30th at 10pm

The first episode of ‘Couple Palace’ is about to be released. Mnet ‘Couple Palace’ preview video capture

Mnet’s ‘Couple Palace’, a huge couple matching survival program, is unveiled.

The production team of ‘Couple Palace’ pre-released part of episode 1 through YouTube channels Mnet TV and Naver TV on the 26th. In the released video, the rules of ‘Speed ​​Train’, the first round of Couple Matching Survival, were introduced.

‘); // For Android update if (location.href.indexOf(‘/News/Read’) > -1 && navigator.userAgent.indexOf(‘Update’) > -1) { $(‘.end-ad-container’) .addClass(‘blind’); }

In the first round, ‘Speed ​​Train’, the conditions for marriage and appearance are revealed, and 50 women can ask the man they like on a date. A man who receives a date request can go on a 1:1 date with only one person of the opposite sex. Following the first round, the men’s side, the second round, the women’s side, will also be held in the same manner.

The pre-released video contains a scene where three men out of 50 men appear on a speed train. The silhouette alone is raising excitement and curiosity even more. Afterwards, two of my own conditions that I cannot give up when choosing a marriage partner were revealed. Three men’s unconditional conditions for marriage are broadcast on the airwaves, such as “It’s good if you laugh at the old man’s jokes,” “I like an older woman who will take care of me like a mother,” “I want a woman who will take care of my house after marriage,” and “I want a woman who can walk around.”

Subsequently, the men’s appearances and specifications were revealed, and among the three men, ‘the youngest son of an accounting firm, a tax accountant’ was the first to appear. He, who has assets of 600 million won, captured the hearts of female performers with his secret personal skills. It stimulates curiosity toward the first broadcast as to whether the couple matching will actually come to fruition.

‘Couple Palace’ is a mega-couple matching survival game that will become a microcosm of the 2024 marriage market. It features 100 single men and women seeking the perfect marriage and tells a realistic couple matching story. It is expected that 100 single men and women of various charms will set out to find a partner they want to spend their lives with by openly revealing their appearance, economic power, lifestyle, and unpredictable marriage conditions. In particular, in entertainment, it is unusual to introduce a hyper-realistic matching system that is comparable to that of a marriage information company, thereby showing ultra-close matching in reality.

Yoo Soo-kyung Reporter [email protected]

0 0 Share Save

Balance in viewing the world, Hankook Ilbo Copyright © Hankookilbo

‘);
document.write(‘

‘);
document.write(‘

Issues you may be interested in

‘);
document.write(‘

Leave a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.