/*! For license information please see wrapper.min.js.LICENSE.txt */
(()=>{var e,t,n={5001:e=>{"use strict";function t(e,t){t=t||{};this._head=0,this._tail=0,this._capacity=t.capacity,this._capacityMask=3,this._list=new Array(4),Array.isArray(e)&&this._fromArray(e)}t.prototype.peekAt=function(e){var t=e;if(t===(0|t)){var n=this.size();if(!(t>=n||t<-n))return t<0&&(t+=n),t=this._head+t&this._capacityMask,this._list[t]}},t.prototype.get=function(e){return this.peekAt(e)},t.prototype.peek=function(){if(this._head!==this._tail)return this._list[this._head]},t.prototype.peekFront=function(){return this.peek()},t.prototype.peekBack=function(){return this.peekAt(-1)},Object.defineProperty(t.prototype,"length",{get:function(){return this.size()}}),t.prototype.size=function(){return this._head===this._tail?0:this._head<this._tail?this._tail-this._head:this._capacityMask+1-(this._head-this._tail)},t.prototype.unshift=function(e){if(0===arguments.length)return this.size();var t=this._list.length;return this._head=this._head-1+t&this._capacityMask,this._list[this._head]=e,this._tail===this._head&&this._growArray(),this._capacity&&this.size()>this._capacity&&this.pop(),this._head<this._tail?this._tail-this._head:this._capacityMask+1-(this._head-this._tail)},t.prototype.shift=function(){var e=this._head;if(e!==this._tail){var t=this._list[e];return this._list[e]=void 0,this._head=e+1&this._capacityMask,e<2&&this._tail>1e4&&this._tail<=this._list.length>>>2&&this._shrinkArray(),t}},t.prototype.push=function(e){if(0===arguments.length)return this.size();var t=this._tail;return this._list[t]=e,this._tail=t+1&this._capacityMask,this._tail===this._head&&this._growArray(),this._capacity&&this.size()>this._capacity&&this.shift(),this._head<this._tail?this._tail-this._head:this._capacityMask+1-(this._head-this._tail)},t.prototype.pop=function(){var e=this._tail;if(e!==this._head){var t=this._list.length;this._tail=e-1+t&this._capacityMask;var n=this._list[this._tail];return this._list[this._tail]=void 0,this._head<2&&e>1e4&&e<=t>>>2&&this._shrinkArray(),n}},t.prototype.removeOne=function(e){var t=e;if(t===(0|t)&&this._head!==this._tail){var n=this.size(),i=this._list.length;if(!(t>=n||t<-n)){t<0&&(t+=n),t=this._head+t&this._capacityMask;var r,o=this._list[t];if(e<n/2){for(r=e;r>0;r--)this._list[t]=this._list[t=t-1+i&this._capacityMask];this._list[t]=void 0,this._head=this._head+1+i&this._capacityMask}else{for(r=n-1-e;r>0;r--)this._list[t]=this._list[t=t+1+i&this._capacityMask];this._list[t]=void 0,this._tail=this._tail-1+i&this._capacityMask}return o}}},t.prototype.remove=function(e,t){var n,i=e,r=t;if(i===(0|i)&&this._head!==this._tail){var o=this.size(),s=this._list.length;if(!(i>=o||i<-o||t<1)){if(i<0&&(i+=o),1===t||!t)return(n=new Array(1))[0]=this.removeOne(i),n;if(0===i&&i+t>=o)return n=this.toArray(),this.clear(),n;var a;for(i+t>o&&(t=o-i),n=new Array(t),a=0;a<t;a++)n[a]=this._list[this._head+i+a&this._capacityMask];if(i=this._head+i&this._capacityMask,e+t===o){for(this._tail=this._tail-t+s&this._capacityMask,a=t;a>0;a--)this._list[i=i+1+s&this._capacityMask]=void 0;return n}if(0===e){for(this._head=this._head+t+s&this._capacityMask,a=t-1;a>0;a--)this._list[i=i+1+s&this._capacityMask]=void 0;return n}if(i<o/2){for(this._head=this._head+e+t+s&this._capacityMask,a=e;a>0;a--)this.unshift(this._list[i=i-1+s&this._capacityMask]);for(i=this._head-1+s&this._capacityMask;r>0;)this._list[i=i-1+s&this._capacityMask]=void 0,r--;e<0&&(this._tail=i)}else{for(this._tail=i,i=i+t+s&this._capacityMask,a=o-(t+e);a>0;a--)this.push(this._list[i++]);for(i=this._tail;r>0;)this._list[i=i+1+s&this._capacityMask]=void 0,r--}return this._head<2&&this._tail>1e4&&this._tail<=s>>>2&&this._shrinkArray(),n}}},t.prototype.splice=function(e,t){var n=e;if(n===(0|n)){var i=this.size();if(n<0&&(n+=i),!(n>i)){if(arguments.length>2){var r,o,s,a=arguments.length,l=this._list.length,c=2;if(!i||n<i/2){for(o=new Array(n),r=0;r<n;r++)o[r]=this._list[this._head+r&this._capacityMask];for(0===t?(s=[],n>0&&(this._head=this._head+n+l&this._capacityMask)):(s=this.remove(n,t),this._head=this._head+n+l&this._capacityMask);a>c;)this.unshift(arguments[--a]);for(r=n;r>0;r--)this.unshift(o[r-1])}else{var d=(o=new Array(i-(n+t))).length;for(r=0;r<d;r++)o[r]=this._list[this._head+n+t+r&this._capacityMask];for(0===t?(s=[],n!=i&&(this._tail=this._head+n+l&this._capacityMask)):(s=this.remove(n,t),this._tail=this._tail-d+l&this._capacityMask);c<a;)this.push(arguments[c++]);for(r=0;r<d;r++)this.push(o[r])}return s}return this.remove(n,t)}}},t.prototype.clear=function(){this._head=0,this._tail=0},t.prototype.isEmpty=function(){return this._head===this._tail},t.prototype.toArray=function(){return this._copyArray(!1)},t.prototype._fromArray=function(e){for(var t=0;t<e.length;t++)this.push(e[t])},t.prototype._copyArray=function(e){var t,n=[],i=this._list,r=i.length;if(e||this._head>this._tail){for(t=this._head;t<r;t++)n.push(i[t]);for(t=0;t<this._tail;t++)n.push(i[t])}else for(t=this._head;t<this._tail;t++)n.push(i[t]);return n},t.prototype._growArray=function(){this._head&&(this._list=this._copyArray(!0),this._head=0),this._tail=this._list.length,this._list.length<<=1,this._capacityMask=this._capacityMask<<1|1},t.prototype._shrinkArray=function(){this._list.length>>>=1,this._capacityMask>>>=1},e.exports=t},6528:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>m,bZ:()=>y});var i=n(5595),r=n(907),o=n(3583),s=n(7194),a=n(5001),l=n.n(a),c=n(6039),d=Object.defineProperty,u=Object.getOwnPropertySymbols,p=Object.prototype.hasOwnProperty,h=Object.prototype.propertyIsEnumerable,g=(e,t,n)=>t in e?d(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,f=(e,t)=>{for(var n in t||(t={}))p.call(t,n)&&g(e,n,t[n]);if(u)for(var n of u(t))h.call(t,n)&&g(e,n,t[n]);return e};class m{constructor(e,t,n=window){this.webModel=e,this.pageSettings=t,this._window=n,this.registry={},this.absoluteRegistry={},this.relativeRegistry={},this.initRegistry(),this.absoluteRegistry=this.computeAbsoluteRegistry(),this.relativeRegistry=this.computeRelativeRegistry()}get all(){const e=this.getCurrentPath(),t=this.absoluteRegistry[e]||{},n=this.pageSettings.blocklist||{};var r;return!!(r=this._window.location.href,/[-a-z0-9~!$%^&*_=+}{\'?]+(\.[-a-z0-9~!$%^&*_=+}{\'?]+)*(@|%40)([a-z0-9_][-a-z0-9_]*(\.[-a-z0-9_]+)*\.(aero|arpa|biz|com|coop|edu|gov|info|int|mil|museum|name|net|org|pro|travel|mobi|[a-z][a-z])|([0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}\.[0-9]{1,3}))(:[0-9]{1,5})?/i.test(r)||(0,i.DY)("test","killswitch",this._window.location.search)||t.all||"1"===n.all||this.isAdunitBlocklistedByRelativeRegistry("all",e))}contains(e){const t=this.getCurrentPath(),n=this.absoluteRegistry[t]||{},i=this.pageSettings.blocklist||{},r=(o=e,{adhesion_desktop:"adhesion_desktop",adhesion_mobile:"adhesion_mobile",adhesion_tablet:"adhesion_tablet",all:"all",chicory:"chicory",content_btf:"content_desktop",content_desktop:"content_desktop",content_mobile:"content_mobile",feed_btf:"feed_btf",feed_mobile:"feed_mobile",in_image:"in_image",in_screen:"in_screen",interstitial_mobile:"interstitial_mobile",interstitial_desktop:"interstitial_desktop",leaderboard_atf:"leaderboard",leaderboard_btf:"leaderboard",leaderboard:"leaderboard",readmore:"readmore",recipe:"recipe",recipe_btf:"recipe",recipe_mobile:"recipe",sidebar_atf:"sidebar_atf",sidebar_btf:"sidebar_btf",zergnet:"zergnet"}[o]||o).toLowerCase();var o;const a=this.isAdunitBlocklistedByRelativeRegistry(r,t);return this.all||(0,s.P)(n[r])||(0,s.P)(i[r])||a}isBlockListed(e){const{adUnitId:t,target:n}=e;return this.checkOnPageBlockList(t,n)||this.contains(t)}computeAbsoluteRegistry(){const e={};for(const t in this.registry){const n=this.registry[t];n.starts_with||(e[t]=v(n))}return e}computeRelativeRegistry(){const e={};for(const t in this.registry){const n=this.registry[t];n.starts_with&&(e[t]=v(n))}return e}isAdunitBlocklistedByRelativeRegistry(e,t){return Object.keys(this.relativeRegistry).filter((e=>this.isChildPath(e,t))).reduce(((t,n)=>this.relativeRegistry[n][e]||t),!1)}initRegistry(){this.webModel.urlFilters.forEach((e=>this.registerSettingsToPath(e)))}registerSettingsToPath({path:e,settings:t}){const n=this.formatPath(e);this.registry[n]||(this.registry[n]={}),this.registry[n]=f(f({},this.registry[n]),t)}getCurrentPath(){return this.formatPath(this._window.location.pathname)}formatPath(e){const t=document.createElement("a");t.href=e;const n=t.pathname.replace(/\.[^/.]+$/,"").replace(/\/$/,"");return n.length?n:"/"}isChildPath(e,t){if("/"===e)return!0;const n=t.split("/");return e.split("/").every(((e,t)=>n[t]===e))}checkOnPageBlockList(e,t){function n(e){const t=Object.keys(e.dataset);return t.length>0&&t.some((e=>-1!==e.indexOf(o.Iw)||-1!==e.indexOf(o.K3)))}function i(e,t){const n=Array.from(e),i=n.filter(r.iT),s=n.filter(r.vm).pop(),a=s&&(0,r.W$)(s),l=i.map((e=>"1"===e.value&&((0,r.R_)(e,o.Nq)||(0,r.R_)(e,o.pO))));return!a&&l.some((e=>e===t||e===o.QN))}return!!t&&(t===document.body?function(t){let r=!1,o=!1,s=t.attributes;const a=new(l());let c=t;for(;c;){if(n(c)){s=c.attributes,o=!0;break}for(let e=0;e<c.children.length;e++)a.push(c.children[e]);c=a.shift()}return o&&(r=i(s,e)),r}(t):function(t){let r=!1,o=!1,s=t.attributes,a=t.parentElement;for(;a&&!o;)o=n(a),s=a.attributes,a=a.parentElement;return o&&(r=i(s,e)),r}(t))}}const b={Adhesion:{mobile:"adhesion_mobile",tablet:"adhesion_tablet",desktop:"adhesion_desktop"},Content:{mobile:"content_mobile",tablet:"content_mobile",desktop:"content_desktop"},Feed:{mobile:"feed_mobile",tablet:"feed_mobile",desktop:"feed_btf"},Interstitial:{mobile:"interstitial_mobile",tablet:"interstitial_mobile",desktop:"interstitial_desktop"},Leaderboard:{mobile:"leaderboard",tablet:"leaderboard",desktop:"leaderboard"},LeaderboardAtf:{mobile:"leaderboard",tablet:"leaderboard",desktop:"leaderboard"},LeaderboardBtf:{mobile:"leaderboard",tablet:"leaderboard",desktop:"leaderboard"},Recipe:{mobile:"recipe",tablet:"recipe",desktop:"recipe"},SidebarAtf:{mobile:"sidebar_atf",tablet:"sidebar_atf",desktop:"sidebar_atf"},SidebarBtf:{mobile:"sidebar_btf",tablet:"sidebar_btf",desktop:"sidebar_btf"},UniversalPlayer:{mobile:"universal_player_mobile",tablet:"universal_player_mobile",desktop:"universal_player_desktop"},Arrival:{mobile:"recipe",tablet:"recipe",desktop:"recipe"},Video:{mobile:null,tablet:null,desktop:null},Sidebar:{mobile:null,tablet:null,desktop:null},Comments:{mobile:"comments_mobile",tablet:"comments_mobile",desktop:"comments_btf"}};function y(e){return b[e][c.A.deviceType]}function v(e){const t={};return Object.keys(e).map((n=>{t[n.toLowerCase()]=e[n]})),t}},6921:(e,t,n)=>{"use strict";n.d(t,{Y:()=>c,q:()=>s});var i=n(4441),r=n(6643),o=n(5595),s=(e=>(e.yes="Y",e.no="N",e.notApplicable="-",e))(s||{});const a=(0,o.DY)("test","ccpa"),l=class{static init({cpa:e}){l.cpaStatus="1"===e?"1":"0",window.__uspapi=l.__uspapi,window.addEventListener("message",l.handlePostMessage);const t=l.cookie.value,n=t&&t[0]===l.VERSION.toString();n&&(l.explicitNoticeStatus=t[1],l.userOptOutStatus=t[2],l.lspaStatus=t[3]),n||"1"!==l.cpaStatus&&!a||this.cpaAppliesToUser(),n&&"0"===l.cpaStatus&&!a&&this.userHasCookieButNotInPolicyState()}static __uspapi(e,t,n){d({command:e,version:t})&&n(p(l.uspString),!0)}static cpaAppliesToUser(){l.userOptOutStatus="N",l.explicitNoticeStatus="N",l.lspaStatus="Y",l.cookie.set(l.uspString)}static userHasCookieButNotInPolicyState(){l.userOptOutStatus="-",l.explicitNoticeStatus="-",l.lspaStatus="-"}static userHasReceivedExplictNotice(){l.cpaAppliesToUser(),l.explicitNoticeStatus="Y",l.cookie.set(l.uspString)}static userHasOptedOut(){l.userHasReceivedExplictNotice(),l.userOptOutStatus="Y",l.cookie.set(l.uspString)}static handlePostMessage(e){let t;try{t=JSON.parse(e.data)}catch(e){}if(u(t)){const n=JSON.stringify(h(t,l.uspString));e.source.postMessage(n,e.source)}}static get uspString(){const{VERSION:e,explicitNoticeStatus:t,userOptOutStatus:n,lspaStatus:i}=l;return`${e}${t}${n}${i}`}};let c=l;c.VERSION=1,c.cpaStatus="0",c.explicitNoticeStatus="-",c.userOptOutStatus="-",c.lspaStatus="-",c.cookie=new i.V({name:"usprivacy",sameSite:r.D.lax});const d=({command:e,version:t})=>"getUSPData"===e&&t===c.VERSION,u=e=>!!e&&"getUSPData"===e.command&&e.version===c.VERSION&&e.callId,p=e=>({version:c.VERSION,uspString:e}),h=(e,t)=>({__uspapiReturn:{returnValue:t,callId:e.callId,success:!0}})},3583:(e,t,n)=>{"use strict";n.d(t,{Af:()=>y,Cf:()=>s,DY:()=>k,G2:()=>b,I7:()=>m,Iw:()=>h,JA:()=>x,K3:()=>g,LD:()=>P,Mg:()=>d,N3:()=>R,No:()=>_,Nq:()=>u,Pu:()=>w,Q0:()=>a,QK:()=>v,QN:()=>f,SE:()=>z,Tq:()=>O,U4:()=>D,WC:()=>N,Y5:()=>B,bZ:()=>c,cm:()=>C,eN:()=>S,hF:()=>j,hW:()=>M,n3:()=>r,n8:()=>I,nr:()=>E,ol:()=>T,or:()=>l,pO:()=>p,r5:()=>A,sg:()=>L,uU:()=>o});var i=n(5595);const r=40,o=728,s=768,a=(0,i.DY)("noRefresh","true")?0:28,l=3,c=2,d="data-slot-rendered",u="data-blacklist-",p="data-blocklist-",h="blacklist",g="blocklist",f="all",m=2.5,b=59,y=2,v=46,w=31536e3,_=1e3*w,M="US",A=!0,S=1,I=755,x=858,C="v1",E="4",P="out_2",T="1_native",k="stickyout_1",j="tam_1",N="tamout_1",O="1uktatc",L=.51,D="mv-adhesion-native",R="mv-ad-box",z="content_btf_wrapper",B="content_mobile_wrapper"},8250:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>A,wz:()=>T,Lq:()=>x,v6:()=>S});var i=n(6616),r=n(6039),o=n(1374),s=n(3528);const a=["DIV","ARTICLE","SECTION","MAIN","BLOCKQUOTE","CENTER","P","OL","UL","LI"];var l,c;(c=l||(l={})).defaultMinCharCount=60,c.splitAndReplaceElements=(e,t)=>{const n=[];for(const i of e){const{parentNode:e}=i;if(!T(i,/wprm/)){n.push(i);continue}const r=a.includes(i.tagName),o=!!t&&i.matches(t);if(!r||o){n.push(i);continue}if(i.innerHTML.match(/img/)){n.push(i);continue}let s=!1;if(i.children.length>0)for(const e of Array.from(i.children))"block"===getComputedStyle(e).display&&(s=!0,n.push(...c.splitAndReplaceElements([e],t)));if(s)continue;const l=c.splitParagraph(i);let d=!1;l.forEach((t=>{if(t===i)return n.push(i);null==e||e.insertBefore(t,i),d=!0})),d&&(null==e||e.removeChild(i),n.push(...l))}return n},c.splitParagraph=e=>{if("P"!==e.nodeName)return[e];let t="",n="",i=0;const r=e.innerHTML;if(!r||r.length<=c.defaultMinCharCount)return[e];const o=c.getSplitGenerator(r);let s=o.next();for(;!s.done;){const{charCount:e,sentence:r}=s.value;0!==e?(i+=e,n+=`${r}`,i>c.defaultMinCharCount&&(t+=`<p>${n}</p>`,i=0,n=""),s=o.next()):(n+=r,s=o.next(),i+=e)}n.trim()&&(t+=`<p>${n}</p>`);const a=document.createElement("template");return a.innerHTML=t,Array.from(a.content.children)},c.getSplitGenerator=function*(e){const t=u(e);let n="",i=!1;for(const e of t){const t=e.match(/"|“|”/g);t&&t.length%2!=0?n?(n+=e,i=!0):n+=e:n&&!i&&(n+=e);const r={};if(n&&i)r.sentence=n,r.charCount=n.length,n="",i=!1;else{if(n&&!i)continue;r.sentence=e,r.charCount=e.length}yield r}};const d=[/\w{3,}\.\s+/g,/!\s+/g,/\?\s+/g],u=e=>d.reduce(((e,t)=>p(e,t)),[e]),p=(e,t)=>e.map((e=>e.replace(t,"$&**").split("**"))).reduce(((e,t)=>[...e,...t]),[]);var h=n(5595),g=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));const f=250,m=["img","iframe","video","embed","object","form"],b=[".mv-unbustable",".wprm-recipe-container",".mv-create-card",".wp-block-mv-recipe","div[id^=om-][id$=-holder]","div#chicory_button"],y=["DIV","ARTICLE","SECTION","MAIN","BLOCKQUOTE","CENTER"],v=["OL","UL"],w=["relative","static"],_=(...e)=>s.ZP.custom(["dynamic"],...e),M=class{constructor(e){var t,n,i;this.slots=[],this.pixelsToNextSlot=0,this.slotCounter=0,this.startingParagraphNumber=0,this.leavesVisited=0,this.optimizeCLSMode=!1,this.minSlotsToInsert=0,this.iterations=0,this.insertQueue=[],this.slotFactory=e.slotFactory,this.slotClass=e.slotClass,this.uninsertableClassRegExp=e.uninsertableClassRegExp,this.uninsertableAfterSelector=e.uninsertableAfterSelector,this.uninsertableBeforeSelector=e.uninsertableBeforeSelector;const o=e.unbustableSelector?[e.unbustableSelector]:[];this.unbustableSelector=[...b,...o].join(", "),this.optimizeCLSMode=e.optimizeCLSMode,this.minSlotsToInsert=function(e){if(!e.minSlotsToInsert)return 0;if(e.slotLimit&&e.minSlotsToInsert>e.slotLimit)return 0;return e.minSlotsToInsert}(e);const s=r.A.isMobileOrTablet?.3:.25;this.divBuster=e.divBuster,this.listBuster=e.listBuster,this.belowContentEnabled=e.belowContentEnabled,this.displayContentAfterFlex=e.displayContentAfterFlex,this.bustableElements=this.getBustableElements(),this.target=e.target;const a=N(e.target),l=void 0!==e.endingParagraphNumber?a.length-e.endingParagraphNumber:a.length;var c;this.startingParagraphNumber=null!=(t=e.startingParagraphNumber)?t:0,this.startingDensity=e.density||s,this.slotLimit=!!((c=e.slotLimit)&&c>=4)&&c,this.elements=a.slice(this.startingParagraphNumber,l),this.stopSelector=e.stopSelector,this.minParagraphBuffer=null!=(n=e.minParagraphBuffer)?n:O(),this.contentRequireText=null!=(i=e.contentRequireText)?i:0,this.currentParagraphBuffer=this.minParagraphBuffer,this.optShortFormContent=e.optShortFormContent||!!(0,h.DY)("test","sfc")}static attachPrebidFacade(e){M.prebidFacade=e,M.prePrebidFacadeSlots.forEach((t=>{new o.ZP(t,e)})),M.prePrebidFacadeSlots=[]}createSlots(){return g(this,arguments,(function*(e=this.startingDensity,t=!0,n){this.iterations++,this.iterations>20&&(t=!1);const i=z(e);if(this.slotCounter=0,this.leavesVisited=0,this.pixelsToNextSlot=n||i,this.currentParagraphBuffer=this.minParagraphBuffer,yield this.loopSlots(this.elements,t,i),!t)return e;if(this.optShortFormContent&&L(this.slotCounter)){D(this.slotCounter)?this.spicySlotIncreaseMode():this.mildSlotIncreaseMode();const e=r.A.isMobileOrTablet?.3:.25,t=100;return this.pixelsToNextSlot=t,yield this.loopSlots(this.elements,!0,i),this.createSlots(e,!1,t)}const o=this.slotLimit&&this.slotCounter>this.slotLimit;if(this.slotLimit&&o){const e=i*(this.slotCounter/this.slotLimit),t=R(e);return this.createSlots(t)}if(this.minSlotsToInsert>this.slotCounter){const t=e*1.1;return _("Minimum slot insertation not reached. Increasing density!"),this.createSlots(t)}return _("No Slot Increase Mode applicable to this page"),this.createSlots(e,!1)}))}spicySlotIncreaseMode(){this.mildSlotIncreaseMode(),_("And Spicy Slot Increase Mode"),l.splitAndReplaceElements(this.elements,this.unbustableSelector),this.elements=N(this.target),this.startingParagraphNumber=0,this.pixelsToNextSlot=100}mildSlotIncreaseMode(){_("Mild Slot Increase Mode"),this.divBuster=!0,this.listBuster=!0,this.bustableElements=this.getBustableElements(),this.slotLimit=!1,this.minParagraphBuffer=O()-1,this.contentRequireText=i.$.anywhere}loopSlots(e,t,n){return g(this,null,(function*(){const i=(e,t,n)=>{for(let r=0;r<e.length;r++){const o=e[r],a=e[r+1];if(!o||this.stopSelector&&o.matches(this.stopSelector))break;const l=Array.from(o.children),c=window.getComputedStyle(o);if(this.doesBustinMakeMeFeelGood(o,n,c)){i(l,t,n);continue}const d="absolute"!==c.position?E(o):0;this.pixelsToNextSlot-=d,P(o,d)&&(this.currentParagraphBuffer+=1,this.leavesVisited+=1,this.divBuster&&!t&&s.ZP.debug("Buster Insert Point: ",this.leavesVisited,o));const u=j(o,a,this.contentRequireText),p=this.listBuster&&"LI"===o.tagName,h=o.getBoundingClientRect().bottom>document.documentElement.clientHeight,g=!this.optimizeCLSMode||h,f=T(o,this.uninsertableClassRegExp)&&k(o,this.uninsertableAfterSelector)&&(!a||k(a,this.uninsertableBeforeSelector))&&(this.leavesVisited>=this.startingParagraphNumber||!this.divBuster)&&this.pixelsToNextSlot<=0&&(x(o)||this.displayContentAfterFlex&&C(o)||p)&&this.currentParagraphBuffer>=this.minParagraphBuffer&&u&&g;_(o,"height",d,"hasRegExpAcceptableClasses",T(o,this.uninsertableClassRegExp),"hasAfterSelectorAcceptableClasses",k(o,this.uninsertableAfterSelector),"hasBeforeSelectorAcceptableClasses",!a||k(a,this.uninsertableBeforeSelector),"not sure",this.leavesVisited>=this.startingParagraphNumber||!this.divBuster,"below pixelsToNextSlot",this.pixelsToNextSlot<=0,"pixelsToNextSlot",this.pixelsToNextSlot,"is block or insertable element",x(o)||p,"above paragraph buffer",this.currentParagraphBuffer>=this.minParagraphBuffer,"satisfiesViewportRule",g,"satisifies placement rules",u,"meetsAllCriteria",f),f&&(this.slotCounter+=1,this.currentParagraphBuffer=0,this.pixelsToNextSlot=Math.max(this.pixelsToNextSlot+n,200),this.insertQueue.push({element:o,position:p?"beforeend":"afterend"}))}};if(t)this.insertQueue=[],i(e,t,n);else{const e=this.insertQueue[this.insertQueue.length-1];yield Promise.all(this.insertQueue.map((t=>g(this,null,(function*(){if(!this.divBuster&&!this.listBuster||!this.belowContentEnabled||t!==e)return M.insertSlot(t.element,this.slotClass,this.slotFactory,t.position)})))))}}))}doesBustinMakeMeFeelGood(e,t,n){if(!this.divBuster&&!this.listBuster&&!e.classList.contains("grow-allow-content-ads"))return!1;let i=!1;const r=e.parentElement,o=Array.from(e.children),s=n||window.getComputedStyle(e),a=this.bustableElements.includes(e.tagName),l=w.includes(s.position),c=o.length>0,d=r&&r.offsetWidth||document.body.offsetWidth,u=e.offsetWidth/d>.8||e.offsetWidth>=720,p=!this.unbustableSelector||!e.matches(this.unbustableSelector);let h=c&&a&&u&&l&&p&&(x(e)||"flex"===s.display);return h&&(i=this.pixelsToNextSlot+t<E(e),h=h&&i),_("elementTagIsBustable: ",a,"elementIsBlock",x(e)||"flex"===s.display,"elementPositionIsGood",l,"elementHasChildren",c,"elementHasEnoughHeightForAd",i,"elementIsWideEnough",u,e.offsetWidth,r&&r.offsetWidth,"pixelsToNextSlot",this.pixelsToNextSlot,t,"height",E(e),h,e.tagName,e),h}getBustableElements(){let e=[];return this.divBuster&&(e=e.concat(y)),this.listBuster&&(e=e.concat(v)),this.bustableElements=e,e}static insertSlot(e,t,n,i="afterend",r=!1){return g(this,null,(function*(){const s={type:t,selector:e,insertPosition:i,dynamic:!0,fromHint:r},a=yield n.new(s);return a?(a.lazy&&(M.prebidFacade?new o.ZP(a,M.prebidFacade):M.prePrebidFacadeSlots.push(a)),a):null}))}};let A=M;function S(e){return!!e&&!!e.textContent&&e.textContent.length>=9}function I(e){return-1!==m.indexOf(e.nodeName.toLowerCase())?e:e.querySelector(m.join())}function x(e){return"block"===window.getComputedStyle(e).display&&!e.nodeName.match(/H[1-9]/)||"BR"===e.nodeName}function C(e){return"flex"===window.getComputedStyle(e).display}function E(e){let t=0;if(e instanceof HTMLElement){t=e.offsetHeight;const i=I(e);!i||(!(n=i).getAttribute("data-lazy-src")&&"image"!==n.getAttribute("data-lazy-type")||n.getAttribute("src")&&1!==n.offsetHeight)&&(0!==n.offsetHeight||"none"===n.style.display&&null===n.getAttribute("srcset"))||(t+=function(e,t){const n=e.parentNode,i=parseFloat(e.getAttribute("height")||"0"),r=parseFloat(e.getAttribute("width")||"1"),o=!!e.getAttribute("src"),s=i/r||.75,a=e.offsetHeight>100,l=o&&a?e.offsetWidth:0,c=t&&t.offsetWidth,d=n&&n.offsetWidth;return(l||c||d)*s||0}(i,e))}else e instanceof SVGElement&&(t=e.clientHeight);var n;return"none"===e.style.display&&(t=0),t}function P(e,t){return!e.querySelector(".adunit")&&(I(e)||S(e))&&(t||E(e))>0}A.prePrebidFacadeSlots=[];const T=(e,t)=>!t||!Array.from(e.classList).some((e=>t.test(e))),k=(e,t)=>!t||!e.matches(t);function j(e,t,n){let r=!0;const o=I(e);return n===i.$.onlyAfterTextParagraphs&&(r=!o&&S(e)),n===i.$.onlyBetweenTextParagraphs&&(r=!o&&S(e)&&S(t)&&!I(t)),r}function N(e){let t=e&&e.children;for(;t&&1===t.length&&t[0].children&&t[0].children.length>0;)t=t[0].children;return t?Array.from(t):[]}const O=(e=r.A.isMobileOrTablet)=>2,L=e=>e<((e=r.A.isMobileOrTablet)=>e?6:3)(),D=(e,t=r.A.isMobileOrTablet)=>t&&e<4||!t&&e<2,R=e=>f/(e+f),z=e=>parseInt(f/e-f,10)},9:(e,t,n)=>{"use strict";n.d(t,{Z9:()=>u});var i=Object.defineProperty,r=Object.getOwnPropertySymbols,o=Object.prototype.hasOwnProperty,s=Object.prototype.propertyIsEnumerable,a=(e,t,n)=>t in e?i(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,l=(e,t)=>{for(var n in t||(t={}))o.call(t,n)&&a(e,n,t[n]);if(r)for(var n of r(t))s.call(t,n)&&a(e,n,t[n]);return e};const c=Object.freeze({adXNative:"adXNative",adXStandard:"adXStandard"}),d=Object.freeze({prebidStandard:"prebidStandard",inBannerNative:"inBannerNative",prebidNative:"prebidNative"}),u=Object.freeze(l(l({},c),d))},2845:(e,t,n)=>{"use strict";n.d(t,{L4:()=>s,SL:()=>o,nf:()=>r,tO:()=>i});var i=(e=>(e.google="google",e.gumgum="gumgum",e.indexExchange="indexExchange",e.pubmatic="pubmatic",e.triplelift="triplelift",e.uam="amazon",e.S2S="S2S",e))(i||{}),r=(e=>(e.pulsepoint_s2s="pulsepoint_s2s",e.districtm_s2s="districtm_s2s",e.sovrn_s2s="sovrn_s2s",e.appnexus_s2s="appnexus_s2s",e.openx_s2s="openx_s2s",e.rubicon_s2s="rubicon_s2s",e.emx_s2s="brealtime_s2s",e.indexExchange_s2s="indexExchange_s2s",e.yieldmo_s2s="yieldmo_s2s",e.nativo_s2s="nativo_s2s",e))(r||{}),o=(e=>(e.uam="amazon",e.gumgum="gumgum",e.indexExchange="indexExchange",e.pubmatic="pubmatic",e))(o||{}),s=(e=>(e.uam="amazon",e.indexExchange="indexExchange",e.pubmatic="pubmatic",e.triplelift="triplelift",e))(s||{})},3127:(e,t,n)=>{"use strict";n.d(t,{l:()=>i});var i=(e=>(e.velocityCheck="velocityCheck",e.version="version",e.contentMobileOffsetMultiplier="content_mobile offset multiplier",e.contentBtfOffsetMultiplier="content_btf offset multiplier",e.contentMobileTimeout="Content Mobile Timeout",e.s2s="Prebid Server-to-Server",e.s2sBidders="Prebid S2S Bidders",e.s2sBeta="s2sBeta",e.recipeOffset="Recipe Offset Multiplier",e.feedBtfOffsetMultiplier="feed_btf Offset Multiplier",e.feedMobileOffsetMultiplier="feed_mobile Offset Multiplier",e.feedMobileTimeout="Feed Mobile Timeout",e))(i||{})},4222:(e,t,n)=>{"use strict";n.d(t,{w:()=>i});var i=(e=>(e.placement="placement",e.comscore="comscore",e.googletag="gpt",e.growFaves="growFaves",e.pubnation="pubnation",e.gumgum="gumgum",e.videoPlayer="videoPlayer",e.nonLazyRequestsLoaded="nonLazyRequestsLoaded",e.zergnet_id="zergnet_id",e.zergnet_traffic_id="zergnet_traffic_id",e.p_and_g_pixel="p_and_g_pixel",e.ima="ima",e))(i||{})},6643:(e,t,n)=>{"use strict";n.d(t,{D:()=>i});var i=(e=>(e.strict="strict",e.lax="lax",e.none="none",e))(i||{})},6616:(e,t,n)=>{"use strict";n.d(t,{$:()=>i});var i=(e=>(e[e.anywhere=0]="anywhere",e[e.onlyAfterTextParagraphs=1]="onlyAfterTextParagraphs",e[e.onlyBetweenTextParagraphs=2]="onlyBetweenTextParagraphs",e))(i||{})},5914:(e,t,n)=>{"use strict";n.d(t,{y:()=>i});var i=(e=>(e.AL="AL",e.AK="AK",e.AS="AS",e.AZ="AZ",e.AR="AR",e.CA="CA",e.CO="CO",e.CT="CT",e.DE="DE",e.DC="DC",e.FM="FM",e.FL="FL",e.GA="GA",e.GU="GU",e.HI="HI",e.ID="ID",e.IL="IL",e.IN="IN",e.IA="IA",e.KS="KS",e.KY="KY",e.LA="LA",e.ME="ME",e.MH="MH",e.MD="MD",e.MA="MA",e.MI="MI",e.MN="MN",e.MS="MS",e.MO="MO",e.MT="MT",e.NE="NE",e.NV="NV",e.NH="NH",e.NJ="NJ",e.NM="NM",e.NY="NY",e.NC="NC",e.ND="ND",e.MP="MP",e.OH="OH",e.OK="OK",e.OR="OR",e.PW="PW",e.PA="PA",e.PR="PR",e.RI="RI",e.SC="SC",e.SD="SD",e.TN="TN",e.TX="TX",e.UT="UT",e.VT="VT",e.VI="VI",e.VA="VA",e.WA="WA",e.WV="WV",e.WI="WI",e.WY="WY",e))(i||{})},2321:(e,t,n)=>{"use strict";n.d(t,{j:()=>o,Z:()=>a});var i=n(3194),r=n(2131);var o=(e=>(e.impressionViewable="impressionViewable",e.slotVisibilityChanged="slotVisibilityChanged",e.slotRenderEnded="slotRenderEnded",e.slotWrapperRenderEnded="slotWrapperRenderEnded",e.slotBidRequested="slotBidRequested",e.bidResponse="bidResponse",e.bidWon="bidWon",e.auctionEnd="auctionEnd",e.bidRequested="bidRequested",e.bidReady="bidReady",e.bidTimeout="bidTimeout",e.timeOnSite="timeOnSite",e.initLauncher="initLauncher",e.outstreamAdError="outstreamAdError",e.registerRefreshable="registerRefreshable",e.refreshTimeReached="refreshTimeReached",e.slotRefreshed="slotRefreshed",e.shortCircuitRefresh="shortCircuitRefresh",e.resetRefreshable="resetRefreshable",e.heavyAdRemoved="heavyAdRemoved",e.coreVital="coreVital",e.sequenceError="sequenceError",e.lineItemFailure="lineItemFailure",e))(o||{});class s extends i.p{constructor(e){super(),this.events=o,e.registerGlobalEvents&&function(){try{const e=new ReportingObserver(((e,t)=>{e.forEach((e=>a.trigger(a.events.heavyAdRemoved,e)))}),{buffered:!0});window.addEventListener("pagehide",(t=>{e.takeRecords().forEach((e=>a.trigger(a.events.heavyAdRemoved,e)))}))}catch(e){}try{(0,r.kz)((e=>a.trigger(a.events.coreVital,e)))}catch(e){}try{(0,r.Tx)((e=>a.trigger(a.events.coreVital,e)))}catch(e){}try{(0,r.Tb)((e=>a.trigger(a.events.coreVital,e)))}catch(e){}}()}on(e,t){return super.on(e,t)}trigger(e,...t){return super.trigger(e,...t)}}const a=new s({registerGlobalEvents:!0})},9238:(e,t,n)=>{"use strict";n.d(t,{Y:()=>c});var i=n(2321),r=n(2200);const o="[class*=grow-exclusive-content-widget]",s="growExclusive",a=`\n  body ${o} .adunitwrapper {\n    visibility: hidden;\n    display: none;\n  }\n  body ${o} mv-ad-reporter {\n    visibility: hidden;\n    display: none;\n  }\n`,l=class{static slotIsBlocked(e){return l.blockEnabled&&l.blockedAdUnits.has(e)}static userLoggedIn(){l.blockEnabled=!1;const e=document.querySelector("#growExclusive");e&&e.remove()}constructor(){l.blockEnabled=!0,(0,r.hm)(a,s),i.Z.on(i.Z.events.slotWrapperRenderEnded,(e=>{e.wrapper.matches(`${o} div`)&&l.blockedAdUnits.add(e)}))}};let c=l;c.blockedAdUnits=new Set,c.blockEnabled=!1},9909:(e,t,n)=>{"use strict";n.d(t,{Z:()=>h});var i=n(5671),r=n(5595),o=n(4222),s=n(3528);const a=()=>{return e=void 0,t=null,i=function*(){if(!window.uuid){const{v5:e}=yield n.e(2063).then(n.bind(n,1614));window.uuid={v5:e}}},new Promise(((n,r)=>{var o=e=>{try{a(i.next(e))}catch(e){r(e)}},s=e=>{try{a(i.throw(e))}catch(e){r(e)}},a=e=>e.done?n(e.value):Promise.resolve(e.value).then(o,s);a((i=i.apply(e,t)).next())}));var e,t,i};var l=n(9238),c=n(2183),d=(e=>(e.notEnabled="1",e.enabledNotLoaded="2",e.loadedAndResponsible="3",e.loadedNotResponsible="4",e))(d||{});const u="https://faves.grow.me",p=class{constructor(e){let t=`${u}/main.js`;const n=(0,r.Ph)("growFavesVersion"),c=(0,r.Ph)("growFavesSiteId");n&&(t=`${u}/main.${n}.js`),c||e.growFavesEnabled&&e.growSiteID?(new l.Y,p.growIsLoading=!0,p.state=d.enabledNotLoaded,this.setUpGrowStub(),p.growHasLoaded=new Promise(((n,r)=>{i(t,o.w.growFaves,{before:function(t,n){n.setAttribute("data-grow-faves-site-id",c||e.growSiteID)},success(){window.growMe&&window.growMe((()=>{window.growMe&&(window.growMe.on("loaded",(({source:e})=>{e?(p.source=e,p.state=d.loadedAndResponsible):p.state=d.loadedNotResponsible,n()})),window.growMe.on("authStatusChanged",(({isLoggedIn:e,readerId:t,gid:n})=>{p.gid=n&&n.toString()||"0",p.hasLoggedInUser=e,e&&l.Y.userLoggedIn(),setTimeout((()=>window.$adManagementConfig.growId=t),500),e&&a(),window.pbjs&&window.pbjs.que.push((()=>{window.pbjs.refreshUserIds()}))})),window.growMe.on("uid2AdvertisingTokenChanged",(({advertisingToken:e})=>window.$adManagementConfig.uid2=e)),window.growMe.on("id5IdChanged",(({connectId:e})=>{window.$adManagementConfig.connectId=null!=e?e:""})),window.growMe.on("publinkIdChanged",(({publink:e})=>{window.$adManagementConfig.publinkId=e})))}))},error(e){r(e)}}),setTimeout((()=>{s.ZP.debug("Grow.me load timed out."),r("Grow Timeout (4000 ms) Exceeded.")}),4e3)})).catch((e=>s.ZP.debug(e)&&void 0))):(p.growIsLoading=!1,p.growHasLoaded=Promise.reject("Grow is not supposed to load.").catch((e=>s.ZP.debug(e)&&void 0)),s.ZP.debug("ERROR: both ?growFavesAccountId and ?growFavesSiteId must be specified to load GrowFaves"))}setUpGrowStub(){if(window.growMe)return;const e=e=>{var t;return null==(t=window.growMe)?void 0:t._.push(e)};e._=[],window.growMe=e}static willGrowLoad(){const e=window.$adManagementConfig.web.model;return!!(0,r.Ph)("growFavesSiteId")||!(!e.growFavesEnabled||!e.growSiteID)}};let h=p;h.hasLoggedInUser=!1,h.gid=c.V_.noAuth,h.state=d.notEnabled,h.carouselSelector="[class^='MiniCarousel']",h.rootSelector="div#grow-me-root"},3580:(e,t,n)=>{"use strict";function i(e){return window.pageYOffset+e.getBoundingClientRect().top}n.d(t,{Z:()=>i})},2200:(e,t,n)=>{"use strict";n.d(t,{AE:()=>c,Cx:()=>l,IV:()=>a,Od:()=>s,cn:()=>o,hm:()=>r,i_:()=>u});var i=n(3580);function r(e,t){!function(e,t,n){const i=document.createElement("style");i.type="text/css",n&&i.setAttribute("id",n),i.styleSheet?i.styleSheet.cssText=t:i.appendChild(document.createTextNode(t));e.appendChild(i)}(document.head||document.getElementsByTagName("head")[0],e,t)}const o=(e,t)=>{null!==e&&(e.classList?e.classList.add(t):e.className+=` ${t}`)},s=e=>{null!==e&&null!==e.parentNode&&e.parentNode.removeChild(e)},a=(e,t)=>{null!==e&&(e.classList?e.classList.remove(t):e.className=e.className.replace(new RegExp(`(^|\\b)${t.split(" ").join("|")}(\\b|$)`,"gi")," "))};function l(e,t){return(0,i.Z)(e)<(0,i.Z)(t)}const c=e=>{"loading"!==document.readyState?e():document.addEventListener?document.addEventListener("DOMContentLoaded",e):document.attachEvent("onreadystatechange",(()=>{"loading"!==document.readyState&&e()}))},d="mv-size";function u(e,t){!function(e,t){Array.from(t.classList).forEach((n=>{n.match(new RegExp(e,"g"))&&t.classList.remove(n)}))}(d,t);const n=`mv-size-${e.size[0]}x${e.size[1]}`;t.classList.add(n)}},7194:(e,t,n)=>{"use strict";function i(e){return-1!==["1","true",!0,1].indexOf(e)}n.d(t,{P:()=>i})},6039:(e,t,n)=>{"use strict";n.d(t,{A:()=>r});const i=window.$adManagementConfig.bowser.parse(window.navigator.userAgent);class r{static get isMobile(){return"mobile"===i.platform.type}static get isTablet(){return"tablet"===i.platform.type}static get isMobileOrTablet(){return"mobile"===i.platform.type||"tablet"===i.platform.type}static get isDesktop(){return!this.isMobileOrTablet}static get isAndroid(){return"Android"===i.os.name}static get isIOS(){return"iOS"===i.os.name}static get isBot(){return"bot"===i.platform.type}static get os(){return i.os.name||""}static get osversion(){return i.os.version}static get browser(){return i.browser.name||""}static get supportsScrollAnchor(){return void 0!==window.document.body.style.overflowAnchor}static get deviceType(){return this.isTablet?"tablet":this.isMobile?"mobile":"desktop"}}},6185:(e,t,n)=>{"use strict";n.d(t,{K:()=>r});var i=n(6189);class r{constructor(e){this.allExperiments=e}activate(e){const t=this.allExperiments.filter((t=>t&&t.flag===e));if(!t.length)return null;let n;for(let e=0;e<t.length;e++)if(t[e].default&&!0===t[e].default){n=t[e];break}if(!n)throw Error(`No default experiment provided for ${e}`);const r=t.reduce(((e,t)=>t&&!t.default&&t.percent+e||e),0);let o=Math.max(100,r)*i.Vl;const s=(0,i.tr)(o);for(const e of t)if(!e.default&&(o-=e.percent*i.Vl,s>o)){n=e;break}const a=/random\((\d+.?\d*),\s*(\d+.?\d*),?\s*(\d+)\)/.exec(n.value);if(a){return function(e,t,n){const i=Math.random()*(t-e)+e,r=Math.pow(10,n);return Math.floor(i*r)/r}(parseFloat(a[1]),parseFloat(a[2]),parseInt(a[3],10))}return n.value}}},3528:(e,t,n)=>{"use strict";n.d(t,{Yd:()=>o,ZP:()=>s,in:()=>r});var i=n(5595),r=(e=>(e.silent="silent",e.debug="debug",e))(r||{});class o{constructor(e){this.logLevel=e,this.debug=(...e)=>this.custom("debug",...e)}custom(e,...t){return this.isCurrentLogLevel(e)&&window.console.log(...t),this}isCurrentLogLevel(e){return this.logLevel===e||Array.isArray(e)&&-1!==e.indexOf(this.logLevel)}}const s=new o((0,i.Ph)("loglevel",window.location.search)||"silent")},5662:(e,t,n)=>{"use strict";n.d(t,{Y:()=>o,c:()=>a});class i{constructor(e){this.observerClass=e,this.instances={},this.callbacks={},this.fireCallbacks=e=>(t,n)=>{this.callbacks[e].forEach((e=>e(t,n)))}}onChange(e,t,n){const i=JSON.stringify(t),r=this.instances[i]=this.instances[i]||new this.observerClass(this.fireCallbacks(i),t);return this.callbacks[i]=this.callbacks[i]||[],this.callbacks[i].push(e),n&&this.observe(n,t),r}observe(e,t){const n=JSON.stringify(t),i=this.instances[n]=this.instances[n]||new this.observerClass(this.fireCallbacks(n),t);return i.observe(e,t),i}disconnect(e,t){const n=JSON.stringify(t),i=this.instances[n]=this.instances[n]||new this.observerClass(this.fireCallbacks(n),t);return i.disconnect(e,t),i}}let r;const o=()=>r=r||new i(MutationObserver);let s;const a=()=>s=s||new i(IntersectionObserver)},1577:(e,t,n)=>{"use strict";n.d(t,{X:()=>r});const i=class{static init(){i.currentPosition=window.pageYOffset,i.delta=0,i.lastRequestTime=performance.now(),i.eventListener=setInterval(i.calcDelta.bind(i),100)}static calcDelta(){requestAnimationFrame((()=>{i.calcDeltaHelper()}))}static calcDeltaHelper(){const e=performance.now(),t=e-i.lastRequestTime;if(t<25)return;const n=window.pageYOffset;i.delta=Math.abs((i.currentPosition-n)/(t/100)),i.currentPosition=n,i.lastRequestTime=e}};let r=i;r.currentPosition=0,r.delta=0},2907:(e,t,n)=>{"use strict";var i;n.d(t,{o:()=>i}),(e=>{e.parse=function(e){for(var n=t,i=n.parser[n.strictMode?"strict":"loose"].exec(e)||"strict",r={},o=14;o--;)r[n.key[o]]=i[o]||"";return r[n.q.name]={},r[n.key[12]].replace(n.q.parser,(function(e,t,i){t&&(r[n.q.name][t]=i)})),r};const t={strictMode:!1,key:["source","protocol","authority","userInfo","user","password","host","port","relative","path","directory","file","query","anchor"],q:{name:"queryKey",parser:/(?:^|&)([^&=]*)=?([^&]*)/g},parser:{strict:/^(?:([^:\/?#]+):)?(?:\/\/((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?))?((((?:[^?#\/]*\/)*)([^?#]*))(?:\?([^#]*))?(?:#(.*))?)/,loose:/^(?:(?![^:@]+:[^:@\/]*@)([^:\/?#.]+):)?(?:\/\/)?((?:(([^:@]*)(?::([^:@]*))?)?@)?([^:\/?#]*)(?::(\d*))?)(((\/(?:[^?#](?![^?#\/]*\.[^?#\/.]+(?:[?#]|$)))*\/?)?([^?#\/]*))(?:\?([^#]*))?(?:#(.*))?)/}};e.getParam=function(e){for(var t={},n=(e||window.location.search.substring(1)).split("&"),i=0;i<n.length;i++){var r=n[i].split("=");if(void 0===t[r[0]])t[r[0]]=r[1];else if("string"==typeof t[r[0]]){var o=[t[r[0]],r[1]];t[r[0]]=o}else t[r[0]].push(r[1])}return t},e.getHost=function(e){return this.parse(e).host.replace("www.","")}})(i||(i={}))},2658:(e,t,n)=>{"use strict";n.d(t,{s:()=>d,t:()=>u});var i=Object.defineProperty,r=Object.defineProperties,o=Object.getOwnPropertyDescriptors,s=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,l=Object.prototype.propertyIsEnumerable,c=(e,t,n)=>t in e?i(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n;const d=e=>e[Math.floor(Math.random()*e.length)],u=e=>{const t=e.reduce(((e,t)=>{return n=((e,t)=>{for(var n in t||(t={}))a.call(t,n)&&c(e,n,t[n]);if(s)for(var n of s(t))l.call(t,n)&&c(e,n,t[n]);return e})({},e),r(n,o({[t]:!0}));var n}),{});return Object.keys(t)}},4441:(e,t,n)=>{"use strict";n.d(t,{V:()=>u});var i=n(6808),r=n(6643),o=Object.defineProperty,s=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,l=Object.prototype.propertyIsEnumerable,c=(e,t,n)=>t in e?o(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,d=(e,t)=>{for(var n in t||(t={}))a.call(t,n)&&c(e,n,t[n]);if(s)for(var n of s(t))l.call(t,n)&&c(e,n,t[n]);return e};class u{constructor({name:e,sameSite:t,maxAge:n}){this.name=e,this.sameSite=t||r.D.strict,this.maxAge=n}set(e,t={}){const n={sameSite:this.sameSite};this.maxAge&&(t["max-age"]=String(this.maxAge)),i.set(this.name,e,d(d({},n),t))}get value(){const e=i.get(this.name)||"";try{return JSON.parse(e)}catch(t){return e}}}},9225:(e,t,n)=>{"use strict";function i(e){let t,n=e;return(...e)=>(n&&(t=n(...e),n=null),t)}n.d(t,{r:()=>i})},5595:(e,t,n)=>{"use strict";function i(e,t=window.location.search){return o(t)[e]}function r(e,t,n=window.location.search){const i=o(n)[e];return-1!==(Array.isArray(i)?i:[i]).indexOf(t)}function o(e){return e?e.replace(/^\?/,"").split("&").reduce(((e,t)=>{let n=t.indexOf("=");n=-1===n?t.length:n;let i=t.slice(0,n);const r=decodeURIComponent(t.slice(n+1));return/\[\]$/.test(i)?(i=i.replace("[]",""),e[i]=e[i]||[],e[i].push(r)):e[i]=r||"",e}),{}):{}}function s(e){return Object.keys(e).map((t=>Array.isArray(e[t])?e[t].map((e=>`${t}[]=${e}`)).join("&"):`${t}=${e[t]}`)).join("&")}n.d(t,{DY:()=>r,Ph:()=>i,nB:()=>s})},6497:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});var i=n(6497);const r={fetch:function(e,t="GET",n=null,i){return new Promise(((r,o)=>{const s=new XMLHttpRequest;s.onloadend=function(){try{s.readyState===XMLHttpRequest.DONE&&200===s.status||204===s.status?r(s):o(s)}catch(e){o(e)}},s.open(t,e),"function"==typeof i&&i(s),s.send(n)}))},fetchJson:function(e,t="GET",n=null,r){return o=this,s=null,a=function*(){return i.Z.fetch(e,t,n,r).then((e=>JSON.parse(e.responseText)))},new Promise(((e,t)=>{var n=e=>{try{r(a.next(e))}catch(e){t(e)}},i=e=>{try{r(a.throw(e))}catch(e){t(e)}},r=t=>t.done?e(t.value):Promise.resolve(t.value).then(n,i);r((a=a.apply(o,s)).next())}));var o,s,a}}},6091:(e,t,n)=>{"use strict";n.d(t,{m:()=>o,t:()=>s});var i=n(3692),r=n(6189);function o(e){return i(e).map((function(e){(this.circular||-1!==[null,void 0].indexOf(e))&&this.remove()}))}const s=e=>{const t=Object.keys(e),n=t.length-1;return t[(0,r.Iy)(0,n)]}},3194:(e,t,n)=>{"use strict";n.d(t,{p:()=>i});class i{constructor(){this.register={},this.oneRegister={}}one(e,t){return Array.isArray(this.oneRegister[e])?this.oneRegister[e].push(t):this.oneRegister[e]=[t],this}on(e,t){return Array.isArray(this.register[e])?this.register[e].push(t):this.register[e]=[t],()=>{this.off(e,t)}}off(e,t){const n=this.register[e],i=n.findIndex((e=>e===t));i>=0&&n.splice(i,1)}trigger(e,...t){if(!this.register[e]&&!this.oneRegister[e])return this;for(;this.oneRegister[e]&&this.oneRegister[e].length;){const n=this.oneRegister[e].pop();"function"==typeof n&&n.apply(n,t)}return this.register[e]&&this.register[e].forEach((function(e){e.apply(e,t)})),this}reset(){this.register={},this.oneRegister={}}}},6189:(e,t,n)=>{"use strict";n.d(t,{Iy:()=>r,Vl:()=>s,_Y:()=>i,tr:()=>o});const i=(e=.5)=>Math.random()<=e,r=(e,t)=>Math.floor(Math.random()*(t-e+1)+e),o=e=>Math.floor(Math.random()*e)+1,s=10},4381:(e,t,n)=>{"use strict";n.d(t,{h:()=>i});const i=e=>({onto:(t,n)=>e&&Object.keys(e).map((i=>{const r=e[i];n&&-1!==n.indexOf(i)||(t[i]=r)}))})},2379:(e,t,n)=>{"use strict";n.d(t,{G:()=>r});const i=class{static get width(){return window.innerWidth||document.documentElement.clientWidth||document.body.clientWidth}static get height(){return window.innerHeight||document.documentElement.clientHeight||document.body.clientHeight}static isWindowTooSmall(){return i.height<=i.MIN_WINDOW_HEIGHT&&i.width<=i.MIN_WINDOW_WIDTH}};let r=i;r.MIN_WINDOW_HEIGHT=250,r.MIN_WINDOW_WIDTH=300},3769:(e,t,n)=>{"use strict";n.d(t,{k:()=>s});var i=n(8250),r=n(6039);const o=class{constructor(){throw Error("Singleton class. Do not instantiate.")}static getSizeOverride(e){const t=(e&&e.replace(/\s/g,"").split(",")||[]).reduce(((e,t)=>{const n=t[0],i=this.validSizeOverrideDeviceValues.includes(n),r=i?n:"all",o=i?t.slice(1):t,[s,a]=o.split("x").map((e=>parseInt(e,10)));return e[r].push([s,a]),e}),{all:[],m:[],t:[],d:[]}),n=t.all;return r.A.isMobile?n.concat(t.m):r.A.isTablet?n.concat(t.t):n.concat(t.d)}static getHintParagraphs(e){return Array.from(document.querySelectorAll(r.A.isMobileOrTablet?e.mobileSelector:e.desktopSelector))}static getTypeHintParagraphs(e){const t=r.A.isMobileOrTablet?e.mobileSelector:e.desktopSelector,n=e.slot?`[${o.SLOT_TYPE_ATTRIBUTE}="${e.slot.toLowerCase()}"]`:"";return Array.from(document.querySelectorAll(`${n}${t}`))}static addSlotsToHints(e){return t=this,n=null,r=function*(){const t=o.getHintParagraphs(e);let n=!1;if(!t||!t.length)return n;for(const r of t){const t=r.getAttribute(o.INSERTED_SLOT_ATTRIBUTE);if("true"!==t&&"blocked"!==t){const t=e.slot?e.slot:a(r.getAttribute(o.SLOT_TYPE_ATTRIBUTE)),s=r.getAttribute(o.SIZES_ATTRIBUTE),l=o.getSizeOverride(s);let c=null;s&&!l.length||(c=yield i.ZP.insertSlot(r,t,e.slotFactory,void 0,!0)),c?(n=!0,l.length&&(c.sizes=l,c.refreshSizeRestricted=!0),c.lazy||e.prebidFacade.requestBids([c],c.timeout.value),r.setAttribute(o.INSERTED_SLOT_ATTRIBUTE,"true")):r.setAttribute(o.INSERTED_SLOT_ATTRIBUTE,"blocked")}}return n},new Promise(((e,i)=>{var o=e=>{try{a(r.next(e))}catch(e){i(e)}},s=e=>{try{a(r.throw(e))}catch(e){i(e)}},a=t=>t.done?e(t.value):Promise.resolve(t.value).then(o,s);a((r=r.apply(t,n)).next())}));var t,n,r}};let s=o;function a(e){return e?e.charAt(0).toUpperCase()+e.slice(1):e}s.INSERTED_SLOT_ATTRIBUTE="data-hint-slot-inserted",s.SLOT_TYPE_ATTRIBUTE="data-slot",s.SIZES_ATTRIBUTE="data-hint-slot-sizes",s.validSizeOverrideDeviceValues=["m","t","d"]},2183:(e,t,n)=>{"use strict";n.d(t,{V_:()=>g,iJ:()=>h,nn:()=>f});var i=n(7311),r=n(3528),o=Object.defineProperty,s=Object.getOwnPropertySymbols,a=Object.prototype.hasOwnProperty,l=Object.prototype.propertyIsEnumerable,c=(e,t,n)=>t in e?o(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,d=(e,t)=>{for(var n in t||(t={}))a.call(t,n)&&c(e,n,t[n]);if(s)for(var n of s(t))l.call(t,n)&&c(e,n,t[n]);return e},u=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));const p=class{static get gid(){if(Object.values(p.hasAuth).some((e=>!!e)))return g.identityApiAuth}static init(e){p.checkExistingAuthData();const t=p.optIn.bind(p.optIn,e),n=p.optOut.bind(p.optOut,e);window.$adManagementConfig.web.identityOptIn=t,window.$adManagementConfig.web.identityOptOut=n,window.dispatchEvent(new CustomEvent("mediavineIdentityReady"))}static optIn(e,t,n){return u(this,null,(function*(){try{const[{LiveRamp:i}]=yield p.loadModules(),r={liveRamp:yield i.optIn(e,t)};return p.authServicesMap=r,n(null)}catch(e){return r.ZP.debug(["Identity","optIn"],e),n(e)}}))}static optOut(e,t){return u(this,null,(function*(){try{const[{LiveRamp:e}]=yield p.loadModules(),n={liveRamp:e.optOut()};return p.authServicesMap=n,t(null)}catch(e){r.ZP.debug(["Identity","optOut"],e),t(e)}}))}static loadModules(){return u(this,null,(function*(){return Promise.all([n.e(1642).then(n.bind(n,4286))])}))}static checkExistingAuthData(){Object.keys(f).map((e=>{const t=i.a[e];t&&(p.hasAuth[e]=t())}))}static set authServicesMap(e){p.hasAuth=d(d({},p.hasAuth),e),Object.keys(e).forEach((e=>{r.ZP.debug(["Identity"],`Authentication data set for: "${e}"`)}))}};let h=p;h.hasAuth={};var g=(e=>(e.noAuth="0",e.growAuth="1",e.identityApiAuth="2",e.unverified="3",e))(g||{}),f=(e=>(e.liveRamp="mv_liveRamp",e))(f||{})},7311:(e,t,n)=>{"use strict";n.d(t,{a:()=>o});var i=n(2183),r=n(3528);const o={liveRamp(){const e=localStorage.getItem(i.nn.liveRamp);if(e){const{envelope:t,expiresAt:n}=JSON.parse(e);if(new Date(n)>new Date)return window.ats=window.ats||{},window.ats.retrieveEnvelope=e=>{e(JSON.stringify({envelope:t}))},r.ZP.debug(["Identity","LiveRamp"],"Using existing envelope data"),!0}return!1}}},1374:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>v});var i=n(1296),r=n(5671),o=n(3127),s=n(4222),a=n(2379),l=n(6039),c=n(1577),d=n(953),u=n(3580),p=n(5662),h=n(9225),g=n(2321);const f=12*a.G.height;let m;const b={rootMargin:`${f}px 0px 0px 0px`},y=class{constructor(e,t){this.slot=e,this.prebidFacade=t,this.rendered=!1,this.cleanupRequestListener=()=>{},y.initCleanupObserver(),e.lazyable=this,y.lessLazy=e.model.less_lazy_mode,y.debounceRequestBids||(y.debounceRequestBids=i((()=>{const n=y.lazySlotsToRequest.sort(((e,t)=>{const n=e.wrapper,i=t.wrapper,r=window.pageYOffset;if(e.stickyConfig.isSticky||t.stickyConfig.isSticky){const n=e.stickyConfig.isSticky?1:0;return(t.stickyConfig.isSticky?1:0)-n}return Math.abs((0,u.Z)(n)-r)-Math.abs((0,u.Z)(i)-r)})),i=e.model.ad_box?4:2,r=n.splice(0,i);y.lazySlotsToRequest=n;const o=r.map((e=>e.timeout.value)),s=Math.max(...o);t.requestBids(r,s);const a=e.model.ad_box?1:1e3;y.lazySlotsToRequest.length>0&&setTimeout((()=>{y.debounceRequestBids()}),a)}),100,{maxWait:e.model.ad_box?0:500})),y.lessLazy&&r.ready(s.w.nonLazyRequestsLoaded,(()=>{if(y.waitedForAtf)y.renderAd(e);else{setTimeout((()=>{y.waitedForAtf=!0,y.renderAd(e)}),3e3)}})),this.createWaypoint()}static get contentDisabledFor(){let e=0;return y.contentDisabledUntil&&(e=y.contentDisabledUntil-Date.now(),e=e>0?e:0),e}static disableContentWaypointsFor(e){y.disableContentWaypoints=!0,y.contentDisabledUntil=Date.now()+e,setTimeout((()=>{y.disableContentWaypoints=!1,y.contentDisabledUntil=null}),e)}static setContentWaypointsDisable(e){y.disableContentWaypoints=e}static renderLazyAds(e){const t=[];return Array.from(e.querySelectorAll(".adunit")).map((e=>{const n=e.getAttribute("id");if(!n)return;const i=d.Z.getSlotById(n);i&&i.lazyable&&y.renderAd(i)&&t.push(i)})),t}static renderAd(e){return!e.lazyable.rendered&&(y.renderAdCleanup(e),y.lazySlotsToRequest.push(e),y.debounceRequestBids(),!0)}static renderAdCleanup(e){e.lazyable.rendered=!0,e.lazyable.cleanupRequestListener(),e.stickyConfig.isSticky||y.lessLazy||(0,p.c)().observe(e.wrapper,b)}createWaypoint(){const e=this.slot,t={rootMargin:`0px 0px ${e.offset?e.offset:l.A.isMobileOrTablet?2400:1600}px 0px`},n=(0,p.c)().onChange(w,t);this.cleanupRequestListener=g.Z.on(g.Z.events.slotBidRequested,(t=>{t===e&&(n.unobserve(e.wrapper),y.renderAdCleanup(e))})),this.slot.wrapper?n.observe(this.slot.wrapper):g.Z.on(g.j.slotWrapperRenderEnded,(t=>{t===e&&n.observe(this.slot.wrapper)}))}};let v=y;function w(e,t){const n=Math.round(c.X.delta);function i(e,n,i){t.unobserve(e.target),r.ready(s.w.nonLazyRequestsLoaded,(()=>{n.setTargeting({velocity:i,maxVelocity:m}),v.renderAd(n)}))}e.forEach((e=>{const t=e.target.getAttribute("data-wrapper")||"",r=d.Z.getSlotById(t);if(!r||"Content"===r.type&&v.disableContentWaypoints)return;m=function(e){return m||parseInt(e.model.experiment.activate(o.l.velocityCheck)||"0",10)||1e3}(r);const s="Content"===r.type&&n>m;(e.isIntersecting||r.stickyConfig.isSticky)&&(s?setTimeout((()=>{const t=e.target.getBoundingClientRect();if(t.top-t.height/2>0){const t=Math.round(c.X.delta);i(e,r,t)}}),1e3):i(e,r,n))}))}function _(e,t){e.forEach((e=>{const n=e.target.getAttribute("data-wrapper"),i=e.boundingClientRect.bottom<0,r=e.boundingClientRect.bottom<=-f;if(n&&i&&r&&0===e.intersectionRatio){t.unobserve(e.target);const i=d.Z.getSlotById(n);if(i){i.destroyGSlot();i.wrapper.style.visibility="hidden"}}}))}v.lazySlotsToRequest=[],v.disableContentWaypoints=!1,v.contentDisabledUntil=null,v.waitedForAtf=!1,v.lessLazy=!1,v.initCleanupObserver=(0,h.r)((()=>{(0,p.c)().onChange(_,b)})),window.$adManagementConfig.web.renderLazyAds=v.renderLazyAds,window.$adManagementConfig.web.setContentWaypointDisable=v.setContentWaypointsDisable,window.$adManagementConfig.web.disableContentWaypointsFor=v.disableContentWaypointsFor},2946:(e,t,n)=>{"use strict";n.d(t,{Rw:()=>m});var i=n(3528),r=n(6189),o=n(6091),s=n(2658),a=Object.defineProperty,l=Object.getOwnPropertySymbols,c=Object.prototype.hasOwnProperty,d=Object.prototype.propertyIsEnumerable,u=(e,t,n)=>t in e?a(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,p=(e,t)=>{for(var n in t||(t={}))c.call(t,n)&&u(e,n,t[n]);if(l)for(var n of l(t))d.call(t,n)&&u(e,n,t[n]);return e};const h=["medianet","adx","amazon"],g={Control:0,All:1,Prebid:2,Eb:3,S2S:4,PrebidAndEb:5,PrebidAndS2S:6,EbAndS2S:7},f={All:0,Display:1,Video:2,Outstream:3};class m{constructor(e,t=1){this.bidder=null,this.exchange=null,this.mediaType=null,this.exchangeCode=null,this.mediaTypeCode=null;(0,r._Y)(t)&&(this.bidder=b(e),this.exchange=y(),this.exchangeCode=g[this.exchange],this.mediaType=v(),this.mediaTypeCode=f[this.mediaType],i.ZP.debug(`\n      Lift Test Results:\n      Bidder ${this.bidder}\n      Exchange ${this.exchange}\n      ExchangeCode ${this.exchangeCode}\n      MediaType ${this.mediaType}\n      MediaTypeCode ${this.mediaTypeCode}\n    `))}static new(e){return m.instance=m.instance||new m(e),m.instance}isMediaType(e){return this.mediaTypeCode===f.All||null!==this.mediaTypeCode&&-1!==e.indexOf(this.mediaTypeCode)}isDisplay(){return this.isMediaType([f.All,f.Display])}isVideo(){return this.isMediaType([f.All,f.Video])}isOutstream(){return this.isMediaType([f.All,f.Outstream])}isExchange(e){return this.exchangeCode===g.All||null!==this.exchangeCode&&-1!==e.indexOf(this.exchangeCode)}isPrebid(){return this.isExchange([g.Prebid,g.PrebidAndEb,g.PrebidAndS2S,g.All])}isEb(){return this.isExchange([g.Eb,g.PrebidAndEb,g.EbAndS2S,g.All])}isS2S(){return this.isExchange([g.S2S,g.EbAndS2S,g.PrebidAndS2S,g.All])}getPartnerLiftValue({bidder:e,exchangeCode:t,mediaTypeCode:n}=this){const i=[];return e&&i.push(`${e}E${t}M${n}`),this.isEb()&&i.push("ebOff"),i}}const b=e=>{const t=(e=>{const t=p(p(p({},e.bannerDiscrepancies),e.videoDiscrepancies),e.outstreamDiscrepancies),n=[...e.s2sBidders,...Object.keys(t),...h];return(0,s.t)(n)})(e),n=t.length-1;return t[(0,r.Iy)(0,n)]},y=()=>(0,o.t)(g),v=()=>(0,o.t)(f)},1711:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>j});var i=n(2321),r=n(5595),o=n(3528);class s{record(e,t){o.ZP.custom(["debug","metrics"],e,t)}}var a=n(6497),l=n(6189),c=Object.defineProperty,d=Object.getOwnPropertySymbols,u=Object.prototype.hasOwnProperty,p=Object.prototype.propertyIsEnumerable,h=(e,t,n)=>t in e?c(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,g=(e,t)=>{for(var n in t||(t={}))u.call(t,n)&&h(e,n,t[n]);if(d)for(var n of d(t))p.call(t,n)&&h(e,n,t[n]);return e};const f=Date.now(),m={beacon:"bam.nr-data.net",errorBeacon:"bam.nr-data.net",licenseKey:"826b256fb3",applicationID:"21735165",sa:1};const b=e=>{return t=void 0,n=null,i=function*(){try{yield a.Z.fetch(((e,t=f)=>{const n=Date.now()-t;return`https://${e.beacon}/ins/1/${e.licenseKey}?a=${e.applicationID}&sa=1&v=1158.afc605b&t=Unnamed%20Transaction&rst=${n}&ref=${document.URL}`})(m),"POST",e)}catch(e){o.ZP.debug(e)}},new Promise(((e,r)=>{var o=e=>{try{a(i.next(e))}catch(e){r(e)}},s=e=>{try{a(i.throw(e))}catch(e){r(e)}},a=t=>t.done?e(t.value):Promise.resolve(t.value).then(o,s);a((i=i.apply(t,n)).next())}));var t,n,i},y=e=>e?Array.isArray(e)?e.length&&"object"==typeof e[0]?JSON.stringify(e):e:"object"==typeof e?JSON.stringify(e):e:e,v=e=>({ins:[...e]}),w=new class{constructor(){this.info=m,this.actions=[],this.customAttributes={},this.disable=window.$adManagementConfig.web.model.disable_newrelic,this.samplingRate=window.$adManagementConfig.web.model.samplingRate||10,setInterval((()=>this.sendBatch()),3e3),window.addEventListener("pagehide",(()=>this.sendBatch())),window.$adManagementConfig.newrelic=window.$adManagementConfig.newrelic||this,this.addPageAction=this.addPageAction.bind(this),this.setCustomAttribute=this.setCustomAttribute.bind(this)}addPageAction(e,t){if(!function(e){const t=1e4;return(0,l.tr)(t)<t*e}(this.samplingRate))return;Object.keys(t).forEach((e=>t[e]=y(t[e])));const n=Date.now(),i=g(g({actionName:e,timestamp:n,timeSinceLoad:(n-f)/1e3,browserWidth:window.document.documentElement.clientWidth,browserHeight:window.document.documentElement.clientHeight,eventType:"PageAction",referrerUrl:document.referrer,currentUrl:document.location+"",pageUrl:document.location.origin},this.customAttributes),t);this.actions.push(i)}setErrorHandler(e){}setCustomAttribute(e,t){this.customAttributes[e]=t}sendBatch(){if(0===this.actions.length||this.disable)return;const e=v(this.actions);b(JSON.stringify(e)),this.actions=[]}};n(6039),n(958);var _=Object.defineProperty,M=Object.defineProperties,A=Object.getOwnPropertyDescriptors,S=Object.getOwnPropertySymbols,I=Object.prototype.hasOwnProperty,x=Object.prototype.propertyIsEnumerable,C=(e,t,n)=>t in e?_(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,E=(e,t)=>{for(var n in t||(t={}))I.call(t,n)&&C(e,n,t[n]);if(S)for(var n of S(t))x.call(t,n)&&C(e,n,t[n]);return e},P=(e,t)=>M(e,A(t));class T{constructor(e,t=w){var n,i;this.model=e,this.newrelic=t,t&&(t.setCustomAttribute("offering",null!=(n=e.offering.name)?n:"unknown"),t.setCustomAttribute("offeringId",null!=(i=e.offering.id)?i:0))}record(e,t,r=w){if(r)switch(e){case i.j.initLauncher:return;case i.j.bidResponse:n.e(9900).then(n.bind(n,9900)).then((({parseBidResponse:e})=>{r.addPageAction("bidResponse",e(t,this.model))}));break;case i.j.bidWon:n.e(9900).then(n.bind(n,9900)).then((({parseBidResponse:e})=>{r.addPageAction("bidWon",e(t,this.model))}));break;case i.j.bidRequested:this.model.newRelicBidRequests&&n.e(9900).then(n.bind(n,9900)).then((({parseBidRequest:e})=>{r.addPageAction("bidRequested",e(t,this.model))}));break;case i.j.bidTimeout:n.e(9900).then(n.bind(n,9900)).then((({parseBidTimeout:e})=>{t.forEach((t=>{r.addPageAction("bidTimeout",e(t,this.model))}))}));break;case i.j.impressionViewable:const e=t;n.e(9900).then(n.bind(n,9900)).then((({getBaseData:t})=>{r.addPageAction(i.j.impressionViewable,P(E({},t(this.model)),{adunit:e.adUnitId}))}));break;case i.j.slotRenderEnded:case i.j.timeOnSite:return;case i.j.outstreamAdError:n.e(9900).then(n.bind(n,9900)).then((({parseBidResponse:e})=>{const n=t.adError,o=t.bidResponse,s=t.outstreamFloor,a=P(E({},e(o,this.model)),{errorCode:n.getErrorCode(),vastErrorCode:n.getVastErrorCode(),type:n.getType(),name:n.name,message:n.getMessage(),innerError:n.getInnerError(),bidFloor:s});r.addPageAction(i.j.outstreamAdError,a)}));break;case i.j.heavyAdRemoved:case i.j.coreVital:return;case i.j.sequenceError:r.addPageAction(i.j.sequenceError,t);break;case i.j.lineItemFailure:let o={adUnitCode:t.id};try{o=E({targeting:t.gSlot.getTargetingMap()},o)}catch(e){}r.addPageAction(i.j.lineItemFailure,o)}}}const k=[5e3,1e4,15e3,3e4,45e3,9e4];class j{constructor(e){var t;this.model=e,Object.keys(i.Z.events).forEach((e=>{const t=i.Z.events[e];i.Z.on(t,(e=>this.record(t,e)))})),this.clients=[new s],(0,r.Ph)("forceMetrics")?this.clients=[new s,new T(e)]:!(t=e.samplingRate)||t<Math.random()||(this.clients=[new s,new T(e)])}static new(e){return j.instance?j.instance:j.instance=new j(e)}record(e,t){this.clients.forEach((n=>{try{n.record(e,t)}catch(e){}}))}trackTimeMetrics(){let e=0;const t=setInterval((()=>{e++,this.record("timeOnSite",{time_elapsed:60*e})}),6e4);k.forEach((e=>setTimeout((()=>this.record("timeOnSite",{time_elapsed:e/1e3})),e))),setTimeout((()=>clearInterval(t)),6e5)}}},7856:(e,t,n)=>{"use strict";n.d(t,{CX:()=>I,WA:()=>x,ZP:()=>_});var i=n(9208),r=n(2845),o=n(6039),s=n(2379),a=n(6185),l=n(5595),c=n(3528),d=n(4381),u=n(2946),p=n(4666),h=n(5914),g=Object.defineProperty,f=Object.getOwnPropertySymbols,m=Object.prototype.hasOwnProperty,b=Object.prototype.propertyIsEnumerable,y=(e,t,n)=>t in e?g(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,v=(e,t)=>{for(var n in t||(t={}))m.call(t,n)&&y(e,n,t[n]);if(f)for(var n of f(t))b.call(t,n)&&y(e,n,t[n]);return e},w=(e=>(e.interstitial="Interstitial",e.leaderboard_atf="LeaderboardAtf",e.leaderboard_btf="LeaderboardBtf",e.sidebar_atf="SidebarAtf",e.sidebar_btf="SidebarBtf",e.recipe_btf="Recipe",e.recipe_mobile="Recipe",e.comments="Comments",e.feed_btf="Feed",e.feed_mobile="Feed",e))(w||{});class _{constructor(e){var t;this.videoLineItemVersion="vid_6",this.s2sBidders=[],this.enable_mvp_branding=!0,this.ad_box_placeholder_text=!1,this.desktop_inview=!1,this.mobile_inview=!1,this.interscroller_mobile=!1,this.interscroller_desktop=!1,this.url_change_reload=!1,function(e){for(const t of C){if(!i(e,t))throw new Error(`Required model property ${t} not provided`)}}(e),e.indexExchange=e.index,e.S2S=!0,e=_.applyLocalModel(e),(0,d.h)(e).onto(this),this.feed_btf_selector=this.feed_btf_selector||this.feed_selector,this.feed_btf_position=this.feed_btf_position||this.feed_position,this.feed_mobile_selector=this.feed_mobile_selector||this.feed_selector,this.feed_mobile_position=this.feed_mobile_position||this.feed_position,this.experiment=new a.K(e.experiments||[]),this.slots=function(e){const t=[];return t.push(...function({slots:e}){const t=[];return e.forEach((({adunit:e,position:n,selector:i,deviceType:r})=>{const o=s.G.width<=428;if(e&&n){if(r&&"both"!==r){if("desktop"===r&&o||"mobile"===r&&!o)return}let s;const a=n;switch(e){case"leaderboard":s="LeaderboardBtf";break;case"sidebar":s="SidebarBtf";break;case"feed":s="Feed";break;case"recipe":s="Recipe";break;case"content":s="Content";break;default:return}t.push({insertPosition:a,selector:i,type:s,userDefined:!0})}})),t}(e)),t.push(...function(e){const t=[];return Object.keys(w).map((n=>{const i=w[n];if(-1===n.indexOf("recipe_")&&M(e,n))try{t.push({type:i,selector:e[`${n}_selector`],insertPosition:e[`${n}_position`],mobileSelector:e[`${n}_mobile_selector`],mobileInsertPosition:e[`${n}_mobile_position`]})}catch(e){c.ZP.debug(`error creating slot ${i}`,e)}})),t}(e)),t.push(...function(e){const t=[],{recipeCard:n}=new p.l;if(n===p.v.Tasty&&e.enable_automatic_recipe_selectors)return t.push(...function({recipe_slot_density:e,recipe_instruction_density:t}){const n=[],i=o.A.isMobileOrTablet?"mobile":"desktop",r=S[e][i];o.A.isMobileOrTablet&&n.push(A(".tasty-recipes-ingredients ul:nth-of-type(3n + 1),\n        .tasty-recipes-ingredients ol:nth-of-type(3n + 1),\n        .tasty-recipes-ingredients p:nth-of-type(3n + 1),\n        .tasty-recipes-ingredients h4:nth-of-type(3n + 1),\n        .tasty-recipe-ingredients ul:nth-of-type(3n + 1),\n        .tasty-recipe-ingredients ol:nth-of-type(3n + 1),\n        .tasty-recipe-ingredients p:nth-of-type(3n + 1),\n        .tasty-recipe-ingredients h4:nth-of-type(3n + 1)","afterend"));n.push(A(".tasty-recipes-ingredients, .tasty-recipe-ingredients","afterbegin")),"none"===t&&n.push(A(".tasty-recipes-instructions, .tasty-recipe-instructions","afterend"));return n.splice(0,r)}(e)),t;if(n===p.v.WPRecipeMaker&&e.enable_automatic_recipe_selectors)return t.push(...function({recipe_slot_density:e,recipe_instruction_density:t}){const n=[],i=o.A.isMobileOrTablet?"mobile":"desktop",r=S[e][i];o.A.isMobileOrTablet&&n.push(A(".wprm-recipe-instructions-container > .wprm-recipe-instructions-header","beforebegin"));n.push(A(".wprm-recipe-ingredients-container","afterbegin")),"none"===t&&n.push(A(".wprm-recipe-instructions-container","afterend"));return n.splice(0,r)}(e)),t;n===p.v.MvCreate&&t.push(...function({recipe_slot_density:e}){const t=[],n=o.A.isMobileOrTablet?"mobile":"desktop",i=S[e][n]-1;o.A.isMobileOrTablet&&t.push(A(".mv-create-instructions-slot-v2","beforebegin"));return t.splice(0,i)}(e));const i=o.A.isMobileOrTablet?"recipe_mobile":"recipe_btf";M(e,i)&&t.push({type:"Recipe",selector:e.recipe_selector,insertPosition:e.recipe_position,mobileSelector:e.recipe_mobile_selector,mobileInsertPosition:e.recipe_mobile_position});return t}(e)),t.forEach((t=>{t.lazy=!t.type.includes("Atf"),function(e,t){"SidebarBtf"===e.type&&(e.stickyOffset=t.sidebar_btf_sticky_offset,e.sticky=!t.sidebar_btf_disable_sticky,e.stickyStopSelector=t.sidebar_btf_stop_selector)}(t,e),function(e,t){"SidebarAtf"!==e.type||t.sidebar_minimum_width||(e.lazy=!0)}(t,e)})),t}(e),this.customTargeting=window.$adManagementConfig.web.customTargeting||{},this.videoCacheUrl=`https://video-cache.${null==(t=this.offering)?void 0:t.offering_code}.com/c`;const n=u.Rw.new(e);this.bidRequests.native=[],Object.keys(this.bidRequests).forEach((e=>{n.bidder&&n.isDisplay()&&n.isPrebid()&&(this.bidRequests[e]=this.bidRequests[e].filter((({bidder:e})=>e!==n.bidder))),this.bidRequests[e].unshift({bidder:r.tO.S2S,params:{}})})),function(e){(0,l.DY)("test","disableGdpr")&&(e.gdpr="0");(0,l.DY)("test","gdpr")&&(e.gdpr="1");(0,l.DY)("test","ccpa")&&(e.cpa="1",e.cpa_state=h.y.CA);const t=(0,l.Ph)("testCPA");t&&(e.cpa="1",e.cpa_state=t);(0,l.DY)("test","cssStickySidebar")&&(e.optimize_sticky_sidebar_cls=!0,e.optimize_sticky_sidebar_cls_log=!0);(0,l.DY)("test","adboxLabel")&&(e.ad_box_placeholder_text=!0);(0,l.DY)("test","mobileInview")&&(e.mobile_inview=!0);(0,l.DY)("test","urlChangeReload")&&(e.url_change_reload=!0);const n=(0,l.Ph)("uninsertableAfterSelector");n&&(e.content_skip_after_selector=Array.isArray(n)?n[0]:n);const i=(0,l.Ph)("uninsertableBeforeSelector");i&&(e.content_skip_before_selector=Array.isArray(i)?i[0]:i)}(this),function(e){e.ad_box&&(o.A.isMobileOrTablet&&e.mobile_inview||o.A.isDesktop&&e.desktop_inview)&&(e.videoSettings.mobile_popout_placement="bottom_left")}(this),window.$adManagementConfig.web.deviceType=o.A.deviceType,c.ZP.debug(this)}get disableContentBtfNative(){return this.cb_dn}static applyLocalModel(e){if(e.disable_local_model)return e;const t=window.$adManagementConfig.web.localModel||{},n=(i=t)&&i.constructor===Object?t:{};var i;return e=v(v({},e),n),window.$adManagementConfig.web.model=e,e}}function M(e,t){return{adhesion_desktop:e.adhesion_desktop,adhesion_mobile:e.adhesion_mobile,adhesion_tablet:e.adhesion_tablet,comments:!!e.comments_selector,interstitial_mobile:e.enable_interstitial_ads,interstitial_desktop:e.enable_desktop_interstitial_ads,feed_btf:!o.A.isMobileOrTablet&&!!e.feed_selector,feed_mobile:o.A.isMobileOrTablet&&!!e.feed_selector,leaderboard_atf:e.leaderboard&&!!e.leaderboard_atf_selector,leaderboard_btf:e.leaderboard&&!!e.leaderboard_btf_selector,recipe_mobile:o.A.isMobileOrTablet&&(!!e.recipe_mobile_selector||!!e.recipe_selector),recipe_btf:!o.A.isMobileOrTablet&&!!e.recipe_selector,sidebar_btf:!!e.sidebar_btf_selector,sidebar_atf:!!e.sidebar_atf_selector}[t]||!1}function A(e,t){return{insertPosition:t,selector:e,lazy:!0,type:"Recipe"}}const S={default:{desktop:2,mobile:3},medium:{desktop:1,mobile:2},low:{desktop:1,mobile:1}};function I(){if(!window.$adManagementConfig||!window.$adManagementConfig.web||!window.$adManagementConfig.web.model||window.$adManagementConfig.web.disable_pagespeed||"false"===(0,l.Ph)("optimizeSpeed"))return!1;const e="Safari"===o.A.browser;return"true"===(0,l.Ph)("optimizeSpeed")||window.$adManagementConfig.web.model.optimize_mobile_pagespeed&&o.A.isMobileOrTablet&&!e}function x(){if(!window.$adManagementConfig||!window.$adManagementConfig.web||!window.$adManagementConfig.web.model||window.$adManagementConfig.web.disable_pagespeed||"false"===(0,l.Ph)("optimizeSpeed"))return!1;const e="Safari"===o.A.browser;return"true"===(0,l.Ph)("optimizeSpeed")||window.$adManagementConfig.web.model.optimize_desktop_pagespeed&&!o.A.isMobileOrTablet&&!e}const C=["offering.gam_network_code","offering.offering_code"]},1806:(e,t,n)=>{"use strict";n.d(t,{FH:()=>r,ZP:()=>o});const i=window.$adManagementConfig.web.model;var r=(e=>(e.cleanup="cleanup",e.restart="restart",e))(r||{});const o=new class{initPageRefresh(){return e=this,t=arguments,r=function*(e=i){if(this.pageRefreshHandlerInstance||!function(e){return e.url_change_reload}(e))return;const{PageRefreshHandlerInstance:t}=yield n.e(8597).then(n.bind(n,7145));this.pageRefreshHandlerInstance=t},new Promise(((n,i)=>{var o=e=>{try{a(r.next(e))}catch(e){i(e)}},s=e=>{try{a(r.throw(e))}catch(e){i(e)}},a=e=>e.done?n(e.value):Promise.resolve(e.value).then(o,s);a((r=r.apply(e,t)).next())}));var e,t,r}on(e,t){this.pageRefreshHandlerInstance&&this.pageRefreshHandlerInstance.on(e,t)}one(e,t){this.pageRefreshHandlerInstance&&this.pageRefreshHandlerInstance.one(e,t)}}},907:(e,t,n)=>{"use strict";n.d(t,{R_:()=>d,W$:()=>c,ZP:()=>l,iT:()=>h,vm:()=>u});var i=n(3528);const r=/^[0-9]{4}-[0-9]{1,2}-[0-9]{1,2}$/,o="data-",s="data-blacklist-",a="data-blocklist-";class l{constructor(e=document){this._document=e,this.element||i.ZP.debug("Page Settings element is not present on page")}get blocklist(){return this.attributesToObject(h,s)}get settings(){return this.attributesToObject(p,o)}attributesToObject(e,t){const n=this.element&&Array.from(this.element.attributes)||[],i=n.filter(u).pop(),r=i&&c(i);if(!this.element||r)return{};const o={};return n.filter(e).forEach((e=>{o[d(e,t)]=e.nodeValue})),o}get element(){return this._document.getElementById("mediavine-settings")}}function c(e){if(!e)return!0;const t=e.nodeValue,n=t&&t.match(r);return!t||!n||Date.parse(t)<(new Date).getTime()}function d(e,t){return e.nodeName.substr(t.length).replace(/-/g,"_").toLowerCase()}function u(e){return"data-expires-at"===e.nodeName}function p(e){return function(e){return e.nodeName.substr(0,o.length)===o}(e)&&!u(e)&&!h(e)}function h(e){return e.nodeName.substring(0,s.length)===s||e.nodeName.substring(0,a.length)===a}},4666:(e,t,n)=>{"use strict";n.d(t,{v:()=>r,l:()=>s});class i{constructor(e,t=document){this.selectors=e,this._document=t,this.present=!1;for(const n of e){if(t.querySelector(n)){this.present=!0,this.selector=n;break}}}}var r=(e=>(e.ER="ER",e.MPP="MPP",e.WPUR="WPUR",e.Zip="Zip",e.Yum="Yum",e.BYC="BYC",e.SRP="SRP",e.WPRecipeMaker="WPRM",e.Tasty="Tsty",e.MvCreate="MVC",e))(r||{});const o=class extends class{constructor(e,t=document){this.trackables=e,this._document=t,this.presentTrackables=[],this.trackables.forEach((e=>{(this[e.name]=new i(e.selectors,t)).present&&this.presentTrackables.push(e.name)}))}}{constructor(e=o.plugins,t=document){super(e,t),this.trackables=e,this._document=t}get recipeCard(){return this.multiple?"multiple":this.presentTrackables[0]}get multiple(){return this.presentTrackables.length>1}};let s=o;s.plugins=[{name:"ER",selectors:[".ERSInstructionsHeader",".ERSIngredients"]},{name:"MPP",selectors:["#mpprecipe-ingredients","#mprecipe-ingredients-list"]},{name:"WPUR",selectors:[".wpurp-recipe-ingredient-group-container",".wpurp-recipe-ingredient-container"]},{name:"Zip",selectors:["#zlrecipe-ingredients","#zlrecipe-instructions","#zlrecipe-ingredients-list"]},{name:"Yum",selectors:["#yrecipe-ingredients","#yrecipe-ingredients-list"]},{name:"BYC",selectors:[".blog-yumprint-ingredient-section",".blog-yumprint-recipe-contents"]},{name:"SRP",selectors:[".recipe-instructions-wrap",".recipe-ingredients-wrap"]},{name:"WPRM",selectors:[".wprm-recipe-ingredients-container"]},{name:"Tsty",selectors:[".tasty-recipes-ingredients",".tasty-recipe-ingredients"]},{name:"MVC",selectors:[".mv-create-card"]}]},8129:(e,t,n)=>{"use strict";n.d(t,{l:()=>p});var i=function(e,t,n,i){return(e/=i/2)<1?n/2*e*e+t:-n/2*(--e*(e-2)-1)+t},r="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(e){return typeof e}:function(e){return e&&"function"==typeof Symbol&&e.constructor===Symbol&&e!==Symbol.prototype?"symbol":typeof e};const o=function(){var e=void 0,t=void 0,n=void 0,o=void 0,s=void 0,a=void 0,l=void 0,c=void 0,d=void 0,u=void 0,p=void 0,h=void 0;function g(){return window.scrollY||window.pageYOffset}function f(e){return e.getBoundingClientRect().top+t}function m(n){d||(d=n),p=s(u=n-d,t,l,c),window.scrollTo(0,p),u<c?window.requestAnimationFrame(m):function(){window.scrollTo(0,t+l),e&&a&&(e.setAttribute("tabindex","-1"),e.focus());"function"==typeof h&&h();d=!1}()}return function(d){var u=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};switch(c=u.duration||1e3,o=u.offset||0,h=u.callback,s=u.easing||i,a=u.a11y||!1,t=g(),void 0===d?"undefined":r(d)){case"number":e=void 0,a=!1,n=t+d;break;case"object":n=f(e=d);break;case"string":e=document.querySelector(d),n=f(e)}switch(l=n-t+o,r(u.duration)){case"number":c=u.duration;break;case"function":c=u.duration(l)}window.requestAnimationFrame(m)}}();var s=n(953),a=n(6159),l=n(3580),c=n(3583),d=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));const u=class{constructor(e,t,n){this.model=e,this.slotFactory=t,this.prebidFacade=n}render(){if(u.jtrClicked&&void 0===u.arrivalSlot&&this.model.jtr_arrival_unit_enabled){const e=u.getJtrButton(this.model);if(!e)return;this.onJTRClick(e)}}static getJtrButton(e){const t=e.jtr_button_selector||u.jtrButtonSelector;return document.querySelector(t)}static getLocation(e){var t;const n=e.jtr_selector||(null==(t=u.getJtrButton(e))?void 0:t.getAttribute("href"))||"";return document.querySelector(n)}static attachListener(e,t){if(!e.jtr_arrival_unit_enabled)return;const n=u.getJtrButton(e);if(!n)return;const i=r=>d(this,null,(function*(){r.preventDefault(),r.stopPropagation(),this.jtrClicked&&u.scrollToArrivalSlot(e),this.jtrClicked=!0;if((yield t())===a.F6.halted){const e=new MouseEvent(r.type,r);n.removeEventListener("click",i),n.dispatchEvent(e)}}));n.addEventListener("click",i)}onJTRClick(e){return d(this,null,(function*(){const e=u.getLocation(this.model);if(e&&!u.arrivalSlot){const t=yield this.createArrivalSlot(e);t?(u.arrivalSlot=t,this.addContinueButtonListener(e),this.moveTastyPrintButton(u.arrivalSlot),this.auctionSlots(),function(e){const t=`.${c.Y5},.${c.SE}`,n=function(e,t){const n=document.querySelectorAll(t),i=(0,l.Z)(e);let r,o;return n.forEach((e=>{const t=i-(0,l.Z)(e);if(!(t<0))return!r||t<o?(r=e,void(o=t)):void 0})),r}(e,t);if(!n)return;const i=s.Z.getSlotByWrapper(n);i&&i.getSlotDom().remove()}(u.arrivalSlot.wrapper)):u.arrivalSlot=null,setTimeout((()=>u.scrollToArrivalSlot(this.model)),150)}}))}static scrollToArrivalSlot(e){var t,n,i;const r=e.sidebar_btf_sticky_offset||0,s=null==(t=u.arrivalSlot)?void 0:t.getSlotDom(),a=u.getLocation(e),l=(s&&("none"!==(null==(n=s.style)?void 0:n.display)?s.getBoundingClientRect().top:null==(i=s.previousElementSibling)?void 0:i.getBoundingClientRect().bottom)||a.getBoundingClientRect().top)+r;window.$adManagementConfig.web.setContentWaypointDisable(!0),o(l,{duration:3e3,callback:()=>{var e;o((null==(e=u.arrivalSlot)?void 0:e.getSlotDom())||a,{duration:500,easing:h,offset:-160-r,callback:()=>window.$adManagementConfig.web.setContentWaypointDisable(!1)})}})}addContinueButtonListener(e){const t=document.querySelector(".mv-arrival-continue-button");t&&t.addEventListener("click",(t=>{t.preventDefault(),o(e,{duration:500,offset:300,easing:h})}))}moveTastyPrintButton(e){if(!e)return;const t=document.querySelector(".tasty-recipes-print-button");t&&!t.matches(".am-skip-button")&&(t.remove(),e.getSlotDom().insertAdjacentElement("afterend",t))}auctionSlots(){if(!u.arrivalSlot)return;const e=s.Z.getRecipeSlots().filter((e=>!e.adType)).slice(0,2);this.prebidFacade.requestBids([u.arrivalSlot,...e],u.arrivalSlot.timeout.value)}createArrivalSlot(e){return d(this,null,(function*(){return yield this.slotFactory.new({insertPosition:"beforebegin",selector:e,type:"Arrival"})}))}};let p=u;p.jtrClicked=!1,p.jtrButtonSelector=".tasty-recipes-jump-link, .wprm-recipe-jump, .mv-create-jtr-slot-v2";const h=(e,t,n,i)=>(e/=i/2)<1?n/2*e*e+t:-n/2*(--e*(e-2)-1)+t},9353:(e,t,n)=>{"use strict";n.d(t,{d:()=>o});var i=n(3769);const r=class{constructor(e,t){window.$adManagementConfig.web.fillContentHints=()=>(this.render(),!0),this.hintConfig={desktopSelector:r.DESKTOP_SELECTOR,mobileSelector:r.MOBILE_SELECTOR,prebidFacade:e,slotFactory:t,slot:r.SLOT_CLASS},this.render()}render(){i.k.addSlotsToHints(this.hintConfig)}};let o=r;o.MOBILE_SELECTOR=".content_mobile_hint, .content_hint",o.DESKTOP_SELECTOR=".content_desktop_hint, .content_hint",o.SLOT_CLASS="Content"},2137:(e,t,n)=>{"use strict";n.d(t,{ZP:()=>l,z_:()=>a});var i=n(4441),r=n(4381),o=n(2907);const s=class{constructor(e){this.depth=0,this.referrer="";const t=!("1"===window.$adManagementConfig.web.model.gdpr&&!e);if(window.$adManagementConfig.web.session||s.singletonSession)return s.singletonSession=s.singletonSession||window.$adManagementConfig.web.session,t&&s.cookie.set(s.singletonSession),s.singletonSession;const n=s.cookie.value||{};(0,r.h)(n).onto(this);const i=this.getReferrer();this.referrer&&this.referrer===i||(this.depth=0),this.depth++,this.referrer=i,s.singletonSession=this,window.$adManagementConfig.web.session=this,t&&s.cookie.set(this)}static updateSession(){return delete s.singletonSession,delete window.$adManagementConfig.web.session,s.singletonSession=new s,window.$adManagementConfig.web.session=s.singletonSession,s.singletonSession}static resetSession(){return delete s.singletonSession,delete window.$adManagementConfig.web.session,s.singletonSession=new s,s.singletonSession.depth=0,s.singletonSession.referrer="",s.cookie.set(s.singletonSession),window.$adManagementConfig.web.session=s.singletonSession,s.singletonSession}setWrapperVersionGroup(e){this.wrapperVersionGroup=e}setVideoVersionGroup(e){this.videoVersionGroup=e}getReferrer(){const e=o.o.getHost(window.location.hostname),t=document.referrer,n=o.o.getHost(t),i=n.includes(e);return this.referrer?t&&this.referrer!==t&&!i?t:this.referrer:""===n||i?"DIRECT":t}};let a=s;a.cookie=new i.V({name:"mediavine_session",maxAge:1800});const l=new a},3784:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});const i=class{static ensureSlot(e){void 0===i.registry[e]&&(i.registry[e]=0)}static increment(e){return i.ensureSlot(e),++i.registry[e]}static nextAvailable(e){return i.total(e)+1}static total(e){return i.ensureSlot(e),i.registry[e]}static reset(){for(const e in i.registry)i.registry[e]=0}};let r=i;r.registry={}},953:(e,t,n)=>{"use strict";n.d(t,{Z:()=>r});const i={};class r{static add(e){i[e.id]=e}static remove(e){delete i[e.id]}static all(){return Object.keys(i).map((e=>i[e]))}static getSlotById(e){return i[e]}static getSlotByWrapper(e){const t=e.getAttribute("data-wrapper")||"";return r.getSlotById(t)}static getSlotByGSlot(e){return r.getSlotById(e.getSlotElementId())}static get adhesionSlot(){const e=r.all().filter((e=>-1!==e.adUnitId.indexOf("adhesion")));if(e.length)return e.pop()}static getRecipeSlots(){return r.all().filter((e=>"Recipe"===e.type))}}},958:(e,t,n)=>{"use strict";n.d(t,{a$:()=>V,yq:()=>F,Y0:()=>Y,ZP:()=>U});var i=n(6039),r=n(2200),o=n(8250),s=n(9353),a=n(3528);function l(e){const t=e.offering.offering_code,n=function(e){const t=[`script[src*='scripts.${e}.com/videos/']`,`script[src*='video.${e}.com/videos/']`,`script[src*='video-staging.${e}.com/videos/']`,"script[src*='localhost:3030/videos/']",`script[src*='scripts.${e}.com/playlists/']`,`script[src*='video.${e}.com/playlists/']`,`script[src*='video-staging.${e}.com/playlists/']`,"script[src*='localhost:3030/playlists/']"].join(","),n=document.querySelectorAll(t);return Array.from(n).filter((t=>!!c(t,e)))}(t);n.forEach((e=>{const n=c(e,t);let i=Array.from(document.querySelectorAll(`[id="${n}"]`));const o=window[e.getAttribute("data-options")||""];0!==i.length||o?o&&(i=[document.querySelector(`[id="${o.targetID}"]`)]):(i.push(document.createElement("div")),e.insertAdjacentElement("beforebegin",i[0]),a.ZP.debug("Video: optionsDiv NOT found.  ADDING ONE!",n)),i.length>0&&i.forEach((e=>{(0,r.cn)(e,Y),e.setAttribute("data-video-id",n)}))}))}function c(e,t){let n;const i=e.getAttribute("src")||"",r=i.match(/\/(?:videos|playlists\/(?:.+?))\/([\w-]+)\.js/);let o;return r&&r[1]&&(n=r[1]),o=-1!==i.indexOf("/playlists/")?`${t}-playlist-${n}`:n,o}var d=n(5671),u=n(5595),p=n(2321),h=n(6497),g=n(4222),f=n(1374),m=(e=>(e[e.processing=0]="processing",e[e.live=1]="live",e[e.deleted=2]="deleted",e))(m||{}),b=n(7194);function y(e){return!!e.getClientRects().length}var v,w=Object.defineProperty,_=Object.getOwnPropertySymbols,M=Object.prototype.hasOwnProperty,A=Object.prototype.propertyIsEnumerable,S=(e,t,n)=>t in e?w(e,t,{enumerable:!0,configurable:!0,writable:!0,value:n}):e[t]=n,I=(e,t)=>{for(var n in t||(t={}))M.call(t,n)&&S(e,n,t[n]);if(_)for(var n of _(t))A.call(t,n)&&S(e,n,t[n]);return e},x=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));const C=window.$adManagementConfig.web.model.slug,E=`video.${null==(v=window.$adManagementConfig.web.model.offering)?void 0:v.offering_code}.com`;let P=!1;function T(e,t){return x(this,null,(function*(){var n;if(!function(e,t){var n;if(!t)return console.error("video target div is missing."),!1;if(!(null==(n=null==e?void 0:e.video)?void 0:n.status)||e.video.status!==m.live)return console.error("no video to play"),t.style.display="none",!1;if(!y(t))return!1;return!0}(e,t))return;window.$adManagementConfig.video||(window.$adManagementConfig.video={});const i=U.group;window.$adManagementConfig.video.playerGroup=(null==(n=window.$adManagementConfig.video)?void 0:n.playerGroup)||i.name,e.targetDiv=t;const r=k(t),o=(0,u.Ph)("debug_src"),s=o||`${e.playerSource}/${i.version}`,a=window.$adManagementConfig.web.model.videoSettings;e.playerSource=o||s,e.playerVersion=i.version,e.playerGroup=i.name,p.Z.trigger(p.Z.events.initLauncher,e),P?d.ready(g.w.placement,(()=>{var n,i;(null==(i=null==(n=null==window?void 0:window.$adManagementConfig)?void 0:n.video)?void 0:i.render)&&(window.$adManagementConfig.video.render(e,r),U.insertVideoHeadline(t,a))})):(P=!0,d(`${s}/placement.js`,g.w.placement),d.ready(g.w.placement,(()=>{window.$adManagementConfig.video&&(window.$adManagementConfig.video.render(e,r),U.insertVideoHeadline(t,a))})))}))}function k(e){if(!e)return{};const t=e.getAttribute("data-callbacks"),n=t?window[t]:{};return{aspectRatio:e.getAttribute("data-ratio")||void 0,autoInsert:(0,b.P)(e.getAttribute("data-autoInsert")),disableJsonLD:(0,b.P)(e.getAttribute("data-disable-jsonld")),height:Number(e.getAttribute("data-height"))||0,isAutomobile:(0,b.P)(e.getAttribute("data-automobile")),isAutoplay:(0,b.P)(e.getAttribute("data-autoplay")),isMuted:(0,b.P)(e.getAttribute("data-muted")),sticky:(0,b.P)(e.getAttribute("data-sticky")),title:e.getAttribute("data-title")||void 0,volume:Number(e.getAttribute("data-volume"))||0,width:Number(e.getAttribute("data-width"))||0,videoStartTime:Number(e.getAttribute("data-start-time"))||0,permalink:e.getAttribute("data-permalink")||void 0,srcPoster:e.getAttribute("data-srcPoster")||void 0,srcHls:e.getAttribute("data-srcHls")||void 0,srcHlsH265:e.getAttribute("data-srcHlsH265")||void 0,srcDash:e.getAttribute("data-srcDash")||void 0,onAdStarted:n.onAdStarted,onEnded:n.onEnded,onError:n.onError,onViewable:n.onViewable}}function j(e,t){return Object.keys(e).reduce(((n,i)=>n||"@type"===i&&e[i]===t||"object"==typeof e&&j(e[i],t)),!1)}function N(e,t){try{const n=JSON.parse(e);return"object"==typeof n&&j(n,t)}catch(e){return!1}}function O(e){const t=document.getElementsByTagName("script");return Array.from(t).filter((e=>"application/ld+json"===e.type)).reduce(((t,n)=>t||N(n.text,e)),!1)}function L(e,t){return x(this,null,(function*(){const n=U.getVideoIdFromTargetDiv(e),i=U.getPlaylistIdFromTargetDiv(e),r=U.videoConfigs,o=k(e);if(n){if(!r[n]){const e=h.Z.fetchJson(`https://${E}/videos/v2/${n}.json`,"GET"),i=h.Z.fetchJson(`https://${E}/playlists/v1/${C}/upnext-raw.json`,"GET");r[n]=Promise.all([e,i]).then((([e,t])=>{const n=(t||[]).filter((t=>t.slug!=e.video.slug));return e.playlist=n,e})).then((e=>U.addSiteData(e,t))).catch((e=>({meta:{},site:{},video:{}}))),U.haveWrittenMajorSchema=U.haveWrittenMajorSchema||O("VideoObject"),o.disableJsonLD||U.haveWrittenMajorSchema||(U.haveWrittenMajorSchema=!0,R(yield r[n]))}}else i&&(r[i]||(r[i]=h.Z.fetchJson(`https://${E}/playlists/v1/${C}/${i}.json`,"GET").then((e=>U.addSiteData(e,t))).catch((e=>({meta:{},site:{},video:{}}))),U.haveWrittenMajorSchema=U.haveWrittenMajorSchema||O("ItemList"),o.disableJsonLD||U.haveWrittenMajorSchema||(U.haveWrittenMajorSchema=!0,R(yield r[i]))))}))}function D(e,t){return x(this,null,(function*(){const n=U.getVideoIdFromTargetDiv(e),i=U.getPlaylistIdFromTargetDiv(e),r=U.videoConfigs;yield L(e,t);const o=f.ZP.contentDisabledFor;setTimeout((()=>x(this,null,(function*(){if(n){const t=yield r[n];T(I({},t),e)}else if(i){const t=yield r[i];T(I({},t),e)}}))),o)}))}function R(e){const t=document.createElement("script"),n=document.head||document.getElementsByTagName("head")[0],i=JSON.stringify(e.meta);t.className="mediavine-video__ld-json",t.setAttribute("type","application/ld+json");try{t.appendChild(document.createTextNode(i)),n.appendChild(t)}catch(e){t.text=i,n.appendChild(t)}}var z=n(6189),B=n(2137);var $=n(3583),Z=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));const Y="mv-video-target",W="mv-first-video",V="mv_auto_insert_headline",F="mv-video-player-clicked",G=["noscript","script","header","h1","h2","h3","h4","h5","h6","img"],H=class{constructor(e,t){this.model=e,this.blocklist=t;const{videoVersion:n,videoBetas:i}=e;H.group=function(e,t){const n=(0,u.Ph)("videoVersion");if(n)return{name:`${n}-beta-test`,version:n};const i=new B.z_;if(i.depth>1&&i.videoVersionGroup){const n=i.videoVersionGroup.version;if(n===e||t.some((e=>e.version===n)))return i.videoVersionGroup}try{const n=500,r=100*z.Vl,o=(0,z.tr)(r)<=n;let s=(0,z.tr)(100);for(const{trafficPercentage:n,version:r}of t){if(s<=n){const t={name:o?`${r}-beta-control`:`${r}-beta-test`,version:o?e:r};return i.setVideoVersionGroup(t),t}s-=n}}catch(e){a.ZP.debug("Problem selecting group:",e)}const r={name:"default",version:e};return i.setVideoVersionGroup(r),r}(n,i),(0,r.AE)((()=>{H.setVideoTargetDivs(e),window.$adManagementConfig.web.videoOptionsSet=!0,this.setupStickyVideo(e)}))}static generateSiteParams(e){return{aspectRatio:e.videoSettings.player_aspect_ratio,contentSelector:e.content_selector,defaultVtt:e.videoSettings.default_vtt,disableAutoplayOnClose:e.videoSettings.disable_autoplay_on_close,domain:e.domain,letterboxColor:e.videoSettings.player_background,midrollEnabled:e.videoSettings.midroll_enabled,mobilePopoutPlacement:e.videoSettings.mobile_popout_placement,mobilePopoutTopMargin:e.videoSettings.mobile_popout_top_margin,offering:e.offering,sidebarSelector:e.sidebar_btf_selector,stickyContentSide:e.videoSettings.sticky_content_side,videoAdhesionBackground:e.video_adhesion_color,videoAdhesionLightTheme:e.adhesion_light,youtubeChannelId:e.youtube_channel_id}}static addSiteData(e,t){return e.site=H.generateSiteParams(t),e}setupStickyVideo(e=this.model){const t=e.videoSettings,n="/"===window.location.pathname,i=!!(0,u.DY)("preview","true")&&!!(0,u.Ph)("p"),r=H.getMediavineVideoTargetDivs();if(this.blocklist.all||n&&!i||!t)return void(this.blocklist.all&&r.forEach((e=>{e.style.display="none"})));const o=r.length>0,s=H.getFirstValidVideoTargetDiv();o&&(s&&H.shouldHoistPlayer(s,e)&&H.hoistVideo(s,e),r.forEach((e=>{e.removeAttribute("data-autoplay"),e.removeAttribute("data-automobile")})));const a=document.querySelector(`.${Y}`);a&&(a.id=W,"#mv-first-video"===location.hash&&a.scrollIntoView({block:"center"}))}render(){H.setupMvVideoTargets(this.model)}static hoistVideo(e,t){const n=H.calculateHoistLocation(t);if(n&&e){(0,r.cn)(e,"mv-video__optimized");const{insertTarget:t,insertPosition:i}=n;t.insertAdjacentElement(i,e)}}static shouldHoistPlayer(e,t){const n=0===document.querySelectorAll('div[data-sticky="true"], div[data-sticky="1"], div[data-sticky=true]').length,r=!(0,b.P)(e.getAttribute("data-disable-optimize")),o=!(0,b.P)(e.getAttribute("data-disable-autoplay")),s=function({videoSettings:e},t,{isMobileOrTablet:n}=i.A){if((0,b.P)(t.getAttribute("data-force-optimize")))return!0;if(e.hoist_first_video_desktop&&!n)return!0;if(e.hoist_first_video_mobile&&n)return!0;return!1}(t,e);return!!e&&r&&o&&s&&(e.autoHoisted||n)}static getVideoTargetContentAdElement(e){var t;let n,r;for(i.A.isMobileOrTablet?(r=e&&e.querySelectorAll(`.${$.Y5},${s.d.MOBILE_SELECTOR}`),n=r&&r.length>1&&r[1]):(r=e&&e.querySelectorAll(`.${$.SE},${s.d.DESKTOP_SELECTOR}`),n=r&&r.length>0&&r[0]);n&&n.parentElement!==e&&n.parentElement.children.length<2;)n=n.parentElement;return n&&(null==(t=n.parentElement)?void 0:t.classList.contains($.N3))&&(n=n.parentElement),n}static canPlaceAdAfterElement(e){return H.isTwoConsecutiveBRs(e)||(0,o.v6)(e)&&(0,o.Lq)(e)&&-1===G.indexOf(e.tagName.toLowerCase())}static isTwoConsecutiveBRs(e){let t=!1;if("BR"===e.tagName){const n=e.nextElementSibling&&e.nextElementSibling.tagName,i=e.previousElementSibling&&e.previousElementSibling.tagName;if("BR"===n&&i){const n=e.nextSibling,r=n&&n.nodeName,o=n&&(n.textContent||"").trim();t=!(!e.nextSibling||"BR"!==r&&("#text"!==r||""!==o))&&-1===G.indexOf(i.toLowerCase())}}return t}static calculateHoistLocation(e){let t,n;const o=function(e){let t;t=i.A.isMobileOrTablet&&e.content_selector_mobile?document.querySelector(e.content_selector_mobile):e.content_selector?document.querySelector(e.content_selector):null;return t}(e),s=e.videoSettings.custom_hoist_selector?document.querySelector(e.videoSettings.custom_hoist_selector):null,a=e.videoSettings.custom_hoist_position||void 0,l=H.getVideoTargetContentAdElement(o);if(s)return n=s,t=a||"afterbegin",{insertTarget:n,insertPosition:t};if(o instanceof HTMLElement&&l instanceof HTMLElement){let e=l.nextElementSibling;for(;e&&!H.canPlaceAdAfterElement(e);)e=e.nextElementSibling;const i=.3,r=e&&o.offsetHeight>0&&e.offsetHeight/o.offsetHeight>i;e&&!r?(n=e,t="afterend"):(n=l,t="afterend")}else if(o instanceof HTMLElement){const e=4,i=o.children.length>=e?e:o.children.length-1;i>0?(n=o.children[i],t="afterend"):(n=o,t="afterbegin")}if(!n)return;const c=document.querySelector(".wp-block-mv-list");return c&&(0,r.Cx)(c,n)&&(n=c,t="beforebegin"),{insertTarget:n,insertPosition:t}}static getHeadlineTemplateDiv(e,t){const n=document.createElement(t);return n.className=`${V}`,n.textContent=e,n}static setupMvVideoTargets(e){return Z(this,null,(function*(){if(!H.setVideoTargetDivsComplete)return void p.Z.trigger(p.Z.events.sequenceError,"setupMvVideoTargets");const t=`div.${Y}:not([data-video-placement-inited="true"])`,n=document.querySelectorAll(t),i=Array.from(n).filter((e=>H.getVideoIdFromTargetDiv(e)||H.getPlaylistIdFromTargetDiv(e)));for(const t of i)(0,r.cn)(t,"ggnoads"),(0,r.cn)(t,"mv-video__embedded"),t.setAttribute("data-video-placement-inited","true"),H.setupVideoClickEvents(t),yield D(t,e)}))}static setupVideoClickEvents(e){e.addEventListener("click",q),function(e,t){let n=!1;function i(){n=!1,window.removeEventListener("touchmove",i)}function r(){n&&t(),e.removeEventListener("touchend",r),window.removeEventListener("touchmove",i)}e.addEventListener("touchstart",(t=>{n=!0,window.addEventListener("touchmove",i),e.addEventListener("touchend",r)}))}(e,q)}static getVideoIdFromTargetDiv(e){if(e.hasAttribute("data-video-id"))return e.getAttribute("data-video-id");{const t=Array.from(e.classList).find((e=>-1!==e.indexOf("mv-video-id-")));return t?t.split("-")[3]:null}}static getPlaylistIdFromTargetDiv(e){if(e.hasAttribute("data-playlist-id"))return e.getAttribute("data-playlist-id");{const t=Array.from(e.classList).find((e=>-1!==e.indexOf("mv-playlist-id-")));return t?t.split("-")[3]:null}}static getMediavineVideoTargetDivs(){const e=`div.${Y}`,t=document.querySelectorAll(e);return Array.from(t)}static getFirstValidVideoTargetDiv(){return H.getMediavineVideoTargetDivs().find((e=>!(0,b.P)(e.getAttribute("data-disable-auto-upgrade"))&&!(0,b.P)(e.getAttribute("data-disable-autoplay"))&&y(e)))}static insertVideoHeadline(e,t){return Z(this,null,(function*(){if((0,b.P)(e.getAttribute("data-disable-headline")))return;const n=this.getVideoIdFromTargetDiv(e),i=this.getPlaylistIdFromTargetDiv(e),o=e.getAttribute("data-video-headline"),s=i||n;if(s){const n=yield H.videoConfigs[s],i=o||n.video.videoHeadline||t.default_video_headline,a=t.default_video_headline_el||"h2";if(i){const t=H.getHeadlineTemplateDiv(i,a);(0,r.cn)(t,"mv-video__embedded-auto-headline"),e.insertAdjacentElement("beforebegin",t)}}}))}static setVideoTargetDivs(e){l(e);H.getMediavineVideoTargetDivs().forEach((t=>{L(t,e);let n=.42857142857142855;const i=t.getAttribute("data-ratio"),r=i&&i.split(":");r&&2===r.length&&(n=parseInt(r[1],10)/parseInt(r[0],10)),t.style.minHeight=t.clientWidth*n+66+"px"}));const t=H.getFirstValidVideoTargetDiv();t&&H.setAutoplayOptions(t,e),H.setVideoTargetDivsComplete=!0}static setAutoplayOptions(e,t){if(!e)return void a.ZP.debug("Video: Something has gone wrong setting video options.");const n=document.querySelectorAll('div[data-sticky="true"], div[data-sticky="1"], div[data-sticky=true]').length>0,i=parseInt((0,u.Ph)("mvs"));isNaN(i)||(e.setAttribute("data-start-time",i.toString()),e.setAttribute("data-automobile","true"),e.setAttribute("data-autoplay","true"),e.setAttribute("data-muted","false")),n||(e.setAttribute("data-sticky","true"),e.autoHoisted=!0)}};let U=H;function q(){window.dispatchEvent(new Event(F))}U.videoConfigs={},U.haveWrittenMajorSchema=!1,U.setVideoTargetDivsComplete=!1},8015:(e,t,n)=>{"use strict";n.d(t,{Ar:()=>r,nO:()=>o,m2:()=>s});var i=n(3583);const r="#a5a5a5",o="mv-device-",s=({adhesion_light:e,custom_css:t,recipe_float:n,triplelift:r,sidebar_minimum_width:s})=>`\n  :root {\n    --adhesion-background-color: ${e?"rgba(250, 250, 250, 0.9);":"rgba(0, 0, 0, 0.9);"}\n  }\n\n  .mv-empty-wrapper {\t\n    margin: 0 !important;\t\n    height: 0px !important;\t\n    min-height: unset !important;\t\n  } \n  .adunitwrapper {\n    overflow: visible;\n    position: relative;\n    /* Typical height + padding for adunitlabels */\n    height: 264px;\n    /* Typical Width */\n    width: 300px;\n    /* try transition in separate a/b test */\n    /* transition: all 0.5s; */\n  }\n\n  body .adunitwrapper[style*='display: block']>.adunit:before {\n    content: "Loading Ad...";\n    position: absolute;\n    top: 0;\n    left: 0;\n    width: 100%;\n    height: 100%;\n    display: flex;\n    flex-wrap: wrap;\n    -webkit-align-content: center;\n    align-content: center;\n    justify-content: center;\n    font-size: 14px;\n    color: #999;\n    display: -webkit-box;\n    -webkit-box-pack: center;\n    -webkit-box-align: center;\n    box-sizing: border-box;\n  }\n\n  [data-slot] {\n    height: 264px;\n  }\n\n  [data-hint-slot-inserted="true"],\n  [data-hint-slot-inserted="blocked"] {\n    height: revert;\n  }\n\n  .mv-outstream-container + .adunit:before { \n    display: none!important;\n  }\n\n  .mv-outstream-container + .adunitwrapper>.adunit:before {\n    display: none!important;\n  }\n\n  body .adunitwrapper[style*='display: block']>.adunit {\n    position: relative;\n  }\n\n  body .adunitwrapper[style*='display: block']>.adunit>div {\n    position: relative;\n  }\n\n  .adhesion_wrapper {\n    display: none;\n    max-height: 90px!important;\n  }\n\n  .mv-native-size {\n    display: flex;\n    flex-direction: column;\n    justify-content: center;\n    height: initial;\n    padding-left: 20px;\n    overflow: hidden !important;\n  }\n\n  .mv-native-size.sidebar_atf_wrapper,\n  .mv-native-size.sidebar_btf_wrapper {\n    padding-left: 0px;\n    padding-bottom: 19px;\n  }\n\n  .mv-native-size div[id^='google_ads'] {\n    min-height: 100%!important;\n    height: 100%!important;\n    width: 100%!important;\n  }\n\n  .mv-dynamic-size div[id^='google_ads'] {\n    height: initial!important;\n    width: initial!important;\n  }\n\n  mv-ad-reporter {\n    display: none;\n    position: absolute;\n    height: 20px;\n    width: 20px;\n    z-index: 1200;\n    line-height: 1.0;\n  }\n\n  .adunitwrapper mv-ad-reporter {\n    bottom: 0px;\n    right: -22px;\n  }\n  \n  .adunitwrapper.sidebar_atf_wrapper mv-ad-reporter,\n  .adunitwrapper.sidebar_btf_wrapper mv-ad-reporter {\n    bottom: -20px;\n    right: 1px;\n  }\n\n  #adhesion_mobile_wrapper mv-ad-reporter,\n  #adhesion_desktop_wrapper mv-ad-reporter,\n  #adhesion_tablet_wrapper mv-ad-reporter {\n    position: relative;\n    left: 3px;\n  }\n\n  @media (max-width: 391px) {\n    .adunitwrapper mv-ad-reporter {\n      bottom: -20px;\n      right: 1px;\n    }\n  }\n\n  .adunitwrapper.mv-native-size mv-ad-reporter {\n    right: 1px;\n    bottom: 0px;\n  }\n\n  .mv-ad-box mv-ad-reporter {\n    bottom: 1px;\n    right: 1px;\n  }\n\n  .mv-outstream-container {\n    position: absolute;\n    z-index:1000;\n    height: 100%;\n    width: 100%;\n  }\n\n  .adhesion_wrapper .mv-outstream-container {\n    top: -51px;\n    left: 5%;\n    width: auto;\n  }\n  \n  .mv-outstream-mute {\n    position: absolute;\n    top: 5px;\n    left: 5px;\n    width: 30px;\n    height: 30px;\n    z-index: 999;\n  }\n\n  .mv-mute-button {\n    pointer-events: none;\n  }\n\n  .mv-mute-button img {\n    width: 32px;\n  }\n\n  #arrival_wrapper {\n    margin: 10px auto 20px auto!important;\n  }\n\n  .mv-arrival-continue-button {\n    margin: 0 auto;\n    display: block;\n    width: 300px;\n    text-align: center;\n    border-top: 1px solid #efefef;\n    padding: 15px 0px;\n    z-index: 1001;\n  }\n\n  body.adhesion {\n    padding-bottom: 90px!important;\n  }\n\n  .mediavine img {\n    margin : 0 !important;\n    padding : 0 !important;\n    border : 0 !important;\n    box-shadow: none !important;\n  }\n\n  .sidebar_btf_wrapper {\n    margin : 0 auto 0 auto;\n    width : 300px;\n  }\n\n  .recipe_mobile_wrapper,\n  .${i.Y5},\n  .comments_mobile_wrapper {\n    margin-bottom : 10px;\n  }\n\n  [data-recipe-ads-inserted] .recipe_btf_wrapper,\n  [data-recipe-ads-inserted] .recipe_mobile_wrapper {\n    margin: 0 auto;\n  }\n\n  .wprm-recipe-ingredients-container .recipe_btf_wrapper{\n    float: right;\n  }\n\n  .tasty-recipes-ingredients .recipe_btf_wrapper{\n    float: right;\n  }\n\n  @media (max-width: ${(s||1100)-1}px) {\n    #sidebar_btf_sticky_wrapper, .sidebar_btf_wrapper {\n      display : none !important;\n    }\n  }\n\n\n  .mv-create-target { \n    max-width: 300px !important;\n  }\n\n  .adunit a,\n  .adunit object,\n  .adunit embed,\n  .adunit img,\n  .adunit div,\n  .adunit iframe {\n    margin: 0 auto !important;\n    text-align: center;\n  }\n\n  .${i.SE}.native,\n  .${i.Y5}.native {\n    max-width : 600px;\n  }\n\n  .content_float_right {\n    margin : 0 0 10px 20px;\n    float : right;\n  }\n\n  .${i.Y5},\n  .recipe_mobile_wrapper,\n  .comments_mobile_wrapper,\n  .comments_btf_wrapper,\n  .comments_mobile_wrapper,\n  .${i.SE},\n  .feed_mobile_wrapper,\n  .feed_btf_wrapper {\n    margin : 10px auto 20px auto;\n    text-align : center;\n  }\n\n  .${i.SE},\n  .${i.Y5} {\n    clear: both;\n  }\n\n  .leaderboard_atf_wrapper,\n  .sidebar_atf_wrapper,\n  .leaderboard_btf_wrapper {\n    margin : 0px auto 20px auto;\n    text-align : center;\n  }\n  .leaderboard_btf_wrapper {\n    margin-top : 20px;\n  }\n\n  @media (max-width : 727px) {\n    .leaderboard_atf_wrapper {\n      display : none !important;\n    }\n  }\n\n  .adhesion_wrapper.adhesion_container {\n    bottom: 0;\n    left: 0;\n    position: fixed;\n    right: 0;\n    text-align: center;\n    width: 100% !important;\n    z-index: 2147483535;\n\n    display: flex;\n    flex-direction: row;\n    align-items: center;\n    justify-content: center;\n    background-color: var(--adhesion-background-color, \n      ${e?"rgba(250, 250, 250, 0.9)":"rgba(0, 0, 0, 0.9)"})\n  }\n\n  .adhesion_wrapper>.adunit>div {\n    position: sticky;\n  }\n\n  .adhesion_wrapper div {\n    margin: 0px;\n  }\n\n  .gumgumAdhesion .adhesion_wrapper {\n    visibility: hidden;\n  }\n\n  .adhesion_wrapper .adhesion_buttons {\n    height: 80px;\n    width: 48px;\n    display: flex;\n    align-items: center;\n    flex-direction: column;\n    justify-content: space-around;\n    margin-left: 3px;\n  }\n\n  .adhesion_wrapper .mv_close_button {\n    width: 24px;\n    height: 24px;\n    display: block;\n    position: relative;\n    cursor: pointer; \n  }\n\n  .adhesion_wrapper .mv_unbutton {\n    padding: unset;\n    border: unset;\n    background-color: transparent;\n  }\n\n  .adhesion_wrapper .mv_close_button img {\n    width: 24px;\n    height: 24px;\n    pointer-events: none;\n    /* Position it 50% from the top-left corner. */\n    position: absolute;\n    top: 50%;\n    left: 50%;\n    /* Then move it back half its width and height for perfect centering. */\n    transform: translate(-50%, -50%);\n  }\n\n  .universalPlayer_wrapper.uvp_fadeout {\n    opacity: 0%;\n    transition: all 0.5s linear 3s;\n  }\n\n  .universalPlayer_wrapper.uvp_hidden {\n    visibility: hidden !important;\n  }\n\n  .universalPlayer_wrapper {\n    display: block;\n    position: fixed;\n    background: none;\n    box-shadow: rgb(0 0 0 / 15%) 0px 2px 10px;\n    z-index: 1100;\n    overflow: visible;\n    right: 20px;\n    bottom: 20px;\n    transition: all .3s ease-in;\n    transition-delay: 500ms;\n  }\n\n  .universalPlayer_wrapper:after {\n    content: "\\00B7\\00B7\\00B7";\n    position: absolute;\n    top: 0px;\n    display: flex!important;\n    align-items: center;\n    justify-content: center;\n    height: 100%;\n    width: 100%;\n    text-align: center;\n    color: #C4C4C4;\n    font-size: 62px;\n    letter-spacing: 2px;\n    z-index: 999;\n    animation: fadeOut 1s linear 0s infinite;\n    animation-direction: alternate;\n  }\n\n  .universalPlayer_wrapper .mv-outstream-container {\n    border-radius: 10px;\n    overflow: hidden;\n  }\n\n  .universalPlayer_wrapper .mv-outstream-mute {\n    top: unset;\n    bottom: 4px;\n    left: 30px;\n    width: unset;\n    opacity: 0.75;\n  }\n\n  .universalPlayer_wrapper .mv-outstream-mute:after {\n    content: "Ad";\n    position: absolute;\n    top: 6px;\n    color: whitesmoke;\n    text-shadow: 0px 0px 8px black;\n    font-weight: lighter;\n    font-size: 12px;\n    width: fit-content;\n  }\n\n  .universalPlayer_wrapper .mv-outstream-mute img {\n    width: 29px;\n  }\n\n  .universalPlayer_wrapper .mv-uvp-menu-backdrop {\n    display: none;\n    position: absolute;\n    width: 100%;\n    height: 100%;\n\n    flex-direction: row;\n    justify-content: center;\n    align-items: center;\n\n    background: rgb(0,0,0, 40%);\n    border-radius: 10px;\n    z-index: 1002;\n  }\n\n  .universalPlayer_wrapper .mv-uvp-menu {\n    position: absolute;\n    z-index: 1003;\n    display: flex;\n    flex-direction: column;\n    width: 55%;\n    height: 60%;\n    background: white;\n    border-radius: 5px;\n    align-items: center;\n    justify-content: space-around;\n    font-weight: 300;\n    font-size: 15px;\n  }\n\n  .universalPlayer_wrapper .mv-uvp-menu .mv-uvp-menu-item {\n    width: 100%;\n    height: 100%;\n    cursor: pointer;\n    display: flex;\n    justify-content: center;\n    align-items: center;       \n  }\n\n  .universalPlayer_wrapper .mv-uvp-menu .mv-uvp-menu-item a {\n    text-decoration: none;\n    color: inherit;\n    width: 100%;\n    height: 100%;\n    display: flex;\n    align-items: center;\n    justify-content: center;\n  }\n  .universalPlayer_wrapper .mv-uvp-menu .mv-uvp-menu-item a:hover {\n    text-decoration: underline;\n  }\n\n  .universalPlayer_wrapper .mv-uvp-menu #iconReportSvg {\n    margin-right: 3px;\n  }\n\n  .universalPlayer_wrapper .mv-uvp-menu .mv-uvp-menu-item:not(:last-child) {\n    border-bottom: solid lightgrey 1px;\n  }\n\n  .universalPlayer_wrapper .mv-uvp-menu .mv-uvp-menu-item.mv-ad-report-button > * {\n    pointer-events: none;\n  }\n\n  .universalPlayer_report {\n    position: absolute;\n    left: 3px;\n    bottom: 5px;\n    z-index: 1001;\n    height: 26px;\n    width: 26px;\n\n    display: flex;\n    align-items: center;\n\n    background: rgba(30, 30, 30, 0.5);\n    border-radius: 15px;\n  }\n\n  .universalPlayer_report img {\n    opacity: 100%;\n    width: 20px;\n    height: 20px;\n    pointer-events: none;\n    margin: 0 auto !important;\n  }\n\n  .universalPlayer_close {\n    position: absolute;\n    top: 7px;\n    z-index: 3000;\n    padding: 0px 10px;\n    line-height: 35px;\n    cursor: pointer;\n    filter: drop-shadow(0px 0px 6px black);\n  }\n\n  .universalPlayer_close img {\n    width: 15px;\n    height: 15px;\n    pointer-events: none;\n    margin: 0 auto !important;\n  }\n\n  .adunit#universalPlayer {\n    background: black;\n    border-radius: 10px;\n    width: 100%;\n    height: 100%;\n  }\n\n  .universalPlayer__top {\n    top: 0;\n  }\n\n  .universalPlayer__bottom {\n    bottom: 15px;\n  }\n\n  .universalPlayer__right {\n    right: 15px;\n  }\n\n  .universalPlayer__left {\n    left: 15px;\n  }\n\n  /* Note: this rule and others that specifically target '.universalPlayer__bottom.universalPlayer__left'\n    are specifically to fix a conflict with Slipstream.  Adding an extra rule makes it more specific than Slipstream's\n    and force it to have higher priority.\n    https://mediavine.atlassian.net/browse/SUP-565 */\n  .universalPlayer__bottom.universalPlayer__left{\n    transform: translateX(0);\n  }\n\n  /* make room for desktop adhesion (90px) */\n  body.adhesion .universalPlayer__bottom,\n  body.adhesion .universalPlayer__bottom.universalPlayer__left {\n    transform: translateY(-87px);\n  } \n\n  /* explicitly supply transform for tablet size (90px) */\n  body.adhesion.${o}tablet .universalPlayer__bottom {\n    transform: translateY(-87px);\n  }\n\n  /* make room for mobile adhesion (50px) */\n  body.adhesion.${o}mobile .universalPlayer__bottom {\n    transform: translateY(-47px);\n  }\n\n  /* make room for desktop gumgum adhesion (145px) */\n  body.adhesion.gumgumAdhesion .universalPlayer__bottom,\n  body.adhesion.gumgumAdhesion .universalPlayer__bottom.universalPlayer__left {\n    transform: translateY(-142px);\n  }\n\n  /* make room for mobile gumgum adhesion (100px) */\n  body.adhesion.gumgumAdhesion.${o}mobile .universalPlayer__bottom {\n    transform: translateY(-97px);\n  }\n\n  body.adhesion.${i.U4}.${o}mobile .universalPlayer__bottom {\n    transform: translateY(-97px);\n  }\n\n  /*Keep Close Button on screen for small devices*/\n  @media(min-width: 350px) {\n    .adhesion_wrapper .mv_close_small {\n      display: none;\n    }\n\n  }\n\n  /*Push Logo Up*/\n  @media (max-width: 350px) {\n    .adhesion_wrapper .mv_unbutton {\n      display: none;\n    }\n\n    .adhesion_wrapper .adhesion_buttons {\n      position: absolute;\n      bottom: 51px;\n      right: 0px;\n      z-index: 11;\n      width: 20px;\n      height: 20px !important;\n    }\n\n    #adhesion_mobile_wrapper mv-ad-reporter {\n      display: none !important;\n    }\n  }\n\n  @media (min-width: 728px) and (max-width: 840px) {\n    \n  }\n\n  @media (max-width: 727px) {\n    body.adhesion {\n      padding-bottom : 50px;\n    }\n    .adhesion_wrapper.adhesion_container {\n      justify-content: center;\n    }\n\n    /* Provides centered padding for Mediavine logo and Report Button */\n    .mv-native-size .adunitlabel {\n      max-width: calc(100vw - 15px) !important;\n    }\n  }\n\n  @media (min-width: 728px) {\n    body.adhesion {\n      padding-bottom : 90px;\n    }\n  }\n\n  ${n?"\n  #recipe_btf_wrapper {\n    float : right;\n  }\n  ":"\n  .recipe_btf_wrapper {\n    width : 300px;\n    margin : 20px 0 20px 0px !important;\n  }"}\n\n  @media print {\n    .adunit,\n    .adunitwrapper,\n    .adhesion_wrapper,\n    .mv-ad-box, \n    mv-ad-reporter {\n      display : none !important;\n    }\n  }\n\n  #sovrn_beacon {\n    position: absolute\n  }\n\n  ${r?"\n    .triplelift {\n      margin-bottom : 5px !important;\n    }\n\n    .triplelift .entry-title {\n      background : none !important;\n      font-size : 18px;\n      line-height : 22px;\n      clear : none !important;\n    }\n    .triplelift .entry-content {\n      clear : none !important;\n      background : none !important;\n    }\n    .triplelift .entry-meta {\n      display : block !important;\n      background : none !important;\n      clear : none !important;\n      border : none !important;\n      float : none !important;\n    }\n    .triplelift .entry-title a {\n      line-height: inherit !important;\n      float: none !important;\n      width: auto !important;\n      height: auto !important;\n      background: none !important;\n      color: inherit !important;\n      font-size: inherit !important;\n      line-height: inherit !important;\n      margin: 0 !important;\n      padding: 0 !important;\n    }\n    ":""}\n\n  \n.mv-native-ad {\n  text-align: left;\n  position: relative;\n  margin: 0 auto;\n\twidth: fit-content;\n}\n\n.mv-native-ad div {\n  box-sizing: border-box !important;\n}\n\n.mv-native-ad + .adunit {\n  height: 0px;\n  width: 0px;\n}\n\n.mv-native-ad-icon {\n\theight: 16px;\n\twidth: 16px;\n\tcolor: #FFF;\n\tbackground: #919191;\n\tfont-size: 10px;\n\ttext-align: center;\n  align-items: center;\n\tjustify-content: center;\n\tposition: absolute;\n\ttop: 0;\n\tright: 0;\n}\n\n  ${t||""}\n`},6159:(e,t,n)=>{"use strict";n.d(t,{F6:()=>X,_d:()=>ne,Gu:()=>te});var i=n(6528),r=n(2200),o=n(3528),s=n(7856),a=n(907),l=n(8250),c=n(6039),d=n(3769),u=n(3784),p=n(5595),h=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));const g=class{constructor(e,t){var n;if(this.slotFactory=t,this.slots=[],c.A.isMobileOrTablet&&!e.content_mobile)return void(this.renderedPromise=Promise.resolve());if(!c.A.isMobileOrTablet&&!e.content_desktop)return void(this.renderedPromise=Promise.resolve());this.divBuster=e.enable_divbuster,this.listBuster=e.enable_listbuster,this.uninsertableAfterSelector=e.content_skip_after_selector,this.uninsertableBeforeSelector=e.content_skip_before_selector,this.belowContentEnabled=!!e.below_content;const i=this.belowContentEnabled&&!this.divBuster?1:0;this.startingParagraphNumber=null!=(n=e.content_buffer_begin)?n:0,this.endingParagraphNumber=Math.max(e.content_buffer_end||0,i),(this.listBuster||this.divBuster)&&(this.startingParagraphNumber=0,this.endingParagraphNumber=0),this.contentRequireText=e.content_require_text,this.stopSelector=e.content_stop_selector,this.displayContentAfterFlex=e.display_content_after_flex,this.minParagraphBuffer=e.content_cba_desktop_buffer,this.density=e.content_cba_desktop_percentage&&e.content_cba_desktop_percentage/100,this.slotLimit=e.content_cba_desktop_limit,this.target=e.content_selector,this.optShortFormContent=e.optimize_short_form_content,this.unbustableSelector=e.divbuster_exclusions,this.optimizeCLSMode=!!e.ad_box;const o=(0,p.Ph)("enableDivbuster");void 0!==o&&(""!==o&&(this.target=o),this.divBuster=!0);void 0!==(0,p.Ph)("enableListbuster")&&(this.listBuster=!0),c.A.isMobileOrTablet&&(this.minParagraphBuffer=e.content_cba_mobile_buffer,this.density=e.content_cba_mobile_percentage&&e.content_cba_mobile_percentage/100,this.slotLimit=e.content_cba_mobile_limit,this.target=e.content_selector_mobile||e.content_selector),window.$adManagementConfig.web.insertContentAds=this.dynamicallyCreateSlots.bind(this),this.renderedPromise=new Promise((e=>{(0,r.AE)((()=>{this.render().then((()=>{e()}))}))}))}render(){return h(this,null,(function*(){if(d.k.getHintParagraphs({mobileSelector:g.MOBILE_SELECTOR,desktopSelector:g.DESKTOP_SELECTOR}).length>0)return;const e=(this.target?Array.from(document.querySelectorAll(`${this.target}, ${g.DATA_CONTENT_SELECTOR}`)):[]).map((e=>this.dynamicallyCreateSlots(e)));yield Promise.all(e)}))}dynamicallyCreateSlots(e){return h(this,null,(function*(){if(!(e&&e instanceof Element))return o.ZP.debug("Mediavine: Must provide a valid element to insert ads into.",e),!1;if("true"===e.getAttribute("data-content-ads-inserted"))return!1;e.setAttribute("data-content-ads-inserted","true");const t=new l.ZP({slotFactory:this.slotFactory,slotClass:"Content",prebidFacade:this.prebidFacade,target:e,slotLimit:this.slotLimit,startingParagraphNumber:this.startingParagraphNumber,endingParagraphNumber:this.endingParagraphNumber,density:this.density,contentRequireText:this.contentRequireText,minParagraphBuffer:this.minParagraphBuffer,stopSelector:this.stopSelector,divBuster:this.divBuster,listBuster:this.listBuster,unbustableSelector:this.unbustableSelector,optShortFormContent:this.optShortFormContent,uninsertableClassRegExp:/wprm-recipe-container/,uninsertableAfterSelector:this.uninsertableAfterSelector,uninsertableBeforeSelector:this.uninsertableBeforeSelector,belowContentEnabled:this.belowContentEnabled,optimizeCLSMode:this.optimizeCLSMode,displayContentAfterFlex:this.displayContentAfterFlex});yield t.createSlots();const n=e.clientHeight>2*window.innerHeight,i=u.Z.total("Content");return this.belowContentEnabled&&(n||1===i)&&l.ZP.insertSlot(e,"Content",this.slotFactory,"beforeend"),!0}))}};let f=g;f.MOBILE_SELECTOR=".content_mobile_hint, .content_hint",f.DESKTOP_SELECTOR=".content_desktop_hint, .content_hint",f.DATA_CONTENT_SELECTOR="[data-content-area]",f.SLOT_CLASS="Content";var m,b,y=n(2321),v=n(3583),w=n(9);(b=m||(m={})).preRenderValid=(e,t)=>{const n=(0,p.Ph)("slotType",t)||"",i="string"==typeof n?n:n[0],r=!i||i.toLocaleLowerCase()===e.type.toLocaleLowerCase(),o=!e.allowSelector||!!document.querySelector(e.allowSelector);return r&&o},b.render=e=>{var t;return!(!(e.target&&e.insertPosition&&e.template)||e.blockRenderForCLS()||(e.validate()?(e.target.setAttribute(`${v.Mg}-${e.slotModel.type}`,"true"),null==(t=e.target)||t.insertAdjacentHTML(e.insertPosition,e.template()),y.Z.trigger(y.Z.events.slotWrapperRenderEnded,e),0):(e.target.setAttribute(`${v.Mg}-${e.slotModel.type}`,"invalid"),1)))},b.handleRenderEnded=({size:e,isEmpty:t},n,i)=>{var r;if(_(t,n),n.isRefreshing){if(t)return void(n.refreshRetries>=v.or?(n.refreshTime=0,n.onRefreshRetryFail()):(n.refreshTime=15,n.refreshRetries++,y.Z.trigger(y.Z.events.registerRefreshable,n)));n.refreshRetries=0,n.refreshTime=v.Q0}else if(t)return void n.cleanup();if("string"==typeof e)return;const[o,s]=e;if(1!==o&&1!==s&&(n.adType=0===o&&0===s?w.Z9.adXNative:w.Z9.adXStandard,n.width=o,n.height=s,n.sizeContainers(),n&&n.highestPrebid&&(i.addBids([n.highestPrebid]),n.highestPrebid=void 0)),!n.refreshSizeRestricted&&n.restrictRefreshSize){const e=n.height||(null==(r=n.highestPrebid)?void 0:r.height)||!1;e&&e>1&&(n.fixedHeight=e,n.sizes=n.sizes.filter((t=>!e||Array.isArray(t)&&t[1]<=e)))}n.displayAdUnitLabels(n.adType)};const _=(e,t)=>{var n,i,r;const s=!!(null==(n=t.highestPrebid)?void 0:n.adserverTargeting.hb_pb),a=null==(i=window.googletag)?void 0:i.pubads().getTargeting("test").includes("houseads");if(e&&(s||a)){y.Z.trigger(y.Z.events.lineItemFailure,t);try{const e=JSON.stringify(null==(r=null==t?void 0:t.gSlot)?void 0:r.getTargetingMap(),null,2);o.ZP.debug(`GAM Line Item Failure: slot ${t.id} with targeting ${e}`)}catch(e){o.ZP.debug(`GAM Line Item Failure: slot ${t.id}`)}}};var M=n(953),A=n(1806),S=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));class I{constructor(e,t){this.model=e,this.blocklist=t}registerSlotRenderEndedHandler(e){this.auctionHouse||(this.auctionHouse=e,y.Z.on(y.Z.events.slotRenderEnded,((t,n)=>{n&&m.handleRenderEnded(t,n,e)})))}new(e){return S(this,null,(function*(){try{const t=(0,i.bZ)(e.type);if(this.blocklist.all||t&&this.blocklist.contains(t)||!m.preRenderValid(e))return;const n=yield this.getSlotConstructor(e.type);if(!n)throw`Couldn't find SlotConstructor for ${e.type}`;const r=new n(e,this.model);if(this.blocklist.isBlockListed(r))return;return m.render(r)?(u.Z.increment(e.type),o.ZP.debug(`Rendered slot ${r.id}`),M.Z.add(r),A.ZP.one(A.FH.cleanup,(()=>{r.destroy()})),r):void 0}catch(t){o.ZP.debug(t),o.ZP.debug(`Slot ${e.type} unable to instantiate!`)}}))}getSlotConstructor(e){return S(this,null,(function*(){switch(e){case"Adhesion":const{Adhesion:e}=yield Promise.all([n.e(9906),n.e(5285)]).then(n.bind(n,5285));return e;case"Arrival":const{Arrival:t}=yield Promise.all([n.e(9906),n.e(2799)]).then(n.bind(n,2799));return t;case"Comments":const{Comments:i}=yield Promise.all([n.e(9906),n.e(6008)]).then(n.bind(n,6008));return i;case"Content":const{Content:r}=yield Promise.all([n.e(9906),n.e(675),n.e(3367)]).then(n.bind(n,3367));return r;case"Feed":const{Feed:o}=yield Promise.all([n.e(9906),n.e(675),n.e(8763)]).then(n.bind(n,8763));return o;case"Leaderboard":const{Leaderboard:s}=yield Promise.all([n.e(9906),n.e(2197)]).then(n.bind(n,2197));return s;case"LeaderboardAtf":const{LeaderboardAtf:a}=yield Promise.all([n.e(9906),n.e(546)]).then(n.bind(n,546));return a;case"LeaderboardBtf":const{LeaderboardBtf:l}=yield Promise.all([n.e(9906),n.e(3278)]).then(n.bind(n,3278));return l;case"Recipe":const{Recipe:c}=yield Promise.all([n.e(9906),n.e(7825)]).then(n.bind(n,7825));return c;case"Sidebar":const{Sidebar:d}=yield Promise.all([n.e(9906),n.e(2723)]).then(n.bind(n,2723));return d;case"SidebarAtf":const{SidebarAtf:u}=yield Promise.all([n.e(9906),n.e(427)]).then(n.bind(n,427));return u;case"SidebarBtf":const{SidebarBtf:p}=yield Promise.all([n.e(9906),n.e(5728)]).then(n.bind(n,5728));return p;case"UniversalPlayer":const{UniversalPlayer:h}=yield Promise.all([n.e(8322),n.e(9906),n.e(8982),n.e(2726)]).then(n.bind(n,2726));return h;default:return null}}))}}var x=n(958),C=n(8015),E=n(5671);var P=n(5151),T=n(5506);const k="offeringLogo";class j{constructor(e){this.model=e,this.loaded=!1,y.Z.on(y.Z.events.slotWrapperRenderEnded,(e=>this.addReportButton(e))),document.addEventListener("click",(e=>this.handleReportButtonClick(e)))}static new(e){return j.instance=j.instance||new j(e)}handleReportButtonClick(e){const t=e.composedPath()[0];if(!t.classList.contains("mv-ad-report-button"))return;const{offering_code:n}=this.model.offering||{offering_code:""},i=`https://adreporter.${n}.com/assets/modal.js`;this.loaded?this.openAdReporter(t):E(i,(()=>{this.loaded=!0,this.openAdReporter(t)}))}openAdReporter(e){const t=e.getAttribute("data-target")||"",n=e.getAttribute("data-adtype")||"video",i="video"===n?M.Z.getSlotById("video"):M.Z.getSlotById(t);window.$adManagementConfig.adReporter.open(t,n,i)}addReportButton(e){var t,n;if("UniversalPlayer"===e.type||!e.model.enable_mvp_branding)return;const i=document.createElement("mv-ad-reporter");i.setAttribute("data-slot-id",e.id),i.setAttribute("data-offering",(null==(t=e.model.offering.id)?void 0:t.toString())||""),i.setAttribute("data-offering-name",(null==(n=e.model.offering)?void 0:n.offering_code)||""),e.adReporterAnchor.insertAdjacentElement("beforeend",i)}}const N=class extends HTMLElement{constructor(){super(),this.isMenuHidden=!0,this.reporterShadow=this.attachShadow({mode:"open"}),N.allAdReporters.push(this)}closeMenu(){this.menuOverlay.style.display="none",this.logoButton.src=this.getOfferingLogo(this.offeringId),this.isMenuHidden=!0}openMenu(){this.logoButton.src=P,this.menuOverlay.style.display="flex",this.isMenuHidden=!1,this.menuOverlay.getBoundingClientRect().left<0&&(this.menuOverlay.style.left="15px",this.menuOverlay.style.right="unset")}get offeringId(){return this.getAttribute("data-offering")||""}get offeringName(){return this.getAttribute("data-offering-name")||""}getOfferingLogo(e){switch(e){case"1":return"data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEyIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNMTEuMjU5MiAwLjU4NjMwOUMxMC45NDk4IDAuNjc2MTIzIDEwLjM2OCAwLjg5ODU1NSAxMC4xNDE1IDEuMzQzNjJDOS45MjgxOSAxLjc2MjIxIDEwLjA2OSAyLjMzNzU0IDEwLjE5NzUgMi42N0MxMC41MDY3IDIuNTgwMjkgMTEuMDg5OSAyLjM1Nzg2IDExLjMxNjUgMS45MTIzOEMxMS41NDMyIDEuNDY3MzEgMTEuMzczMSAwLjg4MTIwOCAxMS4yNTkyIDAuNTg2MzA5VjAuNTg2MzA5Wk05LjkwMDYxIDMuMjU1OUw5LjgxMjMgMy4wODUyQzkuNzg4OTMgMy4wMzk3MyA5LjI0MjA5IDEuOTYyNzggOS42NzMwMyAxLjExNjg4QzEwLjEwMzYgMC4yNzA3NzggMTEuMzEzNiAwLjA0MzkzMjEgMTEuMzY0OCAwLjAzNDY5NEwxMS41NTc2IDBMMTEuNjQ1OSAwLjE3MDY5OUMxMS42NjkzIDAuMjE2MTcxIDEyLjIxNiAxLjI5MzAyIDExLjc4NDkgMi4xMzkxMkMxMS4zNTQ4IDIuOTg0ODIgMTAuMTQ0NyAzLjIxMTg3IDEwLjA5MzMgMy4yMjExMUw5LjkwMDYxIDMuMjU1OVoiIGZpbGw9IiM5MTkxOTEiLz4KPHBhdGggZmlsbC1ydWxlPSJldmVub2RkIiBjbGlwLXJ1bGU9ImV2ZW5vZGQiIGQ9Ik0yLjY0NDc1IDIuNjQ3NzlDMi41NzkxNyAxLjI4MzQzIDEuNDQwMjIgMC4xOTQ4NzggMC4wMzI5NTkgMC4xNjE2MjFWNS4zODI1NkMwLjAzNDAxMTYgNS4zODI1NiAwLjAzNTA2NDIgNS4zODI0NiAwLjAzNjExNjkgNS4zODIzNkMwLjEwMTY5NiA2Ljc0NjcyIDEuMjQwNjQgNy44MzUzNyAyLjY0NzkxIDcuODY4NTJWMi42NDc2OUMyLjY0Njg1IDIuNjQ3NjkgMi42NDU4IDIuNjQ3NzkgMi42NDQ3NSAyLjY0Nzc5IiBmaWxsPSIjOTE5MTkxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNNS43MTcyNiAyLjY0Nzc5QzUuNjUxNjggMS4yODM0MyA0LjUxMjczIDAuMTk0ODc4IDMuMTA1NDcgMC4xNjE2MjFWNS4zODI1NkMzLjEwNjUyIDUuMzgyNTYgMy4xMDc1NyA1LjM4MjQ2IDMuMTA4NzMgNS4zODIzNkMzLjE3NDIxIDYuNzQ2NzIgNC4zMTMxNSA3LjgzNTM3IDUuNzIwNTIgNy44Njg1MlYyLjY0NzY5QzUuNzE5NDcgMi42NDc2OSA1LjcxODMxIDIuNjQ3NzkgNS43MTcyNiAyLjY0Nzc5IiBmaWxsPSIjOTE5MTkxIi8+CjxwYXRoIGZpbGwtcnVsZT0iZXZlbm9kZCIgY2xpcC1ydWxlPSJldmVub2RkIiBkPSJNOC43OTAwMSAyLjY0Nzc5QzguNzI0MzMgMS4yODM0MyA3LjU4NTQ5IDAuMTk0ODc4IDYuMTc4MjIgMC4xNjE2MjFWNS4zODI1NkM2LjE3OTI4IDUuMzgyNTYgNi4xODAzMyA1LjM4MjQ2IDYuMTgxMzggNS4zODIzNkM2LjI0Njk2IDYuNzQ2NzIgNy4zODYwMSA3LjgzNTM3IDguNzkzMTcgNy44Njg1MlYyLjY0NzY5QzguNzkyMTIgMi42NDc2OSA4Ljc5MTA2IDIuNjQ3NzkgOC43OTAwMSAyLjY0Nzc5IiBmaWxsPSIjOTE5MTkxIi8+Cjwvc3ZnPgo=";case"2":return"data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+CjwhLS0gQ3JlYXRlZCB3aXRoIElua3NjYXBlIChodHRwOi8vd3d3Lmlua3NjYXBlLm9yZy8pIC0tPgoKPHN2ZwogICB2ZXJzaW9uPSIxLjEiCiAgIGlkPSJzdmcyIgogICB3aWR0aD0iMjYuNjY2NjY4IgogICBoZWlnaHQ9IjI2LjY2NjY2OCIKICAgdmlld0JveD0iMCAwIDI2LjY2NjY2OCAyNi42NjY2NjgiCiAgIHNvZGlwb2RpOmRvY25hbWU9IlB1Yk5hdGlvbi1SZXBvcnRpbmctSWNvbi5haSIKICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiCiAgIHhtbG5zOnNvZGlwb2RpPSJodHRwOi8vc29kaXBvZGkuc291cmNlZm9yZ2UubmV0L0RURC9zb2RpcG9kaS0wLmR0ZCIKICAgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIgogICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KICA8ZGVmcwogICAgIGlkPSJkZWZzNiI+CiAgICA8Y2xpcFBhdGgKICAgICAgIGNsaXBQYXRoVW5pdHM9InVzZXJTcGFjZU9uVXNlIgogICAgICAgaWQ9ImNsaXBQYXRoMTYiPgogICAgICA8cGF0aAogICAgICAgICBkPSJNIDAsMjAgSCAyMCBWIDAgSCAwIFoiCiAgICAgICAgIGlkPSJwYXRoMTQiIC8+CiAgICA8L2NsaXBQYXRoPgogIDwvZGVmcz4KICA8c29kaXBvZGk6bmFtZWR2aWV3CiAgICAgaWQ9Im5hbWVkdmlldzQiCiAgICAgcGFnZWNvbG9yPSIjZmZmZmZmIgogICAgIGJvcmRlcmNvbG9yPSIjMDAwMDAwIgogICAgIGJvcmRlcm9wYWNpdHk9IjAuMjUiCiAgICAgaW5rc2NhcGU6c2hvd3BhZ2VzaGFkb3c9IjIiCiAgICAgaW5rc2NhcGU6cGFnZW9wYWNpdHk9IjAuMCIKICAgICBpbmtzY2FwZTpwYWdlY2hlY2tlcmJvYXJkPSIwIgogICAgIGlua3NjYXBlOmRlc2tjb2xvcj0iI2QxZDFkMSIgLz4KICA8ZwogICAgIGlkPSJnOCIKICAgICBpbmtzY2FwZTpncm91cG1vZGU9ImxheWVyIgogICAgIGlua3NjYXBlOmxhYmVsPSJQdWJOYXRpb24tUmVwb3J0aW5nLUljb24iCiAgICAgdHJhbnNmb3JtPSJtYXRyaXgoMS4zMzMzMzMzLDAsMCwtMS4zMzMzMzMzLDAsMjYuNjY2NjY3KSI+CiAgICA8ZwogICAgICAgaWQ9ImcxMCI+CiAgICAgIDxnCiAgICAgICAgIGlkPSJnMTIiCiAgICAgICAgIGNsaXAtcGF0aD0idXJsKCNjbGlwUGF0aDE2KSI+CiAgICAgICAgPGcKICAgICAgICAgICBpZD0iZzE4IgogICAgICAgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDUuMDEwNCw5LjUzMjgpIj4KICAgICAgICAgIDxwYXRoCiAgICAgICAgICAgICBkPSJtIDAsMCBjIDEuMDQsMCAxLjYxMywwLjU1OCAxLjYxMywxLjcxOCAwLDEuMTMgLTAuNjMzLDEuNzYzIC0xLjgwOSwxLjc2MyBIIC0xLjkxNCBWIDAgWiBtIC00LjM4NSw1LjQyNSBoIDQuMjY0IGMgMi41MzIsMCA0LjA1NCwtMS4xOSA0LjA1NCwtMy41ODYgMCwtMi4yMDEgLTEuMjM1LC0zLjQ5NyAtMy44MjcsLTMuNDk3IGggLTIuMDIgdiAtMi44MzMgaCAtMi40NzEgeiIKICAgICAgICAgICAgIHN0eWxlPSJmaWxsOiM5MTkxOTE7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOm5vbnplcm87c3Ryb2tlOm5vbmUiCiAgICAgICAgICAgICBpZD0icGF0aDIwIiAvPgogICAgICAgIDwvZz4KICAgICAgICA8ZwogICAgICAgICAgIGlkPSJnMjIiCiAgICAgICAgICAgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMTAuNzI0NSwxNC45NTgpIj4KICAgICAgICAgIDxwYXRoCiAgICAgICAgICAgICBkPSJtIDAsMCBoIDIuMDM0IGwgNS4zODEsLTguMjI4IGggMC4wMyBWIDAgSCA4LjY1IFYgLTkuOTE2IEggNy4xNTggTCAxLjIzNiwtMC45MTkgSCAxLjIwNiBWIC05LjkxNiBIIDAgWiIKICAgICAgICAgICAgIHN0eWxlPSJmaWxsOiM5MTkxOTE7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOm5vbnplcm87c3Ryb2tlOm5vbmUiCiAgICAgICAgICAgICBpZD0icGF0aDI0IiAvPgogICAgICAgIDwvZz4KICAgICAgPC9nPgogICAgPC9nPgogIDwvZz4KPC9zdmc+Cg=="}}connectedCallback(){var e;const t=this.getOfferingLogo(this.offeringId);this.reporterShadow.innerHTML=` \n      <img id='${k}' data-pin-nopin='true' src='${t}' alt='' aria-label='Ad Info' />\n      <div class='ad-reporter-menu-backdrop'>\n          <div class='ad-reporter-menu'>\n          <div class='ad-reporter-menu-item ad-reporter-menu-item-learn-more'>\n            <a href='https://www.${this.offeringName}.com?utm_source=${this.offeringName}|&utm_medium=ad&utm_campaign=logo' target='_blank' rel="noopener" aria-label='${this.offeringName}'>\n              What is this?\n            </a>\n          </div>\n            <div class='ad-reporter-menu-item mv-ad-report-button' data-target='${this.getAttribute("data-slot-id")}' data-adtype=${this.getAttribute("data-adtype")||"display"} role='button' aria-label='Report ad'>\n              <span>\n                <img id="iconReportSvg" data-pin-nopin=true src='${T}' alt='' aria-label='Report Ad' /> Report Ad\n              </span>\n            </div>\n          </div>\n        </div>\n    `,this.logoButton=this.reporterShadow.querySelector(`#${k}`),this.menuOverlay=this.reporterShadow.querySelector(".ad-reporter-menu-backdrop"),null==(e=this.logoButton)||e.addEventListener("click",(()=>(this.isMenuHidden?this.openMenu():this.closeMenu(),!1)));const n=document.createElement("style");n.textContent=L,this.reporterShadow.appendChild(n)}};let O=N;O.allAdReporters=[],O.bodyClickListener=document.addEventListener("click",(e=>{(e.composedPath&&e.composedPath()||[]).some((e=>"MV-AD-REPORTER"===e.tagName||"mvAdReporterModalWrapper"===e.id))||N.allAdReporters.forEach((e=>e.closeMenu()))})),customElements.get("mv-ad-reporter")||customElements.define("mv-ad-reporter",O);const L=`\na {\n  text-decoration: none;\n  color: inherit;\n  width: 100%;\n  height: 100%;\n  display: flex;\n  align-items: center;\n  justify-content: center;\n}\na:hover {\n  text-decoration: underline;\n}\n\n#${k} {\n  width: 20px;\n  height: 20px;\n  cursor: pointer;\n}\n\n.ad-reporter-menu-backdrop {\n  display: none;\n  position: absolute;\n  bottom: 20px;\n  right: 15px;\n  width: 120px;\n  height: 100px;\n\n  flex-direction: row;\n  justify-content: center;\n  align-items: center;\n\n  background: transparent;\n  box-shadow: rgb(0 0 0 / 15%) 0px 2px 10px;\n  border-radius: 10px;\n  z-index: 1002;\n}\n\n.ad-reporter-menu {\n  position: absolute;\n  z-index: 1003;\n  display: flex;\n  flex-direction: column;\n  width: 100%;\n  height: 100%;\n  background: white;\n  border-radius: 5px;\n  align-items: center;\n  justify-content: space-around;\n  font-weight: 200;\n  font-size: 14px;\n  font-family: sans-serif;\n}\n\n.ad-reporter-menu .ad-reporter-menu-item {\n  width: 100%;\n  height: 100%;\n  cursor: pointer;\n  display: flex;\n  justify-content: center;\n  align-items: center;       \n}\n\n.ad-reporter-menu #iconReportSvg {\n  margin-right: 3px;\n}\n\n.ad-reporter-menu .ad-reporter-menu-item:not(:last-child) {\n  border-bottom: solid lightgrey 1px;\n}\n\n.ad-reporter-menu .ad-reporter-menu-item.mv-ad-report-button > * {\n  pointer-events: none;\n}\n`;var D=n(9225),R=n(1374);const z=[".wprm-recipe-jump",".tasty-recipes-jump-link",".mv-create-jtr",".mv-create-jtr-slot-v2",".jump_to_get_recipe_button_btn"];class B{constructor(e){this.model=e;document.querySelectorAll(z.join(", ")).forEach((e=>{e.addEventListener("click",(()=>{o.ZP.debug("JTR click detected.  Disabling content waypoints and video insertion for 4000 ms"),R.ZP.disableContentWaypointsFor(4e3)}))}))}}var $=n(8129),Z=n(6921),Y=n(1711),W=n(9909),V=n(2131);function F(e){return function(e){if("object"==typeof(t=e)&&null!==t&&"message"in t&&"string"==typeof t.message)return e;var t;try{return new Error(JSON.stringify(e))}catch(t){return new Error(String(e))}}(e).message}var G=(e,t,n)=>new Promise(((i,r)=>{var o=e=>{try{a(n.next(e))}catch(e){r(e)}},s=e=>{try{a(n.throw(e))}catch(e){r(e)}},a=e=>e.done?i(e.value):Promise.resolve(e.value).then(o,s);a((n=n.apply(e,t)).next())}));n.p="development"==="MISSING_ENV_VAR".ENV?"MISSING_ENV_VAR".WEBPACK_PUBLIC_PATH:`${window.$adManagementConfig.web.model.wrapperSrc}/`;ie(window.$adManagementConfig.web.model)&&Promise.all([n.e(8114),n.e(8262)]).then(n.bind(n,5850)).then((({makeStub:e})=>e())).catch((e=>{const t='GDPR: Error loading "gdpr" webpackChunk';o.ZP.custom(["debug","gpdr"],t),window.$adManagementConfig.newrelic.addPageAction("gdprError",{error:e,errorMessage:t})}));const H=e=>o.ZP.custom(["debug","wrapper"],e);let U,q,Q={enableGdpr:!1,onReady:e=>e(),onNoConsent:e=>()=>{},initModal:()=>{}};const J=[];var X=(e=>(e[e.halted=0]="halted",e[e.delayed=1]="delayed",e[e.executed=2]="executed",e))(X||{});const K=()=>G(void 0,null,(function*(){if(window.$adManagementConfig.web.initialized)return H("Wrapper previously initialized. Halting Execution."),0;(0,r.AE)((()=>{(0,r.cn)(document.body,"mv-loaded"),(0,r.cn)(document.body,`${C.nO}${c.A.deviceType}`)})),window.$adManagementConfig.web.initialized=!0,window.$adManagementConfig.web.load=(0,D.r)((()=>G(void 0,null,(function*(){const{load:e}=yield Promise.all([n.e(8322),n.e(9906),n.e(8982),n.e(675),n.e(2208)]).then(n.bind(n,2547));return e(U,t,l,Q,J)}))));try{U=new s.ZP(window.$adManagementConfig.web.model)}catch(e){return H(F(e)),0}if(j.new(U),yield A.ZP.initPageRefresh(U),A.ZP.one(A.FH.cleanup,(()=>{y.Z.reset(),window.$adManagementConfig.web.initialized=!1})),A.ZP.one(A.FH.restart,(()=>K())),Y.ZP.new(U),ee(U))return H("Wrapper not inited because site does not serve ads in EU"),0;if(ie(U))try{const[{TCF:e},{GDPR:t}]=yield Promise.all([Promise.all([n.e(8114),n.e(8262)]).then(n.bind(n,9265)),Promise.all([n.e(8114),n.e(8262)]).then(n.bind(n,7548))]);yield e.init(),Q=new t(U),yield Q.initModal()}catch(e){const t='GDPR: Error loading "gdpr" webpackChunk';o.ZP.custom(["debug","gpdr"],t),window.$adManagementConfig.newrelic.addPageAction("gdprError",{error:e,errorMessage:t})}else window.dispatchEvent(new CustomEvent("mediavineCmp",{detail:"gdprDoesNotApply"}));if(ne(U))return H("Wrapper not inited because we are on the privacy policy page."),0;if(window.location.pathname.includes("DARTIframe.html"))return H("Wrapper not inited because it is inside a dart iframe page."),0;if(U.launch_mode&&!(0,p.DY)("test","placeholders"))return H("Wrapper not inited because the site is in Launch Mode."),0;if(Z.Y.init(U),"1"===U.cpa)try{const[{CPA:e}]=yield Promise.all([Promise.all([n.e(8322),n.e(8982),n.e(2221)]).then(n.bind(n,5568))]);q=new e(U),yield q.initCPA()}catch(e){const t='CPA: Error loading "cpa" webpackChunk';o.ZP.custom(["debug","cpa"],t),window.$adManagementConfig.newrelic.addPageAction("cpaError",{error:e,errorMessage:t})}const e=new a.ZP,t=new i.ZP(U,e);t.all||(0,r.hm)((0,C.m2)(U));const l=new I(U,t);new W.Z(U);const d=new f(U,l);if(J.push(d),d.renderedPromise.then((()=>{J.push(new x.ZP(U,t)),Q.onNoConsent((()=>{const e=[`.${v.N3}`,"[data-slot]",`.${x.Y0}`,`.${x.a$}`].join(", ");(0,r.hm)(`${e} { display: none !important;}`)})),$.l.attachListener(U,window.$adManagementConfig.web.load)})),new B(U),(0,s.CX)()||(0,s.WA)()){H("Pagespeed Optimization. Delaying execution until scroll.");const e=()=>{H("Scroll detected or waited too long. Executing."),window.removeEventListener("scroll",e,!1),window.removeEventListener("beforeprint",e,!1),window.$adManagementConfig.web.load()};(0,V.Tb)((()=>{e()}),!1),(0,V.Tx)((()=>{e()}),!1),window.addEventListener("scroll",e,!1),window.addEventListener("beforeprint",e,!1);return setTimeout(e,5100),1}return window.$adManagementConfig.web.load(),2}));window.$adManagementConfig.web.init=K;const ee=e=>{const t="1"===e.gdpr,n=1!==e.gdpr_compliance;return t&&n},te=(e,t)=>(e&&H(`${t}. Halting execution.`),e),ne=e=>te(e.privacy_policy_link===`${window.location.origin}${window.location.pathname}`,"On site's privacy page.");function ie(e){return"1"===e.gdpr&&!e.launch_mode}},6808:(e,t,n)=>{var i,r;!function(o){if(void 0===(r="function"==typeof(i=o)?i.call(t,n,t,e):i)||(e.exports=r),!0,e.exports=o(),!!0){var s=window.Cookies,a=window.Cookies=o();a.noConflict=function(){return window.Cookies=s,a}}}((function(){function e(){for(var e=0,t={};e<arguments.length;e++){var n=arguments[e];for(var i in n)t[i]=n[i]}return t}function t(e){return e.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}return function n(i){function r(){}function o(t,n,o){if("undefined"!=typeof document){"number"==typeof(o=e({path:"/"},r.defaults,o)).expires&&(o.expires=new Date(1*new Date+864e5*o.expires)),o.expires=o.expires?o.expires.toUTCString():"";try{var s=JSON.stringify(n);/^[\{\[]/.test(s)&&(n=s)}catch(e){}n=i.write?i.write(n,t):encodeURIComponent(String(n)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),t=encodeURIComponent(String(t)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var a="";for(var l in o)o[l]&&(a+="; "+l,!0!==o[l]&&(a+="="+o[l].split(";")[0]));return document.cookie=t+"="+n+a}}function s(e,n){if("undefined"!=typeof document){for(var r={},o=document.cookie?document.cookie.split("; "):[],s=0;s<o.length;s++){var a=o[s].split("="),l=a.slice(1).join("=");n||'"'!==l.charAt(0)||(l=l.slice(1,-1));try{var c=t(a[0]);if(l=(i.read||i)(l,c)||t(l),n)try{l=JSON.parse(l)}catch(e){}if(r[c]=l,e===c)break}catch(e){}}return e?r[e]:r}}return r.set=o,r.get=function(e){return s(e,!1)},r.getJSON=function(e){return s(e,!0)},r.remove=function(t,n){o(t,"",e(n,{expires:-1}))},r.defaults={},r.withConverter=n,r}((function(){}))}))},5671:function(e,t){var n,i,r;i=[],void 0===(r="function"==typeof(n=function(){var e=function(){},t={},n={},i={};function r(e,t){e=e.push?e:[e];var r,o,s,a=[],l=e.length,c=l;for(r=function(e,n){n.length&&a.push(e),--c||t(a)};l--;)o=e[l],(s=n[o])?r(o,s):(i[o]=i[o]||[]).push(r)}function o(e,t){if(e){var r=i[e];if(n[e]=t,r)for(;r.length;)r[0](e,t),r.splice(0,1)}}function s(t,n){t.call&&(t={success:t}),n.length?(t.error||e)(n):(t.success||e)(t)}function a(t,n,i,r){var o,s,l=document,c=i.async,d=(i.numRetries||0)+1,u=i.before||e,p=t.replace(/[\?|#].*$/,""),h=t.replace(/^(css|img)!/,"");r=r||0,/(^css!|\.css$)/.test(p)?((s=l.createElement("link")).rel="stylesheet",s.href=h,(o="hideFocus"in s)&&s.relList&&(o=0,s.rel="preload",s.as="style")):/(^img!|\.(png|gif|jpg|svg|webp)$)/.test(p)?(s=l.createElement("img")).src=h:((s=l.createElement("script")).src=t,s.async=void 0===c||c),s.onload=s.onerror=s.onbeforeload=function(e){var l=e.type[0];if(o)try{s.sheet.cssText.length||(l="e")}catch(e){18!=e.code&&(l="e")}if("e"==l){if((r+=1)<d)return a(t,n,i,r)}else if("preload"==s.rel&&"style"==s.as)return s.rel="stylesheet";n(t,l,e.defaultPrevented)},!1!==u(t,s)&&l.head.appendChild(s)}function l(e,t,n){var i,r,o=(e=e.push?e:[e]).length,s=o,l=[];for(i=function(e,n,i){if("e"==n&&l.push(e),"b"==n){if(!i)return;l.push(e)}--o||t(l)},r=0;r<s;r++)a(e[r],i,n)}function c(e,n,i){var r,a;if(n&&n.trim&&(r=n),a=(r?i:n)||{},r){if(r in t)throw"LoadJS";t[r]=!0}function c(t,n){l(e,(function(e){s(a,e),t&&s({success:t,error:n},e),o(r,e)}),a)}if(a.returnPromise)return new Promise(c);c()}return c.ready=function(e,t){return r(e,(function(e){s(t,e)})),c},c.done=function(e){o(e,[])},c.reset=function(){t={},n={},i={}},c.isDefined=function(e){return e in t},c})?n.apply(t,i):n)||(e.exports=r)},1296:(e,t,n)=>{var i=/^\s+|\s+$/g,r=/^[-+]0x[0-9a-f]+$/i,o=/^0b[01]+$/i,s=/^0o[0-7]+$/i,a=parseInt,l="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,c="object"==typeof self&&self&&self.Object===Object&&self,d=l||c||Function("return this")(),u=Object.prototype.toString,p=Math.max,h=Math.min,g=function(){return d.Date.now()};function f(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function m(e){if("number"==typeof e)return e;if(function(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==u.call(e)}(e))return NaN;if(f(e)){var t="function"==typeof e.valueOf?e.valueOf():e;e=f(t)?t+"":t}if("string"!=typeof e)return 0===e?e:+e;e=e.replace(i,"");var n=o.test(e);return n||s.test(e)?a(e.slice(2),n?2:8):r.test(e)?NaN:+e}e.exports=function(e,t,n){var i,r,o,s,a,l,c=0,d=!1,u=!1,b=!0;if("function"!=typeof e)throw new TypeError("Expected a function");function y(t){var n=i,o=r;return i=r=void 0,c=t,s=e.apply(o,n)}function v(e){return c=e,a=setTimeout(_,t),d?y(e):s}function w(e){var n=e-l;return void 0===l||n>=t||n<0||u&&e-c>=o}function _(){var e=g();if(w(e))return M(e);a=setTimeout(_,function(e){var n=t-(e-l);return u?h(n,o-(e-c)):n}(e))}function M(e){return a=void 0,b&&i?y(e):(i=r=void 0,s)}function A(){var e=g(),n=w(e);if(i=arguments,r=this,l=e,n){if(void 0===a)return v(l);if(u)return a=setTimeout(_,t),y(l)}return void 0===a&&(a=setTimeout(_,t)),s}return t=m(t)||0,f(n)&&(d=!!n.leading,o=(u="maxWait"in n)?p(m(n.maxWait)||0,t):o,b="trailing"in n?!!n.trailing:b),A.cancel=function(){void 0!==a&&clearTimeout(a),c=0,i=l=r=a=void 0},A.flush=function(){return void 0===a?s:M(g())},A}},9208:(e,t,n)=>{var i="__lodash_hash_undefined__",r="[object Function]",o="[object GeneratorFunction]",s=/\.|\[(?:[^[\]]*|(["'])(?:(?!\1)[^\\]|\\.)*?\1)\]/,a=/^\w*$/,l=/^\./,c=/[^.[\]]+|\[(?:(-?\d+(?:\.\d+)?)|(["'])((?:(?!\2)[^\\]|\\.)*?)\2)\]|(?=(?:\.|\[\])(?:\.|\[\]|$))/g,d=/\\(\\)?/g,u=/^\[object .+?Constructor\]$/,p="object"==typeof n.g&&n.g&&n.g.Object===Object&&n.g,h="object"==typeof self&&self&&self.Object===Object&&self,g=p||h||Function("return this")();var f,m=Array.prototype,b=Function.prototype,y=Object.prototype,v=g["__core-js_shared__"],w=(f=/[^.]+$/.exec(v&&v.keys&&v.keys.IE_PROTO||""))?"Symbol(src)_1."+f:"",_=b.toString,M=y.hasOwnProperty,A=y.toString,S=RegExp("^"+_.call(M).replace(/[\\^$.*+?()[\]{}|]/g,"\\$&").replace(/hasOwnProperty|(function).*?(?=\\\()| for .+?(?=\\\])/g,"$1.*?")+"$"),I=g.Symbol,x=m.splice,C=z(g,"Map"),E=z(Object,"create"),P=I?I.prototype:void 0,T=P?P.toString:void 0;function k(e){var t=-1,n=e?e.length:0;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}function j(e){var t=-1,n=e?e.length:0;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}function N(e){var t=-1,n=e?e.length:0;for(this.clear();++t<n;){var i=e[t];this.set(i[0],i[1])}}function O(e,t){for(var n,i,r=e.length;r--;)if((n=e[r][0])===(i=t)||n!=n&&i!=i)return r;return-1}function L(e,t){var n;t=function(e,t){if(Y(e))return!1;var n=typeof e;if("number"==n||"symbol"==n||"boolean"==n||null==e||V(e))return!0;return a.test(e)||!s.test(e)||null!=t&&e in Object(t)}(t,e)?[t]:Y(n=t)?n:B(n);for(var i=0,r=t.length;null!=e&&i<r;)e=e[$(t[i++])];return i&&i==r?e:void 0}function D(e){if(!W(e)||(t=e,w&&w in t))return!1;var t,n=function(e){var t=W(e)?A.call(e):"";return t==r||t==o}(e)||function(e){var t=!1;if(null!=e&&"function"!=typeof e.toString)try{t=!!(e+"")}catch(e){}return t}(e)?S:u;return n.test(function(e){if(null!=e){try{return _.call(e)}catch(e){}try{return e+""}catch(e){}}return""}(e))}function R(e,t){var n,i,r=e.__data__;return("string"==(i=typeof(n=t))||"number"==i||"symbol"==i||"boolean"==i?"__proto__"!==n:null===n)?r["string"==typeof t?"string":"hash"]:r.map}function z(e,t){var n=function(e,t){return null==e?void 0:e[t]}(e,t);return D(n)?n:void 0}k.prototype.clear=function(){this.__data__=E?E(null):{}},k.prototype.delete=function(e){return this.has(e)&&delete this.__data__[e]},k.prototype.get=function(e){var t=this.__data__;if(E){var n=t[e];return n===i?void 0:n}return M.call(t,e)?t[e]:void 0},k.prototype.has=function(e){var t=this.__data__;return E?void 0!==t[e]:M.call(t,e)},k.prototype.set=function(e,t){return this.__data__[e]=E&&void 0===t?i:t,this},j.prototype.clear=function(){this.__data__=[]},j.prototype.delete=function(e){var t=this.__data__,n=O(t,e);return!(n<0)&&(n==t.length-1?t.pop():x.call(t,n,1),!0)},j.prototype.get=function(e){var t=this.__data__,n=O(t,e);return n<0?void 0:t[n][1]},j.prototype.has=function(e){return O(this.__data__,e)>-1},j.prototype.set=function(e,t){var n=this.__data__,i=O(n,e);return i<0?n.push([e,t]):n[i][1]=t,this},N.prototype.clear=function(){this.__data__={hash:new k,map:new(C||j),string:new k}},N.prototype.delete=function(e){return R(this,e).delete(e)},N.prototype.get=function(e){return R(this,e).get(e)},N.prototype.has=function(e){return R(this,e).has(e)},N.prototype.set=function(e,t){return R(this,e).set(e,t),this};var B=Z((function(e){var t;e=null==(t=e)?"":function(e){if("string"==typeof e)return e;if(V(e))return T?T.call(e):"";var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}(t);var n=[];return l.test(e)&&n.push(""),e.replace(c,(function(e,t,i,r){n.push(i?r.replace(d,"$1"):t||e)})),n}));function $(e){if("string"==typeof e||V(e))return e;var t=e+"";return"0"==t&&1/e==-1/0?"-0":t}function Z(e,t){if("function"!=typeof e||t&&"function"!=typeof t)throw new TypeError("Expected a function");var n=function(){var i=arguments,r=t?t.apply(this,i):i[0],o=n.cache;if(o.has(r))return o.get(r);var s=e.apply(this,i);return n.cache=o.set(r,s),s};return n.cache=new(Z.Cache||N),n}Z.Cache=N;var Y=Array.isArray;function W(e){var t=typeof e;return!!e&&("object"==t||"function"==t)}function V(e){return"symbol"==typeof e||function(e){return!!e&&"object"==typeof e}(e)&&"[object Symbol]"==A.call(e)}e.exports=function(e,t,n){var i=null==e?void 0:L(e,t);return void 0===i?n:i}},3692:e=>{var t=e.exports=function(e){return new n(e)};function n(e){this.value=e}function i(e,t,n){var i=[],s=[],d=!0;return function e(u){var p=n?r(u):u,h={},g=!0,f={node:p,node_:u,path:[].concat(i),parent:s[s.length-1],parents:s,key:i.slice(-1)[0],isRoot:0===i.length,level:i.length,circular:null,update:function(e,t){f.isRoot||(f.parent.node[f.key]=e),f.node=e,t&&(g=!1)},delete:function(e){delete f.parent.node[f.key],e&&(g=!1)},remove:function(e){a(f.parent.node)?f.parent.node.splice(f.key,1):delete f.parent.node[f.key],e&&(g=!1)},keys:null,before:function(e){h.before=e},after:function(e){h.after=e},pre:function(e){h.pre=e},post:function(e){h.post=e},stop:function(){d=!1},block:function(){g=!1}};if(!d)return f;function m(){if("object"==typeof f.node&&null!==f.node){f.keys&&f.node_===f.node||(f.keys=o(f.node)),f.isLeaf=0==f.keys.length;for(var e=0;e<s.length;e++)if(s[e].node_===u){f.circular=s[e];break}}else f.isLeaf=!0,f.keys=null;f.notLeaf=!f.isLeaf,f.notRoot=!f.isRoot}m();var b=t.call(f,f.node);return void 0!==b&&f.update&&f.update(b),h.before&&h.before.call(f,f.node),g?("object"!=typeof f.node||null===f.node||f.circular||(s.push(f),m(),l(f.keys,(function(t,r){i.push(t),h.pre&&h.pre.call(f,f.node[t],t);var o=e(f.node[t]);n&&c.call(f.node,t)&&(f.node[t]=o.node),o.isLast=r==f.keys.length-1,o.isFirst=0==r,h.post&&h.post.call(f,o),i.pop()})),s.pop()),h.after&&h.after.call(f,f.node),f):f}(e).node}function r(e){if("object"==typeof e&&null!==e){var t;if(a(e))t=[];else if("[object Date]"===s(e))t=new Date(e.getTime?e.getTime():e);else if(function(e){return"[object RegExp]"===s(e)}(e))t=new RegExp(e);else if(function(e){return"[object Error]"===s(e)}(e))t={message:e.message};else if(function(e){return"[object Boolean]"===s(e)}(e))t=new Boolean(e);else if(function(e){return"[object Number]"===s(e)}(e))t=new Number(e);else if(function(e){return"[object String]"===s(e)}(e))t=new String(e);else if(Object.create&&Object.getPrototypeOf)t=Object.create(Object.getPrototypeOf(e));else if(e.constructor===Object)t={};else{var n=e.constructor&&e.constructor.prototype||e.__proto__||{},i=function(){};i.prototype=n,t=new i}return l(o(e),(function(n){t[n]=e[n]})),t}return e}n.prototype.get=function(e){for(var t=this.value,n=0;n<e.length;n++){var i=e[n];if(!t||!c.call(t,i)){t=void 0;break}t=t[i]}return t},n.prototype.has=function(e){for(var t=this.value,n=0;n<e.length;n++){var i=e[n];if(!t||!c.call(t,i))return!1;t=t[i]}return!0},n.prototype.set=function(e,t){for(var n=this.value,i=0;i<e.length-1;i++){var r=e[i];c.call(n,r)||(n[r]={}),n=n[r]}return n[e[i]]=t,t},n.prototype.map=function(e){return i(this.value,e,!0)},n.prototype.forEach=function(e){return this.value=i(this.value,e,!1),this.value},n.prototype.reduce=function(e,t){var n=1===arguments.length,i=n?this.value:t;return this.forEach((function(t){this.isRoot&&n||(i=e.call(this,i,t))})),i},n.prototype.paths=function(){var e=[];return this.forEach((function(t){e.push(this.path)})),e},n.prototype.nodes=function(){var e=[];return this.forEach((function(t){e.push(this.node)})),e},n.prototype.clone=function(){var e=[],t=[];return function n(i){for(var s=0;s<e.length;s++)if(e[s]===i)return t[s];if("object"==typeof i&&null!==i){var a=r(i);return e.push(i),t.push(a),l(o(i),(function(e){a[e]=n(i[e])})),e.pop(),t.pop(),a}return i}(this.value)};var o=Object.keys||function(e){var t=[];for(var n in e)t.push(n);return t};function s(e){return Object.prototype.toString.call(e)}var a=Array.isArray||function(e){return"[object Array]"===Object.prototype.toString.call(e)},l=function(e,t){if(e.forEach)return e.forEach(t);for(var n=0;n<e.length;n++)t(e[n],n,e)};l(o(n.prototype),(function(e){t[e]=function(t){var i=[].slice.call(arguments,1),r=new n(t);return r[e].apply(r,i)}}));var c=Object.hasOwnProperty||function(e,t){return t in e}},2131:(e,t,n)=>{"use strict";n.d(t,{Tb:()=>E,Tx:()=>x,kz:()=>v});var i,r,o,s,a=function(e,t){return{name:e,value:void 0===t?-1:t,delta:0,entries:[],id:"v2-".concat(Date.now(),"-").concat(Math.floor(8999999999999*Math.random())+1e12)}},l=function(e,t){try{if(PerformanceObserver.supportedEntryTypes.includes(e)){if("first-input"===e&&!("PerformanceEventTiming"in self))return;var n=new PerformanceObserver((function(e){return e.getEntries().map(t)}));return n.observe({type:e,buffered:!0}),n}}catch(e){}},c=function(e,t){var n=function n(i){"pagehide"!==i.type&&"hidden"!==document.visibilityState||(e(i),t&&(removeEventListener("visibilitychange",n,!0),removeEventListener("pagehide",n,!0)))};addEventListener("visibilitychange",n,!0),addEventListener("pagehide",n,!0)},d=function(e){addEventListener("pageshow",(function(t){t.persisted&&e(t)}),!0)},u=function(e,t,n){var i;return function(r){t.value>=0&&(r||n)&&(t.delta=t.value-(i||0),(t.delta||void 0===i)&&(i=t.value,e(t)))}},p=-1,h=function(){return"hidden"===document.visibilityState?0:1/0},g=function(){c((function(e){var t=e.timeStamp;p=t}),!0)},f=function(){return p<0&&(p=h(),g(),d((function(){setTimeout((function(){p=h(),g()}),0)}))),{get firstHiddenTime(){return p}}},m=function(e,t){var n,i=f(),r=a("FCP"),o=function(e){"first-contentful-paint"===e.name&&(c&&c.disconnect(),e.startTime<i.firstHiddenTime&&(r.value=e.startTime,r.entries.push(e),n(!0)))},s=window.performance&&performance.getEntriesByName&&performance.getEntriesByName("first-contentful-paint")[0],c=s?null:l("paint",o);(s||c)&&(n=u(e,r,t),s&&o(s),d((function(i){r=a("FCP"),n=u(e,r,t),requestAnimationFrame((function(){requestAnimationFrame((function(){r.value=performance.now()-i.timeStamp,n(!0)}))}))})))},b=!1,y=-1,v=function(e,t){b||(m((function(e){y=e.value})),b=!0);var n,i=function(t){y>-1&&e(t)},r=a("CLS",0),o=0,s=[],p=function(e){if(!e.hadRecentInput){var t=s[0],i=s[s.length-1];o&&e.startTime-i.startTime<1e3&&e.startTime-t.startTime<5e3?(o+=e.value,s.push(e)):(o=e.value,s=[e]),o>r.value&&(r.value=o,r.entries=s,n())}},h=l("layout-shift",p);h&&(n=u(i,r,t),c((function(){h.takeRecords().map(p),n(!0)})),d((function(){o=0,y=-1,r=a("CLS",0),n=u(i,r,t)})))},w={passive:!0,capture:!0},_=new Date,M=function(e,t){i||(i=t,r=e,o=new Date,I(removeEventListener),A())},A=function(){if(r>=0&&r<o-_){var e={entryType:"first-input",name:i.type,target:i.target,cancelable:i.cancelable,startTime:i.timeStamp,processingStart:i.timeStamp+r};s.forEach((function(t){t(e)})),s=[]}},S=function(e){if(e.cancelable){var t=(e.timeStamp>1e12?new Date:performance.now())-e.timeStamp;"pointerdown"==e.type?function(e,t){var n=function(){M(e,t),r()},i=function(){r()},r=function(){removeEventListener("pointerup",n,w),removeEventListener("pointercancel",i,w)};addEventListener("pointerup",n,w),addEventListener("pointercancel",i,w)}(t,e):M(t,e)}},I=function(e){["mousedown","keydown","touchstart","pointerdown"].forEach((function(t){return e(t,S,w)}))},x=function(e,t){var n,o=f(),p=a("FID"),h=function(e){e.startTime<o.firstHiddenTime&&(p.value=e.processingStart-e.startTime,p.entries.push(e),n(!0))},g=l("first-input",h);n=u(e,p,t),g&&c((function(){g.takeRecords().map(h),g.disconnect()}),!0),g&&d((function(){var o;p=a("FID"),n=u(e,p,t),s=[],r=-1,i=null,I(addEventListener),o=h,s.push(o),A()}))},C={},E=function(e,t){var n,i=f(),r=a("LCP"),o=function(e){var t=e.startTime;t<i.firstHiddenTime&&(r.value=t,r.entries.push(e),n())},s=l("largest-contentful-paint",o);if(s){n=u(e,r,t);var p=function(){C[r.id]||(s.takeRecords().map(o),s.disconnect(),C[r.id]=!0,n(!0))};["keydown","click"].forEach((function(e){addEventListener(e,p,{once:!0,capture:!0})})),c(p,!0),d((function(i){r=a("LCP"),n=u(e,r,t),requestAnimationFrame((function(){requestAnimationFrame((function(){r.value=performance.now()-i.timeStamp,C[r.id]=!0,n(!0)}))}))}))}}},5151:e=>{"use strict";e.exports="data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4KPHN2ZyB2aWV3Qm94PSIxMCA5IDIwIDIxIiB3aWR0aD0iMjAiIGhlaWdodD0iMjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6Yng9Imh0dHBzOi8vYm94eS1zdmcuY29tIj4KICA8ZGVmcz4KICAgIDxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+Cgkuc3Qwe2ZpbGwtcnVsZTpldmVub2RkO2NsaXAtcnVsZTpldmVub2RkO30KPC9zdHlsZT4KICA8L2RlZnM+CiAgPGNpcmNsZSBzdHlsZT0iZmlsbDogcmdiKDI1NSwgMjU1LCAyNTUpOyIgY3g9IjIwLjAwNiIgY3k9IjIwLjAwMyIgcj0iNy40MTMiLz4KICA8cGF0aCBjbGFzcz0ic3QwIiBkPSJNIDIwIDMwIEMgMTQuNDg5IDMwIDEwIDI1LjUxMSAxMCAyMCBDIDEwIDE0LjQ4OSAxNC40ODkgMTAgMjAgMTAgQyAyNS41MTEgMTAgMzAgMTQuNDg5IDMwIDIwIEMgMzAgMjUuNTExIDI1LjUxMSAzMCAyMCAzMCBaIE0gMjQuMjQgMjQuMjM5IEMgMjQuNjM5IDIzLjg0IDI0LjYzOSAyMy4yMTcgMjQuMjQgMjIuODE4IEwgMjEuNDIyIDIwIEwgMjQuMjQgMTcuMTgyIEMgMjQuNjM5IDE2Ljc4MyAyNC42MzkgMTYuMTYgMjQuMjQgMTUuNzYxIEMgMjMuODQxIDE1LjM2MiAyMy4yMTcgMTUuMzYyIDIyLjgxOCAxNS43NjEgTCAyMCAxOC41NzkgTCAxNy4xODIgMTUuNzYxIEMgMTYuNzgzIDE1LjM2MiAxNi4xNTkgMTUuMzYyIDE1Ljc2MSAxNS43NjEgQyAxNS4zNjEgMTYuMTYgMTUuMzYxIDE2Ljc4MyAxNS43NjEgMTcuMTgyIEwgMTguNTc5IDIwIEwgMTUuNzYxIDIyLjgxOCBDIDE1LjM2MSAyMy4yMTcgMTUuMzYxIDIzLjg0IDE1Ljc2MSAyNC4yMzkgQyAxNi4xNTkgMjQuNjM4IDE2Ljc4MyAyNC42MzggMTcuMTgyIDI0LjIzOSBMIDIwIDIxLjQyMSBMIDIyLjgxOCAyNC4yMzkgQyAyMy4yMTcgMjQuNjM4IDIzLjg0MSAyNC42MzggMjQuMjQgMjQuMjM5IFoiIHN0eWxlPSJmaWxsOiAjODQ4NDg0OyIgYng6b3JpZ2luPSIwLjUgMCIvPgo8L3N2Zz4="},5506:e=>{"use strict";e.exports="data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTIiIGhlaWdodD0iMTIiIHZpZXdCb3g9IjAgMCAxMiAxMiIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPGcgY2xpcC1wYXRoPSJ1cmwoI2NsaXAwKSI+CjxwYXRoIGQ9Ik0xMS45MiAxMC43Mkw2LjgwMDAxIDAuNDhDNi40ODAwMSAtMC4xNiA1LjYwMDAxIC0wLjE2IDUuMjgwMDEgMC40OEwwLjA4MDAwNTMgMTAuNzJDLTAuMjM5OTk1IDExLjI4IDAuMjQwMDA1IDEyIDAuODgwMDA1IDEySDExLjEyQzExLjc2IDEyIDEyLjE2IDExLjI4IDExLjkyIDEwLjcyWk02LjAwMDAxIDEwLjRDNS4zNjAwMSAxMC40IDQuODAwMDEgOS44NCA0LjgwMDAxIDkuMkM0LjgwMDAxIDguNTYgNS4yODAwMSA4IDYuMDAwMDEgOEM2LjcyMDAxIDggNy4yMDAwMSA4LjU2IDcuMjAwMDEgOS4yQzcuMjAwMDEgOS45MiA2LjY0MDAxIDEwLjQgNi4wMDAwMSAxMC40Wk02LjgwMDAxIDcuMkg1LjIwMDAxTDQuODAwMDEgNC40QzQuODAwMDEgNC4xNiA0Ljk2MDAxIDQgNS4yMDAwMSA0SDYuODAwMDFDNy4wNDAwMSA0IDcuMjAwMDEgNC4xNiA3LjIwMDAxIDQuNEw2LjgwMDAxIDcuMloiIGZpbGw9IiMwMDAwMDAiLz4KPC9nPgo8ZGVmcz4KPGNsaXBQYXRoIGlkPSJjbGlwMCI+CjxyZWN0IHdpZHRoPSIxMiIgaGVpZ2h0PSIxMiIgZmlsbD0id2hpdGUiLz4KPC9jbGlwUGF0aD4KPC9kZWZzPgo8L3N2Zz4K"}},i={};function r(e){var t=i[e];if(void 0!==t)return t.exports;var o=i[e]={exports:{}};return n[e].call(o.exports,o,o.exports,r),o.exports}r.m=n,r.n=e=>{var t=e&&e.__esModule?()=>e.default:()=>e;return r.d(t,{a:t}),t},r.d=(e,t)=>{for(var n in t)r.o(t,n)&&!r.o(e,n)&&Object.defineProperty(e,n,{enumerable:!0,get:t[n]})},r.f={},r.e=e=>Promise.all(Object.keys(r.f).reduce(((t,n)=>(r.f[n](e,t),t)),[])),r.u=e=>(({562:"gdprModalLayer3",945:"gdprModalLocale36",1267:"gdprModalLocale18",1512:"gdprModalLocale20",1642:"identity",1820:"gdprModalLayer2",2063:"uuidLib",2208:"afterScroll",2221:"cpa",2640:"gdprModalLocale50",2895:"gdprModalLocale48",3532:"gdprModalLocale28",3777:"gdprModalLocale6",4138:"gdprModalLocale24",4270:"gdprModalLocale22",4761:"gdprModalLocale16",4766:"gdprModalLocale10",4784:"gdprModalLocale44",4829:"gdprModalLocale0",5159:"gdprModalLocale38",5408:"gdprModalLocale26",5526:"gdprModalLocale12",5583:"gdprModalLocale40",6109:"gdprModalLocale52",6523:"gdprModalLocale2",6691:"gdprModalLocale32",7078:"gdprModal",7304:"gdprModalLocale46",7558:"gdprModalLocale34",8262:"gdpr",8597:"pageRefresh",9096:"gdprModalLocale8",9104:"gdprModalLocale54",9190:"gdprModalLocale42",9197:"gdprModalLayer1",9232:"gdprModalLocale14",9598:"prebid",9694:"gdprModalLocale4",9990:"gdprModalLocale30"}[e]||e)+"/"+{427:"909e22ebd733f1032213",546:"714b35adf32d50a5bcee",562:"92477facbd150cfebf8d",675:"7e1da59fa90fe3a64e43",945:"331c782c42a6f9127e75",1267:"416b85e86bd50ea5d398",1512:"64e1f2b2013d208ff46e",1642:"76b525a20e4e9783e679",1820:"01a9072a0915f4185448",2063:"c7a0c7139825ab86579c",2197:"97218b4a17d5f20b00d6",2208:"c200facc4f183bb28f4c",2221:"7761a2cf82c0714ea4c4",2640:"02072019dc6079116dec",2723:"330987817a2429922e0d",2726:"44e6f0f9c759b3384df8",2788:"99fd3dfb1abf3b471ae7",2799:"fb35e16fd3a83078d918",2895:"78d3fbbfcc6ee1799f2e",3278:"100ee2a9391496b0e2f2",3367:"ee4f4fd563e309295fca",3532:"98d7d3e077d649efa6f8",3777:"76d370b7d5bebbbc6ed3",4138:"84eee2dae09eb7e77a19",4270:"39d747838f94d2ff075b",4761:"6aff4ae5965ff9fc340f",4766:"cab97f7c2112ae063467",4784:"6c98a19fdbc2a37de193",4829:"4de841c7301abebadc73",5159:"4b94af06058920faeb44",5285:"35b0e4c592a8a5f798a0",5408:"41a729315651feb0b804",5526:"6787ff0c9071e89cd51e",5583:"0f41dc5c19b2e84a02f0",5728:"7a5347f674e33d93353a",6008:"e173cb94545e2933d03f",6109:"b644eb862e01ddd1b522",6523:"0a1a940059a2c9c6456c",6691:"bc69c864f3a7ada3bc39",7078:"f06cc937f9751b1898d2",7304:"708e00d5922b7953b74f",7558:"07ffdb2e90590554209d",7825:"263d9c89c58d712e559f",8114:"215c9f57831faa9a5fe8",8262:"03bcef755e56f6a19e07",8322:"2c34fd69a8874e3a97db",8597:"ac60afaf34fbd2ade054",8690:"efec574b5fcfbae3c484",8763:"5fb7a8db033b964d30ec",8982:"f2f81f64ba54f7592414",9096:"60db8a22c043a919c077",9104:"01ba3fc0e624bd2f0f15",9190:"c4ea6b0fce4867fcd78f",9197:"a0e0bf9213d6c8314c0b",9232:"65b0f95abf1fd66b113c",9598:"d0d999b88d63c77c1c69",9694:"9331aec5dc674cb0f9b0",9900:"0459e510182f9bdf63ee",9906:"6167d943d0fd0875383d",9990:"a65a24f363a9655c0afb"}[e]+".min.js"),r.g=function(){if("object"==typeof globalThis)return globalThis;try{return this||new Function("return this")()}catch(e){if("object"==typeof window)return window}}(),r.o=(e,t)=>Object.prototype.hasOwnProperty.call(e,t),e={},t="@mediavine/web-wrapper:",r.l=(n,i,o,s)=>{if(e[n])e[n].push(i);else{var a,l;if(void 0!==o)for(var c=document.getElementsByTagName("script"),d=0;d<c.length;d++){var u=c[d];if(u.getAttribute("src")==n||u.getAttribute("data-webpack")==t+o){a=u;break}}a||(l=!0,(a=document.createElement("script")).charset="utf-8",a.timeout=120,r.nc&&a.setAttribute("nonce",r.nc),a.setAttribute("data-webpack",t+o),a.src=n),e[n]=[i];var p=(t,i)=>{a.onerror=a.onload=null,clearTimeout(h);var r=e[n];if(delete e[n],a.parentNode&&a.parentNode.removeChild(a),r&&r.forEach((e=>e(i))),t)return t(i)},h=setTimeout(p.bind(null,void 0,{type:"timeout",target:a}),12e4);a.onerror=p.bind(null,a.onerror),a.onload=p.bind(null,a.onload),l&&document.head.appendChild(a)}},r.r=e=>{"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},r.p="/",(()=>{var e={6186:0};r.f.j=(t,n)=>{var i=r.o(e,t)?e[t]:void 0;if(0!==i)if(i)n.push(i[2]);else{var o=new Promise(((n,r)=>i=e[t]=[n,r]));n.push(i[2]=o);var s=r.p+r.u(t),a=new Error;r.l(s,(n=>{if(r.o(e,t)&&(0!==(i=e[t])&&(e[t]=void 0),i)){var o=n&&("load"===n.type?"missing":n.type),s=n&&n.target&&n.target.src;a.message="Loading chunk "+t+" failed.\n("+o+": "+s+")",a.name="ChunkLoadError",a.type=o,a.request=s,i[1](a)}}),"chunk-"+t,t)}};var t=(t,n)=>{var i,o,[s,a,l]=n,c=0;if(s.some((t=>0!==e[t]))){for(i in a)r.o(a,i)&&(r.m[i]=a[i]);if(l)l(r)}for(t&&t(n);c<s.length;c++)o=s[c],r.o(e,o)&&e[o]&&e[o][0](),e[o]=0},n=self.mvWrapperJsonp=self.mvWrapperJsonp||[];n.forEach(t.bind(null,0)),n.push=t.bind(null,n.push.bind(n))})(),r.nc=void 0;r(6159)})();