"); } addGrowl("Oops, the video you were looking for seems to be missing. We have automatically started the next video for you.", true, 10000, true); } var uid = findUid(); $(window).bind('beforeunload', function(){ if (!store('autorefresh')) { store("watchCount", 0); store("noAdCount", 0); store("wcni", 0); } }); $(".share-field").val(window.location.href); // function to update the like section var videokey = $("#likes").attr("data-key"); getLikedData(videokey); var pubsubdata = store('default_pub_profile_data'); var rewards_tooltip_dismissed = parseInt($("#rewards_tooltip_dismissed").val()); if (pubsubdata != null && pubsubdata.pub_id != null && pubsubdata.subid != null) { var hidePopup = parseInt(localStorage.getItem(pubsubdata.pub_id + "_" + pubsubdata.subid)); } if (rewards_tooltip_dismissed !== 1 && hidePopup !== 1) { $('.droptop-content').show(); } $(document).on('click', '#gotStatus', function () { var localDismissKey = $("#localDismissKey").val(); if (localDismissKey != null && localDismissKey != '') { localStorage.setItem(localDismissKey, 1); } $.ajax({ type: "GET", data: { method: 'updateRewardsTooltipStatus', status: 1 }, contentType: "application/json", url: 'api/user.php', success: function (data) { $('.droptop-content').hide(); $('.dropdown-content').show(); }, error: function (data) { } }); }); $(document).on('click', '.dropdown button', function () { $(this).closest('.dropdown').find('.dropdown-content').toggle(); store("wcni",0); // GA track event if ($(this).hasClass("rewards_button") && $(this).closest('.dropdown').find('.dropdown-content').is(":visible")) { gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Rewards Button Click' }); } if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); $(document).on('click', '.dropdown-button-share', function () { if ($(this).hasClass("share_hidden")) { $(this).parent().find('.dropshare-content').css({top: "35px"}); $(this).removeClass("share_hidden"); store("wcni",0); // GA track event gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Share Button Click' }); } else { $(this).parent().find('.dropshare-content').css({top: "-10000px"}); $(this).addClass("share_hidden"); } if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); $(document).on('click', '.dropdown-button-feedback', function () { if ($(this).hasClass("share_hidden")) { $(this).parent().find('.feedback-content').css({top: "35px"}); $(this).removeClass("share_hidden"); store("wcni",0); // GA track event gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Feedback Button Click' }); } else { $(this).parent().find('.feedback-content').css({top: "-10000px"}); $(this).addClass("share_hidden"); } if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); // When the user clicks anywhere outside of the modal, close it $(document).on('click', function (event) { if (!$(event.target).hasClass('dropdown-button') && !$(event.target).hasClass('dropdown-button-img')) { if (!$(event.target).closest('.dropdown-content').hasClass('dropdown-content')) { $('.dropdown-content').hide(); } } }); $(document).on('click', function (event) { if (!$(event.target).hasClass('dropdown-button-share') && !$(event.target).hasClass('dropdown-button-share-img')) { if (!$(event.target).closest('.dropshare-content').hasClass('dropshare-content')) { $('.dropshare-content').css({top: "-10000px"}); $(".dropdown-button-share").addClass("share_hidden"); } } }); $(document).on('click', function (event) { if (!$(event.target).hasClass('dropdown-button-feedback') && !$(event.target).hasClass('dropdown-button-feedback-img')) { if (!$(event.target).closest('.feedback-content').hasClass('feedback-content')) { $('.feedback-content').css({top: "-10000px"}); $(".dropdown-button-feedback").addClass("share_hidden"); } } }); $(document).on('click', '#likes', function () { var videokey = $(this).attr("data-key"); var html = '
'; var status = 0; $(this).toggleClass('liked-buttons'); if ($(this).hasClass('liked-buttons')) { status = 1; gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Like Button Click' }); } store("wcni",0); //call for storing likes $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'updateLikes', status: status, video_key: videokey }, success: function (callback) { updateLikesData(videokey, callback.data); }, error: function (data) { } }); if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); var videoId = $(".feedback-content").attr("data-videoId"); load_feedback_data(videoId); $(".feedbackItem").on('mouseenter',function(){ if (!$(this).hasClass('feedbackItem-true')) { $(this).find(".label").hide(); $(this).find(".count").show(); } }); $(".feedbackItem").on('mouseleave',function(){ if (!$(this).hasClass('feedbackItem-true')) { $(this).find(".label").show(); $(this).find(".count").hide(); } }); $(document).on('click', '.feedbackItem', function () { var item = $(this); var videoId = item.parent().parent().attr("data-videoId"); var status = 0; $(this).toggleClass('feedbackItem-true'); if ($(this).hasClass('feedbackItem-true')) { status = 1; gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Reactions Button Click' }); } var type = item.attr("data-type"); switch (type) { case 1: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Funny Button Click' }); break; case 2: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Helpful Button Click' }); break; case 3: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'More Like This Btton Click' }); break; case 4: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Confused Button Click' }); break; case 5: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Shocked Button Click' }); break; case 6: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Inspired Button Click' }); break; default: break; } $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'feedback', status: status, video_id: videoId, type: type }, success: function (callback) { if (item.hasClass('feedbackItem-true')) { var count = callback.count; item.find(".label").hide(); item.find(".count").html(count); item.find(".count").show(); } else{ var count = callback.count; //item.find(".label").show(); item.find(".count").html(count); //item.find(".count").hide(); } }, error: function (data) { } }); }); $(".noRewards .close").on('click',function(){ $(this).parent().hide(); }); $(".noRewards .button").on('click',function(){ $(this).hide(); $('.noRewards .causes').show(); }); $(".noRewardsButton").on('click',function(){ $('.noRewards .causes').hide(); $(".noRewards .button").show(); $('.noRewards').show(); }); if($('.noRewards').length > 0){ $('.noRewards').animate({'opacity':1},1400); } var subid = null; var pubid = null; if (pubsubdata !== null) { subid = pubsubdata.subid; pubid = pubsubdata.pub_id; } recordDeviceAndMouseMovement(uid,pubid, subid, 0); $(document).one("mousemove", function () { recordDeviceAndMouseMovement(uid,pubid, subid, 1); }); if (isActive) { gtagInterval = setInterval(function(){refreshGtag()}, 150000); } $bp(bridId).add('ended',function(){ $("#ogPopup").hide(); ogPopupClosed = false; if (isActive) { refreshGtag(); if (typeof gtagInterval !== 'undefined') { clearInterval(gtagInterval); } gtagInterval = setInterval(function(){refreshGtag()}, 150000); } }); $bp(bridId).add('timeupdate', function(){ var currentTime = $bp(bridId).currentTime(); var adIsPlaying = $bp(bridId).getAdInProgress(); if(!adIsPlaying && showOgPopup && (ogVideoTime - currentTime <= 15) && !ogPopupClosed){ $("#ogPopup").show(); } }); $bp(bridId).add('adClicked',function(){ $.ajax({ url: 'api/user.php', type: "POST", data: {method: 'adClick'}, success: function () { } }); }); $("#ogPopup .closeButton").on('click',function(){ ogPopupClosed = true; $("#ogPopup").hide(); });});//START Player growl notifications (not autolinking)function addGrowl(message, autoclose = true, timeout = 10000, hascloseButton = false) { var html = "
"; html += "
" + message + "
"; if (hascloseButton) { html += "
(Video) Meme Guide: What does the "Super Idol" song mean? (lyrics & story explained)

"; } html += "
"; slideIn(html, autoclose, timeout);}function slideIn(growl, autoclose = true, timeout = 10000) { growl = $(growl); $('#growls').prepend(growl); growl.animate({'height': '82px'}, 400); growl.animate({'opacity': 1}, 400); if (autoclose) { setTimeout(function () { slideOut(growl); }, timeout);}}function slideOut(growl) { growl.animate({'left': '355px', 'opacity': 0}, 400); growl.animate({'height': '0px', 'margin': '0px'}, 300, function () { growl.remove(); });}// END notificationsfunction recordDeviceAndMouseMovement(uid,pubId, subId, mouseMovement) { $.ajax({ url: 'api/user.php', type: "POST", data: {method: 'recordDeviceAndMouseMove', uid:uid, pubid: pubId, subid: subId, hasMouseMovement: mouseMovement}, success: function () { } });}function getLikedData(videokey) { //call for getting likes $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'updateLikes', video_key: videokey }, success: function (callback) { updateLikesData(videokey, callback.data); }, error: function (data) { } });}function updateLikesData(videokey, data) { var count = data.likes; $('#likes').attr("data-count", count); var isliked = data.liked; var html = '
'; if (isliked) { $("#likes").addClass('liked-buttons').html(html + ' ' + count); } else { $("#likes").removeClass('liked-buttons').html(html + ' LIKE'); } if ($("#likes").hasClass('liked-buttons')) { $(".tooltiptext").html('I like this video'); } else { $(".tooltiptext").html(count + ' viewers like this video'); }}function createCookie(key, value, exp) { var date = new Date(); date.setTime(date.getTime() + (exp * 24 * 60 * 60 * 1000)); var expires = "; expires=" + date.toGMTString(); document.cookie = key + "=" + value + expires + "; path=/;secure;samesite=strict";}function load_feedback_data(videoId){ $(".feedback-content").attr("data-videoId",videoId); $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'getFeedbackData', video_id: videoId, }, success: function (callback) { $(".feedbackItem").removeClass("feedbackItem-true"); $(".feedbackItem").find(".label").show(); $(".feedbackItem").find(".count").html(0); $(".feedbackItem").find(".count").hide(); var data = callback.data; for (let index = 0; index < data.length; index++) { const element = data[index]; const type = element.type; const count = element.count; var item; switch (type) { case 1: item = $('[data-type="1"]'); break; case 2: item = $('[data-type="2"]'); break; case 3: item = $('[data-type="3"]'); break; case 4: item = $('[data-type="4"]'); break; case 5: item = $('[data-type="5"]'); break; case 6: item = $('[data-type="6"]'); break; case 7: item = $('[data-type="7"]'); break; case 8: item = $('[data-type="8"]'); break; case 9: item = $('[data-type="9"]'); break; case 10: item = $('[data-type="10"]'); break; case 11: item = $('[data-type="11"]'); break; case 12: item = $('[data-type="12"]'); break; default: break; } if(element.hasType){ item.addClass("feedbackItem-true"); item.find(".label").hide(); item.find(".count").show(); item.find(".count").html(count); } else { item.find(".count").html(count); } } }, error: function (data) { } });}if(window.location.href.indexOf("&prof") > -1) { var offer_string = ""; var QueryString = function () { var query_string = {}; var query = window.location.search.substring(1); var vars = query.split("&"); for (var i = 0; i < vars.length; i++) { var pair = vars[i].split("="); if(pair[0] !== "v" && pair[0] !== "p"){ offer_string += "&"+pair[0]+"="+pair[1]; } // If first entry with this name if (typeof query_string[pair[0]] === "undefined") { query_string[pair[0]] = decodeURIComponent(pair[1]); // If second entry with this name } else if (typeof query_string[pair[0]] === "string") { var arr = [query_string[pair[0]], decodeURIComponent(pair[1])]; query_string[pair[0]] = arr; // If third or later entry with this name } else { query_string[pair[0]].push(decodeURIComponent(pair[1])); } } return query_string; }();}function addNextItems(){ var nextList = $(".rightArea .nextList"); var position = $bp("Brid_92783923").currentIndex; var html = ""; nextList.find('.nextVideoBox').first().addClass('slideUpVideo'); for (var i = position+1; i < position+6 && i < localPlaylistData["playlist"].length; i++) { var localItem = localPlaylistData.playlist[i]; var duration = localItem['duration']; if(isInt(duration)){ var duration = secondsToTime(duration); } var viewLabel = "views"; var views = 0; var formatedViews = 0; var username = "Hideout.co"; var dateString; var watchLater = ''; var channelAlias = ''; var videoTitle = localItem['name']; var chars = 60; var videoLength = videoTitle.length; var thumb = ""; if(videoLength >= chars - 3) { videoTitle = videoTitle.substr(0, chars - 3)+"..."; } if (typeof localItem != 'undefined'){ views = localItem["views"]; formatedViews = getFormatedViews(views,1); if(views === 1) viewLabel = "view"; var date = new Date(localItem.date.replace(/-/g, "/")); dateString = " - "+timeSince(date)+" ago"; var thumb = "//cdn.brid.tv/live/partners/7343/snapshot/"+ localItem.id +".png"; if(localItem.jw_image !== null){ thumb = localItem.jw_image; } if (localItem.username !== null){ username = localItem.username; } if (localItem.watch_later_id !== null){ watchLater = 'added'; } if (typeof localItem.channel_alias != 'undefined' && localItem.channel_alias !== null && localItem.channel_alias != ''){ channelAlias = ' - ' + localItem.channel_alias; } } else{ var date = new Date(item.pubdate*1000); dateString = " - "+timeSince(date)+" ago"; } var url = location.pathname+"?v="+localItem['id']+"&p="+pid; //If comming from offerwall, add params if(window.location.href.indexOf("&prof") > -1) { url += offer_string; } var watchLaterUrl = getWatchLaterUrl(); //get the channel url if(watchLaterUrl == 'watch_later') { var pNameLower = localItem.feed_name.toLowerCase(); } else { var pNameLower = pName.toLowerCase(); } pNameLower = pNameLower.replace(/[`~!@#$%^&*()_|+\-=��?;:'",.<>\{\}\[\]\\\/]/g,''); pNameLower = pNameLower.replace(/ /g,''); if (userChannel == 1) { var channelUrl = "/userchannel/" + pNameLower; username = ''; } else { var channelUrl = "/channel/" + pNameLower; } html += "
" html += "
" html += "" if (loginsession == 1){ html += "" } html += "" html += ""+duration+"" html += "" html += "
" html += "
" html += "
" html += "
" if(watchLaterUrl == 'watch_later') { html += ""+username+" - "+ localPlaylistData.name[i] + channelAlias+"" } else { html += ""+username+" - "+ pName + channelAlias+"" } html += "" html += "
"+formatedViews+" "+viewLabel+" "+dateString+"
" html += "
" html += "
" html += "
" } setTimeout(function() { nextList.html(html); //checkNextList(); }, 400); var itemCount = $bp("Brid_92783923").playlistLength; var index = $bp("Brid_92783923").currentIndex; $bp(bridId).add('playlistComplete', function () { $bp(bridId).add('stopped'); store("watchCount", 0); store("noAdCount", 0); store("wcni", 0); if (nextPlaylistData == "") { window.location.href = "/watchAllVideos.php"; } else { loadNewPlaylist(); } });}function loadNewPlaylist() { var nextPLFirst = nextPlaylistData[0]; var url = '/watch.php?v=' + nextPLFirst.brid_key + "&p=" + nextPLFirst.pid; //If comming from offerwall, add params if (window.location.href.indexOf("&prof") > -1) { url += offer_string; } window.top.location = url;}function updateViews(){ var item = $bp("Brid_92783923").currentSource; $.ajax({ url: "/api/video.php", method: 'POST', data:{method:"updateViews",mediaid:item.id,listid:item.feed_id,title:item.title,description:item.description,duration:item.duration} });}function checkNextList(){ var itemCount = $bp("Brid_92783923").playlistLength; var position = $bp("Brid_92783923").currentIndex; var remain = itemCount - position if(remain <= 5){ addNextPlaylistItems(6-remain); }}function addNextPlaylistItems(count){ var nextList = $(".rightArea .nextList"); var html = ""; for (var i = 0; i < count; i++) { var item = nextPlaylistData[i]; var viewLabel = "views"; var date = ""; var username = "Hideout.co"; var duration = item['duration']; if(isInt(duration)){ var duration = secondsToTime(duration); } var views = item.views; var formatedViews = getFormatedViews(views, 1); if(views === 1) viewLabel = "view"; var date = new Date(item.date.replace(/-/g, "/")); dateString = " - "+timeSince(date)+" ago"; if (item.username !== null){ username = item.username; } var url = location.pathname+"?v="+item.brid_key+"&p="+item.pid; //If comming from offerwall, add params if(window.location.href.indexOf("&prof") > -1) { url += offer_string; } var thumb = "//cdn.brid.tv/live/partners/7343/snapshot/"+ item.brid_key +".png"; if(item.jw_image !== null){ thumb = localItem.jw_image; } html += "
" html += "" html += "" html += ""+duration+"" html += "" html += ""+item['title']+"" html += ""+username+" - "+item.feed_name+"" html += ""+formatedViews+" "+viewLabel+" "+dateString+"" html += "" html += ""; } nextList.append(html);}function getFormatedViews(num, digits) { var si = [ { value: 1, symbol: "" }, { value: 1E3, symbol: "K" }, { value: 1E6, symbol: "M" }, { value: 1E9, symbol: "G" }, { value: 1E12, symbol: "T" }, { value: 1E15, symbol: "P" }, { value: 1E18, symbol: "E" } ]; var rx = /\.0+$|(\.[0-9]*[1-9])0+$/; var i; for (i = si.length - 1; i > 0; i--) { if (num >= si[i].value) { break; } } return (num / si[i].value).toFixed(digits).replace(rx, "$1") + si[i].symbol;}function playlistItemAction(index, item, noView) { var theTitle = item.title; var theDescr = item.description; var localData = localPlaylistData; var localItem = localData.playlist[item.index]; var viewLabel = "views"; var views = 0; var formatedViews = 0; var username = "Hideout.co"; var date; if (typeof localItem != 'undefined'){ views = localItem["views"]; formatedViews = getFormatedViews(views,1); if(views === 1) viewLabel = "view"; if (localItem.username !== null){ username = localItem.username; } date = new Date(localItem.date.replace(/-/g, "/")); var videoId = localItem.videoId; load_feedback_data(videoId); if (typeof init_comments === "function") { init_comments(videoId); } } else{ var date = new Date(item.pubdate*1000); } var watchLaterUrl = getWatchLaterUrl(); $(".leftArea .views").html(formatedViews + " " + viewLabel); $(".leftArea .title:first").html(theTitle); document.title = theTitle+" - HideoutTV"; //$(".leftArea .name").html(username); if(watchLaterUrl == 'watch_later') { $(".leftArea .info .channel").html(localItem.feed_name); } else { $(".leftArea .info .channel").html(localData.name); } $(".leftArea .info .date").text(timeSince(date)+" ago"); $(".leftArea .description").html(theDescr); if (typeof noView === 'undefined' || noView !== false) { updateViews(); } addNextItems(); //checkNextList(); var params = getSearchParameters(); var existingParams = ""; for (var key in params) { if (params.hasOwnProperty(key) && key != "v" && key != "p") { existingParams += "&"+key+"="+params[key]; } } window.history.pushState("", "", location.pathname+"?v="+item.id+"&p="+pid+existingParams); if(localItem.video_owner_id > 0 && localItem.video_owner_id != localItem.owner_id){ ogVideoTime = localItem.duration; showOgPopup = true; var pNameLower = localItem.og_feed_name.toLowerCase(); pNameLower = pNameLower.replace(/[`~!@#$%^&*()_|+\-=��?;:'",.<>\{\}\[\]\\\/]/g,''); pNameLower = encodeURIComponent(pNameLower); var html = "Original video from: "+localItem.og_feed_screen_name+" by "+localItem.og_username+". Switch Channel to view more"; $(".leftArea .og_info").html(html); $(".leftArea #ogPopup .more_videos").html("View more videos from "+localItem.og_feed_name); $(".leftArea #ogPopup a").attr("href","/watch.php?v=DEF&p="+localItem.og_feed_brid_key); } else{ $(".leftArea .og_info").html(""); showOgPopup = false; } //update like button section if (item.id){ $("#likes").attr("data-key", item.id); getLikedData(item.id); } // Update tweet button $(".twitter-share-button").remove(); var utmParams = '?utm_source=twitter&utm_medium=share&utm_term='+item.id; if(window.location.search){ utmParams = '&utm_source=twitter&utm_medium=share&utm_term='+item.id; } $(".buttons").children().first().after(''); twttr.widgets.load(); $(".share-field").val(window.location.href); $('.leftArea .description').linkify({ target: "_blank" });}function getWatchLaterUrl(){ var hash; var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for (var i = 0; i < hashes.length; i++) { hash = hashes[i].split('='); } return hash[1];}$(window).blur(function () { isActive = false; if (typeof gtagInterval !== 'undefined') { clearInterval(gtagInterval); }});$(window).focus(function () { if (!isActive) { if (typeof gtagInterval !== 'undefined') { clearInterval(gtagInterval); } gtagInterval = setInterval(function(){refreshGtag()}, 150000); } isActive = true;});(function(){ $(document).ready(function(){ $(".stillWatching").on('click',hideWatching); var params = getSearchParameters(); var existingParams = ""; for (var key in params) { if (key === "prof" ){ createCookie('lastAdwallId', params[key], 30); } if (key === "pub" ){ createCookie('lastPub', params[key], 30); } if (key === "sub1" ){ createCookie('lastSub1', params[key], 30); } if (key === "sub2" ){ createCookie('lastSub2', params[key], 30); } if (key === "sub3" ){ createCookie('lastSub3', params[key], 30); } } });function hideWatching (){ clearTimeout(ayswTime); ayswTime = null; store("wcni", 0); store("noAdCount", 0); store("watchCount", 0); $(".watching").hide(); gtag('event', 'click', { 'event_category': 'AYSW', 'event_label': 'passed' }); if (typeof player_init === 'function') { player_init(); } else { $bp(bridId).play(); } $(".watching").hide();}})();//call for storing watch clicks countfunction watchClick(pubId, subId){ var uid = findUid(); $.ajax({ url: '/api/user.php', type: "POST", data: {method: 'updateWatchPageButtonClicks', uid:uid, pubid: pubId, subid: subId}, success: function (callback) { }, error: function (data) { } });}function findUid() { var uid = sessionStorage.getItem('uid'); if (!uid) { uid = (Date.now().toString(36) + Math.random().toString(36).substr(2, 10)); sessionStorage.setItem('uid', uid); } return uid;}function getCookie(name) { var value = "; " + document.cookie; var parts = value.split("; " + name + "="); if (parts.length == 2) return parts.pop().split(";").shift();} !function(){var e,t,o;new Promise(e=>{const t=()=>e(!0),o=()=>e(!1),n=navigator.userAgent.match(/Version\/([0-9\._]+).*Safari/);if(n){const e=parseInt(n[1],10);if(e>=11)try{return window.openDatabase(null,null,null,null),o()}catch(e){return t()}else if(e<11)return(()=>{try{localStorage.length?o():(localStorage.x=1,localStorage.removeItem("x"),o())}catch(e){navigator.cookieEnabled?t():o()}})()}if(!window.webkitRequestFileSystem){if("MozAppearance"in document.documentElement.style){const e=indexedDB.open("test");return e.onerror=t,void(e.onsuccess=o)}return window.indexedDB||!window.PointerEvent&&!window.MSPointerEvent?o():t()}window.webkitRequestFileSystem(0,0,o,t)}).then(e=>{var t=q.sub1,o=q.pub,n=sessionStorage.getItem("uid"),i=store("default_pub_profile_data");null!==i&&(void 0===t&&(t=i.subid),void 0===o&&(o=i.pub_id)),$.ajax({url:"/api/user.php",method:"POST",data:{method:"saveBrowsingMode",uid:n,pub:o,sub:t,isPrivate:e},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}),$("body").on("click",".nextList a",function(e){return store("wcni",0),e.preventDefault(),P($(this).attr("href")),!1}),$("body").on("click",".brid-next-control",function(e){J()});var n,i,d=.01,a=0,r=!0,u=0,s=((new Date).getTime(),store("neuter"),0),l=0,c=0,p=!1,b=0,f=store("ua"),v=store("isMobile"),m=!1,h=!0,w=["click","prof","pub","sub1","sub2","sub3","net","net2","net3","swag"],_=0,g="true",I=0,y=0,k=0,S=!1;if(null===store("noAdCount")&&store("noAdCount",0),null===store("noAds"))store("noAds",0);else if(35===store("noAds")){var x=store("noAdsT");x=new Date(x),(new Date).toDateString()!=x.toDateString()?store("noAds",0):window.top.location="/watchLimit.php"}null===f&&(f=navigator.userAgent,store("ua",f)),null===v&&(v=MobileCheck.any(),store("isMobile",v));setInterval(function(){1},6e4);$bp(bridId).add("beforeStart",function(){I=0;var e=$bp(bridId).currentSource;if(y=e.duration,r){var t=!1;t||(t=setInterval(z,2e3)),K()}}),$bp(bridId).add("start",function(){var e=store("noAds");if(35===e){var t=new Date;store("noAdsT",t),window.top.location="/watchLimit.php"}else store("noAds",e+1);1;var o=$bp(bridId).currentIndex,n=$bp(bridId).currentSource;y=n.duration,Y("playlistpos_"+pid,n.id,30),playlistItemAction(o,n),S||(S=setInterval(function(){I++},1e3))}),$bp(bridId).add("pause",function(){r&&S&&(clearInterval(S),S=!1)}),$bp(bridId).add("play",function(){!r||S||$bp(bridId).getAdInProgress()||(S=setInterval(function(){I++},1e3))}),$(document).ready(function(){$(".fbsharelink").click(function(){var e=currentItem=$bp(bridId).currentSource,t="?utm_source=fb&utm_medium=share&utm_term="+e.id;window.location.search&&(t="&utm_source=fb&utm_medium=share&utm_term="+e.id),FB.ui({method:"share_open_graph",action_type:"og.shares",action_properties:JSON.stringify({object:{"og:url":window.location.href+t,"og:title":e.title,"og:description":e.description,"og:image":"https:"+e.thumbnail}})},function(e){})}),setInterval(M,2e4)});var C,T,A=0;function M(){var e=0;if(null===store("tbstimer")?store("tbstimer",0):(e=store("tbstimer"),e++,store("tbstimer",e)),A<3)A++;else if(A=0,store("tbstimer",null),r){var t=e/3,o=q.sub1,n=q.pub,i=sessionStorage.getItem("uid"),d=store("default_pub_profile_data");null!==d&&(void 0===o&&(o=d.subid),void 0===n&&(n=d.pub_id)),$.post("api/user.php",{method:"savetbstimer",uid:i,sub:o,pub:n,ip:xip,tabCount:t})}}function D(){window.badad&&window.vs&&window.vi&&window.ve}function P(e){store("autorefresh",1),store("plistcompleted")||store("plistcompleted",_),"1"==store("plistcompleted")&&Y("fromLeak","1",30),window.top.location=void 0!==e?e:document.location.href}function j(e,t){if("only_stop"===t)return $("body *").remove(),window.stop(),void document.execCommand("Stop");if(null!=store("default_pub_profile_data")){var o=store("default_pub_profile_data").subid,n=store("default_pub_profile_data").pub_id;$.post("api/bn.php",{sub:o,pub:n,ip:xip,safe:"yes",rid:e})}window.location="/watchLimit.php"}function R(e,t){if(r){var o=q.sub1,n=q.pub,i=sessionStorage.getItem("uid"),d=store("default_pub_profile_data");null!==d&&(void 0===o&&(o=d.subid),void 0===n&&(n=d.pub_id));i=sessionStorage.getItem("uid");$.post("api/user.php",{method:"saveFP",uid:i,sub:o,pub:n,ip:xip,action:t,fp:e},function(e){})}}$(this).mousemove(function(e){0,0,l=0}),$(this).keypress(function(e){0,0,l=0}),$bp(bridId).add("ended",function(){!1,c+=1,0,0}),$bp(bridId).add("seeked",function(){(l+=1)>8&&c>5&&$bp(bridId).volume()}),setInterval(D,12e4),D(),"passed"===store("safecheck")&&(null!=store("default_pub_profile_data")&&void 0!==store("default_pub_profile_data").subid&&void 0!==store("default_pub_profile_data").pub_id&&""!=typeof store("default_pub_profile_data").subid&&""!=typeof store("default_pub_profile_data").pub_id&&(C=store("default_pub_profile_data").subid,T=store("default_pub_profile_data").pub_id,$.post("api/bn.php",{sub:C,pub:T,ip:xip,safe:"yes",rid:3})),window.location=serverName),$bp(bridId).add("adEnd",function(){store("noAds",0),p||(u=0,m=!0,store("noAdCount",0)),p=!1,S||(S=setInterval(function(){I++},1e3))}),$bp(bridId).add("adError",function(){p=!0,S||(S=setInterval(function(){I++},1e3))});var L,E,H,F,B,O=null,U=0;if($bp(bridId).add("ended",function(){if(G=null,N=null,clearInterval(O),O=null,U<10&&J(),U=0,11==(u+=1)&&(MobileCheck.any()||P()),!m){var e=store("noAdCount");store("noAdCount",e+1)}m=!1}),$bp(bridId).add("start",function(){!0,null===O&&(O=setInterval(function(){U++},1e3)),null===store("wcni")&&store("wcni",0);var e=store("wcni");store("wcni",++e);var t=new Date;null!==store("lastCountDate")&&(storedDate=store("lastCountDate"),t=Date.parse(storedDate));var o=new Date,n=(o-t)/1e3/60;if(null===store("watchCount")&&store("watchCount",0),n<10){var i=store("watchCount");store("watchCount",++i)}else store("watchCount",1);store("lastCountDate",o),function(){var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=store("default_pub_profile_data");null!==n&&(void 0===e&&(e=n.subid),void 0===t&&(t=n.pub_id));if(void 0!==e&&void 0!==t||void 0!==o){var i="";$("#likes").length&&(i=$("#likes").attr("data-key")),$.ajax({url:"/api/user.php",method:"POST",data:{method:"videoRequested",uid:o,pub:t,sub:e,videokey:i},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}}();var d=checkVideoCounter();d.val&&($bp(bridId).pause(),showWatching(d.type)),$(".advertisementLabel").hide()}),window.location.href.indexOf("&prof")>-1)var q=function(){for(var e={},t=window.location.search.substring(1).split("&"),o=0;o
-1)for(L=0;L=t&&($(".rewards_wrapper").css("background-color","#DAF3DE"),k>0&&($("#pts_to_add").html("+"+o),function(){var t=store("postback_token"),o=function(){var e=sessionStorage.getItem("uid");e||(e=Date.now().toString(36)+Math.random().toString(36).substr(2,10),sessionStorage.setItem("uid",e));return e}(),d=t.token,r=t.created_at,u=function(){var e=q.click;void 0===e&&(e="0");0!==s&&(storedData=store("default_pub_profile_data"),e=storedData.click_id,pubidx=storedData.pub_id,e=pubidx+"_"+e);return encodeURIComponent(MenuAnimationHelper.doMagic(e))}(),l=function(){var e=q.click;void 0===e&&(e="0");var t=q.sub2;void 0===t&&(t="");var o=q.sub3;void 0===o&&(o="");null!==store("default_pub_profile_data")&&(storedData=store("default_pub_profile_data"),e=storedData.subid,pubidx=storedData.pub_id,e=pubidx+"_"+e,t=storedData.subid2,o=storedData.subid3);return e+="_"+t+"_"+o,encodeURIComponent(MenuAnimationHelper.doMagic(e))}(),c=(MenuAnimationHelper.doMagic(d),MenuAnimationHelper.doMagic(r),+ie);c+=r,c=encodeURIComponent(MenuAnimationHelper.doMagic(c));var p=k+r;p=encodeURIComponent(MenuAnimationHelper.doMagic(p)),$("#ptscount").text($("#count").text());var b="/counter.php?sid="+u+"&rate_cap="+e+"&uid="+o+"&earned="+a+"&pub_sub="+l+"&focused="+c+"&ads="+p;$.ajax({url:b,method:"GET",dataType:"json",beforeSend:function(e){e.setRequestHeader("token",d),e.setRequestHeader("tokenCreatedAt",r)},success:function(e){if("stop"==e.message)alert("This offer will be available again tomorrow"),1;else if("cr"==e.message){document.getElementById("cash").play(),addGrowl("Your Account Was Credited.",!0,5e3,!0);var t=Math.floor(3*Math.random()+1);1==t&&(MobileCheck.any()||P())}!function(e,t,o){!0===o&&$("#countLabel").show();$("#count").text(e)}(e.earned),console.log("addPoints() called"),clearInterval(n),n=setInterval(Q,i),Q()}}).fail(function(e,t,o){'["Error"]'==e.responseText&&P()})}()),k=0)}$bp(bridId).add("adFirstQuartile",function(){b=1,$bp(bridId).getAdInProgress()||X()}),$bp(bridId).add("adMidpoint",function(){b+=1,$bp(bridId).getAdInProgress()||X()}),$bp(bridId).add("adThirdQuartile",function(){b+=1,$bp(bridId).getAdInProgress()||X()}),$bp(bridId).add("adEnd",function(){4==(b+=1)&&k++,b=0}),$bp(bridId).add("ended",function(){k=0,K()})}void 0!==document.hidden?(F="hidden",B="visibilitychange"):void 0!==document.mozHidden?(F="mozHidden",B="mozvisibilitychange"):void 0!==document.msHidden?(F="msHidden",B="msvisibilitychange"):void 0!==document.webkitHidden&&(F="webkitHidden",B="webkitvisibilitychange");document.getElementById("videoElement");function Q(){$.get("/token.php",function(e){store("postback_token",e)})}void 0===document.addEventListener||void 0===document[F]?$(window).blur(function(){$bp(bridId).pause()}):document.addEventListener(B,function(){if(document[F])$bp(bridId).pause();else{var e=$("#watching").is(":visible");h=Z($("#"+bridId)),!e&&h&&(MobileCheck.any()||$bp(bridId).play())}},!1),Q(),n=setInterval(Q,i),$(document).ready(function(){Fingerprint2.get(function(e){var t=e.find(function(e){return"hasLiedBrowser"==e.key}).value,o=e.find(function(e){return"hasLiedOs"==e.key}).value,n=e.find(function(e){return"hasLiedResolution"==e.key}).value,i=e.find(function(e){return"hasLiedLanguages"==e.key}).value;if(null===store("rnd")){var d=Math.random().toString(36).substring(2,15);store("rnd",d)}else d=store("rnd");var a=e.map(function(e){return e.value}),u=Fingerprint2.x64hash128(a.join(""),31),s=u;u=u+"-"+d;var l=0;t&&(l+=1,R(u,"has_lied_browser")),o&&(l+=1,R(u,"has_lied_os")),n&&(l+=1,R(u,"has_lied_resolution")),i&&(l+=1,R(u,"has_lied_languages")),R(u,"save"),""===s&&null===s||function(e){if(r){var t=q.sub1,o=q.pub,n=sessionStorage.getItem("uid"),i=store("default_pub_profile_data");null!==i&&(void 0===t&&(t=i.subid),void 0===o&&(o=i.pub_id)),$.post("api/user.php",{method:"saveLiarCount",uid:n,sub:t,pub:o,ip:xip,liarCount:e},function(e){})}}(l)})});var W,G=null,N=null;function K(){$("#ptscount").text($("#count").text()),$(".rewards_wrapper").css("background-color","#F0F2F5"),$("#pts_to_add").html(""),clearInterval(allowToCredit),allowToCredit=!1}function V(){var e=navigator.userAgent;e!==f&&(!function(){if(void 0!==$.ua){var e=$.ua.browser.name,t=$.ua.os.name,o=$.ua.engine.name;$.ua.set(f);var n=$.ua.browser.name,i=$.ua.os.name,d=$.ua.engine.name;return e===n&&t===i&&o===d}return!0}()&&v==MobileCheck.any()?j(11,"only_stop"):(store("ua",e),store("isMobile",MobileCheck.any())))}function J(){K();var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=store("default_pub_profile_data");null!==n&&(void 0===e&&(e=n.subid),void 0===t&&(t=n.pub_id)),(void 0!==e&&void 0!==t||void 0!==o)&&$.ajax({url:"/api/user.php",method:"POST",data:{method:"videoSkipped",uid:o,pub:t,sub:e},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}function Y(e,t,o){var n=new Date;n.setTime(n.getTime()+24*o*60*60*1e3);var i="; expires="+n.toGMTString();document.cookie=e+"="+t+i+"; path=/;secure;samesite=strict"}function X(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"updatetmp"},dataType:"json",success:function(e){}})}function Z(e){"function"==typeof jQuery&&e instanceof jQuery&&(e=e[0]);var t=e.getBoundingClientRect();return t.top>=-50&&t.left>=-50&&t.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&t.right<=(window.innerWidth||document.documentElement.clientWidth)}$bp(bridId).add("beforeStart",function(){W=$bp(bridId).currentIndex,clearTimeout(G),G=setTimeout(function(){$bp(bridId).playByIndex(W)},12e4)}),$bp(bridId).add("adEnd",function(){$(".advertisementLabel").hide(),clearTimeout(G),clearTimeout(N)}),$bp(bridId).add("adPause",function(){clearTimeout(G),clearTimeout(N)}),$bp(bridId).add("play",function(){clearTimeout(G)}),$bp(bridId).add("start",function(){clearTimeout(N),N=null}),$bp(bridId).add("adStart",function(){!1,$(".advertisementLabel").show(),clearTimeout(G),W=$bp(bridId).currentIndex,clearTimeout(N),N=setTimeout(function(){$bp(bridId).playByIndex(W)},15e4)}),$bp(bridId).add("requestAd",function(){!1,clearInterval(S),S=!1,function(){var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=$bp(bridId).isFullScreen,i=store("default_pub_profile_data"),d=$("#likes").attr("data-key");null!==i&&(void 0===e&&(e=i.subid),void 0===t&&(t=i.pub_id));(void 0!==e&&void 0!==t||void 0!==o)&&$.ajax({url:"/api/user.php",method:"POST",data:{method:"adRequested",uid:o,pub:t,sub:e,active:g,isFullScreen:n,videoKey:d},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}()}),$bp(bridId).add("adImpression",function(){!function(){var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=store("default_pub_profile_data"),i=$("#likes").attr("data-key");null!==n&&(void 0===e&&(e=n.subid),void 0===t&&(t=n.pub_id));(void 0!==e&&void 0!==t||void 0!==o)&&$.ajax({url:"/api/user.php",method:"POST",data:{method:"adImpression",uid:o,pub:t,sub:e,videoKey:i},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(document.location=location.pathname+location.search)}})}()}),V(),setInterval(function(){V()},3e4),$(window).blur(function(){g="false"}),$(window).focus(function(){g="true"}),$("#ssverify").length>0&&$.get("//vid.springserve.com/vast/621158?cb=242342342478967",function(e){var t=$(e).find("Ad");if(t.find("Impression").length&&t.find("Creatives").length)var o=0;else o=1;var n="|||"+o;if(0!==s){storedData=store("default_pub_profile_data");var i=storedData.subid;n=storedData.pub_id+"_"+i+"|||"+o}n=encodeURIComponent(MenuAnimationHelper.doMagic(n));$.ajax({url:"/api/user.php",method:"POST",data:{method:"savewops",data:n},dataType:"json"})}),window.addPoints=function(){j(1)},$bp(bridId).add("incrementCredit",function(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"updatetmpp"},dataType:"json",success:function(e){}})}),$bp(bridId).add("incrementCreditComplete",function(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"incrementCreditComplete"},dataType:"json",success:function(e){}})}),$bp(bridId).setAd=function(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"setAd"},dataType:"json",success:function(e){}})},function(){var e,t;e=q.sub1,t=q.pub;var o=store("default_pub_profile_data");null!==o&&(void 0===e&&(e=o.subid),void 0===t&&(t=o.pub_id)),void 0!==e&&void 0!==t&&Y("sid",t+"_"+e,30)}();var ee,te=!1;function oe(){var e=$("#"+bridId);return function(){var t=Z(e);$bp(bridId).getAdInProgress()?t&&te&&$bp(bridId).play():t!=ee&&(t&&$bp(bridId).play(),ee=t)}}var ne=oe();window.onfocus=ne,window.onblur=ne,$(window).on("DOMContentLoaded load resize scroll",ne),setInterval(oe,1500),$bp(bridId).add("adPause",function(){te=!0}),$bp(bridId).add("adResume",function(){te=!1});var ie=!0;$(window).blur(function(){ie=!1}),$(window).focus(function(){ie=!0})}(); if ($(".leftArea .title").text().length === 0 || $(".nextVideoBox").text().length === 0) { var briditem = $bp("Brid_92783923").currentSource; playlistItemAction(2, briditem, false); } }); } if (result.eventStatus === 'useractioncomplete' || store('gdpr') == '1') { player_init(); player_init = null; } // add link to footer $('.change-consent').remove(); $('.new_footer').find('.links').append('Privacy Consent'); }else if (result.eventStatus === 'useractioncomplete' || store('gdpr') == '1') { if (result.eventStatus === 'useractioncomplete' && result.gdprApplies != true) { var gdpr_param = "&AV_GDPR=0"; } else { var gdpr_param = "&AV_GDPR=1&AV_CONSENT="+store('gdpr_consent'); } if (tagUrl) { var ad = [{ "desktop": [], "mobile": [tagUrl+gdpr_param], //Will get called in succession on mobile and desktop if the desktop array is left empty. "adType": "0", // Type 0 for pre roll "adTimeType": "s", "overlayStartAt": null, "overlayDuration": null, "cuepoints": null }, { "desktop": [], "mobile": [tagUrlMid+gdpr_param], //Will get called in succession on mobile and desktop if the desktop array is left empty. "adType": "1", "adTimeType": "s", "overlayStartAt": null, "overlayDuration": null, "cuepoints": "100,180,300,420,600,780,960" }]; } var player_init = function () { $bp("Brid_92783923", {"id":"22526","playlist":{"Video":[{"id":1016621,"name":"padoru padoru","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":11,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016621_sd_1653088654.mp4_thumb","username":"demopublic ball","date":null,"views":0,"videoId":80795744,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016621_sd_1653088654.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016621_sd_1653088654.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016621.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016621.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016621.mp4"}},{"id":1112863,"name":"Standing here I realize but it's operation barbarossa","description":"Check my other account: https:\/\/dailymotion.com\/demopublicball","duration":31,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112863_sd_1665162177.jpg","username":"demopublic ball","date":"2022-10-07 12:02:56","views":1054,"videoId":82993296,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112863_sd_1665162177.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112863_sd_1665162177.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112863.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112863.mp4"}},{"id":1112868,"name":"Super idol becoming canny","description":"Follow my other account: https:\/\/dailymotion.com\/demopublicball","duration":45,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112868_sd_1665162166.jpg","username":"demopublic ball","date":"2022-10-07 12:02:44","views":1168,"videoId":82993342,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112868_sd_1665162166.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112868_sd_1665162166.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112868.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112868.mp4"}},{"id":1112870,"name":"YouTube adsense failure","description":"My other account: https:\/\/dailymotion.com\/demopublicball","duration":58,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112870_sd_1665162148.jpg","username":"demopublic ball","date":"2022-10-07 12:02:27","views":1448,"videoId":82993396,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112870_sd_1665162148.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112870_sd_1665162148.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112870.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112870.mp4"}},{"id":1112843,"name":"Mr spherical vs PWA(Parody)","description":"Check my other account: https:\/\/dailymotion.com\/demopublicball","duration":62,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112843_sd_1665157807.jpg","username":"demopublic ball","date":"2022-10-07 10:50:06","views":1223,"videoId":82992787,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112843_sd_1665157807.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112843_sd_1665157807.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112843.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112843.mp4"}},{"id":1112840,"name":"Monetization.exe","description":"Please follow my other account: https:\/\/dailymotion.com\/demopublicball","duration":78,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112840_sd_1665157800.jpg","username":"demopublic ball","date":"2022-10-07 10:49:59","views":1099,"videoId":82992764,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112840_sd_1665157800.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112840_sd_1665157800.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112840.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112840.mp4"}},{"id":1112836,"name":"now and years ago compilation 4","description":"Now and years ago meme compilation 4\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":61,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112836_sd_1665157792.jpg","username":"demopublic ball","date":"2022-10-07 10:49:50","views":1064,"videoId":82992714,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112836_sd_1665157792.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112836_sd_1665157792.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112836.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112836.mp4"}},{"id":1112828,"name":"Now and years ago 12 ","description":"Now and years ago meme 12\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112828_sd_1665157785.jpg","username":"demopublic ball","date":"2022-10-07 10:49:43","views":1054,"videoId":82992663,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112828_sd_1665157785.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112828_sd_1665157785.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112828.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112828.mp4"}},{"id":1112826,"name":"Now and years ago 11","description":"Now and years ago meme 11\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112826_sd_1665157778.jpg","username":"demopublic ball","date":"2022-10-07 10:49:37","views":1049,"videoId":82992379,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112826_sd_1665157778.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1112826_sd_1665157778.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1112826.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1112826.mp4"}},{"id":1108852,"name":"Now and years ago 7","description":"Now and years ago meme 7\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108852_sd_1664801900.jpg","username":"demopublic ball","date":"2022-10-03 07:58:19","views":1247,"videoId":82857983,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108852_sd_1664801900.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108852_sd_1664801900.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108852.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108852.mp4"}},{"id":1108853,"name":"Now and years ago 8","description":"Now and years ago meme 8\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108853_sd_1664801862.jpg","username":"demopublic ball","date":"2022-10-03 07:57:41","views":1428,"videoId":82858022,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108853_sd_1664801862.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108853_sd_1664801862.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108853.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108853.mp4"}},{"id":1108854,"name":"Now and years ago 9","description":"Now and years ago meme 9\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108854_sd_1664801836.jpg","username":"demopublic ball","date":"2022-10-03 07:57:14","views":1563,"videoId":82858049,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108854_sd_1664801836.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108854_sd_1664801836.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108854.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108854.mp4"}},{"id":1108857,"name":"Now and years ago compilation 3","description":"Now and years ago meme compilation 3\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":61,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108857_sd_1664801827.jpg","username":"demopublic ball","date":"2022-10-03 07:57:06","views":1501,"videoId":82858088,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108857_sd_1664801827.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108857_sd_1664801827.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108857.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108857.mp4"}},{"id":1108859,"name":"Now and years ago 10","description":"Now and years ago meme 10\r\nMy other account: https:\/\/dailymotion.com\/demopublicball","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108859_sd_1664801819.jpg","username":"demopublic ball","date":"2022-10-03 07:56:57","views":1454,"videoId":82858124,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108859_sd_1664801819.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108859_sd_1664801819.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108859.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108859.mp4"}},{"id":1108320,"name":"Now and years ago 6","description":"Now and years ago meme 6\r\nMy other channel: https:\/\/dailymotion.com\/\r\ndemopublicball","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108320_sd_1664548141.jpg","username":"demopublic ball","date":"2022-09-30 09:28:59","views":1471,"videoId":82848692,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108320_sd_1664548141.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108320_sd_1664548141.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108320.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108320.mp4"}},{"id":1108331,"name":"Now and years ago compilation 2","description":"Now and years ago meme compilation 2\r\nMy other channel: https:\/\/dailymotion.com\/\r\ndemopublicball","duration":64,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108331_sd_1664548134.jpg","username":"demopublic ball","date":"2022-09-30 09:28:53","views":1467,"videoId":82848722,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108331_sd_1664548134.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108331_sd_1664548134.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108331.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108331.mp4"}},{"id":1108071,"name":"Now and years ago 5","description":"Now and years ago meme 5","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108071_sd_1664475468.jpg","username":"demopublic ball","date":"2022-09-29 13:17:46","views":1452,"videoId":82837914,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108071_sd_1664475468.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108071_sd_1664475468.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108071.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108071.mp4"}},{"id":1108070,"name":"Now and years ago 4","description":"Now and years ago meme 4","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108070_sd_1664475461.jpg","username":"demopublic ball","date":"2022-09-29 13:17:39","views":1444,"videoId":82837868,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108070_sd_1664475461.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1108070_sd_1664475461.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1108070.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1108070.mp4"}},{"id":1107403,"name":"Now and years ago 3","description":"Now and years ago meme 3","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1107403_sd_1664388110.jpg","username":"demopublic ball","date":"2022-09-28 13:01:48","views":1652,"videoId":82818627,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1107403_sd_1664388110.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1107403_sd_1664388110.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1107403.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1107403.mp4"}},{"id":1107405,"name":"Now and years ago compilation","description":"Now and years ago compilation","duration":61,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1107405_sd_1664388102.jpg","username":"demopublic ball","date":"2022-09-28 13:01:36","views":1878,"videoId":82818652,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1107405_sd_1664388102.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1107405_sd_1664388102.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1107405.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1107405.mp4"}},{"id":1106194,"name":"Now and years ago 2","description":"Now and years ago second meme","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106194_sd_1664286595.jpg","username":"demopublic ball","date":"2022-09-27 08:49:54","views":1743,"videoId":82791577,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106194_sd_1664286595.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106194_sd_1664286595.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106194.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106194.mp4"}},{"id":1106193,"name":"But the people are retarded","description":"Indian philosopher once said","duration":31,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106193_sd_1664286588.jpg","username":"demopublic ball","date":"2022-09-27 08:49:46","views":1734,"videoId":82791564,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106193_sd_1664286588.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106193_sd_1664286588.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106193.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106193.mp4"}},{"id":1106192,"name":"Now and years ago","description":"Now and years ago first meme","duration":21,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106192_sd_1664286538.jpg","username":"demopublic ball","date":"2022-09-27 08:48:52","views":1698,"videoId":82791548,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106192_sd_1664286538.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106192_sd_1664286538.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106192.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106192.mp4"}},{"id":1106191,"name":"mmmm poland","description":"Poland ","duration":12,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106191_sd_1664286505.jpg","username":"demopublic ball","date":"2022-09-27 08:48:23","views":1736,"videoId":82791540,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106191_sd_1664286505.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106191_sd_1664286505.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106191.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106191.mp4"}},{"id":1106189,"name":"Demopublic:Stop Pet me","description":"Very gentle petting","duration":11,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106189_sd_1664286498.jpg","username":"demopublic ball","date":"2022-09-27 08:48:16","views":2484,"videoId":82791530,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106189_sd_1664286498.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106189_sd_1664286498.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106189.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106189.mp4"}},{"id":1106188,"name":"mmmm korea","description":"Korea","duration":12,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106188_sd_1664286489.jpg","username":"demopublic ball","date":"2022-09-27 08:48:08","views":2459,"videoId":82791518,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106188_sd_1664286489.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106188_sd_1664286489.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106188.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106188.mp4"}},{"id":1106187,"name":"mmmm ireland","description":"Ireland","duration":12,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106187_sd_1664286482.jpg","username":"demopublic ball","date":"2022-09-27 08:48:00","views":2450,"videoId":82791511,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106187_sd_1664286482.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106187_sd_1664286482.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106187.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106187.mp4"}},{"id":1106185,"name":"Mr spherical yoasobi meme","description":"Mr spherical funny","duration":17,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106185_sd_1664286467.jpg","username":"demopublic ball","date":"2022-09-27 08:47:46","views":2455,"videoId":82791499,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106185_sd_1664286467.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106185_sd_1664286467.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106185.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106185.mp4"}},{"id":1106184,"name":"Countryballs rewind 2021","description":"Countryball animators rewind","duration":69,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106184_sd_1664286452.jpg","username":"demopublic ball","date":"2022-09-27 08:47:26","views":2481,"videoId":82791484,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106184_sd_1664286452.jpg","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1106184_sd_1664286452.jpg","source":{"ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1106184.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1106184.mp4"}},{"id":1017400,"name":"mmmm France...","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":12,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017400_sd_1653242900.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:48:49","views":3454,"videoId":80814580,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017400_sd_1653242900.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017400_sd_1653242900.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017400.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017400.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017400.mp4"}},{"id":1017398,"name":"Mongolia-Pain scale meme","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":9,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017398_sd_1653242842.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:48:24","views":3429,"videoId":80814571,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017398_sd_1653242842.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017398_sd_1653242842.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017398.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017398.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017398.mp4"}},{"id":1017397,"name":"Australia-Pain scale meme","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":9,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017397_sd_1653242789.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:48:14","views":4095,"videoId":80814557,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017397_sd_1653242789.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017397_sd_1653242789.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017397.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017397.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017397.mp4"}},{"id":1017396,"name":"First vs now countryballs","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":18,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017396_sd_1653242724.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:48:05","views":4219,"videoId":80814535,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017396_sd_1653242724.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017396_sd_1653242724.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017396.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017396.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017396.mp4"}},{"id":1017394,"name":"India-Pain scale meme","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":9,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017394_sd_1653242621.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:47:52","views":3576,"videoId":80814529,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017394_sd_1653242621.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017394_sd_1653242621.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017394.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017394.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017394.mp4"}},{"id":1017393,"name":"Most Useless Megaprojects in the World","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":17,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017393_sd_1653242526.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:47:44","views":3517,"videoId":80814511,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017393_sd_1653242526.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017393_sd_1653242526.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017393.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017393.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017393.mp4"}},{"id":1017392,"name":"First vs now countryballs","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":16,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017392_sd_1653242461.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:46:05","views":3466,"videoId":80814488,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017392_sd_1653242461.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017392_sd_1653242461.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017392.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017392.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017392.mp4"}},{"id":1017391,"name":"pain scale meme greece","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":9,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017391_sd_1653242355.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:45:47","views":3504,"videoId":80814476,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017391_sd_1653242355.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017391_sd_1653242355.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017391.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017391.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017391.mp4"}},{"id":1017389,"name":"pain scale meme spain","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":12,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017389_sd_1653242294.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:45:31","views":3757,"videoId":80814462,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017389_sd_1653242294.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017389_sd_1653242294.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017389.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017389.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017389.mp4"}},{"id":1017388,"name":"pain scale meme soviet union","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":9,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017388_sd_1653242231.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:45:09","views":3496,"videoId":80814444,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017388_sd_1653242231.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1017388_sd_1653242231.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1017388.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1017388.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1017388.mp4"}},{"id":1016623,"name":"What if countryballs were made by india","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":44,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016623_sd_1653088773.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:28:20","views":3436,"videoId":80795753,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016623_sd_1653088773.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016623_sd_1653088773.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016623.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016623.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016623.mp4"}},{"id":1016620,"name":"pain scale meme united states","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":10,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016620_sd_1653088619.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:28:12","views":3465,"videoId":80795726,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016620_sd_1653088619.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016620_sd_1653088619.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016620.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016620.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016620.mp4"}},{"id":1016618,"name":"pain scale meme japan","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":9,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016618_sd_1653088530.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:28:04","views":3385,"videoId":80795707,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016618_sd_1653088530.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016618_sd_1653088530.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016618.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016618.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016618.mp4"}},{"id":1016617,"name":"it's Chinese for \"Japan\"","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":10,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016617_sd_1653088464.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:27:57","views":3514,"videoId":80795679,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016617_sd_1653088464.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016617_sd_1653088464.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016617.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016617.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016617.mp4"}},{"id":1016616,"name":"Pain scale france meme","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":16,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016616_sd_1653088359.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:27:29","views":3449,"videoId":80795659,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016616_sd_1653088359.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016616_sd_1653088359.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016616.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016616.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016616.mp4"}},{"id":1016615,"name":"Pain scale meme-British Empire","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":9,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016615_sd_1653088276.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:27:24","views":3470,"videoId":80795636,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016615_sd_1653088276.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016615_sd_1653088276.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016615.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016615.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016615.mp4"}},{"id":1016613,"name":"Countryballs halloween","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":57,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016613_sd_1653088196.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:27:17","views":3338,"videoId":80795620,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016613_sd_1653088196.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016613_sd_1653088196.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016613.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016613.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016613.mp4"}},{"id":1016612,"name":"CHINA","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":32,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016612_sd_1653088120.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:27:03","views":3266,"videoId":80795607,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016612_sd_1653088120.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016612_sd_1653088120.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016612.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016612.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016612.mp4"}},{"id":1016611,"name":"Yemen flips his flag","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":8,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016611_sd_1653088048.mp4_thumb","username":"demopublic ball","date":"2022-05-23 13:26:34","views":3988,"videoId":80795589,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016611_sd_1653088048.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1016611_sd_1653088048.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1016611.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1016611.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1016611.mp4"}},{"id":1015709,"name":"How United Nations handle situations","description":"Hi i am Demopublic Balls\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":15,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015709_sd_1652977460.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:34:17","views":3951,"videoId":80779656,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015709_sd_1652977460.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015709_sd_1652977460.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015709.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015709.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015709.mp4"}},{"id":1015723,"name":"Why japan joined axis in world war 2|lovin you","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":35,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015723_sd_1652979198.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:34:09","views":3706,"videoId":80779920,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015723_sd_1652979198.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015723_sd_1652979198.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015723.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015723.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015723.mp4"}},{"id":1015751,"name":"First vs now countryballs","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":38,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015751_sd_1652980812.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:34:03","views":3610,"videoId":80780073,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015751_sd_1652980812.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015751_sd_1652980812.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015751.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015751.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015751.mp4"}},{"id":1015750,"name":"Snotty glow up meme but countryballs","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":26,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015750_sd_1652980439.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:33:56","views":3443,"videoId":80780055,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015750_sd_1652980439.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015750_sd_1652980439.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015750.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015750.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015750.mp4"}},{"id":1015734,"name":"Taliban No Way Home Trailer","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":125,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015734_sd_1652979818.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:33:30","views":3422,"videoId":80780037,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015734_sd_1652979818.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015734_sd_1652979818.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015734.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015734.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015734.mp4"}},{"id":1015730,"name":"Countryball chain","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":11,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015730_sd_1652979567.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:33:24","views":3179,"videoId":80780033,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015730_sd_1652979567.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015730_sd_1652979567.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015730.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015730.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015730.mp4"}},{"id":1015727,"name":"Hans and Gunter friday night funkin","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":56,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015727_sd_1652979400.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:32:53","views":3183,"videoId":80779983,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015727_sd_1652979400.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015727_sd_1652979400.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015727.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015727.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015727.mp4"}},{"id":1015728,"name":"Philippine i guess","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":19,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015728_sd_1652979509.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:32:46","views":3184,"videoId":80780009,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015728_sd_1652979509.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015728_sd_1652979509.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015728.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015728.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015728.mp4"}},{"id":1015725,"name":"Look at this greece","description":"Hi i am Demopublic Ball\r\nI make countryballs videos and memes about it...I am not good at making animation but i will do my best entertaining you\r\n\r\nThe other social media i am using\r\nYouTube: https:\/\/youtube.com\/channel\/UCZOpnjzTfSK7gvGB58tuPQw\r\nOdysee: https:\/\/odysee.com\/@DemopublicBall:d\r\nHideout tv: hideout.co\/userchannel\/demopublic ball\r\nDailymotion: https:\/\/dailymotion.com\/\r\n\r\nSupport me: https:\/\/www.buymeacoffee.com\/deathghostL\r\n\r\nThank you for watching","duration":10,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015725_sd_1652979325.mp4_thumb","username":"demopublic ball","date":"2022-05-19 12:32:38","views":3334,"videoId":80779950,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015725_sd_1652979325.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/1015725_sd_1652979325.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/1015725.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/1015725.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/1015725.mp4"}},{"id":988348,"name":"South korea vs Japan Friday night funkin","description":"Broken fingers","duration":76,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988348_sd_1649342305.mp4_thumb","username":"demopublic ball","date":"2022-04-07 13:52:44","views":3347,"videoId":80218208,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988348_sd_1649342305.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988348_sd_1649342305.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/988348.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/988348.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/988348.mp4"}},{"id":988344,"name":"Why is britain so nice to america","description":"Sus","duration":16,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988344_sd_1649342304.mp4_thumb","username":"demopublic ball","date":"2022-04-07 13:52:24","views":3488,"videoId":80218159,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988344_sd_1649342304.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988344_sd_1649342304.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/988344.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/988344.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/988344.mp4"}},{"id":988342,"name":"Why united kingdom doesn't change his style","description":"Old people miss their past","duration":59,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988342_sd_1649342303.mp4_thumb","username":"demopublic ball","date":"2022-04-07 13:52:02","views":3417,"videoId":80218123,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988342_sd_1649342303.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988342_sd_1649342303.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/988342.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/988342.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/988342.mp4"}},{"id":988340,"name":"Can european onion make murica cry?","description":"Free health care","duration":36,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988340_sd_1649341812.mp4_thumb","username":"demopublic ball","date":"2022-04-07 13:51:51","views":3381,"videoId":80218097,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988340_sd_1649341812.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988340_sd_1649341812.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/988340.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/988340.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/988340.mp4"}},{"id":988339,"name":"What is the relationship between united kingdom and united state","description":"Star war but it's countryballs","duration":41,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988339_sd_1649341697.mp4_thumb","username":"demopublic ball","date":"2022-04-07 13:51:42","views":3385,"videoId":80218061,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988339_sd_1649341697.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/988339_sd_1649341697.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/988339.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/988339.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/988339.mp4"}},{"id":982940,"name":"Can Turkey into EU?","description":"But eu no longer takes mass refugees tho","duration":27,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982940_sd_1648643816.mp4_thumb","username":"demopublic ball","date":"2022-03-30 13:40:10","views":3457,"videoId":80092030,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982940_sd_1648643816.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982940_sd_1648643816.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/982940.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/982940.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/982940.mp4"}},{"id":982938,"name":"Soviet's food joke","description":"Famine","duration":37,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982938_sd_1648643712.mp4_thumb","username":"demopublic ball","date":"2022-03-30 13:39:18","views":3497,"videoId":80092016,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982938_sd_1648643712.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982938_sd_1648643712.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/982938.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/982938.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/982938.mp4"}},{"id":982937,"name":"Three sussy countryballs","description":"Sus amogus","duration":30,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982937_sd_1648643644.mp4_thumb","username":"demopublic ball","date":"2022-03-30 13:39:09","views":3481,"videoId":80091994,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982937_sd_1648643644.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982937_sd_1648643644.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/982937.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/982937.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/982937.mp4"}},{"id":982936,"name":"Countryballs Compilation #1","description":"Mix 20 videos in one","duration":913,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982936_sd_1648643527.mp4_thumb","username":"demopublic ball","date":"2022-03-30 13:39:05","views":3685,"videoId":80091978,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982936_sd_1648643527.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/982936_sd_1648643527.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/982936.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/982936.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/982936.mp4","streaming":"\/\/cdn.brid.tv\/live\/partners\/7343\/streaming\/982936\/982936.m3u8"}},{"id":980420,"name":"Myanmar situation right now","description":"Ded","duration":59,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980420_sd_1648272328.mp4_thumb","username":"demopublic ball","date":"2022-03-28 15:05:18","views":3097,"videoId":79988893,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980420_sd_1648272328.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980420_sd_1648272328.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/980420.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/980420.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/980420.mp4"}},{"id":980421,"name":"When asean is invited to eu meetings","description":"Motorcycle","duration":55,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980421_sd_1648272495.mp4_thumb","username":"demopublic ball","date":"2022-03-28 15:05:01","views":3378,"videoId":79988924,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980421_sd_1648272495.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980421_sd_1648272495.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/980421.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/980421.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/980421.mp4"}},{"id":980422,"name":"French is easy","description":"Nope","duration":30,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980422_sd_1648272601.mp4_thumb","username":"demopublic ball","date":"2022-03-28 15:04:47","views":3672,"videoId":79988969,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980422_sd_1648272601.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980422_sd_1648272601.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/980422.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/980422.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/980422.mp4"}},{"id":980424,"name":"Ww2.exe","description":"I have my right to use anime song as background music\r\n","duration":52,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980424_sd_1648272775.mp4_thumb","username":"demopublic ball","date":"2022-03-28 15:04:42","views":3938,"videoId":79989015,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980424_sd_1648272775.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980424_sd_1648272775.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/980424.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/980424.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/980424.mp4"}},{"id":981011,"name":"Russia make poland cry","description":"Russia is now making ukraine cry","duration":24,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981011_sd_1648378541.mp4_thumb","username":"demopublic ball","date":"2022-03-28 13:59:11","views":3811,"videoId":80021247,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981011_sd_1648378541.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981011_sd_1648378541.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/981011.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/981011.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/981011.mp4"}},{"id":981010,"name":"What type of pokemon is polandball?","description":"Poland","duration":23,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981010_sd_1648378435.mp4_thumb","username":"demopublic ball","date":"2022-03-28 13:59:05","views":3824,"videoId":80021231,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981010_sd_1648378435.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981010_sd_1648378435.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/981010.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/981010.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/981010.mp4"}},{"id":981007,"name":"How japan conquer the world","description":"Yes i love anime","duration":42,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981007_sd_1648378249.mp4_thumb","username":"demopublic ball","date":"2022-03-28 13:58:50","views":3899,"videoId":80021197,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981007_sd_1648378249.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981007_sd_1648378249.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/981007.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/981007.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/981007.mp4"}},{"id":981005,"name":"India's naive","description":"Wear your masks","duration":40,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981005_sd_1648378046.mp4_thumb","username":"demopublic ball","date":"2022-03-28 13:48:10","views":3861,"videoId":80021146,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981005_sd_1648378046.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981005_sd_1648378046.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/981005.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/981005.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/981005.mp4"}},{"id":981004,"name":"Why british don't wear headpats in rugby","description":"UK(English)=Rugby\r\nUS(English)=Football\r\nI don't know lol","duration":55,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981004_sd_1648377979.mp4_thumb","username":"demopublic ball","date":"2022-03-28 13:48:04","views":3802,"videoId":80021118,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981004_sd_1648377979.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/981004_sd_1648377979.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/981004.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/981004.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/981004.mp4"}},{"id":980419,"name":"India's replacement of tiktok","description":"India banned a lot of chinese apps","duration":46,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980419_sd_1648272252.mp4_thumb","username":"demopublic ball","date":"2022-03-28 12:31:50","views":3914,"videoId":79988866,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980419_sd_1648272252.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/980419_sd_1648272252.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/980419.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/980419.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/980419.mp4"}},{"id":977963,"name":"What will happen if bangladesh soak in white paint","description":"Bangladesh+white paint=japan","duration":44,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977963_sd_1648008207.mp4_thumb","username":"demopublic ball","date":"2022-03-25 13:33:43","views":4688,"videoId":79906309,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977963_sd_1648008207.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977963_sd_1648008207.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/977963.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/977963.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/977963.mp4"}},{"id":977964,"name":"Does Japan and Taiwan know lithuania?","description":"Taiwan finally know Lithuania ","duration":63,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977964_sd_1648008294.mp4_thumb","username":"demopublic ball","date":"2022-03-25 13:33:36","views":5268,"videoId":79906329,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977964_sd_1648008294.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977964_sd_1648008294.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/977964.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/977964.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/977964.mp4"}},{"id":977965,"name":"Hong kong and Taiwan problem","description":"Two poor guys","duration":37,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977965_sd_1648008371.mp4_thumb","username":"demopublic ball","date":"2022-03-25 13:30:03","views":5847,"videoId":79906351,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977965_sd_1648008371.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977965_sd_1648008371.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/977965.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/977965.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/977965.mp4"}},{"id":977966,"name":"France in napoleon war","description":"Napoleon cannot beat britain","duration":40,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977966_sd_1648008527.mp4_thumb","username":"demopublic ball","date":"2022-03-25 13:29:52","views":6385,"videoId":79906378,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977966_sd_1648008527.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977966_sd_1648008527.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/977966.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/977966.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/977966.mp4"}},{"id":977961,"name":"United State's tariff","description":"During trump era","duration":15,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977961_sd_1648008118.mp4_thumb","username":"demopublic ball","date":"2022-03-24 09:26:08","views":6196,"videoId":79904569,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977961_sd_1648008118.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/977961_sd_1648008118.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/977961.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/977961.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/977961.mp4"}},{"id":976235,"name":"But_if_you_close_your_eyes(British_raj)(720p)","description":"My first ever video on youtube","duration":7,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976235_sd_1647778628.mp4_thumb","username":"demopublic ball","date":"2022-03-22 12:44:14","views":6150,"videoId":79834354,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976235_sd_1647778628.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976235_sd_1647778628.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/976235.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/976235.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/976235.mp4"}},{"id":976241,"name":"Vietnam.exe(720p)","description":"Vietnam stronk","duration":66,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976241_sd_1647778771.mp4_thumb","username":"demopublic ball","date":"2022-03-22 12:44:01","views":5761,"videoId":79834391,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976241_sd_1647778771.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976241_sd_1647778771.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/976241.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/976241.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/976241.mp4"}},{"id":976243,"name":"YouTube.exe(720p)","description":"YouTube is hard to handle indeed","duration":43,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976243_sd_1647779112.mp4_thumb","username":"demopublic ball","date":"2022-03-22 11:16:40","views":5557,"videoId":79834457,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976243_sd_1647779112.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976243_sd_1647779112.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/976243.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/976243.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/976243.mp4"}},{"id":976258,"name":"Eu doesn't have thanksgiving(720p)","description":"Turkey is not european ","duration":48,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976258_sd_1647781190.mp4_thumb","username":"demopublic ball","date":"2022-03-22 11:16:25","views":5520,"videoId":79834867,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976258_sd_1647781190.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976258_sd_1647781190.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/976258.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/976258.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/976258.mp4"}},{"id":976276,"name":"Headpetting Taiwanball","description":"Taiwan is loved by everyone(almost)","duration":19,"jw_image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976276_sd_1647781403.mp4_thumb","username":"demopublic ball","date":"2022-03-22 09:17:45","views":5435,"videoId":79834920,"feed_id":18282,"owner_id":3592913,"watch_later_id":null,"video_owner_id":3592913,"image":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976276_sd_1647781403.mp4_thumb","thumbnail":"https:\/\/cdn.brid.tv\/live\/partners\/7343\/snapshot\/976276_sd_1647781403.mp4_thumb","source":{"hsd":"\/\/cdn.brid.tv\/live\/partners\/7343\/hsd\/976276.mp4","ld":"\/\/cdn.brid.tv\/live\/partners\/7343\/ld\/976276.mp4","sd":"\/\/cdn.brid.tv\/live\/partners\/7343\/sd\/976276.mp4"}}]},"startPlaylistIndex":2,"Ad":ad,"video_source":"hd"},function(){ var isActive = true;var showOgPopup = false;var ogVideoTime = 0;var ogPopupClosed = false;$(document).ready(function () { if(videoFailed){ if($("#growls").length == 0){ $('body').append(""); } addGrowl("Oops, the video you were looking for seems to be missing. We have automatically started the next video for you.", true, 10000, true); } var uid = findUid(); $(window).bind('beforeunload', function(){ if (!store('autorefresh')) { store("watchCount", 0); store("noAdCount", 0); store("wcni", 0); } }); $(".share-field").val(window.location.href); // function to update the like section var videokey = $("#likes").attr("data-key"); getLikedData(videokey); var pubsubdata = store('default_pub_profile_data'); var rewards_tooltip_dismissed = parseInt($("#rewards_tooltip_dismissed").val()); if (pubsubdata != null && pubsubdata.pub_id != null && pubsubdata.subid != null) { var hidePopup = parseInt(localStorage.getItem(pubsubdata.pub_id + "_" + pubsubdata.subid)); } if (rewards_tooltip_dismissed !== 1 && hidePopup !== 1) { $('.droptop-content').show(); } $(document).on('click', '#gotStatus', function () { var localDismissKey = $("#localDismissKey").val(); if (localDismissKey != null && localDismissKey != '') { localStorage.setItem(localDismissKey, 1); } $.ajax({ type: "GET", data: { method: 'updateRewardsTooltipStatus', status: 1 }, contentType: "application/json", url: 'api/user.php', success: function (data) { $('.droptop-content').hide(); $('.dropdown-content').show(); }, error: function (data) { } }); }); $(document).on('click', '.dropdown button', function () { $(this).closest('.dropdown').find('.dropdown-content').toggle(); store("wcni",0); // GA track event if ($(this).hasClass("rewards_button") && $(this).closest('.dropdown').find('.dropdown-content').is(":visible")) { gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Rewards Button Click' }); } if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); $(document).on('click', '.dropdown-button-share', function () { if ($(this).hasClass("share_hidden")) { $(this).parent().find('.dropshare-content').css({top: "35px"}); $(this).removeClass("share_hidden"); store("wcni",0); // GA track event gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Share Button Click' }); } else { $(this).parent().find('.dropshare-content').css({top: "-10000px"}); $(this).addClass("share_hidden"); } if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); $(document).on('click', '.dropdown-button-feedback', function () { if ($(this).hasClass("share_hidden")) { $(this).parent().find('.feedback-content').css({top: "35px"}); $(this).removeClass("share_hidden"); store("wcni",0); // GA track event gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Feedback Button Click' }); } else { $(this).parent().find('.feedback-content').css({top: "-10000px"}); $(this).addClass("share_hidden"); } if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); // When the user clicks anywhere outside of the modal, close it $(document).on('click', function (event) { if (!$(event.target).hasClass('dropdown-button') && !$(event.target).hasClass('dropdown-button-img')) { if (!$(event.target).closest('.dropdown-content').hasClass('dropdown-content')) { $('.dropdown-content').hide(); } } }); $(document).on('click', function (event) { if (!$(event.target).hasClass('dropdown-button-share') && !$(event.target).hasClass('dropdown-button-share-img')) { if (!$(event.target).closest('.dropshare-content').hasClass('dropshare-content')) { $('.dropshare-content').css({top: "-10000px"}); $(".dropdown-button-share").addClass("share_hidden"); } } }); $(document).on('click', function (event) { if (!$(event.target).hasClass('dropdown-button-feedback') && !$(event.target).hasClass('dropdown-button-feedback-img')) { if (!$(event.target).closest('.feedback-content').hasClass('feedback-content')) { $('.feedback-content').css({top: "-10000px"}); $(".dropdown-button-feedback").addClass("share_hidden"); } } }); $(document).on('click', '#likes', function () { var videokey = $(this).attr("data-key"); var html = '
'; var status = 0; $(this).toggleClass('liked-buttons'); if ($(this).hasClass('liked-buttons')) { status = 1; gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Like Button Click' }); } store("wcni",0); //call for storing likes $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'updateLikes', status: status, video_key: videokey }, success: function (callback) { updateLikesData(videokey, callback.data); }, error: function (data) { } }); if (pubsubdata != null) { watchClick(pubsubdata.pub_id, pubsubdata.subid); } }); var videoId = $(".feedback-content").attr("data-videoId"); load_feedback_data(videoId); $(".feedbackItem").on('mouseenter',function(){ if (!$(this).hasClass('feedbackItem-true')) { $(this).find(".label").hide(); $(this).find(".count").show(); } }); $(".feedbackItem").on('mouseleave',function(){ if (!$(this).hasClass('feedbackItem-true')) { $(this).find(".label").show(); $(this).find(".count").hide(); } }); $(document).on('click', '.feedbackItem', function () { var item = $(this); var videoId = item.parent().parent().attr("data-videoId"); var status = 0; $(this).toggleClass('feedbackItem-true'); if ($(this).hasClass('feedbackItem-true')) { status = 1; gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Reactions Button Click' }); } var type = item.attr("data-type"); switch (type) { case 1: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Funny Button Click' }); break; case 2: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Helpful Button Click' }); break; case 3: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'More Like This Btton Click' }); break; case 4: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Confused Button Click' }); break; case 5: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Shocked Button Click' }); break; case 6: gtag('event', 'click', { 'event_category': 'WatchPageButton', 'event_label': 'Inspired Button Click' }); break; default: break; } $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'feedback', status: status, video_id: videoId, type: type }, success: function (callback) { if (item.hasClass('feedbackItem-true')) { var count = callback.count; item.find(".label").hide(); item.find(".count").html(count); item.find(".count").show(); } else{ var count = callback.count; //item.find(".label").show(); item.find(".count").html(count); //item.find(".count").hide(); } }, error: function (data) { } }); }); $(".noRewards .close").on('click',function(){ $(this).parent().hide(); }); $(".noRewards .button").on('click',function(){ $(this).hide(); $('.noRewards .causes').show(); }); $(".noRewardsButton").on('click',function(){ $('.noRewards .causes').hide(); $(".noRewards .button").show(); $('.noRewards').show(); }); if($('.noRewards').length > 0){ $('.noRewards').animate({'opacity':1},1400); } var subid = null; var pubid = null; if (pubsubdata !== null) { subid = pubsubdata.subid; pubid = pubsubdata.pub_id; } recordDeviceAndMouseMovement(uid,pubid, subid, 0); $(document).one("mousemove", function () { recordDeviceAndMouseMovement(uid,pubid, subid, 1); }); if (isActive) { gtagInterval = setInterval(function(){refreshGtag()}, 150000); } $bp(bridId).add('ended',function(){ $("#ogPopup").hide(); ogPopupClosed = false; if (isActive) { refreshGtag(); if (typeof gtagInterval !== 'undefined') { clearInterval(gtagInterval); } gtagInterval = setInterval(function(){refreshGtag()}, 150000); } }); $bp(bridId).add('timeupdate', function(){ var currentTime = $bp(bridId).currentTime(); var adIsPlaying = $bp(bridId).getAdInProgress(); if(!adIsPlaying && showOgPopup && (ogVideoTime - currentTime <= 15) && !ogPopupClosed){ $("#ogPopup").show(); } }); $bp(bridId).add('adClicked',function(){ $.ajax({ url: 'api/user.php', type: "POST", data: {method: 'adClick'}, success: function () { } }); }); $("#ogPopup .closeButton").on('click',function(){ ogPopupClosed = true; $("#ogPopup").hide(); });});//START Player growl notifications (not autolinking)function addGrowl(message, autoclose = true, timeout = 10000, hascloseButton = false) { var html = ""; html += "
" + message + "
"; if (hascloseButton) { html += "

"; } html += "
"; slideIn(html, autoclose, timeout);}function slideIn(growl, autoclose = true, timeout = 10000) { growl = $(growl); $('#growls').prepend(growl); growl.animate({'height': '82px'}, 400); growl.animate({'opacity': 1}, 400); if (autoclose) { setTimeout(function () { slideOut(growl); }, timeout);}}function slideOut(growl) { growl.animate({'left': '355px', 'opacity': 0}, 400); growl.animate({'height': '0px', 'margin': '0px'}, 300, function () { growl.remove(); });}// END notificationsfunction recordDeviceAndMouseMovement(uid,pubId, subId, mouseMovement) { $.ajax({ url: 'api/user.php', type: "POST", data: {method: 'recordDeviceAndMouseMove', uid:uid, pubid: pubId, subid: subId, hasMouseMovement: mouseMovement}, success: function () { } });}function getLikedData(videokey) { //call for getting likes $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'updateLikes', video_key: videokey }, success: function (callback) { updateLikesData(videokey, callback.data); }, error: function (data) { } });}function updateLikesData(videokey, data) { var count = data.likes; $('#likes').attr("data-count", count); var isliked = data.liked; var html = '
'; if (isliked) { $("#likes").addClass('liked-buttons').html(html + ' ' + count); } else { $("#likes").removeClass('liked-buttons').html(html + ' LIKE'); } if ($("#likes").hasClass('liked-buttons')) { $(".tooltiptext").html('I like this video'); } else { $(".tooltiptext").html(count + ' viewers like this video'); }}function createCookie(key, value, exp) { var date = new Date(); date.setTime(date.getTime() + (exp * 24 * 60 * 60 * 1000)); var expires = "; expires=" + date.toGMTString(); document.cookie = key + "=" + value + expires + "; path=/;secure;samesite=strict";}function load_feedback_data(videoId){ $(".feedback-content").attr("data-videoId",videoId); $.ajax({ url: 'api/video.php', type: "POST", dataType: "json", data: { method: 'getFeedbackData', video_id: videoId, }, success: function (callback) { $(".feedbackItem").removeClass("feedbackItem-true"); $(".feedbackItem").find(".label").show(); $(".feedbackItem").find(".count").html(0); $(".feedbackItem").find(".count").hide(); var data = callback.data; for (let index = 0; index < data.length; index++) { const element = data[index]; const type = element.type; const count = element.count; var item; switch (type) { case 1: item = $('[data-type="1"]'); break; case 2: item = $('[data-type="2"]'); break; case 3: item = $('[data-type="3"]'); break; case 4: item = $('[data-type="4"]'); break; case 5: item = $('[data-type="5"]'); break; case 6: item = $('[data-type="6"]'); break; case 7: item = $('[data-type="7"]'); break; case 8: item = $('[data-type="8"]'); break; case 9: item = $('[data-type="9"]'); break; case 10: item = $('[data-type="10"]'); break; case 11: item = $('[data-type="11"]'); break; case 12: item = $('[data-type="12"]'); break; default: break; } if(element.hasType){ item.addClass("feedbackItem-true"); item.find(".label").hide(); item.find(".count").show(); item.find(".count").html(count); } else { item.find(".count").html(count); } } }, error: function (data) { } });}if(window.location.href.indexOf("&prof") > -1) { var offer_string = ""; var QueryString = function () { var query_string = {}; var query = window.location.search.substring(1); var vars = query.split("&"); for (var i = 0; i < vars.length; i++) { var pair = vars[i].split("="); if(pair[0] !== "v" && pair[0] !== "p"){ offer_string += "&"+pair[0]+"="+pair[1]; } // If first entry with this name if (typeof query_string[pair[0]] === "undefined") { query_string[pair[0]] = decodeURIComponent(pair[1]); // If second entry with this name } else if (typeof query_string[pair[0]] === "string") { var arr = [query_string[pair[0]], decodeURIComponent(pair[1])]; query_string[pair[0]] = arr; // If third or later entry with this name } else { query_string[pair[0]].push(decodeURIComponent(pair[1])); } } return query_string; }();}function addNextItems(){ var nextList = $(".rightArea .nextList"); var position = $bp("Brid_92783923").currentIndex; var html = ""; nextList.find('.nextVideoBox').first().addClass('slideUpVideo'); for (var i = position+1; i < position+6 && i < localPlaylistData["playlist"].length; i++) { var localItem = localPlaylistData.playlist[i]; var duration = localItem['duration']; if(isInt(duration)){ var duration = secondsToTime(duration); } var viewLabel = "views"; var views = 0; var formatedViews = 0; var username = "Hideout.co"; var dateString; var watchLater = ''; var channelAlias = ''; var videoTitle = localItem['name']; var chars = 60; var videoLength = videoTitle.length; var thumb = ""; if(videoLength >= chars - 3) { videoTitle = videoTitle.substr(0, chars - 3)+"..."; } if (typeof localItem != 'undefined'){ views = localItem["views"]; formatedViews = getFormatedViews(views,1); if(views === 1) viewLabel = "view"; var date = new Date(localItem.date.replace(/-/g, "/")); dateString = " - "+timeSince(date)+" ago"; var thumb = "//cdn.brid.tv/live/partners/7343/snapshot/"+ localItem.id +".png"; if(localItem.jw_image !== null){ thumb = localItem.jw_image; } if (localItem.username !== null){ username = localItem.username; } if (localItem.watch_later_id !== null){ watchLater = 'added'; } if (typeof localItem.channel_alias != 'undefined' && localItem.channel_alias !== null && localItem.channel_alias != ''){ channelAlias = ' - ' + localItem.channel_alias; } } else{ var date = new Date(item.pubdate*1000); dateString = " - "+timeSince(date)+" ago"; } var url = location.pathname+"?v="+localItem['id']+"&p="+pid; //If comming from offerwall, add params if(window.location.href.indexOf("&prof") > -1) { url += offer_string; } var watchLaterUrl = getWatchLaterUrl(); //get the channel url if(watchLaterUrl == 'watch_later') { var pNameLower = localItem.feed_name.toLowerCase(); } else { var pNameLower = pName.toLowerCase(); } pNameLower = pNameLower.replace(/[`~!@#$%^&*()_|+\-=��?;:'",.<>\{\}\[\]\\\/]/g,''); pNameLower = pNameLower.replace(/ /g,''); if (userChannel == 1) { var channelUrl = "/userchannel/" + pNameLower; username = ''; } else { var channelUrl = "/channel/" + pNameLower; } html += "" html += "
" html += "" if (loginsession == 1){ html += "" } html += "" html += ""+duration+"" html += "" html += "
" html += "
" html += "
" html += "
" if(watchLaterUrl == 'watch_later') { html += ""+username+" - "+ localPlaylistData.name[i] + channelAlias+"" } else { html += ""+username+" - "+ pName + channelAlias+"" } html += "" html += "
"+formatedViews+" "+viewLabel+" "+dateString+"
" html += "
" html += "
" html += "
" } setTimeout(function() { nextList.html(html); //checkNextList(); }, 400); var itemCount = $bp("Brid_92783923").playlistLength; var index = $bp("Brid_92783923").currentIndex; $bp(bridId).add('playlistComplete', function () { $bp(bridId).add('stopped'); store("watchCount", 0); store("noAdCount", 0); store("wcni", 0); if (nextPlaylistData == "") { window.location.href = "/watchAllVideos.php"; } else { loadNewPlaylist(); } });}function loadNewPlaylist() { var nextPLFirst = nextPlaylistData[0]; var url = '/watch.php?v=' + nextPLFirst.brid_key + "&p=" + nextPLFirst.pid; //If comming from offerwall, add params if (window.location.href.indexOf("&prof") > -1) { url += offer_string; } window.top.location = url;}function updateViews(){ var item = $bp("Brid_92783923").currentSource; $.ajax({ url: "/api/video.php", method: 'POST', data:{method:"updateViews",mediaid:item.id,listid:item.feed_id,title:item.title,description:item.description,duration:item.duration} });}function checkNextList(){ var itemCount = $bp("Brid_92783923").playlistLength; var position = $bp("Brid_92783923").currentIndex; var remain = itemCount - position if(remain <= 5){ addNextPlaylistItems(6-remain); }}function addNextPlaylistItems(count){ var nextList = $(".rightArea .nextList"); var html = ""; for (var i = 0; i < count; i++) { var item = nextPlaylistData[i]; var viewLabel = "views"; var date = ""; var username = "Hideout.co"; var duration = item['duration']; if(isInt(duration)){ var duration = secondsToTime(duration); } var views = item.views; var formatedViews = getFormatedViews(views, 1); if(views === 1) viewLabel = "view"; var date = new Date(item.date.replace(/-/g, "/")); dateString = " - "+timeSince(date)+" ago"; if (item.username !== null){ username = item.username; } var url = location.pathname+"?v="+item.brid_key+"&p="+item.pid; //If comming from offerwall, add params if(window.location.href.indexOf("&prof") > -1) { url += offer_string; } var thumb = "//cdn.brid.tv/live/partners/7343/snapshot/"+ item.brid_key +".png"; if(item.jw_image !== null){ thumb = localItem.jw_image; } html += "" html += "" html += "" html += ""+duration+"" html += "" html += ""+item['title']+"" html += ""+username+" - "+item.feed_name+"" html += ""+formatedViews+" "+viewLabel+" "+dateString+"" html += "" html += ""; } nextList.append(html);}function getFormatedViews(num, digits) { var si = [ { value: 1, symbol: "" }, { value: 1E3, symbol: "K" }, { value: 1E6, symbol: "M" }, { value: 1E9, symbol: "G" }, { value: 1E12, symbol: "T" }, { value: 1E15, symbol: "P" }, { value: 1E18, symbol: "E" } ]; var rx = /\.0+$|(\.[0-9]*[1-9])0+$/; var i; for (i = si.length - 1; i > 0; i--) { if (num >= si[i].value) { break; } } return (num / si[i].value).toFixed(digits).replace(rx, "$1") + si[i].symbol;}function playlistItemAction(index, item, noView) { var theTitle = item.title; var theDescr = item.description; var localData = localPlaylistData; var localItem = localData.playlist[item.index]; var viewLabel = "views"; var views = 0; var formatedViews = 0; var username = "Hideout.co"; var date; if (typeof localItem != 'undefined'){ views = localItem["views"]; formatedViews = getFormatedViews(views,1); if(views === 1) viewLabel = "view"; if (localItem.username !== null){ username = localItem.username; } date = new Date(localItem.date.replace(/-/g, "/")); var videoId = localItem.videoId; load_feedback_data(videoId); if (typeof init_comments === "function") { init_comments(videoId); } } else{ var date = new Date(item.pubdate*1000); } var watchLaterUrl = getWatchLaterUrl(); $(".leftArea .views").html(formatedViews + " " + viewLabel); $(".leftArea .title:first").html(theTitle); document.title = theTitle+" - HideoutTV"; //$(".leftArea .name").html(username); if(watchLaterUrl == 'watch_later') { $(".leftArea .info .channel").html(localItem.feed_name); } else { $(".leftArea .info .channel").html(localData.name); } $(".leftArea .info .date").text(timeSince(date)+" ago"); $(".leftArea .description").html(theDescr); if (typeof noView === 'undefined' || noView !== false) { updateViews(); } addNextItems(); //checkNextList(); var params = getSearchParameters(); var existingParams = ""; for (var key in params) { if (params.hasOwnProperty(key) && key != "v" && key != "p") { existingParams += "&"+key+"="+params[key]; } } window.history.pushState("", "", location.pathname+"?v="+item.id+"&p="+pid+existingParams); if(localItem.video_owner_id > 0 && localItem.video_owner_id != localItem.owner_id){ ogVideoTime = localItem.duration; showOgPopup = true; var pNameLower = localItem.og_feed_name.toLowerCase(); pNameLower = pNameLower.replace(/[`~!@#$%^&*()_|+\-=��?;:'",.<>\{\}\[\]\\\/]/g,''); pNameLower = encodeURIComponent(pNameLower); var html = "Original video from: "+localItem.og_feed_screen_name+" by "+localItem.og_username+". Switch Channel to view more"; $(".leftArea .og_info").html(html); $(".leftArea #ogPopup .more_videos").html("View more videos from "+localItem.og_feed_name); $(".leftArea #ogPopup a").attr("href","/watch.php?v=DEF&p="+localItem.og_feed_brid_key); } else{ $(".leftArea .og_info").html(""); showOgPopup = false; } //update like button section if (item.id){ $("#likes").attr("data-key", item.id); getLikedData(item.id); } // Update tweet button $(".twitter-share-button").remove(); var utmParams = '?utm_source=twitter&utm_medium=share&utm_term='+item.id; if(window.location.search){ utmParams = '&utm_source=twitter&utm_medium=share&utm_term='+item.id; } $(".buttons").children().first().after(''); twttr.widgets.load(); $(".share-field").val(window.location.href); $('.leftArea .description').linkify({ target: "_blank" });}function getWatchLaterUrl(){ var hash; var hashes = window.location.href.slice(window.location.href.indexOf('?') + 1).split('&'); for (var i = 0; i < hashes.length; i++) { hash = hashes[i].split('='); } return hash[1];}$(window).blur(function () { isActive = false; if (typeof gtagInterval !== 'undefined') { clearInterval(gtagInterval); }});$(window).focus(function () { if (!isActive) { if (typeof gtagInterval !== 'undefined') { clearInterval(gtagInterval); } gtagInterval = setInterval(function(){refreshGtag()}, 150000); } isActive = true;});(function(){ $(document).ready(function(){ $(".stillWatching").on('click',hideWatching); var params = getSearchParameters(); var existingParams = ""; for (var key in params) { if (key === "prof" ){ createCookie('lastAdwallId', params[key], 30); } if (key === "pub" ){ createCookie('lastPub', params[key], 30); } if (key === "sub1" ){ createCookie('lastSub1', params[key], 30); } if (key === "sub2" ){ createCookie('lastSub2', params[key], 30); } if (key === "sub3" ){ createCookie('lastSub3', params[key], 30); } } });function hideWatching (){ clearTimeout(ayswTime); ayswTime = null; store("wcni", 0); store("noAdCount", 0); store("watchCount", 0); $(".watching").hide(); gtag('event', 'click', { 'event_category': 'AYSW', 'event_label': 'passed' }); if (typeof player_init === 'function') { player_init(); } else { $bp(bridId).play(); } $(".watching").hide();}})();//call for storing watch clicks countfunction watchClick(pubId, subId){ var uid = findUid(); $.ajax({ url: '/api/user.php', type: "POST", data: {method: 'updateWatchPageButtonClicks', uid:uid, pubid: pubId, subid: subId}, success: function (callback) { }, error: function (data) { } });}function findUid() { var uid = sessionStorage.getItem('uid'); if (!uid) { uid = (Date.now().toString(36) + Math.random().toString(36).substr(2, 10)); sessionStorage.setItem('uid', uid); } return uid;}function getCookie(name) { var value = "; " + document.cookie; var parts = value.split("; " + name + "="); if (parts.length == 2) return parts.pop().split(";").shift();} !function(){var e,t,o;new Promise(e=>{const t=()=>e(!0),o=()=>e(!1),n=navigator.userAgent.match(/Version\/([0-9\._]+).*Safari/);if(n){const e=parseInt(n[1],10);if(e>=11)try{return window.openDatabase(null,null,null,null),o()}catch(e){return t()}else if(e<11)return(()=>{try{localStorage.length?o():(localStorage.x=1,localStorage.removeItem("x"),o())}catch(e){navigator.cookieEnabled?t():o()}})()}if(!window.webkitRequestFileSystem){if("MozAppearance"in document.documentElement.style){const e=indexedDB.open("test");return e.onerror=t,void(e.onsuccess=o)}return window.indexedDB||!window.PointerEvent&&!window.MSPointerEvent?o():t()}window.webkitRequestFileSystem(0,0,o,t)}).then(e=>{var t=q.sub1,o=q.pub,n=sessionStorage.getItem("uid"),i=store("default_pub_profile_data");null!==i&&(void 0===t&&(t=i.subid),void 0===o&&(o=i.pub_id)),$.ajax({url:"/api/user.php",method:"POST",data:{method:"saveBrowsingMode",uid:n,pub:o,sub:t,isPrivate:e},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}),$("body").on("click",".nextList a",function(e){return store("wcni",0),e.preventDefault(),P($(this).attr("href")),!1}),$("body").on("click",".brid-next-control",function(e){J()});var n,i,d=.01,a=0,r=!0,u=0,s=((new Date).getTime(),store("neuter"),0),l=0,c=0,p=!1,b=0,f=store("ua"),v=store("isMobile"),m=!1,h=!0,w=["click","prof","pub","sub1","sub2","sub3","net","net2","net3","swag"],_=0,g="true",I=0,y=0,k=0,S=!1;if(null===store("noAdCount")&&store("noAdCount",0),null===store("noAds"))store("noAds",0);else if(35===store("noAds")){var x=store("noAdsT");x=new Date(x),(new Date).toDateString()!=x.toDateString()?store("noAds",0):window.top.location="/watchLimit.php"}null===f&&(f=navigator.userAgent,store("ua",f)),null===v&&(v=MobileCheck.any(),store("isMobile",v));setInterval(function(){1},6e4);$bp(bridId).add("beforeStart",function(){I=0;var e=$bp(bridId).currentSource;if(y=e.duration,r){var t=!1;t||(t=setInterval(z,2e3)),K()}}),$bp(bridId).add("start",function(){var e=store("noAds");if(35===e){var t=new Date;store("noAdsT",t),window.top.location="/watchLimit.php"}else store("noAds",e+1);1;var o=$bp(bridId).currentIndex,n=$bp(bridId).currentSource;y=n.duration,Y("playlistpos_"+pid,n.id,30),playlistItemAction(o,n),S||(S=setInterval(function(){I++},1e3))}),$bp(bridId).add("pause",function(){r&&S&&(clearInterval(S),S=!1)}),$bp(bridId).add("play",function(){!r||S||$bp(bridId).getAdInProgress()||(S=setInterval(function(){I++},1e3))}),$(document).ready(function(){$(".fbsharelink").click(function(){var e=currentItem=$bp(bridId).currentSource,t="?utm_source=fb&utm_medium=share&utm_term="+e.id;window.location.search&&(t="&utm_source=fb&utm_medium=share&utm_term="+e.id),FB.ui({method:"share_open_graph",action_type:"og.shares",action_properties:JSON.stringify({object:{"og:url":window.location.href+t,"og:title":e.title,"og:description":e.description,"og:image":"https:"+e.thumbnail}})},function(e){})}),setInterval(M,2e4)});var C,T,A=0;function M(){var e=0;if(null===store("tbstimer")?store("tbstimer",0):(e=store("tbstimer"),e++,store("tbstimer",e)),A<3)A++;else if(A=0,store("tbstimer",null),r){var t=e/3,o=q.sub1,n=q.pub,i=sessionStorage.getItem("uid"),d=store("default_pub_profile_data");null!==d&&(void 0===o&&(o=d.subid),void 0===n&&(n=d.pub_id)),$.post("api/user.php",{method:"savetbstimer",uid:i,sub:o,pub:n,ip:xip,tabCount:t})}}function D(){window.badad&&window.vs&&window.vi&&window.ve}function P(e){store("autorefresh",1),store("plistcompleted")||store("plistcompleted",_),"1"==store("plistcompleted")&&Y("fromLeak","1",30),window.top.location=void 0!==e?e:document.location.href}function j(e,t){if("only_stop"===t)return $("body *").remove(),window.stop(),void document.execCommand("Stop");if(null!=store("default_pub_profile_data")){var o=store("default_pub_profile_data").subid,n=store("default_pub_profile_data").pub_id;$.post("api/bn.php",{sub:o,pub:n,ip:xip,safe:"yes",rid:e})}window.location="/watchLimit.php"}function R(e,t){if(r){var o=q.sub1,n=q.pub,i=sessionStorage.getItem("uid"),d=store("default_pub_profile_data");null!==d&&(void 0===o&&(o=d.subid),void 0===n&&(n=d.pub_id));i=sessionStorage.getItem("uid");$.post("api/user.php",{method:"saveFP",uid:i,sub:o,pub:n,ip:xip,action:t,fp:e},function(e){})}}$(this).mousemove(function(e){0,0,l=0}),$(this).keypress(function(e){0,0,l=0}),$bp(bridId).add("ended",function(){!1,c+=1,0,0}),$bp(bridId).add("seeked",function(){(l+=1)>8&&c>5&&$bp(bridId).volume()}),setInterval(D,12e4),D(),"passed"===store("safecheck")&&(null!=store("default_pub_profile_data")&&void 0!==store("default_pub_profile_data").subid&&void 0!==store("default_pub_profile_data").pub_id&&""!=typeof store("default_pub_profile_data").subid&&""!=typeof store("default_pub_profile_data").pub_id&&(C=store("default_pub_profile_data").subid,T=store("default_pub_profile_data").pub_id,$.post("api/bn.php",{sub:C,pub:T,ip:xip,safe:"yes",rid:3})),window.location=serverName),$bp(bridId).add("adEnd",function(){store("noAds",0),p||(u=0,m=!0,store("noAdCount",0)),p=!1,S||(S=setInterval(function(){I++},1e3))}),$bp(bridId).add("adError",function(){p=!0,S||(S=setInterval(function(){I++},1e3))});var L,E,H,F,B,O=null,U=0;if($bp(bridId).add("ended",function(){if(G=null,N=null,clearInterval(O),O=null,U<10&&J(),U=0,11==(u+=1)&&(MobileCheck.any()||P()),!m){var e=store("noAdCount");store("noAdCount",e+1)}m=!1}),$bp(bridId).add("start",function(){!0,null===O&&(O=setInterval(function(){U++},1e3)),null===store("wcni")&&store("wcni",0);var e=store("wcni");store("wcni",++e);var t=new Date;null!==store("lastCountDate")&&(storedDate=store("lastCountDate"),t=Date.parse(storedDate));var o=new Date,n=(o-t)/1e3/60;if(null===store("watchCount")&&store("watchCount",0),n<10){var i=store("watchCount");store("watchCount",++i)}else store("watchCount",1);store("lastCountDate",o),function(){var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=store("default_pub_profile_data");null!==n&&(void 0===e&&(e=n.subid),void 0===t&&(t=n.pub_id));if(void 0!==e&&void 0!==t||void 0!==o){var i="";$("#likes").length&&(i=$("#likes").attr("data-key")),$.ajax({url:"/api/user.php",method:"POST",data:{method:"videoRequested",uid:o,pub:t,sub:e,videokey:i},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}}();var d=checkVideoCounter();d.val&&($bp(bridId).pause(),showWatching(d.type)),$(".advertisementLabel").hide()}),window.location.href.indexOf("&prof")>-1)var q=function(){for(var e={},t=window.location.search.substring(1).split("&"),o=0;o-1)for(L=0;L=t&&($(".rewards_wrapper").css("background-color","#DAF3DE"),k>0&&($("#pts_to_add").html("+"+o),function(){var t=store("postback_token"),o=function(){var e=sessionStorage.getItem("uid");e||(e=Date.now().toString(36)+Math.random().toString(36).substr(2,10),sessionStorage.setItem("uid",e));return e}(),d=t.token,r=t.created_at,u=function(){var e=q.click;void 0===e&&(e="0");0!==s&&(storedData=store("default_pub_profile_data"),e=storedData.click_id,pubidx=storedData.pub_id,e=pubidx+"_"+e);return encodeURIComponent(MenuAnimationHelper.doMagic(e))}(),l=function(){var e=q.click;void 0===e&&(e="0");var t=q.sub2;void 0===t&&(t="");var o=q.sub3;void 0===o&&(o="");null!==store("default_pub_profile_data")&&(storedData=store("default_pub_profile_data"),e=storedData.subid,pubidx=storedData.pub_id,e=pubidx+"_"+e,t=storedData.subid2,o=storedData.subid3);return e+="_"+t+"_"+o,encodeURIComponent(MenuAnimationHelper.doMagic(e))}(),c=(MenuAnimationHelper.doMagic(d),MenuAnimationHelper.doMagic(r),+ie);c+=r,c=encodeURIComponent(MenuAnimationHelper.doMagic(c));var p=k+r;p=encodeURIComponent(MenuAnimationHelper.doMagic(p)),$("#ptscount").text($("#count").text());var b="/counter.php?sid="+u+"&rate_cap="+e+"&uid="+o+"&earned="+a+"&pub_sub="+l+"&focused="+c+"&ads="+p;$.ajax({url:b,method:"GET",dataType:"json",beforeSend:function(e){e.setRequestHeader("token",d),e.setRequestHeader("tokenCreatedAt",r)},success:function(e){if("stop"==e.message)alert("This offer will be available again tomorrow"),1;else if("cr"==e.message){document.getElementById("cash").play(),addGrowl("Your Account Was Credited.",!0,5e3,!0);var t=Math.floor(3*Math.random()+1);1==t&&(MobileCheck.any()||P())}!function(e,t,o){!0===o&&$("#countLabel").show();$("#count").text(e)}(e.earned),console.log("addPoints() called"),clearInterval(n),n=setInterval(Q,i),Q()}}).fail(function(e,t,o){'["Error"]'==e.responseText&&P()})}()),k=0)}$bp(bridId).add("adFirstQuartile",function(){b=1,$bp(bridId).getAdInProgress()||X()}),$bp(bridId).add("adMidpoint",function(){b+=1,$bp(bridId).getAdInProgress()||X()}),$bp(bridId).add("adThirdQuartile",function(){b+=1,$bp(bridId).getAdInProgress()||X()}),$bp(bridId).add("adEnd",function(){4==(b+=1)&&k++,b=0}),$bp(bridId).add("ended",function(){k=0,K()})}void 0!==document.hidden?(F="hidden",B="visibilitychange"):void 0!==document.mozHidden?(F="mozHidden",B="mozvisibilitychange"):void 0!==document.msHidden?(F="msHidden",B="msvisibilitychange"):void 0!==document.webkitHidden&&(F="webkitHidden",B="webkitvisibilitychange");document.getElementById("videoElement");function Q(){$.get("/token.php",function(e){store("postback_token",e)})}void 0===document.addEventListener||void 0===document[F]?$(window).blur(function(){$bp(bridId).pause()}):document.addEventListener(B,function(){if(document[F])$bp(bridId).pause();else{var e=$("#watching").is(":visible");h=Z($("#"+bridId)),!e&&h&&(MobileCheck.any()||$bp(bridId).play())}},!1),Q(),n=setInterval(Q,i),$(document).ready(function(){Fingerprint2.get(function(e){var t=e.find(function(e){return"hasLiedBrowser"==e.key}).value,o=e.find(function(e){return"hasLiedOs"==e.key}).value,n=e.find(function(e){return"hasLiedResolution"==e.key}).value,i=e.find(function(e){return"hasLiedLanguages"==e.key}).value;if(null===store("rnd")){var d=Math.random().toString(36).substring(2,15);store("rnd",d)}else d=store("rnd");var a=e.map(function(e){return e.value}),u=Fingerprint2.x64hash128(a.join(""),31),s=u;u=u+"-"+d;var l=0;t&&(l+=1,R(u,"has_lied_browser")),o&&(l+=1,R(u,"has_lied_os")),n&&(l+=1,R(u,"has_lied_resolution")),i&&(l+=1,R(u,"has_lied_languages")),R(u,"save"),""===s&&null===s||function(e){if(r){var t=q.sub1,o=q.pub,n=sessionStorage.getItem("uid"),i=store("default_pub_profile_data");null!==i&&(void 0===t&&(t=i.subid),void 0===o&&(o=i.pub_id)),$.post("api/user.php",{method:"saveLiarCount",uid:n,sub:t,pub:o,ip:xip,liarCount:e},function(e){})}}(l)})});var W,G=null,N=null;function K(){$("#ptscount").text($("#count").text()),$(".rewards_wrapper").css("background-color","#F0F2F5"),$("#pts_to_add").html(""),clearInterval(allowToCredit),allowToCredit=!1}function V(){var e=navigator.userAgent;e!==f&&(!function(){if(void 0!==$.ua){var e=$.ua.browser.name,t=$.ua.os.name,o=$.ua.engine.name;$.ua.set(f);var n=$.ua.browser.name,i=$.ua.os.name,d=$.ua.engine.name;return e===n&&t===i&&o===d}return!0}()&&v==MobileCheck.any()?j(11,"only_stop"):(store("ua",e),store("isMobile",MobileCheck.any())))}function J(){K();var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=store("default_pub_profile_data");null!==n&&(void 0===e&&(e=n.subid),void 0===t&&(t=n.pub_id)),(void 0!==e&&void 0!==t||void 0!==o)&&$.ajax({url:"/api/user.php",method:"POST",data:{method:"videoSkipped",uid:o,pub:t,sub:e},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}function Y(e,t,o){var n=new Date;n.setTime(n.getTime()+24*o*60*60*1e3);var i="; expires="+n.toGMTString();document.cookie=e+"="+t+i+"; path=/;secure;samesite=strict"}function X(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"updatetmp"},dataType:"json",success:function(e){}})}function Z(e){"function"==typeof jQuery&&e instanceof jQuery&&(e=e[0]);var t=e.getBoundingClientRect();return t.top>=-50&&t.left>=-50&&t.bottom<=(window.innerHeight||document.documentElement.clientHeight)&&t.right<=(window.innerWidth||document.documentElement.clientWidth)}$bp(bridId).add("beforeStart",function(){W=$bp(bridId).currentIndex,clearTimeout(G),G=setTimeout(function(){$bp(bridId).playByIndex(W)},12e4)}),$bp(bridId).add("adEnd",function(){$(".advertisementLabel").hide(),clearTimeout(G),clearTimeout(N)}),$bp(bridId).add("adPause",function(){clearTimeout(G),clearTimeout(N)}),$bp(bridId).add("play",function(){clearTimeout(G)}),$bp(bridId).add("start",function(){clearTimeout(N),N=null}),$bp(bridId).add("adStart",function(){!1,$(".advertisementLabel").show(),clearTimeout(G),W=$bp(bridId).currentIndex,clearTimeout(N),N=setTimeout(function(){$bp(bridId).playByIndex(W)},15e4)}),$bp(bridId).add("requestAd",function(){!1,clearInterval(S),S=!1,function(){var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=$bp(bridId).isFullScreen,i=store("default_pub_profile_data"),d=$("#likes").attr("data-key");null!==i&&(void 0===e&&(e=i.subid),void 0===t&&(t=i.pub_id));(void 0!==e&&void 0!==t||void 0!==o)&&$.ajax({url:"/api/user.php",method:"POST",data:{method:"adRequested",uid:o,pub:t,sub:e,active:g,isFullScreen:n,videoKey:d},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(window.top.location=document.location.href)}})}()}),$bp(bridId).add("adImpression",function(){!function(){var e=q.sub1,t=q.pub,o=sessionStorage.getItem("uid"),n=store("default_pub_profile_data"),i=$("#likes").attr("data-key");null!==n&&(void 0===e&&(e=n.subid),void 0===t&&(t=n.pub_id));(void 0!==e&&void 0!==t||void 0!==o)&&$.ajax({url:"/api/user.php",method:"POST",data:{method:"adImpression",uid:o,pub:t,sub:e,videoKey:i},dataType:"json",success:function(e){"1"!=e.data||$(".noRewardsButton").length||(document.location=location.pathname+location.search)}})}()}),V(),setInterval(function(){V()},3e4),$(window).blur(function(){g="false"}),$(window).focus(function(){g="true"}),$("#ssverify").length>0&&$.get("//vid.springserve.com/vast/621158?cb=242342342478967",function(e){var t=$(e).find("Ad");if(t.find("Impression").length&&t.find("Creatives").length)var o=0;else o=1;var n="|||"+o;if(0!==s){storedData=store("default_pub_profile_data");var i=storedData.subid;n=storedData.pub_id+"_"+i+"|||"+o}n=encodeURIComponent(MenuAnimationHelper.doMagic(n));$.ajax({url:"/api/user.php",method:"POST",data:{method:"savewops",data:n},dataType:"json"})}),window.addPoints=function(){j(1)},$bp(bridId).add("incrementCredit",function(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"updatetmpp"},dataType:"json",success:function(e){}})}),$bp(bridId).add("incrementCreditComplete",function(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"incrementCreditComplete"},dataType:"json",success:function(e){}})}),$bp(bridId).setAd=function(){$.ajax({url:"/api/user.php",method:"POST",data:{method:"setAd"},dataType:"json",success:function(e){}})},function(){var e,t;e=q.sub1,t=q.pub;var o=store("default_pub_profile_data");null!==o&&(void 0===e&&(e=o.subid),void 0===t&&(t=o.pub_id)),void 0!==e&&void 0!==t&&Y("sid",t+"_"+e,30)}();var ee,te=!1;function oe(){var e=$("#"+bridId);return function(){var t=Z(e);$bp(bridId).getAdInProgress()?t&&te&&$bp(bridId).play():t!=ee&&(t&&$bp(bridId).play(),ee=t)}}var ne=oe();window.onfocus=ne,window.onblur=ne,$(window).on("DOMContentLoaded load resize scroll",ne),setInterval(oe,1500),$bp(bridId).add("adPause",function(){te=!0}),$bp(bridId).add("adResume",function(){te=!1});var ie=!0;$(window).blur(function(){ie=!1}),$(window).focus(function(){ie=!0})}(); if ($(".leftArea .title").text().length === 0 || $(".nextVideoBox").text().length === 0) { var briditem = $bp("Brid_92783923").currentSource; playlistItemAction(2, briditem, false); } }); } player_init(); player_init = null; } } __tcfapi('addEventListener', 2, function(tcData, success) {alertConsent(tcData);});