clarity-js 0.7.27 → 0.7.31

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/build/clarity.js CHANGED
@@ -69,6 +69,7 @@ var clarity = /*#__PURE__*/Object.freeze({
69
69
  get pause () { return pause; },
70
70
  get resume () { return resume; },
71
71
  get set () { return set; },
72
+ get signal () { return signal; },
72
73
  get start () { return start; },
73
74
  get stop () { return stop; },
74
75
  get upgrade () { return upgrade; },
@@ -131,7 +132,8 @@ var config$1 = {
131
132
  fallback: null,
132
133
  upgrade: null,
133
134
  action: null,
134
- dob: null
135
+ dob: null,
136
+ delayDom: false
135
137
  };
136
138
 
137
139
  function api(method) {
@@ -154,7 +156,7 @@ function stop$F() {
154
156
  startTime = 0;
155
157
  }
156
158
 
157
- var version$1 = "0.7.27";
159
+ var version$1 = "0.7.31";
158
160
 
159
161
  // tslint:disable: no-bitwise
160
162
  function hash (input, precision) {
@@ -376,7 +378,8 @@ function reset$s() {
376
378
  scrollY: buffer.scrollY,
377
379
  pointerX: buffer.pointerX,
378
380
  pointerY: buffer.pointerY,
379
- activityTime: buffer.activityTime
381
+ activityTime: buffer.activityTime,
382
+ scrollTime: buffer.scrollTime
380
383
  }
381
384
  };
382
385
  }
@@ -390,10 +393,11 @@ function reset$s() {
390
393
  scrollY: 0,
391
394
  pointerX: 0,
392
395
  pointerY: 0,
393
- activityTime: 0
396
+ activityTime: 0,
397
+ scrollTime: 0
394
398
  };
395
399
  }
396
- function track$8(event, x, y) {
400
+ function track$8(event, x, y, time) {
397
401
  switch (event) {
398
402
  case 8 /* Event.Document */:
399
403
  buffer.docWidth = x;
@@ -406,6 +410,7 @@ function track$8(event, x, y) {
406
410
  case 10 /* Event.Scroll */:
407
411
  buffer.scrollX = x;
408
412
  buffer.scrollY = y;
413
+ buffer.scrollTime = time;
409
414
  break;
410
415
  default:
411
416
  buffer.pointerX = x;
@@ -858,6 +863,34 @@ function read(stream) {
858
863
  });
859
864
  }
860
865
 
866
+ var signalCallback = null;
867
+ function signal(cb) {
868
+ signalCallback = cb;
869
+ }
870
+ function parseSignals(signalsPayload) {
871
+ try {
872
+ var parsedSignals = JSON.parse(signalsPayload);
873
+ return parsedSignals;
874
+ }
875
+ catch (_a) {
876
+ return [];
877
+ }
878
+ }
879
+ function signalsEvent(signalsPayload) {
880
+ try {
881
+ if (!signalCallback) {
882
+ return;
883
+ }
884
+ var signals = parseSignals(signalsPayload);
885
+ signals.forEach(function (signal) {
886
+ signalCallback(signal);
887
+ });
888
+ }
889
+ catch (_a) {
890
+ //do nothing
891
+ }
892
+ }
893
+
861
894
  var modules$1 = [baseline, dimension, variable, limit, summary, metadata$1, envelope$1, upload$1, ping$1, upgrade$1, extract];
862
895
  function start$B() {
863
896
  // Metric needs to be initialized before we can start measuring. so metric is not wrapped in measure
@@ -2468,7 +2501,15 @@ function recompute$4(event) {
2468
2501
  // And, if for some reason that is not available, fall back to looking up scrollTop on document.documentElement.
2469
2502
  var x = element === de && "pageXOffset" in w ? Math.round(w.pageXOffset) : Math.round(element.scrollLeft);
2470
2503
  var y = element === de && "pageYOffset" in w ? Math.round(w.pageYOffset) : Math.round(element.scrollTop);
2471
- var current = { time: time(event), event: 10 /* Event.Scroll */, data: { target: element, x: x, y: y } };
2504
+ var width = window.innerWidth;
2505
+ var height = window.innerHeight;
2506
+ var xPosition = width / 3;
2507
+ var yOffset = width > height ? height * 0.15 : height * 0.2;
2508
+ var startYPosition = yOffset;
2509
+ var endYPosition = height - yOffset;
2510
+ var top = getPositionHash(xPosition, startYPosition);
2511
+ var bottom = getPositionHash(xPosition, endYPosition);
2512
+ var current = { time: time(event), event: 10 /* Event.Scroll */, data: { target: element, x: x, y: y, top: top, bottom: bottom } };
2472
2513
  // We don't send any scroll events if this is the first event and the current position is top (0,0)
2473
2514
  if ((event === null && x === 0 && y === 0) || (x === null || y === null)) {
2474
2515
  return;
@@ -2482,6 +2523,23 @@ function recompute$4(event) {
2482
2523
  clearTimeout(timeout$3);
2483
2524
  timeout$3 = setTimeout(process$3, 500 /* Setting.LookAhead */, 10 /* Event.Scroll */);
2484
2525
  }
2526
+ function getPositionHash(x, y) {
2527
+ var _a, _b, _c, _d;
2528
+ var node;
2529
+ if ("caretPositionFromPoint" in document) {
2530
+ node = (_a = document.caretPositionFromPoint(x, y)) === null || _a === void 0 ? void 0 : _a.offsetNode;
2531
+ }
2532
+ else if ("caretRangeFromPoint" in document) {
2533
+ node = (_b = document.caretRangeFromPoint(x, y)) === null || _b === void 0 ? void 0 : _b.startContainer;
2534
+ }
2535
+ if (!node) {
2536
+ node = document.elementFromPoint(x, y);
2537
+ }
2538
+ if (node && node.nodeType === Node.TEXT_NODE) {
2539
+ node = node.parentNode;
2540
+ }
2541
+ return (_d = (_c = get(node)) === null || _c === void 0 ? void 0 : _c.hash) === null || _d === void 0 ? void 0 : _d[1];
2542
+ }
2485
2543
  function reset$a() {
2486
2544
  state$2 = [];
2487
2545
  }
@@ -2719,7 +2777,7 @@ function num$1(input, scale) {
2719
2777
 
2720
2778
  var IGNORE_ATTRIBUTES = ["title", "alt", "onload", "onfocus", "onerror", "data-drupal-form-submit-last"];
2721
2779
  var newlineRegex = /[\r\n]+/g;
2722
- function processNode (node, source) {
2780
+ function processNode (node, source, timestamp) {
2723
2781
  var _a;
2724
2782
  var child = null;
2725
2783
  // Do not track this change if we are attempting to remove a node before discovering it
@@ -2897,7 +2955,7 @@ function processNode (node, source) {
2897
2955
  case "SOURCE":
2898
2956
  // Ignoring any base64 src attribute for media elements to prevent big unused tokens to be sent and shock the network
2899
2957
  if ("src" /* Constant.Src */ in attributes && attributes["src" /* Constant.Src */].startsWith("data:")) {
2900
- delete attributes["src" /* Constant.Src */];
2958
+ attributes["src" /* Constant.Src */] = "";
2901
2959
  }
2902
2960
  var mediaTag = { tag: tag, attributes: attributes };
2903
2961
  dom[call](node, parent, mediaTag, source);
@@ -2969,7 +3027,7 @@ function getAttributes(element) {
2969
3027
  return output;
2970
3028
  }
2971
3029
 
2972
- function traverse (root, timer, source) {
3030
+ function traverse (root, timer, source, timestamp) {
2973
3031
  return __awaiter(this, void 0, void 0, function () {
2974
3032
  var queue, entry, next, state, subnode;
2975
3033
  return __generator(this, function (_a) {
@@ -3144,7 +3202,7 @@ function process$1() {
3144
3202
  return [3 /*break*/, 6];
3145
3203
  }
3146
3204
  target = mutation.target;
3147
- type = track$3(mutation, timer, instance);
3205
+ type = track$3(mutation, timer, instance, record.time);
3148
3206
  if (type && target && target.ownerDocument) {
3149
3207
  parse$1(target.ownerDocument);
3150
3208
  }
@@ -3153,14 +3211,14 @@ function process$1() {
3153
3211
  }
3154
3212
  switch (type) {
3155
3213
  case "attributes" /* Constant.Attributes */:
3156
- processNode(target, 3 /* Source.Attributes */);
3214
+ processNode(target, 3 /* Source.Attributes */, record.time);
3157
3215
  break;
3158
3216
  case "characterData" /* Constant.CharacterData */:
3159
- processNode(target, 4 /* Source.CharacterData */);
3217
+ processNode(target, 4 /* Source.CharacterData */, record.time);
3160
3218
  break;
3161
3219
  case "childList" /* Constant.ChildList */:
3162
- processNodeList(mutation.addedNodes, 1 /* Source.ChildListAdd */, timer);
3163
- processNodeList(mutation.removedNodes, 2 /* Source.ChildListRemove */, timer);
3220
+ processNodeList(mutation.addedNodes, 1 /* Source.ChildListAdd */, timer, record.time);
3221
+ processNodeList(mutation.removedNodes, 2 /* Source.ChildListRemove */, timer, record.time);
3164
3222
  break;
3165
3223
  case "suspend" /* Constant.Suspend */:
3166
3224
  value = get(target);
@@ -3184,7 +3242,7 @@ function process$1() {
3184
3242
  });
3185
3243
  });
3186
3244
  }
3187
- function track$3(m, timer, instance) {
3245
+ function track$3(m, timer, instance, timestamp) {
3188
3246
  var value = m.target ? get(m.target.parentNode) : null;
3189
3247
  // Check if the parent is already discovered and that the parent is not the document root
3190
3248
  if (value && value.data.tag !== "HTML" /* Constant.HTML */) {
@@ -3226,7 +3284,7 @@ function names(nodes) {
3226
3284
  }
3227
3285
  return output.join();
3228
3286
  }
3229
- function processNodeList(list, source, timer) {
3287
+ function processNodeList(list, source, timer, timestamp) {
3230
3288
  return __awaiter(this, void 0, void 0, function () {
3231
3289
  var length, i, state;
3232
3290
  return __generator(this, function (_a) {
@@ -3446,8 +3504,10 @@ function encode$3 (type, ts) {
3446
3504
  tokens.push(sTarget.id);
3447
3505
  tokens.push(entry.data.x);
3448
3506
  tokens.push(entry.data.y);
3507
+ tokens.push(entry.data.top);
3508
+ tokens.push(entry.data.bottom);
3449
3509
  queue(tokens);
3450
- track$8(entry.event, entry.data.x, entry.data.y);
3510
+ track$8(entry.event, entry.data.x, entry.data.y, entry.time);
3451
3511
  }
3452
3512
  }
3453
3513
  reset$a();
@@ -3830,6 +3890,11 @@ function response(payload) {
3830
3890
  trigger$1(parts[1]);
3831
3891
  }
3832
3892
  break;
3893
+ case "SIGNAL" /* Constant.Signal */:
3894
+ if (parts.length > 1) {
3895
+ signalsEvent(parts[1]);
3896
+ }
3897
+ break;
3833
3898
  }
3834
3899
  }
3835
3900
  }
@@ -4131,6 +4196,7 @@ function encode$1 (event) {
4131
4196
  tokens.push(b.data.pointerX);
4132
4197
  tokens.push(b.data.pointerY);
4133
4198
  tokens.push(b.data.activityTime);
4199
+ tokens.push(b.data.scrollTime);
4134
4200
  queue(tokens, false);
4135
4201
  }
4136
4202
  reset$s();
@@ -4896,7 +4962,12 @@ function start$3() {
4896
4962
  start$x();
4897
4963
  start$u();
4898
4964
  start$z();
4899
- start$h();
4965
+ if (config$1.delayDom) {
4966
+ // Lazy load layout module as part of page load time performance improvements experiment
4967
+ bind(window, 'load', function () {
4968
+ start$h();
4969
+ });
4970
+ }
4900
4971
  start$4();
4901
4972
  start$w();
4902
4973
  start$v();
@@ -1 +1 @@
1
- !function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return Ya},get start(){return Xa},get stop(){return qa},get track(){return La}}),e=Object.freeze({__proto__:null,get clone(){return sr},get compute(){return lr},get data(){return er},get keys(){return nr},get reset(){return dr},get start(){return ur},get stop(){return hr},get trigger(){return cr},get update(){return fr}}),n=Object.freeze({__proto__:null,get check(){return yr},get compute(){return kr},get data(){return tr},get start(){return br},get stop(){return Er},get trigger(){return wr}}),a=Object.freeze({__proto__:null,get compute(){return Tr},get data(){return Or},get log(){return Mr},get reset(){return _r},get start(){return Nr},get stop(){return xr},get updates(){return Sr}}),r=Object.freeze({__proto__:null,get callbacks(){return Cr},get clear(){return Wr},get consent(){return Hr},get data(){return Ir},get electron(){return Dr},get id(){return zr},get metadata(){return Rr},get save(){return Xr},get shortid(){return Pr},get start(){return Ar},get stop(){return Lr}}),i=Object.freeze({__proto__:null,get data(){return Gr},get envelope(){return $r},get start(){return Zr},get stop(){return Qr}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now();return Math.max(Math.round(e-c),0)}var l="0.7.27";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=!0,p=null,v=null,g=null;function m(t,e,n,a){if(void 0===a&&(a=!1),t)switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=h&&null!==g?s.match(g)?s:k(s,"▪","▫"):w(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?y(t):w(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return w(t)}break;case 4:switch(e){case"*T":case"data-":return a?y(t):w(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return k(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}return t}function b(t,e){if(void 0===e&&(e=!1),e)return"".concat("https://").concat("Electron");var n=o.drop;if(n&&n.length>0&&t&&t.indexOf("?")>0){var a=t.split("?"),r=a[0],i=a[1];return r+"?"+i.split("&").map((function(t){return n.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}return t}function y(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function w(t){return t.replace(f,"•")}function k(t,e,n){return O(),t?t.replace(v,e).replace(p,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(h&&null===p)try{p=new RegExp("\\p{N}","gu"),v=new RegExp("\\p{L}","gu"),g=new RegExp("\\p{Sc}","gu")}catch(t){h=!1}}var S=null,N=null,x=!1;function M(){x&&(S={time:s(),event:4,data:{visible:N.visible,docWidth:N.docWidth,docHeight:N.docHeight,screenWidth:N.screenWidth,screenHeight:N.screenHeight,scrollX:N.scrollX,scrollY:N.scrollY,pointerX:N.pointerX,pointerY:N.pointerY,activityTime:N.activityTime}}),N=N||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0}}function T(t,e,n){switch(t){case 8:N.docWidth=e,N.docHeight=n;break;case 11:N.screenWidth=e,N.screenHeight=n;break;case 10:N.scrollX=e,N.scrollY=n;break;default:N.pointerX=e,N.pointerY=n}x=!0}function _(t){N.activityTime=t}function I(t,e){N.visible="visible"===e?1:0,N.visible||_(t),x=!0}function C(){x&&mr(4)}var D=Object.freeze({__proto__:null,activity:_,compute:C,reset:M,start:function(){x=!1,M()},get state(){return S},stop:function(){M()},track:T,visibility:I}),j=null;function A(t,e){mi()&&t&&"string"==typeof t&&t.length<255&&(j=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},mr(24))}var L,R=null,z=null;function H(t){t in R||(R[t]=0),t in z||(z[t]=0),R[t]++,z[t]++}function W(t,e){null!==e&&(t in R||(R[t]=0),t in z||(z[t]=0),R[t]+=e,z[t]+=e)}function X(t,e){null!==e&&!1===isNaN(e)&&(t in R||(R[t]=0),(e>R[t]||0===R[t])&&(z[t]=e,R[t]=e))}function Y(t,e,n){return window.setTimeout(ni(t),e,n)}function q(t){return window.clearTimeout(t)}var P=0,U=0,V=null;function B(){V&&q(V),V=Y(F,U),P=s()}function F(){var t=s();L={gap:t-P},mr(25),L.gap<3e5?V=Y(F,U):pi&&(A("clarity","suspend"),ji(),["mousemove","touchstart"].forEach((function(t){return ri(document,t,yi)})),["resize","scroll","pageshow"].forEach((function(t){return ri(window,t,yi)})))}var J=Object.freeze({__proto__:null,get data(){return L},reset:B,start:function(){U=6e4,P=0},stop:function(){q(V),P=0,U=0}}),K=null;function G(t,e){if(t in K){var n=K[t],a=n[n.length-1];e-a[0]>100?K[t].push([e,0]):a[1]=e-a[0]}else K[t]=[[e,0]]}function Z(){mr(36)}function Q(){K={}}var $=Object.freeze({__proto__:null,compute:Z,get data(){return K},reset:Q,start:function(){K={}},stop:function(){K={}},track:G}),tt=null;function et(t){mi()&&o.lean&&(o.lean=!1,tt={key:t},Xr(),o.upgrade&&o.upgrade(t),mr(3))}var nt=Object.freeze({__proto__:null,get data(){return tt},start:function(){!o.lean&&o.upgrade&&o.upgrade("Config"),tt=null},stop:function(){tt=null},upgrade:et});function at(t,e,n,a){return new(n||(n=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(t){i(t)}}function u(t){try{c(a.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,u)}c((a=a.apply(t,e||[])).next())}))}function rt(t,e){var n,a,r,i,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function u(u){return function(c){return function(u){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,u[0]&&(o=0)),o;)try{if(n=1,a&&(r=2&u[0]?a.return:u[0]?a.throw||((r=a.return)&&r.call(a),0):a.next)&&!(r=r.call(a,u[1])).done)return r;switch(a=0,r&&(u=[2&u[0],r.value]),u[0]){case 0:case 1:r=u;break;case 4:return o.label++,{value:u[1],done:!1};case 5:o.label++,a=u[1],u=[0];continue;case 7:u=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==u[0]&&2!==u[0])){o=0;continue}if(3===u[0]&&(!r||u[1]>r[0]&&u[1]<r[3])){o.label=u[1];break}if(6===u[0]&&o.label<r[1]){o.label=r[1],r=u;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(u);break}r[2]&&o.ops.pop(),o.trys.pop();continue}u=e.call(t,o)}catch(t){u=[6,t],a=0}finally{n=r=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,c])}}}var it=null;function ot(t,e){ct(t,"string"==typeof e?[e]:e)}function ut(t,e,n,a){return void 0===e&&(e=null),void 0===n&&(n=null),void 0===a&&(a=null),at(this,void 0,void 0,(function(){var r,i;return rt(this,(function(o){switch(o.label){case 0:return i={},[4,dt(t)];case 1:return i.userId=o.sent(),i.userHint=a||((u=t)&&u.length>=5?"".concat(u.substring(0,2)).concat(k(u.substring(2),"*","*")):k(u,"*","*")),ct("userId",[(r=i).userId]),ct("userHint",[r.userHint]),ct("userType",[ft(t)]),e&&(ct("sessionId",[e]),r.sessionId=e),n&&(ct("pageId",[n]),r.pageId=n),[2,r]}var u}))}))}function ct(t,e){if(mi()&&t&&e&&"string"==typeof t&&t.length<255){for(var n=(t in it?it[t]:[]),a=0;a<e.length;a++)"string"==typeof e[a]&&e[a].length<255&&n.push(e[a]);it[t]=n}}function st(){mr(34)}function lt(){it={}}function dt(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ft(t){return t&&t.indexOf("@")>0?"email":"string"}var ht="CompressionStream"in window;function pt(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),ht?(e=new ReadableStream({start:function(e){return at(this,void 0,void 0,(function(){return rt(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,vt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function vt(t){return at(this,void 0,void 0,(function(){var e,n,a,r,i;return rt(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var gt=[D,a,Object.freeze({__proto__:null,compute:st,get data(){return it},identify:ut,reset:lt,set:ot,start:function(){lt()},stop:function(){lt()}}),n,$,r,i,t,J,nt,e];function mt(){R={},z={},H(5),gt.forEach((function(t){return ni(t.start)()}))}function bt(){gt.slice().reverse().forEach((function(t){return ni(t.stop)()})),R={},z={}}function yt(){st(),C(),Tr(),mr(0),Z(),kr(),lr()}var wt,kt=[];function Et(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(wt={id:t,target:e,checksum:d(n,24)},kt.indexOf(wt.checksum)<0&&(kt.push(wt.checksum),Ga(41)))}var Ot="load,active,fixed,visible,focus,show,collaps,animat".split(","),St={};function Nt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return xt(t)})).join("."):null;if(u&&u.length>0)if(0===e){var c="".concat(function(t){for(var e=t.split(">"),n=0;n<e.length;n++){var a=e[n].indexOf("~"),r=e[n].indexOf(".");e[n]=e[n].substring(0,r>0?r:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(u);c in St||(St[c]=[]),St[c].indexOf(t.id)<0&&St[c].push(t.id),i="".concat(c).concat("~").concat(St[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&xt(o)?"".concat(function(t){var e=t.lastIndexOf("*S"),n=t.lastIndexOf("".concat("iframe:").concat("HTML")),a=Math.max(e,n);if(a<0)return"";return t.substring(0,t.indexOf(">",a)+1)}(a)).concat("#").concat(o):i,i}}function xt(t){if(!t)return!1;if(Ot.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var Mt=1,Tt=null,_t=[],It=[],Ct={},Dt=[],jt=[],At=[],Lt=[],Rt=[],zt=[],Ht=null,Wt=null,Xt=null,Yt=null;function qt(){Ut(),Vt(document,!0)}function Pt(){Ut()}function Ut(){Mt=1,_t=[],It=[],Ct={},Dt=[],jt=[],At="address,password,contact".split(","),Lt="password,secret,pass,social,ssn,code,hidden".split(","),Rt="radio,checkbox,range,button,reset,submit".split(","),zt="INPUT,SELECT,TEXTAREA".split(","),Tt=new Map,Ht=new WeakMap,Wt=new WeakMap,Xt=new WeakMap,Yt=new WeakMap,St={}}function Vt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?jt.push(t):Dt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Je(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Xt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Yt.set(t,e[0])}))})),jt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Xt.set(t,0)}))})))}catch(t){$a(5,1,t?t.name:null)}}function Bt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Ht.get(t);return!n&&e&&(n=Mt++,Ht.set(t,n)),n||null}function Ft(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Wt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Jt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Wt.has(e)?Wt.get(e):null}function Kt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function Gt(t){var e=t.parent&&t.parent in _t?_t[t.parent]:null,n=e?e.selector:null,a=t.data,r=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=_t[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),i={id:t.id,tag:a.tag,prefix:n,position:r,attributes:a.attributes};t.selector=[Nt(i,0),Nt(i,1)],t.hash=t.selector.map((function(t){return t?d(t):null})),t.hash.forEach((function(e){return Ct[e]=t.id}))}function Zt(t){var e=Qt(te(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function Qt(t){return Tt.has(t)?Tt.get(t):null}function $t(t){var e=Bt(t);return e in _t?_t[e]:null}function te(t){return t in Ct?Ct[t]:null}function ee(t){return Tt.has(Bt(t))}function ne(){for(var t=[],e=0,n=It;e<n.length;e++){var a=n[e];a in _t&&t.push(_t[a])}return It=[],t}function ae(t){Tt.delete(t);var e=t in _t?_t[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ae(a[n])}}function re(t){for(var e=null;null===e&&t.previousSibling;)e=Bt(t.previousSibling),t=t.previousSibling;return e}function ie(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=It.indexOf(t);r>=0&&1===e&&a?(It.splice(r,1),It.push(t)):-1===r&&n&&It.push(t)}var oe=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Bt(t,!0),u=e?Bt(e):null,c=re(t),s=null,l=Ke(t)?i:null,d=Yt.has(t)?Yt.get(t):null,f=o.content?1:3;u>=0&&_t[u]&&((s=_t[u]).children.push(i),l=null===l?s.region:l,d=null===d?s.metadata.fraud:d,f=s.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Je(t,n.attributes["data-clarity-region"]),l=i),Tt.set(i,t),_t[i]={id:i,parent:u,previous:c,children:[],data:n,selector:null,hash:null,region:l,metadata:{active:!0,suspend:!1,privacy:f,position:null,fraud:d,size:null}},function(t,e,n){var a=e.data,r=e.metadata,i=r.privacy,o=a.attributes||{},u=a.tag.toUpperCase();switch(!0){case zt.indexOf(u)>=0:var c=o.type,s="";Object.keys(o).forEach((function(t){return s+=o[t].toLowerCase()}));var l=Lt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Rt.indexOf(c)>=0?i:l?4:2;break;case"data-clarity-mask"in o:r.privacy=3;break;case"data-clarity-unmask"in o:r.privacy=0;break;case Xt.has(t):r.privacy=Xt.get(t);break;case Yt.has(t):r.privacy=2;break;case"*T"===u:var d=n&&n.data?n.data.tag:"",f=n&&n.selector?n.selector[1]:"",h=["STYLE","TITLE","svg:style"];r.privacy=h.includes(d)||Dt.some((function(t){return f.indexOf(t)>=0}))?0:i;break;case 1===i:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(o.class,At,r)}}(t,_t[i],s),Gt(_t[i]),"IMG"===(r=_t[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ie(i,a)},get:$t,getId:Bt,getNode:Qt,getValue:function(t){return t in _t?_t[t]:null},has:ee,hashText:Zt,iframe:Jt,lookup:te,parse:Vt,sameorigin:Ft,start:qt,stop:Pt,update:function(t,e,n,a){var r=Bt(t),i=e?Bt(e):null,o=re(t),u=!1,c=!1;if(r in _t){var s=_t[r];if(s.metadata.active=!0,s.previous!==o&&(u=!0,s.previous=o),s.parent!==i){u=!0;var l=s.parent;if(s.parent=i,null!==i&&i>=0){var d=null===o?0:_t[i].children.indexOf(o)+1;_t[i].children.splice(d,0,r),s.region=Ke(t)?r:_t[i].region}else!function(t,e){if(t in _t){var n=_t[t];n.metadata.active=!1,n.parent=null,ie(t,e),ae(t)}}(r,a);if(null!==l&&l>=0){var f=_t[l].children.indexOf(r);f>=0&&_t[l].children.splice(f,1)}c=!0}for(var h in n)Kt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Gt(s),ie(r,a,u,c)}},updates:ne}),ue=5e3,ce={},se=[],le=null,de=null,fe=null;function he(){ce={},se=[],le=null,de=null}function pe(t,e){return void 0===e&&(e=0),at(this,void 0,void 0,(function(){var n,a,r;return rt(this,(function(i){for(n=0,a=se;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){se[1===e?"unshift":"push"]({task:t,resolve:n,id:zr()})})),null===le&&null===de&&ve(),[2,r]}))}))}function ve(){var t=se.shift();t&&(le=t,t.task().then((function(){t.id===zr()&&(t.resolve(),le=null,ve())})).catch((function(e){t.id===zr()&&(e&&$a(0,1,e.name,e.message,e.stack),le=null,ve())})))}function ge(t){var e=we(t);return e in ce?performance.now()-ce[e].start>ce[e].yield?0:1:2}function me(t){ce[we(t)]={start:performance.now(),calls:0,yield:30}}function be(t){var e=performance.now(),n=we(t),a=e-ce[n].start;W(t.cost,a),H(5),ce[n].calls>0&&W(4,a)}function ye(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=we(t))in ce?(be(t),n=ce[e],[4,ke()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=we(t);if(ce&&ce[e]){var n=ce[e].calls,a=ce[e].yield;me(t),ce[e].calls=n+1,ce[e].yield=a}}(t),a.label=2;case 2:return[2,e in ce?1:2]}}))}))}function we(t){return"".concat(t.id,".").concat(t.cost)}function ke(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return de?[4,de]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Oe(t,{timeout:ue})}))]}}))}))}var Ee,Oe=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function Se(){Ee=null}function Ne(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Ee&&c===Ee.width&&v===Ee.height||null===c||null===v||(Ee={width:c,height:v},He(8))}var xe=[],Me=[],Te=null,_e=null,Ie=null,Ce=null,De="clarityAnimationId",je="clarityOperationCount",Ae=20;function Le(){Me=[]}function Re(t,e,n,a,r,i,o){Me.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),He(44)}function ze(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){if(mi()){var n=this.effect,a=Bt(this.effect.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!this[De]){this[De]=Pr(),this[je]=0;var r=n.getKeyframes(),i=n.getTiming();Re(s(),this[De],0,JSON.stringify(r),JSON.stringify(i),a)}if(this[je]++<Ae){var o=null;switch(e){case"play":o=1;break;case"pause":o=2;break;case"cancel":o=3;break;case"finish":o=4}o&&Re(s(),this[De],o)}}}return t.apply(this,arguments)})}function He(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),at(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,b,y,w,k,E,O,S,N,x,M,I,C,D,j,A,L,R;return rt(this,(function(z){switch(z.label){case 0:switch(a=n||s(),r=[a,t],t){case 8:return[3,1];case 7:return[3,2];case 45:return[3,3];case 46:return[3,4];case 44:return[3,5];case 5:case 6:return[3,6]}return[3,13];case 1:return i=Ee,r.push(i.width),r.push(i.height),T(t,i.width,i.height),Ya(r),[3,13];case 2:for(u=0,c=qe;u<c.length;u++)l=c[u],(r=[l.time,7]).push(l.data.id),r.push(l.data.interaction),r.push(l.data.visibility),r.push(l.data.name),Ya(r);return tn(),[3,13];case 3:for(d=0,f=xe;d<f.length;d++)b=f[d],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.newIds),Ya(r);return[3,13];case 4:for(h=0,p=xe;h<p.length;h++)b=p[h],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.cssRules),Ya(r);z.label=5;case 5:for(v=0,g=Me;v<g.length;v++)b=g[v],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.keyFrames),r.push(b.data.timing),r.push(b.data.timeline),r.push(b.data.targetId),Ya(r);return Le(),[3,13];case 6:if(2===ge(e))return[3,13];if(!((y=ne()).length>0))return[3,12];w=0,k=y,z.label=7;case 7:return w<k.length?(E=k[w],0!==(O=ge(e))?[3,9]:[4,ye(e)]):[3,11];case 8:O=z.sent(),z.label=9;case 9:if(2===O)return[3,11];for(S=E.data,N=E.metadata.active,x=E.metadata.suspend,M=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),C=0,D=N?["tag","attributes","value"]:["tag"];C<D.length;C++)if(S[j=D[C]])switch(j){case"tag":A=We(E),L=I?-1:1,r.push(E.id*L),E.parent&&N&&r.push(E.parent),E.previous&&N&&r.push(E.previous),r.push(x?"*M":S[j]),A&&2===A.length&&r.push("".concat("#").concat(Xe(A[0]),".").concat(Xe(A[1])));break;case"attributes":for(R in S[j])void 0!==S[j][R]&&r.push(Ye(R,S[j][R],M));break;case"value":Et(E.metadata.fraud,E.id,S[j]),r.push(m(S[j],S.tag,M,I))}z.label=10;case 10:return w++,[3,7];case 11:6===t&&_(a),Ya(function(t){for(var e=[],n={},a=0,r=null,i=0;i<t.length;i++)if("string"==typeof t[i]){var o=t[i],u=n[o]||-1;u>=0?r?r.push(u):(r=[u],e.push(r),a++):(r=null,e.push(o),n[o]=a++)}else r=null,e.push(t[i]),a++;return e}(r),!o.lean),z.label=12;case 12:return[3,13];case 13:return[2]}}))}))}function We(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=Qt(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Xe(t){return t.toString(36)}function Ye(t,e,n){return"".concat(t,"=").concat(m(e,0===t.indexOf("data-")?"data-":t,n))}var qe=[],Pe=null,Ue={},Ve=[],Be=!1,Fe=null;function Je(t,e){!1===Pe.has(t)&&(Pe.set(t,e),(Fe=null===Fe&&Be?new IntersectionObserver(Ze,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Fe)&&t&&t.nodeType===Node.ELEMENT_NODE&&Fe.observe(t))}function Ke(t){return Pe&&Pe.has(t)}function Ge(){for(var t=[],e=0,n=Ve;e<n.length;e++){var a=n[e],r=Bt(a.node);r?(a.state.data.id=r,Ue[r]=a.state.data,qe.push(a.state)):t.push(a)}Ve=t,qe.length>0&&He(7)}function Ze(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],r=a.target,i=a.boundingClientRect,o=a.intersectionRect,u=a.rootBounds;if(Pe.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Bt(r):null,s=c in Ue?Ue[c]:{id:c,name:Pe.get(r),interaction:16,visibility:0},l=(o?o.width*o.height*1/(u.width*u.height):0)>.05||a.intersectionRatio>.8,d=(l||10==s.visibility)&&Math.abs(i.top)+u.height>i.height;Qe(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Fe&&Fe.unobserve(r)}}qe.length>0&&He(7)}function Qe(t,e,n,a){var r=n>e.interaction||a>e.visibility;e.interaction=n>e.interaction?n:e.interaction,e.visibility=a>e.visibility?a:e.visibility,e.id?(e.id in Ue&&r||!(e.id in Ue))&&(Ue[e.id]=e,qe.push($e(e))):Ve.push({node:t,state:$e(e)})}function $e(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function tn(){qe=[]}var en=[];function nn(t){var e=Sa(t);if(e){var n=e.value,a=n&&n.length>=5&&o.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?d(n,24):"";en.push({time:s(t),event:42,data:{target:Sa(t),type:e.type,value:n,checksum:a}}),pe(xa.bind(this,42))}}function an(){en=[]}function rn(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Jt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var on=["input","textarea","radio","button","canvas"],un=[];function cn(t){ri(t,"click",sn.bind(this,9,t),!0)}function sn(t,e,n){var a=Jt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=rn(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=Sa(n),l=function(t){for(;t&&t!==document;){if(t.nodeType===Node.ELEMENT_NODE){var e=t;if("A"===e.tagName)return e}t=t.parentNode}return null}(c),d=function(t){var e=null,n=document.documentElement;if("function"==typeof t.getBoundingClientRect){var a=t.getBoundingClientRect();a&&a.width>0&&a.height>0&&(e={x:Math.floor(a.left+("pageXOffset"in window?window.pageXOffset:n.scrollLeft)),y:Math.floor(a.top+("pageYOffset"in window?window.pageYOffset:n.scrollTop)),w:Math.floor(a.width),h:Math.floor(a.height)})}return e}(c);0===n.detail&&d&&(i=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var f=d?Math.max(Math.floor((i-d.x)/d.w*32767),0):0,h=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;null!==i&&null!==o&&(un.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:dn(c),context:fn(l),text:ln(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),pe(xa.bind(this,t)))}function ln(t){var e=null;if(t){var n=t.textContent||t.value||t.alt;n&&(e=n.replace(/\s+/g," ").trim().substr(0,25))}return e}function dn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(on.indexOf(e)>=0)return 0}return 1}function fn(t){if(t&&t.hasAttribute("target"))switch(t.getAttribute("target")){case"_blank":return 1;case"_parent":return 2;case"_top":return 3}return 0}function hn(){un=[]}var pn=[];function vn(t,e){pn.push({time:s(e),event:38,data:{target:Sa(e),action:t}}),pe(xa.bind(this,38))}function gn(){pn=[]}var mn=null,bn=[];function yn(t){var e=Sa(t),n=$t(e);if(e&&e.type&&n){var a=e.value;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a};bn.length>0&&bn[bn.length-1].data.target===r.target&&bn.pop(),bn.push({time:s(t),event:27,data:r}),q(mn),mn=Y(wn,1e3,27)}}function wn(t){pe(xa.bind(this,t))}function kn(){bn=[]}var En,On=[],Sn=null;function Nn(t,e,n){var a=Jt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=rn(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&Mn({time:s(n),event:t,data:{target:Sa(n),x:i,y:o}})}function xn(t,e,n){var a=Jt(e),r=a?a.contentDocument.documentElement:document.documentElement,i=n.changedTouches,o=s(n);if(i)for(var u=0;u<i.length;u++){var c=i[u],l="clientX"in c?Math.round(c.clientX+r.scrollLeft):null,d="clientY"in c?Math.round(c.clientY+r.scrollTop):null;l=l&&a?l+Math.round(a.offsetLeft):l,d=d&&a?d+Math.round(a.offsetTop):d,null!==l&&null!==d&&Mn({time:o,event:t,data:{target:Sa(n),x:l,y:d}})}}function Mn(t){switch(t.event){case 12:case 15:case 19:var e=On.length,n=e>1?On[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,r=Math.sqrt(n*n+a*a),i=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&r<20&&i<25}(n,t)&&On.pop(),On.push(t),q(Sn),Sn=Y(Tn,500,t.event);break;default:On.push(t),Tn(t.event)}}function Tn(t){pe(xa.bind(this,t))}function _n(){On=[]}function In(){var t=document.documentElement;En={width:t&&"clientWidth"in t?Math.min(t.clientWidth,window.innerWidth):window.innerWidth,height:t&&"clientHeight"in t?Math.min(t.clientHeight,window.innerHeight):window.innerHeight},xa(11)}function Cn(){En=null}var Dn=[],jn=null;function An(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?Sa(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Jt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u={time:s(t),event:10,data:{target:a,x:i,y:o}};if((null!==t||0!==i||0!==o)&&null!==i&&null!==o){var c=Dn.length,l=c>1?Dn[c-2]:null;l&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(l,u)&&Dn.pop(),Dn.push(u),q(jn),jn=Y(Ln,500,10)}}function Ln(t){pe(xa.bind(this,t))}var Rn=null,zn=null,Hn=null;function Wn(t){var e=(t.nodeType===Node.DOCUMENT_NODE?t:document).getSelection();if(null!==e&&!(null===e.anchorNode&&null===e.focusNode||e.anchorNode===e.focusNode&&e.anchorOffset===e.focusOffset)){var n=Rn.start?Rn.start:null;null!==zn&&null!==Rn.start&&n!==e.anchorNode&&(q(Hn),Xn(21)),Rn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},zn=e,q(Hn),Hn=Y(Xn,500,21)}}function Xn(t){pe(xa.bind(this,t))}function Yn(){zn=null,Rn={start:0,startOffset:0,end:0,endOffset:0}}var qn,Pn,Un=[];function Vn(t){Un.push({time:s(t),event:39,data:{target:Sa(t)}}),pe(xa.bind(this,39))}function Bn(){Un=[]}function Fn(t){qn={name:t.type},xa(26,s(t)),ji()}function Jn(){qn=null}function Kn(t){void 0===t&&(t=null),Pn={visible:"visibilityState"in document?document.visibilityState:"default"},xa(28,s(t))}function Gn(){Pn=null}function Zn(t){!function(t){var e=Jt(t);ri(e?e.contentWindow:t===document?window:t,"scroll",An,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(cn(t),function(t){ri(t,"cut",vn.bind(this,0),!0),ri(t,"copy",vn.bind(this,1),!0),ri(t,"paste",vn.bind(this,2),!0)}(t),function(t){ri(t,"mousedown",Nn.bind(this,13,t),!0),ri(t,"mouseup",Nn.bind(this,14,t),!0),ri(t,"mousemove",Nn.bind(this,12,t),!0),ri(t,"wheel",Nn.bind(this,15,t),!0),ri(t,"dblclick",Nn.bind(this,16,t),!0),ri(t,"touchstart",xn.bind(this,17,t),!0),ri(t,"touchend",xn.bind(this,18,t),!0),ri(t,"touchmove",xn.bind(this,19,t),!0),ri(t,"touchcancel",xn.bind(this,20,t),!0)}(t),function(t){ri(t,"input",yn,!0)}(t),function(t){ri(t,"selectstart",Wn.bind(this,t),!0),ri(t,"selectionchange",Wn.bind(this,t),!0)}(t),function(t){ri(t,"change",nn,!0)}(t),function(t){ri(t,"submit",Vn,!0)}(t))}var Qn=Object.freeze({__proto__:null,observe:Zn,start:function(){Ma=[],_a(),hn(),gn(),_n(),kn(),ri(window,"resize",In),In(),ri(document,"visibilitychange",Kn),Kn(),Dn=[],An(),Yn(),an(),Bn(),ri(window,"pagehide",Fn)},stop:function(){Ma=[],_a(),hn(),gn(),q(Sn),On.length>0&&Tn(On[On.length-1].event),q(mn),kn(),Cn(),Gn(),q(jn),Dn=[],Yn(),q(Hn),an(),Bn(),Jn()}}),$n=/[^0-9\.]/g;function ta(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],r=t[a];if("@type"===a&&"string"==typeof r)switch(r=(r=r.toLowerCase()).indexOf("article")>=0||r.indexOf("posting")>=0?"article":r){case"article":case"recipe":Mr(5,t[a]),Mr(8,t.creator),Mr(18,t.headline);break;case"product":Mr(5,t[a]),Mr(10,t.name),Mr(12,t.sku),t.brand&&Mr(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(X(11,ea(t.ratingValue,100)),X(18,ea(t.bestRating)),X(19,ea(t.worstRating))),X(12,ea(t.ratingCount)),X(17,ea(t.reviewCount));break;case"person":Mr(8,t.name);break;case"offer":Mr(7,t.availability),Mr(14,t.itemCondition),Mr(13,t.priceCurrency),Mr(12,t.sku),X(13,ea(t.price));break;case"brand":Mr(6,t.name)}null!==r&&"object"==typeof r&&ta(r)}}function ea(t,e){if(void 0===e&&(e=1),null!==t)switch(typeof t){case"number":return Math.round(t*e);case"string":return Math.round(parseFloat(t.replace($n,""))*e)}return null}var na=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last"],aa=/[\r\n]+/g;function ra(t,e){var n,a=null;if(2===e&&!1===ee(t))return a;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var r=!1===ee(t)?"add":"update",i=t.parentElement?t.parentElement:null,o=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:i=o&&t.parentNode?Jt(t.parentNode):i;var u=t,c={tag:(o?"iframe:":"")+"*D",attributes:{name:u.name,publicId:u.publicId,systemId:u.systemId}};oe[r](t,i,c,e);break;case Node.DOCUMENT_NODE:t===document&&Vt(document),ia(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var s=t;if(s.host)if(Vt(s),"function"===typeof s.constructor&&s.constructor.toString().indexOf("[native code]")>=0){ia(s);var l={tag:"*S",attributes:{style:""}};oe[r](t,s.host,l,e)}else oe[r](t,s.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(i=i||t.parentNode,"update"===r||i&&ee(i)&&"STYLE"!==i.tagName&&"NOSCRIPT"!==i.tagName){var d={tag:"*T",value:t.nodeValue};oe[r](t,i,d,e)}break;case Node.ELEMENT_NODE:var f=t,h=f.tagName,p=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;na.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(f);switch(i=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===f.namespaceURI&&(h="svg:"+h),h){case"HTML":i=o&&i?Jt(i):null;var v={tag:(o?"iframe:":"")+h,attributes:p};oe[r](t,i,v,e);break;case"SCRIPT":if("type"in p&&"application/ld+json"===p.type)try{ta(JSON.parse(f.text.replace(aa,"")))}catch(t){}break;case"NOSCRIPT":var g={tag:h,attributes:{},value:""};oe[r](t,i,g,e);break;case"META":var m="property"in p?"property":"name"in p?"name":null;if(m&&"content"in p){var b=p.content;switch(p[m]){case"og:title":Mr(20,b);break;case"og:type":Mr(19,b);break;case"generator":Mr(21,b)}}break;case"HEAD":var y={tag:h,attributes:p},w=o&&(null===(n=t.ownerDocument)||void 0===n?void 0:n.location)?t.ownerDocument.location:location;y.attributes["*B"]=w.protocol+"//"+w.host+w.pathname,oe[r](t,i,y,e);break;case"BASE":var k=$t(t.parentElement);if(k){var E=document.createElement("a");E.href=p.href,k.data.attributes["*B"]=E.protocol+"//"+E.host+E.pathname}break;case"STYLE":var O={tag:h,attributes:p,value:oa(f)};oe[r](t,i,O,e);break;case"IFRAME":var S=t,N={tag:h,attributes:p};Ft(S)&&(!function(t){!1===ee(t)&&ri(t,"load",Oa.bind(this,t,"childList"),!0)}(S),N.attributes["*O"]="true",S.contentDocument&&S.contentWindow&&"loading"!==S.contentDocument.readyState&&(a=S.contentDocument)),oe[r](t,i,N,e);break;case"LINK":if(Dr&&"stylesheet"===p.rel){for(var x in Object.keys(document.styleSheets)){var M=document.styleSheets[x];if(M.ownerNode==f){var T={tag:"STYLE",attributes:p,value:ua(M)};oe[r](t,i,T,e);break}}break}var _={tag:h,attributes:p};oe[r](t,i,_,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in p&&p.src.startsWith("data:")&&delete p.src;var I={tag:h,attributes:p};oe[r](t,i,I,e);break;default:var C={tag:h,attributes:p};f.shadowRoot&&(a=f.shadowRoot),oe[r](t,i,C,e)}}return a}function ia(t){ee(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](ni(ba)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),sa.push(n))}catch(t){$a(2,0,t?t.name:null)}}(t),Zn(t))}function oa(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0)&&(e=ua(t.sheet)),e}function ua(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if($a(1,1,t?t.name:null),t&&"SecurityError"!==t.name)throw t}if(null!==n)for(var a=0;a<n.length;a++)e+=n[a].cssText;return e}function ca(t,e,n){return at(this,void 0,void 0,(function(){var a,r,i,o,u;return rt(this,(function(c){switch(c.label){case 0:a=[t],c.label=1;case 1:if(!(a.length>0))return[3,4];for(r=a.shift(),i=r.firstChild;i;)a.push(i),i=i.nextSibling;return 0!==(o=ge(e))?[3,3]:[4,ye(e)];case 2:o=c.sent(),c.label=3;case 3:return 2===o?[3,4]:((u=ra(r,n))&&a.push(u),[3,1]);case 4:return[2]}}))}))}var sa=[],la=[],da=null,fa=null,ha=null,pa=[],va=null,ga=null,ma={};function ba(t){var e=s();G(6,e),la.push({time:e,mutations:t}),pe(ya,1).then((function(){Y(Ne),ni(Ge)()}))}function ya(){return at(this,void 0,void 0,(function(){var t,e,n,a,r,i,o,u,c,l;return rt(this,(function(d){switch(d.label){case 0:me(t={id:zr(),cost:3}),d.label=1;case 1:if(!(la.length>0))return[3,8];e=la.shift(),n=s(),a=0,r=e.mutations,d.label=2;case 2:return a<r.length?(i=r[a],0!==(o=ge(t))?[3,4]:[4,ye(t)]):[3,6];case 3:o=d.sent(),d.label=4;case 4:if(2===o)return[3,6];switch(u=i.target,c=function(t,e,n){var a=t.target?$t(t.target.parentNode):null;if(a&&"HTML"!==a.data.tag){var r=s()>ga,i=$t(t.target),o=i&&i.selector?i.selector.join():t.target.nodeName,u=[a.selector?a.selector.join():"",o,t.attributeName,wa(t.addedNodes),wa(t.removedNodes)].join();ma[u]=u in ma?ma[u]:[0,n];var c=ma[u];if(!1===r&&c[0]>=10&&ka(c[2],2,e),c[0]=r?c[1]===n?c[0]:c[0]+1:1,c[1]=n,10===c[0])return c[2]=t.removedNodes,"suspend";if(c[0]>10)return""}return t.type}(i,t,n),c&&u&&u.ownerDocument&&Vt(u.ownerDocument),c&&u&&u.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&u.host&&Vt(u),c){case"attributes":ra(u,3);break;case"characterData":ra(u,4);break;case"childList":ka(i.addedNodes,1,t),ka(i.removedNodes,2,t);break;case"suspend":(l=$t(u))&&(l.metadata.suspend=!0)}d.label=5;case 5:return a++,[3,2];case 6:return[4,He(6,t,e.time)];case 7:return d.sent(),[3,1];case 8:return be(t),[2]}}))}))}function wa(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function ka(t,e,n){return at(this,void 0,void 0,(function(){var a,r,i;return rt(this,(function(o){switch(o.label){case 0:a=t?t.length:0,r=0,o.label=1;case 1:return r<a?1!==e?[3,2]:(ca(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=ge(n))?[3,4]:[4,ye(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];ra(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Ea(t){return pa.indexOf(t)<0&&pa.push(t),va&&q(va),va=Y((function(){!function(){for(var t=0,e=pa;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ee(n))continue;Oa(n,a?"childList":"characterData")}}pa=[]}()}),33),t}function Oa(t,e){ni(ba)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function Sa(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return ga=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function Na(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=$t(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=Qt(t),a=t in Ue?Ue[t]:{id:t,visibility:0,interaction:16,name:Pe.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}Qe(n,a,r,a.visibility)}(r.region,e),i.fraud&&Et(i.fraud,r.id,n||r.data.value)}}return a}function xa(t,e){return void 0===e&&(e=null),at(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,y,w,k,E,O,S,N,x,M,_,C,D,j,A,L,R,z;return rt(this,(function(H){switch(n=e||s(),a=[n,t],t){case 13:case 14:case 12:case 15:case 16:case 17:case 18:case 19:case 20:for(r=0,i=On;r<i.length;r++)R=i[r],(o=Na(R.data.target,R.event)).id>0&&((a=[R.time,R.event]).push(o.id),a.push(R.data.x),a.push(R.data.y),Ya(a),T(R.event,R.data.x,R.data.y));_n();break;case 9:for(u=0,c=un;u<c.length;u++)R=c[u],l=Na(R.data.target,R.event,R.data.text),a=[R.time,R.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(R.data.x),a.push(R.data.y),a.push(R.data.eX),a.push(R.data.eY),a.push(R.data.button),a.push(R.data.reaction),a.push(R.data.context),a.push(m(R.data.text,"click",l.privacy)),a.push(b(R.data.link)),a.push(d),a.push(R.data.trust),Ya(a),Ia(R.time,R.event,d,R.data.x,R.data.y,R.data.reaction,R.data.context);hn();break;case 38:for(f=0,h=pn;f<h.length;f++)R=h[f],a=[R.time,R.event],(j=Na(R.data.target,R.event)).id>0&&(a.push(j.id),a.push(R.data.action),Ya(a));gn();break;case 11:p=En,a.push(p.width),a.push(p.height),T(t,p.width,p.height),Cn(),Ya(a);break;case 26:v=qn,a.push(v.name),Jn(),Ya(a);break;case 27:for(g=0,y=bn;g<y.length;g++)R=y[g],w=Na(R.data.target,R.event,R.data.value),(a=[R.time,R.event]).push(w.id),a.push(m(R.data.value,"input",w.privacy)),Ya(a);kn();break;case 21:(k=Rn)&&(E=Na(k.start,t),O=Na(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),Yn(),Ya(a));break;case 10:for(S=0,N=Dn;S<N.length;S++)R=N[S],(x=Na(R.data.target,R.event)).id>0&&((a=[R.time,R.event]).push(x.id),a.push(R.data.x),a.push(R.data.y),Ya(a),T(R.event,R.data.x,R.data.y));Dn=[];break;case 42:for(M=0,_=en;M<_.length;M++)R=_[M],a=[R.time,R.event],(j=Na(R.data.target,R.event)).id>0&&((a=[R.time,R.event]).push(j.id),a.push(R.data.type),a.push(m(R.data.value,"change",j.privacy)),a.push(m(R.data.checksum,"checksum",j.privacy)),Ya(a));an();break;case 39:for(C=0,D=Un;C<D.length;C++)R=D[C],a=[R.time,R.event],(j=Na(R.data.target,R.event)).id>0&&(a.push(j.id),Ya(a));Bn();break;case 22:for(A=0,L=Ta;A<L.length;A++)R=L[A],(a=[R.time,R.event]).push(R.data.type),a.push(R.data.hash),a.push(R.data.x),a.push(R.data.y),a.push(R.data.reaction),a.push(R.data.context),Ya(a,!1);_a();break;case 28:z=Pn,a.push(z.visible),Ya(a),I(n,z.visible),Gn()}return[2]}))}))}var Ma=[],Ta=[];function _a(){Ta=[]}function Ia(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),Ma.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),T(e,a,r)}var Ca,Da,ja,Aa,La,Ra=0,za=0,Ha=null,Wa=0;function Xa(){Aa=!0,Ra=0,za=0,Wa=0,Ca=[],Da=[],ja={},La=null}function Ya(t,e){if(void 0===e&&(e=!0),Aa){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:Ra+=r.length;case 37:case 6:case 43:case 45:case 46:za+=r.length,Ca.push(r);break;default:Da.push(r)}H(25);var i=function(){var t=!1===o.lean&&Ra>0?100:Gr.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Wa>2*i&&(q(Ha),Ha=null),e&&null===Ha&&(25!==a&&B(),Ha=Y(Pa,i),Wa=n,yr(za))}}function qa(){q(Ha),Pa(!0),Ra=0,za=0,Wa=0,Ca=[],Da=[],ja={},La=null,Aa=!1}function Pa(t){return void 0===t&&(t=!1),at(this,void 0,void 0,(function(){var e,n,a,r,i,u,c,s;return rt(this,(function(l){switch(l.label){case 0:return Ha=null,(e=!1===o.lean&&za>0&&(za<1048576||Gr.sequence>0))&&X(1,1),Ge(),function(){var t=[];Ta=[];for(var e=Gr.start+Gr.duration,n=Math.max(e-2e3,0),a=0,r=Ma;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Ta.push(i),t.push(i))}Ma=t,xa(22)}(),yt(),n=!0===t,a=JSON.stringify($r(n)),r="[".concat(Da.join(),"]"),i=e?"[".concat(Ca.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,pt(u)];case 2:s=l.sent(),l.label=3;case 3:return W(2,(c=s)?c.length:u.length),Ua(u,c,Gr.sequence,n),Da=[],e&&(Ca=[],za=0,Ra=0),[2]}}))}))}function Ua(t,e,n,a){if(void 0===a&&(a=!1),"string"==typeof o.upload){var r=o.upload,i=!1;if(a&&"sendBeacon"in navigator)try{(i=navigator.sendBeacon.bind(navigator)(r,t))&&Ba(n)}catch(t){}if(!1===i){n in ja?ja[n].attempts++:ja[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){ei(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){ni(Va)(u,n)}),u.withCredentials=!0,e?(u.setRequestHeader("Accept","application/x-clarity-gzip"),u.send(e)):u.send(t)}}else if(o.upload){(0,o.upload)(t),Ba(n)}}function Va(t,e){var n=ja[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?wr(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Ua(n.data,null,e)):(La={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&mr(2),200===t.status&&t.responseText&&function(t){for(var e=t&&t.length>0?t.split("\n"):[],n=0,a=e;n<a.length;n++){var r=a[n],i=r&&r.length>0?r.split(/ (.*)/):[""];switch(i[0]){case"END":wr(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&cr(i[1])}}}(t.responseText),0===t.status&&(Ua(n.data,null,e,!0),wr(3)),t.status>=200&&t.status<=208&&Ba(e),delete ja[e]))}function Ba(t){1===t&&Xr()}var Fa,Ja={};function Ka(t){var e=t.error||t;return e.message in Ja||(Ja[e.message]=0),Ja[e.message]++>=5||e&&e.message&&(Fa={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},Ga(31)),!0}function Ga(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Fa.message),e.push(Fa.line),e.push(Fa.column),e.push(Fa.stack),e.push(b(Fa.source)),Ya(e);break;case 33:Za&&(e.push(Za.code),e.push(Za.name),e.push(Za.message),e.push(Za.stack),e.push(Za.severity),Ya(e,!1));break;case 41:wt&&(e.push(wt.id),e.push(wt.target),e.push(wt.checksum),Ya(e,!1))}return[2]}))}))}var Za,Qa={};function $a(t,e,n,a,r){void 0===n&&(n=null),void 0===a&&(a=null),void 0===r&&(r=null);var i=n?"".concat(n,"|").concat(a):"";t in Qa&&Qa[t].indexOf(i)>=0||(Za={code:t,name:n,message:a,stack:r,severity:e},t in Qa?Qa[t].push(i):Qa[t]=[i],Ga(33))}var tr,er={},nr=new Set,ar={},rr={},ir={},or={};function ur(){dr()}function cr(t){try{var e=t&&t.length>0?t.split(/ (.*)/):[""],n=e[0].split(/\|(.*)/),a=parseInt(n[0]),r=n.length>1?n[1]:"",i=e.length>1?JSON.parse(e[1]):{};for(var o in ar[a]={},rr[a]={},ir[a]={},or[a]=r,i){var u=parseInt(o),c=i[o],s=2;switch(c.startsWith("~")?s=0:c.startsWith("!")&&(s=4),s){case 0:var l=c.substring(1,c.length);ar[a][u]=pr(l);break;case 2:rr[a][u]=c;break;case 4:var d=c.substring(1,c.length);ir[a][u]=d}}}catch(t){$a(8,1,t?t.name:null)}}function sr(t){return JSON.parse(JSON.stringify(t))}function lr(){try{for(var t in ar){var e=parseInt(t);if(""==or[e]||document.querySelector(or[e])){var n=ar[e];for(var a in n){var r=parseInt(a),i=(h=vr(sr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&fr(e,r,i)}var o=rr[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)fr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=ir[e];for(var d in l){var f=parseInt(d);fr(e,f,Zt(l[f]).trim().substring(0,1e4))}}}nr.size>0&&mr(40)}catch(t){$a(5,1,t?t.name:null)}var h}function dr(){nr.clear()}function fr(t,e,n){var a,r=!1;t in er||(er[t]={},r=!0),a=ir[t],0==Object.keys(a).length||e in er[t]&&er[t][e]==n||(r=!0),er[t][e]=n,r&&nr.add(t)}function hr(){dr()}function pr(t){for(var e=[],n=t.split(".");n.length>0;){var a=n.shift(),r=a.indexOf("["),i=a.indexOf("{"),o=a.indexOf("}");e.push({name:r>0?a.substring(0,r):i>0?a.substring(0,i):a,type:r>0?1:i>0?2:3,condition:i>0?a.substring(i+1,o):null})}return e}function vr(t,e){if(void 0===e&&(e=window),0==t.length)return e;var n,a=t.shift();if(e&&e[a.name]){var r=e[a.name];if(1!==a.type&&gr(r,a.condition))n=vr(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(gr(c,a.condition)){var s=vr(t,c);s&&i.push(s)}}n=i}return n}return null}function gr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function mr(t){var e=[s(),t];switch(t){case 4:var n=S;n&&((e=[n.time,n.event]).push(n.data.visible),e.push(n.data.docWidth),e.push(n.data.docHeight),e.push(n.data.screenWidth),e.push(n.data.screenHeight),e.push(n.data.scrollX),e.push(n.data.scrollY),e.push(n.data.pointerX),e.push(n.data.pointerY),e.push(n.data.activityTime),Ya(e,!1)),M();break;case 25:e.push(L.gap),Ya(e);break;case 35:e.push(tr.check),Ya(e,!1);break;case 3:e.push(tt.key),Ya(e);break;case 2:e.push(La.sequence),e.push(La.attempts),e.push(La.status),Ya(e,!1);break;case 24:j.key&&e.push(j.key),e.push(j.value),Ya(e);break;case 34:var a=Object.keys(it);if(a.length>0){for(var r=0,i=a;r<i.length;r++){var o=i[r];e.push(o),e.push(it[o])}lt(),Ya(e,!1)}break;case 0:var u=Object.keys(z);if(u.length>0){for(var c=0,l=u;c<l.length;c++){var d=l[c],f=parseInt(d,10);e.push(f),e.push(Math.round(z[d]))}z={},Ya(e,!1)}break;case 1:var h=Object.keys(Sr);if(h.length>0){for(var p=0,v=h;p<v.length;p++){var g=v[p];f=parseInt(g,10);e.push(f),e.push(Sr[g])}_r(),Ya(e,!1)}break;case 36:var m=Object.keys(K);if(m.length>0){for(var b=0,y=m;b<y.length;b++){var w=y[b];f=parseInt(w,10);e.push(f),e.push([].concat.apply([],K[w]))}Q(),Ya(e,!1)}break;case 40:nr.forEach((function(t){e.push(t);var n=[];for(var a in er[t]){var r=parseInt(a,10);n.push(r),n.push(er[t][a])}e.push(n)})),dr(),Ya(e,!1)}}function br(){tr={check:0}}function yr(t){if(0===tr.check){var e=tr.check;e=Gr.sequence>=128?1:e,e=Gr.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==tr.check&&wr(e)}}function wr(t){tr.check=t,Wr(),ji()}function kr(){0!==tr.check&&mr(35)}function Er(){tr=null}var Or=null,Sr=null;function Nr(){Or={},Sr={}}function xr(){Or={},Sr={}}function Mr(t,e){e&&(e="".concat(e),t in Or||(Or[t]=[]),Or[t].indexOf(e)<0&&(Or[t].push(e),t in Sr||(Sr[t]=[]),Sr[t].push(e),Or[t].length>128&&wr(5)))}function Tr(){mr(1)}function _r(){Sr={}}var Ir=null,Cr=[],Dr=0,jr=null;function Ar(){jr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";Dr=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:Pr(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=Br("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-Ur(n[1])<18e5&&(t.session=n[0],t.count=Ur(n[2])+1,t.upgrade=Ur(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=Vr(),i=o.projectId||d(location.host);Ir={projectId:i,userId:r.id,sessionId:a.session,pageNum:a.count},o.lean=o.track&&null!==a.upgrade?0===a.upgrade:o.lean,o.upload=o.track&&"string"==typeof o.upload&&a.upload&&a.upload.length>"https://".length?a.upload:o.upload,Mr(0,t),Mr(3,e),Mr(1,b(location.href,!!Dr)),Mr(2,document.referrer),Mr(15,function(){var t=Pr();if(o.track&&Yr(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),Mr(16,document.documentElement.lang),Mr(17,document.dir),Mr(26,"".concat(window.devicePixelRatio)),Mr(28,r.dob.toString()),Mr(29,r.version.toString()),X(0,a.ts),X(1,0),X(35,Dr),navigator&&(Mr(9,navigator.language),X(33,navigator.hardwareConcurrency),X(32,navigator.maxTouchPoints),X(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;Mr(22,t.platform),Mr(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){Mr(24,t.name+"~"+t.version)})),Mr(25,t.model),X(27,t.mobile?1:0)})):Mr(22,navigator.platform)),screen&&(X(14,Math.round(screen.width)),X(15,Math.round(screen.height)),X(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=Br(s);l&&ot(s,l)}qr(r)}function Lr(){jr=null,Ir=null}function Rr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Ir&&(n||!1===e)?t(Ir,!o.lean):Cr.push({callback:t,wait:e})}function zr(){return Ir?[Ir.userId,Ir.sessionId,Ir.pageNum].join("."):""}function Hr(t){if(void 0===t&&(t=!0),!t)return o.track=!1,Jr("_clsk","",-Number.MAX_VALUE),Jr("_clck","",-Number.MAX_VALUE),ji(),void window.setTimeout(Di,250);mi()&&(o.track=!0,qr(Vr(),1))}function Wr(){Jr("_clsk","",0)}function Xr(){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;!function(t){Cr.length>0&&Cr.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Ir,!o.lean)}))}(n),Jr("_clsk",[Ir.sessionId,t,Ir.pageNum,n,e].join("|"),1)}function Yr(t,e){try{return!!t[e]}catch(t){return!1}}function qr(t,e){void 0===e&&(e=null),e=null===e?t.consent:e;var n=Math.ceil((Date.now()+31536e6)/864e5),a=0===t.dob?null===o.dob?0:o.dob:t.dob;(null===t.expiry||Math.abs(n-t.expiry)>=1||t.consent!==e||t.dob!==a)&&Jr("_clck",[Ir.userId,2,n.toString(36),e,a].join("|"),365)}function Pr(){var t=Math.floor(Math.random()*Math.pow(2,32));return window&&window.crypto&&window.crypto.getRandomValues&&Uint32Array&&(t=window.crypto.getRandomValues(new Uint32Array(1))[0]),t.toString(36)}function Ur(t,e){return void 0===e&&(e=10),parseInt(t,e)}function Vr(){var t={id:Pr(),version:0,expiry:null,consent:0,dob:0},e=Br("_clck");if(e&&e.length>0){for(var n=e.split("|"),a=0,r=0,i=document.cookie.split(";");r<i.length;r++){a+="_clck"===i[r].split("=")[0].trim()?1:0}if(1===n.length||a>1){var u="".concat(";").concat("expires=").concat(new Date(0).toUTCString()).concat(";path=/");document.cookie="".concat("_clck","=").concat(u),document.cookie="".concat("_clsk","=").concat(u)}n.length>1&&(t.version=Ur(n[1])),n.length>2&&(t.expiry=Ur(n[2],36)),n.length>3&&1===Ur(n[3])&&(t.consent=1),n.length>4&&Ur(n[1])>1&&(t.dob=Ur(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function Br(t){var e;if(Yr(document,"cookie")){var n=document.cookie.split(";");if(n)for(var a=0;a<n.length;a++){var r=n[a].split("=");if(r.length>1&&r[0]&&r[0].trim()===t){for(var i=Fr(r[1]),o=i[0],u=i[1];o;)o=(e=Fr(u))[0],u=e[1];return u}}}return null}function Fr(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Jr(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||Yr(document,"cookie"))){var a=function(t){return encodeURIComponent(t)}(e),r=new Date;r.setDate(r.getDate()+n);var i=r?"expires="+r.toUTCString():"",u="".concat(t,"=").concat(a).concat(";").concat(i).concat(";path=/");try{if(null===jr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(jr=".".concat(c[s]).concat(jr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(jr),Br(t)===e))return;jr=""}}catch(t){jr=""}document.cookie=jr?"".concat(u).concat(";").concat("domain=").concat(jr):u}}var Kr,Gr=null;function Zr(){var t=Ir;Gr={version:l,sequence:0,start:0,duration:0,projectId:t.projectId,userId:t.userId,sessionId:t.sessionId,pageNum:t.pageNum,upload:0,end:0}}function Qr(){Gr=null}function $r(t){return Gr.start=Gr.start+Gr.duration,Gr.duration=s()-Gr.start,Gr.sequence++,Gr.upload=t&&"sendBeacon"in navigator?1:0,Gr.end=t?1:0,[Gr.version,Gr.sequence,Gr.start,Gr.duration,Gr.projectId,Gr.userId,Gr.sessionId,Gr.pageNum,Gr.upload,Gr.end]}function ti(){Kr=[]}function ei(t){if(Kr&&-1===Kr.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:Gr.version,p:Gr.projectId,u:Gr.userId,s:Gr.sessionId,n:Gr.pageNum};t.message&&(n.m=t.message),t.stack&&(n.e=t.stack);var a=new XMLHttpRequest;a.open("POST",e,!0),a.send(JSON.stringify(n)),Kr.push(t.message)}}return t}function ni(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw ei(t)}var n=performance.now()-e;W(4,n),n>30&&(H(7),X(6,n))}}var ai=[];function ri(t,e,n,a){void 0===a&&(a=!1),n=ni(n);try{t[u("addEventListener")](e,n,a),ai.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function ii(){for(var t=0,e=ai;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}ai=[]}var oi=null,ui=null,ci=null,si=0;function li(){return!(si++>20)||($a(4,0),!1)}function di(){si=0,ci!==hi()&&(ji(),window.setTimeout(fi,250))}function fi(){Di(),X(29,1)}function hi(){return location.href?location.href.replace(location.hash,""):location.href}var pi=!1;function vi(){pi=!0,c=performance.now(),he(),ii(),ti(),ci=hi(),si=0,ri(window,"popstate",di),null===oi&&(oi=history.pushState,history.pushState=function(){oi.apply(this,arguments),mi()&&li()&&di()}),null===ui&&(ui=history.replaceState,history.replaceState=function(){ui.apply(this,arguments),mi()&&li()&&di()})}function gi(){ci=null,si=0,ti(),ii(),he(),c=0,pi=!1}function mi(){return pi}function bi(t){if(null===t||pi)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function yi(){Di(),A("clarity","restart")}var wi=Object.freeze({__proto__:null,start:function(){!function(){kt=[],X(26,navigator.webdriver?1:0);try{X(31,window.top==window.self?1:2)}catch(t){X(31,0)}}(),ri(window,"error",Ka),Ja={},Qa={}},stop:function(){Qa={}}});function ki(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),me(e={id:zr(),cost:3}),[4,ca(document,e,0)];case 1:return n.sent(),[4,He(5,e,t)];case 2:return n.sent(),be(e),[2]}}))}))}var Ei=Object.freeze({__proto__:null,hashText:Zt,start:function(){Se(),Ne(),tn(),Fe=null,Pe=new WeakMap,Ue={},Ve=[],Be=!!window.IntersectionObserver,qt(),function(){if(sa=[],pa=[],va=null,ga=0,ma={},null===da&&(da=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return mi()&&Ea(this.ownerNode),da.apply(this,arguments)}),null===fa&&(fa=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return mi()&&Ea(this.ownerNode),fa.apply(this,arguments)}),null===ha){ha=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return mi()?Ea(ha.apply(this,arguments)):ha.apply(this,arguments)}}catch(t){ha=null}}}(),pe(ki,1).then((function(){ni(Ne)(),ni(Ge)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(Le(),ze(Te,"play"),ze(_e,"pause"),ze(Ie,"cancel"),ze(Ce,"finish"))},stop:function(){tn(),Pe=null,Ue={},Ve=[],Fe&&(Fe.disconnect(),Fe=null),Be=!1,Pt(),function(){for(var t=0,e=sa;t<e.length;t++){var n=e[t];n&&n.disconnect()}sa=[],ma={},la=[],pa=[],ga=0,va=null}(),Se(),Le()}});var Oi,Si=null;function Ni(){Si=null}function xi(t){Si={fetchStart:Math.round(t.fetchStart),connectStart:Math.round(t.connectStart),connectEnd:Math.round(t.connectEnd),requestStart:Math.round(t.requestStart),responseStart:Math.round(t.responseStart),responseEnd:Math.round(t.responseEnd),domInteractive:Math.round(t.domInteractive),domComplete:Math.round(t.domComplete),loadEventStart:Math.round(t.loadEventStart),loadEventEnd:Math.round(t.loadEventEnd),redirectCount:Math.round(t.redirectCount),size:t.transferSize?t.transferSize:0,type:t.type,protocol:t.nextHopProtocol,encodedSize:t.encodedBodySize?t.encodedBodySize:0,decodedSize:t.decodedBodySize?t.decodedBodySize:0},function(t){at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(Si.fetchStart),n.push(Si.connectStart),n.push(Si.connectEnd),n.push(Si.requestStart),n.push(Si.responseStart),n.push(Si.responseEnd),n.push(Si.domInteractive),n.push(Si.domComplete),n.push(Si.loadEventStart),n.push(Si.loadEventEnd),n.push(Si.redirectCount),n.push(Si.size),n.push(Si.type),n.push(Si.protocol),n.push(Si.encodedSize),n.push(Si.decodedSize),Ni(),Ya(n)),[2]}))}))}(29)}var Mi=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Ti(){try{Oi&&Oi.disconnect(),Oi=new PerformanceObserver(ni(_i));for(var t=0,e=Mi;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&W(9,0),Oi.observe({type:n,buffered:!0}))}}catch(t){$a(3,1)}}function _i(t){!function(t){for(var e=(!("visibilityState"in document)||"visible"===document.visibilityState),n=0;n<t.length;n++){var a=t[n];switch(a.entryType){case"navigation":xi(a);break;case"resource":var r=a.name;Mr(4,Ii(r)),r!==o.upload&&r!==o.fallback||X(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&X(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&W(9,1e3*a.value);break;case"largest-contentful-paint":e&&X(8,a.startTime)}}}(t.getEntries())}function Ii(t){var e=document.createElement("a");return e.href=t,e.host}var Ci=[wi,Ei,Qn,Object.freeze({__proto__:null,start:function(){Ni(),function(){navigator&&"connection"in navigator&&Mr(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?ri(window,"load",Y.bind(this,Ti,0)):Ti():$a(3,0)}()},stop:function(){Oi&&Oi.disconnect(),Oi=null,Ni()}})];function Di(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===pi&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(bi(t),vi(),mt(),Ci.forEach((function(t){return ni(t.start)()})),null===t&&zi())}function ji(){mi()&&(Ci.slice().reverse().forEach((function(t){return ni(t.stop)()})),bt(),gi(),void 0!==Li&&(Li[Ri]=function(){(Li[Ri].q=Li[Ri].q||[]).push(arguments),"start"===arguments[0]&&Li[Ri].q.unshift(Li[Ri].q.pop())&&zi()}))}var Ai=Object.freeze({__proto__:null,consent:Hr,event:A,hashText:Zt,identify:ut,metadata:Rr,pause:function(){mi()&&(A("clarity","pause"),null===de&&(de=new Promise((function(t){fe=t}))))},resume:function(){mi()&&(de&&(fe(),de=null,null===le&&ve()),A("clarity","resume"))},set:ot,start:Di,stop:ji,upgrade:et,version:l}),Li=window,Ri="clarity";function zi(){if(void 0!==Li){if(Li[Ri]&&Li[Ri].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=Li[Ri]&&Li[Ri].q||[];for(Li[Ri]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return Ai[t].apply(Ai,e)},Li[Ri].v=l;t.length>0;)Li[Ri].apply(Li,t.shift())}}zi()}();
1
+ !function(){"use strict";var t=Object.freeze({__proto__:null,get queue(){return Ua},get start(){return qa},get stop(){return Fa},get track(){return Ha}}),e=Object.freeze({__proto__:null,get clone(){return fr},get compute(){return hr},get data(){return rr},get keys(){return ir},get reset(){return pr},get start(){return lr},get stop(){return gr},get trigger(){return dr},get update(){return vr}}),n=Object.freeze({__proto__:null,get check(){return Er},get compute(){return Nr},get data(){return ar},get start(){return kr},get stop(){return Tr},get trigger(){return Or}}),a=Object.freeze({__proto__:null,get compute(){return Cr},get data(){return Sr},get log(){return Ir},get reset(){return Dr},get start(){return Mr},get stop(){return _r},get updates(){return xr}}),r=Object.freeze({__proto__:null,get callbacks(){return jr},get clear(){return Yr},get consent(){return Xr},get data(){return Ar},get electron(){return Rr},get id(){return Wr},get metadata(){return Pr},get save(){return qr},get shortid(){return Vr},get start(){return zr},get stop(){return Hr}}),i=Object.freeze({__proto__:null,get data(){return $r},get envelope(){return ni},get start(){return ti},get stop(){return ei}}),o={projectId:null,delay:1e3,lean:!1,track:!0,content:!0,drop:[],mask:[],unmask:[],regions:[],cookies:[],fraud:!0,checksum:[],report:null,upload:null,fallback:null,upgrade:null,action:null,dob:null,delayDom:!1};function u(t){return window.Zone&&"__symbol__"in window.Zone?window.Zone.__symbol__(t):t}var c=0;function s(t){void 0===t&&(t=null);var e=t&&t.timeStamp>0?t.timeStamp:performance.now();return Math.max(Math.round(e-c),0)}var l="0.7.31";function d(t,e){void 0===e&&(e=null);for(var n,a=5381,r=a,i=0;i<t.length;i+=2){if(a=(a<<5)+a^t.charCodeAt(i),i+1<t.length)r=(r<<5)+r^t.charCodeAt(i+1)}return n=Math.abs(a+11579*r),(e?n%Math.pow(2,e):n).toString(36)}var f=/\S/gi,h=!0,p=null,v=null,g=null;function m(t,e,n,a){if(void 0===a&&(a=!1),t)switch(n){case 0:return t;case 1:switch(e){case"*T":case"value":case"placeholder":case"click":return function(t){var e=-1,n=0,a=!1,r=!1,i=!1,o=null;O();for(var u=0;u<t.length;u++){var c=t.charCodeAt(u);if(a=a||c>=48&&c<=57,r=r||64===c,i=9===c||10===c||13===c||32===c,0===u||u===t.length-1||i){if(a||r){null===o&&(o=t.split(""));var s=t.substring(e+1,i?u:u+1);s=h&&null!==g?s.match(g)?s:k(s,"▪","▫"):w(s),o.splice(e+1-n,s.length,s),n+=s.length-1}i&&(a=!1,r=!1,e=u)}}return o?o.join(""):t}(t);case"input":case"change":return E(t)}return t;case 2:case 3:switch(e){case"*T":case"data-":return a?y(t):w(t);case"src":case"srcset":case"title":case"alt":return 3===n?"":t;case"value":case"click":case"input":case"change":return E(t);case"placeholder":return w(t)}break;case 4:switch(e){case"*T":case"data-":return a?y(t):w(t);case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":return""}break;case 5:switch(e){case"*T":case"data-":return k(t,"▪","▫");case"value":case"input":case"click":case"change":return Array(5).join("•");case"checksum":case"src":case"srcset":case"alt":case"title":return""}}return t}function b(t,e){if(void 0===e&&(e=!1),e)return"".concat("https://").concat("Electron");var n=o.drop;if(n&&n.length>0&&t&&t.indexOf("?")>0){var a=t.split("?"),r=a[0],i=a[1];return r+"?"+i.split("&").map((function(t){return n.some((function(e){return 0===t.indexOf("".concat(e,"="))}))?"".concat(t.split("=")[0],"=").concat("*na*"):t})).join("&")}return t}function y(t){var e=t.trim();if(e.length>0){var n=e[0],a=t.indexOf(n),r=t.substr(0,a),i=t.substr(a+e.length);return"".concat(r).concat(e.length.toString(36)).concat(i)}return t}function w(t){return t.replace(f,"•")}function k(t,e,n){return O(),t?t.replace(v,e).replace(p,n):t}function E(t){for(var e=5*(Math.floor(t.length/5)+1),n="",a=0;a<e;a++)n+=a>0&&a%5==0?" ":"•";return n}function O(){if(h&&null===p)try{p=new RegExp("\\p{N}","gu"),v=new RegExp("\\p{L}","gu"),g=new RegExp("\\p{Sc}","gu")}catch(t){h=!1}}var N=null,T=null,S=!1;function x(){S&&(N={time:s(),event:4,data:{visible:T.visible,docWidth:T.docWidth,docHeight:T.docHeight,screenWidth:T.screenWidth,screenHeight:T.screenHeight,scrollX:T.scrollX,scrollY:T.scrollY,pointerX:T.pointerX,pointerY:T.pointerY,activityTime:T.activityTime,scrollTime:T.scrollTime}}),T=T||{visible:1,docWidth:0,docHeight:0,screenWidth:0,screenHeight:0,scrollX:0,scrollY:0,pointerX:0,pointerY:0,activityTime:0,scrollTime:0}}function M(t,e,n,a){switch(t){case 8:T.docWidth=e,T.docHeight=n;break;case 11:T.screenWidth=e,T.screenHeight=n;break;case 10:T.scrollX=e,T.scrollY=n,T.scrollTime=a;break;default:T.pointerX=e,T.pointerY=n}S=!0}function _(t){T.activityTime=t}function I(t,e){T.visible="visible"===e?1:0,T.visible||_(t),S=!0}function C(){S&&wr(4)}var D=Object.freeze({__proto__:null,activity:_,compute:C,reset:x,start:function(){S=!1,x()},get state(){return N},stop:function(){x()},track:M,visibility:I}),A=null;function j(t,e){wi()&&t&&"string"==typeof t&&t.length<255&&(A=e&&"string"==typeof e&&e.length<255?{key:t,value:e}:{value:t},wr(24))}var R,L=null,z=null;function H(t){t in L||(L[t]=0),t in z||(z[t]=0),L[t]++,z[t]++}function P(t,e){null!==e&&(t in L||(L[t]=0),t in z||(z[t]=0),L[t]+=e,z[t]+=e)}function W(t,e){null!==e&&!1===isNaN(e)&&(t in L||(L[t]=0),(e>L[t]||0===L[t])&&(z[t]=e,L[t]=e))}function X(t,e,n){return window.setTimeout(ii(t),e,n)}function Y(t){return window.clearTimeout(t)}var q=0,U=0,F=null;function V(){F&&Y(F),F=X(B,U),q=s()}function B(){var t=s();R={gap:t-q},wr(25),R.gap<3e5?F=X(B,U):mi&&(j("clarity","suspend"),Li(),["mousemove","touchstart"].forEach((function(t){return ui(document,t,Ei)})),["resize","scroll","pageshow"].forEach((function(t){return ui(window,t,Ei)})))}var J=Object.freeze({__proto__:null,get data(){return R},reset:V,start:function(){U=6e4,q=0},stop:function(){Y(F),q=0,U=0}}),K=null;function G(t,e){if(t in K){var n=K[t],a=n[n.length-1];e-a[0]>100?K[t].push([e,0]):a[1]=e-a[0]}else K[t]=[[e,0]]}function Z(){wr(36)}function Q(){K={}}var $=Object.freeze({__proto__:null,compute:Z,get data(){return K},reset:Q,start:function(){K={}},stop:function(){K={}},track:G}),tt=null;function et(t){wi()&&o.lean&&(o.lean=!1,tt={key:t},qr(),o.upgrade&&o.upgrade(t),wr(3))}var nt=Object.freeze({__proto__:null,get data(){return tt},start:function(){!o.lean&&o.upgrade&&o.upgrade("Config"),tt=null},stop:function(){tt=null},upgrade:et});function at(t,e,n,a){return new(n||(n=Promise))((function(r,i){function o(t){try{c(a.next(t))}catch(t){i(t)}}function u(t){try{c(a.throw(t))}catch(t){i(t)}}function c(t){var e;t.done?r(t.value):(e=t.value,e instanceof n?e:new n((function(t){t(e)}))).then(o,u)}c((a=a.apply(t,e||[])).next())}))}function rt(t,e){var n,a,r,i,o={label:0,sent:function(){if(1&r[0])throw r[1];return r[1]},trys:[],ops:[]};return i={next:u(0),throw:u(1),return:u(2)},"function"==typeof Symbol&&(i[Symbol.iterator]=function(){return this}),i;function u(u){return function(c){return function(u){if(n)throw new TypeError("Generator is already executing.");for(;i&&(i=0,u[0]&&(o=0)),o;)try{if(n=1,a&&(r=2&u[0]?a.return:u[0]?a.throw||((r=a.return)&&r.call(a),0):a.next)&&!(r=r.call(a,u[1])).done)return r;switch(a=0,r&&(u=[2&u[0],r.value]),u[0]){case 0:case 1:r=u;break;case 4:return o.label++,{value:u[1],done:!1};case 5:o.label++,a=u[1],u=[0];continue;case 7:u=o.ops.pop(),o.trys.pop();continue;default:if(!(r=o.trys,(r=r.length>0&&r[r.length-1])||6!==u[0]&&2!==u[0])){o=0;continue}if(3===u[0]&&(!r||u[1]>r[0]&&u[1]<r[3])){o.label=u[1];break}if(6===u[0]&&o.label<r[1]){o.label=r[1],r=u;break}if(r&&o.label<r[2]){o.label=r[2],o.ops.push(u);break}r[2]&&o.ops.pop(),o.trys.pop();continue}u=e.call(t,o)}catch(t){u=[6,t],a=0}finally{n=r=0}if(5&u[0])throw u[1];return{value:u[0]?u[1]:void 0,done:!0}}([u,c])}}}var it=null;function ot(t,e){ct(t,"string"==typeof e?[e]:e)}function ut(t,e,n,a){return void 0===e&&(e=null),void 0===n&&(n=null),void 0===a&&(a=null),at(this,void 0,void 0,(function(){var r,i;return rt(this,(function(o){switch(o.label){case 0:return i={},[4,dt(t)];case 1:return i.userId=o.sent(),i.userHint=a||((u=t)&&u.length>=5?"".concat(u.substring(0,2)).concat(k(u.substring(2),"*","*")):k(u,"*","*")),ct("userId",[(r=i).userId]),ct("userHint",[r.userHint]),ct("userType",[ft(t)]),e&&(ct("sessionId",[e]),r.sessionId=e),n&&(ct("pageId",[n]),r.pageId=n),[2,r]}var u}))}))}function ct(t,e){if(wi()&&t&&e&&"string"==typeof t&&t.length<255){for(var n=(t in it?it[t]:[]),a=0;a<e.length;a++)"string"==typeof e[a]&&e[a].length<255&&n.push(e[a]);it[t]=n}}function st(){wr(34)}function lt(){it={}}function dt(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(n.label){case 0:return n.trys.push([0,4,,5]),crypto&&t?[4,crypto.subtle.digest("SHA-256",(new TextEncoder).encode(t))]:[3,2];case 1:return e=n.sent(),[2,Array.prototype.map.call(new Uint8Array(e),(function(t){return("00"+t.toString(16)).slice(-2)})).join("")];case 2:return[2,""];case 3:return[3,5];case 4:return n.sent(),[2,""];case 5:return[2]}}))}))}function ft(t){return t&&t.indexOf("@")>0?"email":"string"}var ht="CompressionStream"in window;function pt(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return a.trys.push([0,3,,4]),ht?(e=new ReadableStream({start:function(e){return at(this,void 0,void 0,(function(){return rt(this,(function(n){return e.enqueue(t),e.close(),[2]}))}))}}).pipeThrough(new TextEncoderStream).pipeThrough(new window.CompressionStream("gzip")),n=Uint8Array.bind,[4,vt(e)]):[3,2];case 1:return[2,new(n.apply(Uint8Array,[void 0,a.sent()]))];case 2:return[3,4];case 3:return a.sent(),[3,4];case 4:return[2,null]}}))}))}function vt(t){return at(this,void 0,void 0,(function(){var e,n,a,r,i;return rt(this,(function(o){switch(o.label){case 0:e=t.getReader(),n=[],a=!1,r=[],o.label=1;case 1:return a?[3,3]:[4,e.read()];case 2:return i=o.sent(),a=i.done,r=i.value,a?[2,n]:(n.push.apply(n,r),[3,1]);case 3:return[2,n]}}))}))}var gt=null;function mt(t){try{if(!gt)return;var e=function(t){try{return JSON.parse(t)}catch(t){return[]}}(t);e.forEach((function(t){gt(t)}))}catch(t){}}var bt=[D,a,Object.freeze({__proto__:null,compute:st,get data(){return it},identify:ut,reset:lt,set:ot,start:function(){lt()},stop:function(){lt()}}),n,$,r,i,t,J,nt,e];function yt(){L={},z={},H(5),bt.forEach((function(t){return ii(t.start)()}))}function wt(){bt.slice().reverse().forEach((function(t){return ii(t.stop)()})),L={},z={}}function kt(){st(),C(),Cr(),wr(0),Z(),Nr(),hr()}var Et,Ot=[];function Nt(t,e,n){o.fraud&&null!==t&&n&&n.length>=5&&(Et={id:t,target:e,checksum:d(n,24)},Ot.indexOf(Et.checksum)<0&&(Ot.push(Et.checksum),$a(41)))}var Tt="load,active,fixed,visible,focus,show,collaps,animat".split(","),St={};function xt(t,e){var n=t.attributes,a=t.prefix?t.prefix[e]:null,r=0===e?"".concat("~").concat(t.position-1):":nth-of-type(".concat(t.position,")");switch(t.tag){case"STYLE":case"TITLE":case"LINK":case"META":case"*T":case"*D":return"";case"HTML":return"HTML";default:if(null===a)return"";a="".concat(a).concat(">"),t.tag=0===t.tag.indexOf("svg:")?t.tag.substr("svg:".length):t.tag;var i="".concat(a).concat(t.tag).concat(r),o="id"in n&&n.id.length>0?n.id:null,u="BODY"!==t.tag&&"class"in n&&n.class.length>0?n.class.trim().split(/\s+/).filter((function(t){return Mt(t)})).join("."):null;if(u&&u.length>0)if(0===e){var c="".concat(function(t){for(var e=t.split(">"),n=0;n<e.length;n++){var a=e[n].indexOf("~"),r=e[n].indexOf(".");e[n]=e[n].substring(0,r>0?r:a>0?a:e[n].length)}return e.join(">")}(a)).concat(t.tag).concat(".").concat(u);c in St||(St[c]=[]),St[c].indexOf(t.id)<0&&St[c].push(t.id),i="".concat(c).concat("~").concat(St[c].indexOf(t.id))}else i="".concat(a).concat(t.tag,".").concat(u).concat(r);return i=o&&Mt(o)?"".concat(function(t){var e=t.lastIndexOf("*S"),n=t.lastIndexOf("".concat("iframe:").concat("HTML")),a=Math.max(e,n);if(a<0)return"";return t.substring(0,t.indexOf(">",a)+1)}(a)).concat("#").concat(o):i,i}}function Mt(t){if(!t)return!1;if(Tt.some((function(e){return t.toLowerCase().indexOf(e)>=0})))return!1;for(var e=0;e<t.length;e++){var n=t.charCodeAt(e);if(n>=48&&n<=57)return!1}return!0}var _t=1,It=null,Ct=[],Dt=[],At={},jt=[],Rt=[],Lt=[],zt=[],Ht=[],Pt=[],Wt=null,Xt=null,Yt=null,qt=null;function Ut(){Vt(),Bt(document,!0)}function Ft(){Vt()}function Vt(){_t=1,Ct=[],Dt=[],At={},jt=[],Rt=[],Lt="address,password,contact".split(","),zt="password,secret,pass,social,ssn,code,hidden".split(","),Ht="radio,checkbox,range,button,reset,submit".split(","),Pt="INPUT,SELECT,TEXTAREA".split(","),It=new Map,Wt=new WeakMap,Xt=new WeakMap,Yt=new WeakMap,qt=new WeakMap,St={}}function Bt(t,e){void 0===e&&(e=!1);try{e&&o.unmask.forEach((function(t){return t.indexOf("!")<0?Rt.push(t):jt.push(t.substr(1))})),"querySelectorAll"in t&&(o.regions.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return Ge(t,"".concat(e[0]))}))})),o.mask.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,3)}))})),o.checksum.forEach((function(e){return t.querySelectorAll(e[1]).forEach((function(t){return qt.set(t,e[0])}))})),Rt.forEach((function(e){return t.querySelectorAll(e).forEach((function(t){return Yt.set(t,0)}))})))}catch(t){nr(5,1,t?t.name:null)}}function Jt(t,e){if(void 0===e&&(e=!1),null===t)return null;var n=Wt.get(t);return!n&&e&&(n=_t++,Wt.set(t,n)),n||null}function Kt(t){var e=!1;if(t.nodeType===Node.ELEMENT_NODE&&"IFRAME"===t.tagName){var n=t;try{n.contentDocument&&(Xt.set(n.contentDocument,n),e=!0)}catch(t){}}return e}function Gt(t){var e=t.nodeType===Node.DOCUMENT_NODE?t:null;return e&&Xt.has(e)?Xt.get(e):null}function Zt(t,e,n){if("object"==typeof t[n]&&"object"==typeof e[n]){for(var a in t[n])if(t[n][a]!==e[n][a])return!0;for(var a in e[n])if(e[n][a]!==t[n][a])return!0;return!1}return t[n]!==e[n]}function Qt(t){var e=t.parent&&t.parent in Ct?Ct[t.parent]:null,n=e?e.selector:null,a=t.data,r=function(t,e){e.metadata.position=1;for(var n=t?t.children.indexOf(e.id):-1;n-- >0;){var a=Ct[t.children[n]];if(e.data.tag===a.data.tag){e.metadata.position=a.metadata.position+1;break}}return e.metadata.position}(e,t),i={id:t.id,tag:a.tag,prefix:n,position:r,attributes:a.attributes};t.selector=[xt(i,0),xt(i,1)],t.hash=t.selector.map((function(t){return t?d(t):null})),t.hash.forEach((function(e){return At[e]=t.id}))}function $t(t){var e=te(ne(t));return null!==e&&null!==e.textContent?e.textContent.substr(0,25):""}function te(t){return It.has(t)?It.get(t):null}function ee(t){var e=Jt(t);return e in Ct?Ct[e]:null}function ne(t){return t in At?At[t]:null}function ae(t){return It.has(Jt(t))}function re(){for(var t=[],e=0,n=Dt;e<n.length;e++){var a=n[e];a in Ct&&t.push(Ct[a])}return Dt=[],t}function ie(t){It.delete(t);var e=t in Ct?Ct[t]:null;if(e&&e.children)for(var n=0,a=e.children;n<a.length;n++){ie(a[n])}}function oe(t){for(var e=null;null===e&&t.previousSibling;)e=Jt(t.previousSibling),t=t.previousSibling;return e}function ue(t,e,n,a){void 0===n&&(n=!0),void 0===a&&(a=!1);var r=Dt.indexOf(t);r>=0&&1===e&&a?(Dt.splice(r,1),Dt.push(t)):-1===r&&n&&Dt.push(t)}var ce=Object.freeze({__proto__:null,add:function(t,e,n,a){var r,i=Jt(t,!0),u=e?Jt(e):null,c=oe(t),s=null,l=Ze(t)?i:null,d=qt.has(t)?qt.get(t):null,f=o.content?1:3;u>=0&&Ct[u]&&((s=Ct[u]).children.push(i),l=null===l?s.region:l,d=null===d?s.metadata.fraud:d,f=s.metadata.privacy),n.attributes&&"data-clarity-region"in n.attributes&&(Ge(t,n.attributes["data-clarity-region"]),l=i),It.set(i,t),Ct[i]={id:i,parent:u,previous:c,children:[],data:n,selector:null,hash:null,region:l,metadata:{active:!0,suspend:!1,privacy:f,position:null,fraud:d,size:null}},function(t,e,n){var a=e.data,r=e.metadata,i=r.privacy,o=a.attributes||{},u=a.tag.toUpperCase();switch(!0){case Pt.indexOf(u)>=0:var c=o.type,s="";Object.keys(o).forEach((function(t){return s+=o[t].toLowerCase()}));var l=zt.some((function(t){return s.indexOf(t)>=0}));r.privacy="INPUT"===u&&Ht.indexOf(c)>=0?i:l?4:2;break;case"data-clarity-mask"in o:r.privacy=3;break;case"data-clarity-unmask"in o:r.privacy=0;break;case Yt.has(t):r.privacy=Yt.get(t);break;case qt.has(t):r.privacy=2;break;case"*T"===u:var d=n&&n.data?n.data.tag:"",f=n&&n.selector?n.selector[1]:"",h=["STYLE","TITLE","svg:style"];r.privacy=h.includes(d)||jt.some((function(t){return f.indexOf(t)>=0}))?0:i;break;case 1===i:r.privacy=function(t,e,n){if(t&&e.some((function(e){return t.indexOf(e)>=0})))return 2;return n.privacy}(o.class,Lt,r)}}(t,Ct[i],s),Qt(Ct[i]),"IMG"===(r=Ct[i]).data.tag&&3===r.metadata.privacy&&(r.metadata.size=[]),ue(i,a)},get:ee,getId:Jt,getNode:te,getValue:function(t){return t in Ct?Ct[t]:null},has:ae,hashText:$t,iframe:Gt,lookup:ne,parse:Bt,sameorigin:Kt,start:Ut,stop:Ft,update:function(t,e,n,a){var r=Jt(t),i=e?Jt(e):null,o=oe(t),u=!1,c=!1;if(r in Ct){var s=Ct[r];if(s.metadata.active=!0,s.previous!==o&&(u=!0,s.previous=o),s.parent!==i){u=!0;var l=s.parent;if(s.parent=i,null!==i&&i>=0){var d=null===o?0:Ct[i].children.indexOf(o)+1;Ct[i].children.splice(d,0,r),s.region=Ze(t)?r:Ct[i].region}else!function(t,e){if(t in Ct){var n=Ct[t];n.metadata.active=!1,n.parent=null,ue(t,e),ie(t)}}(r,a);if(null!==l&&l>=0){var f=Ct[l].children.indexOf(r);f>=0&&Ct[l].children.splice(f,1)}c=!0}for(var h in n)Zt(s.data,n,h)&&(u=!0,s.data[h]=n[h]);Qt(s),ue(r,a,u,c)}},updates:re}),se=5e3,le={},de=[],fe=null,he=null,pe=null;function ve(){le={},de=[],fe=null,he=null}function ge(t,e){return void 0===e&&(e=0),at(this,void 0,void 0,(function(){var n,a,r;return rt(this,(function(i){for(n=0,a=de;n<a.length;n++)if(a[n].task===t)return[2];return r=new Promise((function(n){de[1===e?"unshift":"push"]({task:t,resolve:n,id:Wr()})})),null===fe&&null===he&&me(),[2,r]}))}))}function me(){var t=de.shift();t&&(fe=t,t.task().then((function(){t.id===Wr()&&(t.resolve(),fe=null,me())})).catch((function(e){t.id===Wr()&&(e&&nr(0,1,e.name,e.message,e.stack),fe=null,me())})))}function be(t){var e=Ee(t);return e in le?performance.now()-le[e].start>le[e].yield?0:1:2}function ye(t){le[Ee(t)]={start:performance.now(),calls:0,yield:30}}function we(t){var e=performance.now(),n=Ee(t),a=e-le[n].start;P(t.cost,a),H(5),le[n].calls>0&&P(4,a)}function ke(t){return at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){switch(a.label){case 0:return(e=Ee(t))in le?(we(t),n=le[e],[4,Oe()]):[3,2];case 1:n.yield=a.sent().timeRemaining(),function(t){var e=Ee(t);if(le&&le[e]){var n=le[e].calls,a=le[e].yield;ye(t),le[e].calls=n+1,le[e].yield=a}}(t),a.label=2;case 2:return[2,e in le?1:2]}}))}))}function Ee(t){return"".concat(t.id,".").concat(t.cost)}function Oe(){return at(this,void 0,void 0,(function(){return rt(this,(function(t){switch(t.label){case 0:return he?[4,he]:[3,2];case 1:t.sent(),t.label=2;case 2:return[2,new Promise((function(t){Te(t,{timeout:se})}))]}}))}))}var Ne,Te=window.requestIdleCallback||function(t,e){var n=performance.now(),a=new MessageChannel,r=a.port1,i=a.port2;r.onmessage=function(a){var r=performance.now(),o=r-n,u=r-a.data;if(u>30&&o<e.timeout)requestAnimationFrame((function(){i.postMessage(r)}));else{var c=o>e.timeout;t({didTimeout:c,timeRemaining:function(){return c?30:Math.max(0,30-u)}})}},requestAnimationFrame((function(){i.postMessage(performance.now())}))};function Se(){Ne=null}function xe(){var t=document.body,e=document.documentElement,n=t?t.clientWidth:null,a=t?t.scrollWidth:null,r=t?t.offsetWidth:null,i=e?e.clientWidth:null,o=e?e.scrollWidth:null,u=e?e.offsetWidth:null,c=Math.max(n,a,r,i,o,u),s=t?t.clientHeight:null,l=t?t.scrollHeight:null,d=t?t.offsetHeight:null,f=e?e.clientHeight:null,h=e?e.scrollHeight:null,p=e?e.offsetHeight:null,v=Math.max(s,l,d,f,h,p);null!==Ne&&c===Ne.width&&v===Ne.height||null===c||null===v||(Ne={width:c,height:v},We(8))}var Me=[],_e=[],Ie=null,Ce=null,De=null,Ae=null,je="clarityAnimationId",Re="clarityOperationCount",Le=20;function ze(){_e=[]}function He(t,e,n,a,r,i,o){_e.push({time:t,event:44,data:{id:e,operation:n,keyFrames:a,timing:r,targetId:i,timeline:o}}),We(44)}function Pe(t,e){null===t&&(t=Animation.prototype[e],Animation.prototype[e]=function(){if(wi()){var n=this.effect,a=Jt(this.effect.target);if(null!==a&&n.getKeyframes&&n.getTiming){if(!this[je]){this[je]=Vr(),this[Re]=0;var r=n.getKeyframes(),i=n.getTiming();He(s(),this[je],0,JSON.stringify(r),JSON.stringify(i),a)}if(this[Re]++<Le){var o=null;switch(e){case"play":o=1;break;case"pause":o=2;break;case"cancel":o=3;break;case"finish":o=4}o&&He(s(),this[je],o)}}}return t.apply(this,arguments)})}function We(t,e,n){return void 0===e&&(e=null),void 0===n&&(n=null),at(this,void 0,void 0,(function(){var a,r,i,u,c,l,d,f,h,p,v,g,b,y,w,k,E,O,N,T,S,x,I,C,D,A,j,R,L;return rt(this,(function(z){switch(z.label){case 0:switch(a=n||s(),r=[a,t],t){case 8:return[3,1];case 7:return[3,2];case 45:return[3,3];case 46:return[3,4];case 44:return[3,5];case 5:case 6:return[3,6]}return[3,13];case 1:return i=Ne,r.push(i.width),r.push(i.height),M(t,i.width,i.height),Ua(r),[3,13];case 2:for(u=0,c=Ue;u<c.length;u++)l=c[u],(r=[l.time,7]).push(l.data.id),r.push(l.data.interaction),r.push(l.data.visibility),r.push(l.data.name),Ua(r);return nn(),[3,13];case 3:for(d=0,f=Me;d<f.length;d++)b=f[d],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.newIds),Ua(r);return[3,13];case 4:for(h=0,p=Me;h<p.length;h++)b=p[h],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.cssRules),Ua(r);z.label=5;case 5:for(v=0,g=_e;v<g.length;v++)b=g[v],(r=[b.time,b.event]).push(b.data.id),r.push(b.data.operation),r.push(b.data.keyFrames),r.push(b.data.timing),r.push(b.data.timeline),r.push(b.data.targetId),Ua(r);return ze(),[3,13];case 6:if(2===be(e))return[3,13];if(!((y=re()).length>0))return[3,12];w=0,k=y,z.label=7;case 7:return w<k.length?(E=k[w],0!==(O=be(e))?[3,9]:[4,ke(e)]):[3,11];case 8:O=z.sent(),z.label=9;case 9:if(2===O)return[3,11];for(N=E.data,T=E.metadata.active,S=E.metadata.suspend,x=E.metadata.privacy,I=function(t){var e=t.metadata.privacy;return"*T"===t.data.tag&&!(0===e||1===e)}(E),C=0,D=T?["tag","attributes","value"]:["tag"];C<D.length;C++)if(N[A=D[C]])switch(A){case"tag":j=Xe(E),R=I?-1:1,r.push(E.id*R),E.parent&&T&&r.push(E.parent),E.previous&&T&&r.push(E.previous),r.push(S?"*M":N[A]),j&&2===j.length&&r.push("".concat("#").concat(Ye(j[0]),".").concat(Ye(j[1])));break;case"attributes":for(L in N[A])void 0!==N[A][L]&&r.push(qe(L,N[A][L],x));break;case"value":Nt(E.metadata.fraud,E.id,N[A]),r.push(m(N[A],N.tag,x,I))}z.label=10;case 10:return w++,[3,7];case 11:6===t&&_(a),Ua(function(t){for(var e=[],n={},a=0,r=null,i=0;i<t.length;i++)if("string"==typeof t[i]){var o=t[i],u=n[o]||-1;u>=0?r?r.push(u):(r=[u],e.push(r),a++):(r=null,e.push(o),n[o]=a++)}else r=null,e.push(t[i]),a++;return e}(r),!o.lean),z.label=12;case 12:return[3,13];case 13:return[2]}}))}))}function Xe(t){if(null!==t.metadata.size&&0===t.metadata.size.length){var e=te(t.id);if(e)return[Math.floor(100*e.offsetWidth),Math.floor(100*e.offsetHeight)]}return t.metadata.size}function Ye(t){return t.toString(36)}function qe(t,e,n){return"".concat(t,"=").concat(m(e,0===t.indexOf("data-")?"data-":t,n))}var Ue=[],Fe=null,Ve={},Be=[],Je=!1,Ke=null;function Ge(t,e){!1===Fe.has(t)&&(Fe.set(t,e),(Ke=null===Ke&&Je?new IntersectionObserver($e,{threshold:[0,.05,.1,.2,.3,.4,.5,.6,.7,.8,.9,1]}):Ke)&&t&&t.nodeType===Node.ELEMENT_NODE&&Ke.observe(t))}function Ze(t){return Fe&&Fe.has(t)}function Qe(){for(var t=[],e=0,n=Be;e<n.length;e++){var a=n[e],r=Jt(a.node);r?(a.state.data.id=r,Ve[r]=a.state.data,Ue.push(a.state)):t.push(a)}Be=t,Ue.length>0&&We(7)}function $e(t){for(var e=0,n=t;e<n.length;e++){var a=n[e],r=a.target,i=a.boundingClientRect,o=a.intersectionRect,u=a.rootBounds;if(Fe.has(r)&&i.width+i.height>0&&u.width>0&&u.height>0){var c=r?Jt(r):null,s=c in Ve?Ve[c]:{id:c,name:Fe.get(r),interaction:16,visibility:0},l=(o?o.width*o.height*1/(u.width*u.height):0)>.05||a.intersectionRatio>.8,d=(l||10==s.visibility)&&Math.abs(i.top)+u.height>i.height;tn(r,s,s.interaction,d?13:l?10:0),s.visibility>=13&&Ke&&Ke.unobserve(r)}}Ue.length>0&&We(7)}function tn(t,e,n,a){var r=n>e.interaction||a>e.visibility;e.interaction=n>e.interaction?n:e.interaction,e.visibility=a>e.visibility?a:e.visibility,e.id?(e.id in Ve&&r||!(e.id in Ve))&&(Ve[e.id]=e,Ue.push(en(e))):Be.push({node:t,state:en(e)})}function en(t){return{time:s(),data:{id:t.id,interaction:t.interaction,visibility:t.visibility,name:t.name}}}function nn(){Ue=[]}var an=[];function rn(t){var e=xa(t);if(e){var n=e.value,a=n&&n.length>=5&&o.fraud&&-1==="password,secret,pass,social,ssn,code,hidden".indexOf(e.type)?d(n,24):"";an.push({time:s(t),event:42,data:{target:xa(t),type:e.type,value:n,checksum:a}}),ge(_a.bind(this,42))}}function on(){an=[]}function un(t){var e={x:0,y:0};if(t&&t.offsetParent)do{var n=t.offsetParent,a=null===n?Gt(t.ownerDocument):null;e.x+=t.offsetLeft,e.y+=t.offsetTop,t=a||n}while(t);return e}var cn=["input","textarea","radio","button","canvas"],sn=[];function ln(t){ui(t,"click",dn.bind(this,9,t),!0)}function dn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=un(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}var c=xa(n),l=function(t){for(;t&&t!==document;){if(t.nodeType===Node.ELEMENT_NODE){var e=t;if("A"===e.tagName)return e}t=t.parentNode}return null}(c),d=function(t){var e=null,n=document.documentElement;if("function"==typeof t.getBoundingClientRect){var a=t.getBoundingClientRect();a&&a.width>0&&a.height>0&&(e={x:Math.floor(a.left+("pageXOffset"in window?window.pageXOffset:n.scrollLeft)),y:Math.floor(a.top+("pageYOffset"in window?window.pageYOffset:n.scrollTop)),w:Math.floor(a.width),h:Math.floor(a.height)})}return e}(c);0===n.detail&&d&&(i=Math.round(d.x+d.w/2),o=Math.round(d.y+d.h/2));var f=d?Math.max(Math.floor((i-d.x)/d.w*32767),0):0,h=d?Math.max(Math.floor((o-d.y)/d.h*32767),0):0;null!==i&&null!==o&&(sn.push({time:s(n),event:t,data:{target:c,x:i,y:o,eX:f,eY:h,button:n.button,reaction:hn(c),context:pn(l),text:fn(c),link:l?l.href:null,hash:null,trust:n.isTrusted?1:0}}),ge(_a.bind(this,t)))}function fn(t){var e=null;if(t){var n=t.textContent||t.value||t.alt;n&&(e=n.replace(/\s+/g," ").trim().substr(0,25))}return e}function hn(t){if(t.nodeType===Node.ELEMENT_NODE){var e=t.tagName.toLowerCase();if(cn.indexOf(e)>=0)return 0}return 1}function pn(t){if(t&&t.hasAttribute("target"))switch(t.getAttribute("target")){case"_blank":return 1;case"_parent":return 2;case"_top":return 3}return 0}function vn(){sn=[]}var gn=[];function mn(t,e){gn.push({time:s(e),event:38,data:{target:xa(e),action:t}}),ge(_a.bind(this,38))}function bn(){gn=[]}var yn=null,wn=[];function kn(t){var e=xa(t),n=ee(e);if(e&&e.type&&n){var a=e.value;switch(e.type){case"radio":case"checkbox":a=e.checked?"true":"false"}var r={target:e,value:a};wn.length>0&&wn[wn.length-1].data.target===r.target&&wn.pop(),wn.push({time:s(t),event:27,data:r}),Y(yn),yn=X(En,1e3,27)}}function En(t){ge(_a.bind(this,t))}function On(){wn=[]}var Nn,Tn=[],Sn=null;function xn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i="pageX"in n?Math.round(n.pageX):"clientX"in n?Math.round(n.clientX+r.scrollLeft):null,o="pageY"in n?Math.round(n.pageY):"clientY"in n?Math.round(n.clientY+r.scrollTop):null;if(a){var u=un(a);i=i?i+Math.round(u.x):i,o=o?o+Math.round(u.y):o}null!==i&&null!==o&&_n({time:s(n),event:t,data:{target:xa(n),x:i,y:o}})}function Mn(t,e,n){var a=Gt(e),r=a?a.contentDocument.documentElement:document.documentElement,i=n.changedTouches,o=s(n);if(i)for(var u=0;u<i.length;u++){var c=i[u],l="clientX"in c?Math.round(c.clientX+r.scrollLeft):null,d="clientY"in c?Math.round(c.clientY+r.scrollTop):null;l=l&&a?l+Math.round(a.offsetLeft):l,d=d&&a?d+Math.round(a.offsetTop):d,null!==l&&null!==d&&_n({time:o,event:t,data:{target:xa(n),x:l,y:d}})}}function _n(t){switch(t.event){case 12:case 15:case 19:var e=Tn.length,n=e>1?Tn[e-2]:null;n&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y,r=Math.sqrt(n*n+a*a),i=e.time-t.time,o=e.data.target===t.data.target;return e.event===t.event&&o&&r<20&&i<25}(n,t)&&Tn.pop(),Tn.push(t),Y(Sn),Sn=X(In,500,t.event);break;default:Tn.push(t),In(t.event)}}function In(t){ge(_a.bind(this,t))}function Cn(){Tn=[]}function Dn(){var t=document.documentElement;Nn={width:t&&"clientWidth"in t?Math.min(t.clientWidth,window.innerWidth):window.innerWidth,height:t&&"clientHeight"in t?Math.min(t.clientHeight,window.innerHeight):window.innerHeight},_a(11)}function An(){Nn=null}var jn=[],Rn=null;function Ln(t){void 0===t&&(t=null);var e=window,n=document.documentElement,a=t?xa(t):n;if(a&&a.nodeType===Node.DOCUMENT_NODE){var r=Gt(a);e=r?r.contentWindow:e,a=n=a.documentElement}var i=a===n&&"pageXOffset"in e?Math.round(e.pageXOffset):Math.round(a.scrollLeft),o=a===n&&"pageYOffset"in e?Math.round(e.pageYOffset):Math.round(a.scrollTop),u=window.innerWidth,c=window.innerHeight,l=u/3,d=u>c?.15*c:.2*c,f=c-d,h=zn(l,d),p=zn(l,f),v={time:s(t),event:10,data:{target:a,x:i,y:o,top:h,bottom:p}};if((null!==t||0!==i||0!==o)&&null!==i&&null!==o){var g=jn.length,m=g>1?jn[g-2]:null;m&&function(t,e){var n=t.data.x-e.data.x,a=t.data.y-e.data.y;return n*n+a*a<400&&e.time-t.time<25}(m,v)&&jn.pop(),jn.push(v),Y(Rn),Rn=X(Hn,500,10)}}function zn(t,e){var n,a,r,i,o;return"caretPositionFromPoint"in document?o=null===(n=document.caretPositionFromPoint(t,e))||void 0===n?void 0:n.offsetNode:"caretRangeFromPoint"in document&&(o=null===(a=document.caretRangeFromPoint(t,e))||void 0===a?void 0:a.startContainer),o||(o=document.elementFromPoint(t,e)),o&&o.nodeType===Node.TEXT_NODE&&(o=o.parentNode),null===(i=null===(r=ee(o))||void 0===r?void 0:r.hash)||void 0===i?void 0:i[1]}function Hn(t){ge(_a.bind(this,t))}var Pn=null,Wn=null,Xn=null;function Yn(t){var e=(t.nodeType===Node.DOCUMENT_NODE?t:document).getSelection();if(null!==e&&!(null===e.anchorNode&&null===e.focusNode||e.anchorNode===e.focusNode&&e.anchorOffset===e.focusOffset)){var n=Pn.start?Pn.start:null;null!==Wn&&null!==Pn.start&&n!==e.anchorNode&&(Y(Xn),qn(21)),Pn={start:e.anchorNode,startOffset:e.anchorOffset,end:e.focusNode,endOffset:e.focusOffset},Wn=e,Y(Xn),Xn=X(qn,500,21)}}function qn(t){ge(_a.bind(this,t))}function Un(){Wn=null,Pn={start:0,startOffset:0,end:0,endOffset:0}}var Fn,Vn,Bn=[];function Jn(t){Bn.push({time:s(t),event:39,data:{target:xa(t)}}),ge(_a.bind(this,39))}function Kn(){Bn=[]}function Gn(t){Fn={name:t.type},_a(26,s(t)),Li()}function Zn(){Fn=null}function Qn(t){void 0===t&&(t=null),Vn={visible:"visibilityState"in document?document.visibilityState:"default"},_a(28,s(t))}function $n(){Vn=null}function ta(t){!function(t){var e=Gt(t);ui(e?e.contentWindow:t===document?window:t,"scroll",Ln,!0)}(t),t.nodeType===Node.DOCUMENT_NODE&&(ln(t),function(t){ui(t,"cut",mn.bind(this,0),!0),ui(t,"copy",mn.bind(this,1),!0),ui(t,"paste",mn.bind(this,2),!0)}(t),function(t){ui(t,"mousedown",xn.bind(this,13,t),!0),ui(t,"mouseup",xn.bind(this,14,t),!0),ui(t,"mousemove",xn.bind(this,12,t),!0),ui(t,"wheel",xn.bind(this,15,t),!0),ui(t,"dblclick",xn.bind(this,16,t),!0),ui(t,"touchstart",Mn.bind(this,17,t),!0),ui(t,"touchend",Mn.bind(this,18,t),!0),ui(t,"touchmove",Mn.bind(this,19,t),!0),ui(t,"touchcancel",Mn.bind(this,20,t),!0)}(t),function(t){ui(t,"input",kn,!0)}(t),function(t){ui(t,"selectstart",Yn.bind(this,t),!0),ui(t,"selectionchange",Yn.bind(this,t),!0)}(t),function(t){ui(t,"change",rn,!0)}(t),function(t){ui(t,"submit",Jn,!0)}(t))}var ea=Object.freeze({__proto__:null,observe:ta,start:function(){Ia=[],Da(),vn(),bn(),Cn(),On(),ui(window,"resize",Dn),Dn(),ui(document,"visibilitychange",Qn),Qn(),jn=[],Ln(),Un(),on(),Kn(),ui(window,"pagehide",Gn)},stop:function(){Ia=[],Da(),vn(),bn(),Y(Sn),Tn.length>0&&In(Tn[Tn.length-1].event),Y(yn),On(),An(),$n(),Y(Rn),jn=[],Un(),Y(Xn),on(),Kn(),Zn()}}),na=/[^0-9\.]/g;function aa(t){for(var e=0,n=Object.keys(t);e<n.length;e++){var a=n[e],r=t[a];if("@type"===a&&"string"==typeof r)switch(r=(r=r.toLowerCase()).indexOf("article")>=0||r.indexOf("posting")>=0?"article":r){case"article":case"recipe":Ir(5,t[a]),Ir(8,t.creator),Ir(18,t.headline);break;case"product":Ir(5,t[a]),Ir(10,t.name),Ir(12,t.sku),t.brand&&Ir(6,t.brand.name);break;case"aggregaterating":t.ratingValue&&(W(11,ra(t.ratingValue,100)),W(18,ra(t.bestRating)),W(19,ra(t.worstRating))),W(12,ra(t.ratingCount)),W(17,ra(t.reviewCount));break;case"person":Ir(8,t.name);break;case"offer":Ir(7,t.availability),Ir(14,t.itemCondition),Ir(13,t.priceCurrency),Ir(12,t.sku),W(13,ra(t.price));break;case"brand":Ir(6,t.name)}null!==r&&"object"==typeof r&&aa(r)}}function ra(t,e){if(void 0===e&&(e=1),null!==t)switch(typeof t){case"number":return Math.round(t*e);case"string":return Math.round(parseFloat(t.replace(na,""))*e)}return null}var ia=["title","alt","onload","onfocus","onerror","data-drupal-form-submit-last"],oa=/[\r\n]+/g;function ua(t,e,n){var a,r=null;if(2===e&&!1===ae(t))return r;0!==e&&t.nodeType===Node.TEXT_NODE&&t.parentElement&&"STYLE"===t.parentElement.tagName&&(t=t.parentNode);var i=!1===ae(t)?"add":"update",o=t.parentElement?t.parentElement:null,u=t.ownerDocument!==document;switch(t.nodeType){case Node.DOCUMENT_TYPE_NODE:o=u&&t.parentNode?Gt(t.parentNode):o;var c=t,s={tag:(u?"iframe:":"")+"*D",attributes:{name:c.name,publicId:c.publicId,systemId:c.systemId}};ce[i](t,o,s,e);break;case Node.DOCUMENT_NODE:t===document&&Bt(document),ca(t);break;case Node.DOCUMENT_FRAGMENT_NODE:var l=t;if(l.host)if(Bt(l),"function"===typeof l.constructor&&l.constructor.toString().indexOf("[native code]")>=0){ca(l);var d={tag:"*S",attributes:{style:""}};ce[i](t,l.host,d,e)}else ce[i](t,l.host,{tag:"*P",attributes:{}},e);break;case Node.TEXT_NODE:if(o=o||t.parentNode,"update"===i||o&&ae(o)&&"STYLE"!==o.tagName&&"NOSCRIPT"!==o.tagName){var f={tag:"*T",value:t.nodeValue};ce[i](t,o,f,e)}break;case Node.ELEMENT_NODE:var h=t,p=h.tagName,v=function(t){var e={},n=t.attributes;if(n&&n.length>0)for(var a=0;a<n.length;a++){var r=n[a].name;ia.indexOf(r)<0&&(e[r]=n[a].value)}"INPUT"===t.tagName&&!("value"in e)&&t.value&&(e.value=t.value);return e}(h);switch(o=t.parentElement?t.parentElement:t.parentNode?t.parentNode:null,"http://www.w3.org/2000/svg"===h.namespaceURI&&(p="svg:"+p),p){case"HTML":o=u&&o?Gt(o):null;var g={tag:(u?"iframe:":"")+p,attributes:v};ce[i](t,o,g,e);break;case"SCRIPT":if("type"in v&&"application/ld+json"===v.type)try{aa(JSON.parse(h.text.replace(oa,"")))}catch(t){}break;case"NOSCRIPT":var m={tag:p,attributes:{},value:""};ce[i](t,o,m,e);break;case"META":var b="property"in v?"property":"name"in v?"name":null;if(b&&"content"in v){var y=v.content;switch(v[b]){case"og:title":Ir(20,y);break;case"og:type":Ir(19,y);break;case"generator":Ir(21,y)}}break;case"HEAD":var w={tag:p,attributes:v},k=u&&(null===(a=t.ownerDocument)||void 0===a?void 0:a.location)?t.ownerDocument.location:location;w.attributes["*B"]=k.protocol+"//"+k.host+k.pathname,ce[i](t,o,w,e);break;case"BASE":var E=ee(t.parentElement);if(E){var O=document.createElement("a");O.href=v.href,E.data.attributes["*B"]=O.protocol+"//"+O.host+O.pathname}break;case"STYLE":var N={tag:p,attributes:v,value:sa(h)};ce[i](t,o,N,e);break;case"IFRAME":var T=t,S={tag:p,attributes:v};Kt(T)&&(!function(t){!1===ae(t)&&ui(t,"load",Sa.bind(this,t,"childList"),!0)}(T),S.attributes["*O"]="true",T.contentDocument&&T.contentWindow&&"loading"!==T.contentDocument.readyState&&(r=T.contentDocument)),ce[i](t,o,S,e);break;case"LINK":if(Rr&&"stylesheet"===v.rel){for(var x in Object.keys(document.styleSheets)){var M=document.styleSheets[x];if(M.ownerNode==h){var _={tag:"STYLE",attributes:v,value:la(M)};ce[i](t,o,_,e);break}}break}var I={tag:p,attributes:v};ce[i](t,o,I,e);break;case"VIDEO":case"AUDIO":case"SOURCE":"src"in v&&v.src.startsWith("data:")&&(v.src="");var C={tag:p,attributes:v};ce[i](t,o,C,e);break;default:var D={tag:p,attributes:v};h.shadowRoot&&(r=h.shadowRoot),ce[i](t,o,D,e)}}return r}function ca(t){ae(t)||(!function(t){try{var e=u("MutationObserver"),n=e in window?new window[e](ii(ka)):null;n&&(n.observe(t,{attributes:!0,childList:!0,characterData:!0,subtree:!0}),fa.push(n))}catch(t){nr(2,0,t?t.name:null)}}(t),ta(t))}function sa(t){var e=t.textContent?t.textContent.trim():"",n=t.dataset?Object.keys(t.dataset).length:0;return(0===e.length||n>0)&&(e=la(t.sheet)),e}function la(t){var e="",n=null;try{n=t?t.cssRules:[]}catch(t){if(nr(1,1,t?t.name:null),t&&"SecurityError"!==t.name)throw t}if(null!==n)for(var a=0;a<n.length;a++)e+=n[a].cssText;return e}function da(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i,o,u;return rt(this,(function(c){switch(c.label){case 0:a=[t],c.label=1;case 1:if(!(a.length>0))return[3,4];for(r=a.shift(),i=r.firstChild;i;)a.push(i),i=i.nextSibling;return 0!==(o=be(e))?[3,3]:[4,ke(e)];case 2:o=c.sent(),c.label=3;case 3:return 2===o?[3,4]:((u=ua(r,n))&&a.push(u),[3,1]);case 4:return[2]}}))}))}var fa=[],ha=[],pa=null,va=null,ga=null,ma=[],ba=null,ya=null,wa={};function ka(t){var e=s();G(6,e),ha.push({time:e,mutations:t}),ge(Ea,1).then((function(){X(xe),ii(Qe)()}))}function Ea(){return at(this,void 0,void 0,(function(){var t,e,n,a,r,i,o,u,c,l;return rt(this,(function(d){switch(d.label){case 0:ye(t={id:Wr(),cost:3}),d.label=1;case 1:if(!(ha.length>0))return[3,8];e=ha.shift(),n=s(),a=0,r=e.mutations,d.label=2;case 2:return a<r.length?(i=r[a],0!==(o=be(t))?[3,4]:[4,ke(t)]):[3,6];case 3:o=d.sent(),d.label=4;case 4:if(2===o)return[3,6];switch(u=i.target,c=function(t,e,n,a){var r=t.target?ee(t.target.parentNode):null;if(r&&"HTML"!==r.data.tag){var i=s()>ya,o=ee(t.target),u=o&&o.selector?o.selector.join():t.target.nodeName,c=[r.selector?r.selector.join():"",u,t.attributeName,Oa(t.addedNodes),Oa(t.removedNodes)].join();wa[c]=c in wa?wa[c]:[0,n];var l=wa[c];if(!1===i&&l[0]>=10&&Na(l[2],2,e),l[0]=i?l[1]===n?l[0]:l[0]+1:1,l[1]=n,10===l[0])return l[2]=t.removedNodes,"suspend";if(l[0]>10)return""}return t.type}(i,t,n,e.time),c&&u&&u.ownerDocument&&Bt(u.ownerDocument),c&&u&&u.nodeType==Node.DOCUMENT_FRAGMENT_NODE&&u.host&&Bt(u),c){case"attributes":ua(u,3,e.time);break;case"characterData":ua(u,4,e.time);break;case"childList":Na(i.addedNodes,1,t,e.time),Na(i.removedNodes,2,t,e.time);break;case"suspend":(l=ee(u))&&(l.metadata.suspend=!0)}d.label=5;case 5:return a++,[3,2];case 6:return[4,We(6,t,e.time)];case 7:return d.sent(),[3,1];case 8:return we(t),[2]}}))}))}function Oa(t){for(var e=[],n=0;t&&n<t.length;n++)e.push(t[n].nodeName);return e.join()}function Na(t,e,n,a){return at(this,void 0,void 0,(function(){var a,r,i;return rt(this,(function(o){switch(o.label){case 0:a=t?t.length:0,r=0,o.label=1;case 1:return r<a?1!==e?[3,2]:(da(t[r],n,e),[3,5]):[3,6];case 2:return 0!==(i=be(n))?[3,4]:[4,ke(n)];case 3:i=o.sent(),o.label=4;case 4:if(2===i)return[3,6];ua(t[r],e),o.label=5;case 5:return r++,[3,1];case 6:return[2]}}))}))}function Ta(t){return ma.indexOf(t)<0&&ma.push(t),ba&&Y(ba),ba=X((function(){!function(){for(var t=0,e=ma;t<e.length;t++){var n=e[t];if(n){var a=n.nodeType===Node.DOCUMENT_FRAGMENT_NODE;if(a&&ae(n))continue;Sa(n,a?"childList":"characterData")}}ma=[]}()}),33),t}function Sa(t,e){ii(ka)([{addedNodes:[t],attributeName:null,attributeNamespace:null,nextSibling:null,oldValue:null,previousSibling:null,removedNodes:[],target:t,type:e}])}function xa(t){var e=t.composed&&t.composedPath?t.composedPath():null,n=e&&e.length>0?e[0]:t.target;return ya=s()+3e3,n.nodeType===Node.DOCUMENT_NODE?n.documentElement:n}function Ma(t,e,n){void 0===n&&(n=null);var a={id:0,hash:null,privacy:2,node:t};if(t){var r=ee(t);if(null!==r){var i=r.metadata;a.id=r.id,a.hash=r.hash,a.privacy=i.privacy,r.region&&function(t,e){var n=te(t),a=t in Ve?Ve[t]:{id:t,visibility:0,interaction:16,name:Fe.get(n)},r=16;switch(e){case 9:r=20;break;case 27:r=30}tn(n,a,r,a.visibility)}(r.region,e),i.fraud&&Nt(i.fraud,r.id,n||r.data.value)}}return a}function _a(t,e){return void 0===e&&(e=null),at(this,void 0,void 0,(function(){var n,a,r,i,o,u,c,l,d,f,h,p,v,g,y,w,k,E,O,N,T,S,x,_,C,D,A,j,R,L,z;return rt(this,(function(H){switch(n=e||s(),a=[n,t],t){case 13:case 14:case 12:case 15:case 16:case 17:case 18:case 19:case 20:for(r=0,i=Tn;r<i.length;r++)L=i[r],(o=Ma(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(o.id),a.push(L.data.x),a.push(L.data.y),Ua(a),M(L.event,L.data.x,L.data.y));Cn();break;case 9:for(u=0,c=sn;u<c.length;u++)L=c[u],l=Ma(L.data.target,L.event,L.data.text),a=[L.time,L.event],d=l.hash?l.hash.join("."):"",a.push(l.id),a.push(L.data.x),a.push(L.data.y),a.push(L.data.eX),a.push(L.data.eY),a.push(L.data.button),a.push(L.data.reaction),a.push(L.data.context),a.push(m(L.data.text,"click",l.privacy)),a.push(b(L.data.link)),a.push(d),a.push(L.data.trust),Ua(a),Aa(L.time,L.event,d,L.data.x,L.data.y,L.data.reaction,L.data.context);vn();break;case 38:for(f=0,h=gn;f<h.length;f++)L=h[f],a=[L.time,L.event],(A=Ma(L.data.target,L.event)).id>0&&(a.push(A.id),a.push(L.data.action),Ua(a));bn();break;case 11:p=Nn,a.push(p.width),a.push(p.height),M(t,p.width,p.height),An(),Ua(a);break;case 26:v=Fn,a.push(v.name),Zn(),Ua(a);break;case 27:for(g=0,y=wn;g<y.length;g++)L=y[g],w=Ma(L.data.target,L.event,L.data.value),(a=[L.time,L.event]).push(w.id),a.push(m(L.data.value,"input",w.privacy)),Ua(a);On();break;case 21:(k=Pn)&&(E=Ma(k.start,t),O=Ma(k.end,t),a.push(E.id),a.push(k.startOffset),a.push(O.id),a.push(k.endOffset),Un(),Ua(a));break;case 10:for(N=0,T=jn;N<T.length;N++)L=T[N],(S=Ma(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(S.id),a.push(L.data.x),a.push(L.data.y),a.push(L.data.top),a.push(L.data.bottom),Ua(a),M(L.event,L.data.x,L.data.y,L.time));jn=[];break;case 42:for(x=0,_=an;x<_.length;x++)L=_[x],a=[L.time,L.event],(A=Ma(L.data.target,L.event)).id>0&&((a=[L.time,L.event]).push(A.id),a.push(L.data.type),a.push(m(L.data.value,"change",A.privacy)),a.push(m(L.data.checksum,"checksum",A.privacy)),Ua(a));on();break;case 39:for(C=0,D=Bn;C<D.length;C++)L=D[C],a=[L.time,L.event],(A=Ma(L.data.target,L.event)).id>0&&(a.push(A.id),Ua(a));Kn();break;case 22:for(j=0,R=Ca;j<R.length;j++)L=R[j],(a=[L.time,L.event]).push(L.data.type),a.push(L.data.hash),a.push(L.data.x),a.push(L.data.y),a.push(L.data.reaction),a.push(L.data.context),Ua(a,!1);Da();break;case 28:z=Vn,a.push(z.visible),Ua(a),I(n,z.visible),$n()}return[2]}))}))}var Ia=[],Ca=[];function Da(){Ca=[]}function Aa(t,e,n,a,r,i,o){void 0===i&&(i=1),void 0===o&&(o=0),Ia.push({time:t,event:22,data:{type:e,hash:n,x:a,y:r,reaction:i,context:o}}),M(e,a,r)}var ja,Ra,La,za,Ha,Pa=0,Wa=0,Xa=null,Ya=0;function qa(){za=!0,Pa=0,Wa=0,Ya=0,ja=[],Ra=[],La={},Ha=null}function Ua(t,e){if(void 0===e&&(e=!0),za){var n=s(),a=t.length>1?t[1]:null,r=JSON.stringify(t);switch(a){case 5:Pa+=r.length;case 37:case 6:case 43:case 45:case 46:Wa+=r.length,ja.push(r);break;default:Ra.push(r)}H(25);var i=function(){var t=!1===o.lean&&Pa>0?100:$r.sequence*o.delay;return"string"==typeof o.upload?Math.max(Math.min(t,3e4),100):o.delay}();n-Ya>2*i&&(Y(Xa),Xa=null),e&&null===Xa&&(25!==a&&V(),Xa=X(Va,i),Ya=n,Er(Wa))}}function Fa(){Y(Xa),Va(!0),Pa=0,Wa=0,Ya=0,ja=[],Ra=[],La={},Ha=null,za=!1}function Va(t){return void 0===t&&(t=!1),at(this,void 0,void 0,(function(){var e,n,a,r,i,u,c,s;return rt(this,(function(l){switch(l.label){case 0:return Xa=null,(e=!1===o.lean&&Wa>0&&(Wa<1048576||$r.sequence>0))&&W(1,1),Qe(),function(){var t=[];Ca=[];for(var e=$r.start+$r.duration,n=Math.max(e-2e3,0),a=0,r=Ia;a<r.length;a++){var i=r[a];i.time>=n&&(i.time<=e&&Ca.push(i),t.push(i))}Ia=t,_a(22)}(),kt(),n=!0===t,a=JSON.stringify(ni(n)),r="[".concat(Ra.join(),"]"),i=e?"[".concat(ja.join(),"]"):"",u=function(t){return t.p.length>0?'{"e":'.concat(t.e,',"a":').concat(t.a,',"p":').concat(t.p,"}"):'{"e":'.concat(t.e,',"a":').concat(t.a,"}")}({e:a,a:r,p:i}),n?(s=null,[3,3]):[3,1];case 1:return[4,pt(u)];case 2:s=l.sent(),l.label=3;case 3:return P(2,(c=s)?c.length:u.length),Ba(u,c,$r.sequence,n),Ra=[],e&&(ja=[],Wa=0,Pa=0),[2]}}))}))}function Ba(t,e,n,a){if(void 0===a&&(a=!1),"string"==typeof o.upload){var r=o.upload,i=!1;if(a&&"sendBeacon"in navigator)try{(i=navigator.sendBeacon.bind(navigator)(r,t))&&Ka(n)}catch(t){}if(!1===i){n in La?La[n].attempts++:La[n]={data:t,attempts:1};var u=new XMLHttpRequest;u.open("POST",r,!0),u.timeout=15e3,u.ontimeout=function(){ri(new Error("".concat("Timeout"," : ").concat(r)))},null!==n&&(u.onreadystatechange=function(){ii(Ja)(u,n)}),u.withCredentials=!0,e?(u.setRequestHeader("Accept","application/x-clarity-gzip"),u.send(e)):u.send(t)}}else if(o.upload){(0,o.upload)(t),Ka(n)}}function Ja(t,e){var n=La[e];t&&4===t.readyState&&n&&((t.status<200||t.status>208)&&n.attempts<=1?t.status>=400&&t.status<500?Or(6):(0===t.status&&(o.upload=o.fallback?o.fallback:o.upload),Ba(n.data,null,e)):(Ha={sequence:e,attempts:n.attempts,status:t.status},n.attempts>1&&wr(2),200===t.status&&t.responseText&&function(t){for(var e=t&&t.length>0?t.split("\n"):[],n=0,a=e;n<a.length;n++){var r=a[n],i=r&&r.length>0?r.split(/ (.*)/):[""];switch(i[0]){case"END":Or(6);break;case"UPGRADE":et("Auto");break;case"ACTION":o.action&&i.length>1&&o.action(i[1]);break;case"EXTRACT":i.length>1&&dr(i[1]);break;case"SIGNAL":i.length>1&&mt(i[1])}}}(t.responseText),0===t.status&&(Ba(n.data,null,e,!0),Or(3)),t.status>=200&&t.status<=208&&Ka(e),delete La[e]))}function Ka(t){1===t&&qr()}var Ga,Za={};function Qa(t){var e=t.error||t;return e.message in Za||(Za[e.message]=0),Za[e.message]++>=5||e&&e.message&&(Ga={message:e.message,line:t.lineno,column:t.colno,stack:e.stack,source:t.filename},$a(31)),!0}function $a(t){return at(this,void 0,void 0,(function(){var e;return rt(this,(function(n){switch(e=[s(),t],t){case 31:e.push(Ga.message),e.push(Ga.line),e.push(Ga.column),e.push(Ga.stack),e.push(b(Ga.source)),Ua(e);break;case 33:tr&&(e.push(tr.code),e.push(tr.name),e.push(tr.message),e.push(tr.stack),e.push(tr.severity),Ua(e,!1));break;case 41:Et&&(e.push(Et.id),e.push(Et.target),e.push(Et.checksum),Ua(e,!1))}return[2]}))}))}var tr,er={};function nr(t,e,n,a,r){void 0===n&&(n=null),void 0===a&&(a=null),void 0===r&&(r=null);var i=n?"".concat(n,"|").concat(a):"";t in er&&er[t].indexOf(i)>=0||(tr={code:t,name:n,message:a,stack:r,severity:e},t in er?er[t].push(i):er[t]=[i],$a(33))}var ar,rr={},ir=new Set,or={},ur={},cr={},sr={};function lr(){pr()}function dr(t){try{var e=t&&t.length>0?t.split(/ (.*)/):[""],n=e[0].split(/\|(.*)/),a=parseInt(n[0]),r=n.length>1?n[1]:"",i=e.length>1?JSON.parse(e[1]):{};for(var o in or[a]={},ur[a]={},cr[a]={},sr[a]=r,i){var u=parseInt(o),c=i[o],s=2;switch(c.startsWith("~")?s=0:c.startsWith("!")&&(s=4),s){case 0:var l=c.substring(1,c.length);or[a][u]=mr(l);break;case 2:ur[a][u]=c;break;case 4:var d=c.substring(1,c.length);cr[a][u]=d}}}catch(t){nr(8,1,t?t.name:null)}}function fr(t){return JSON.parse(JSON.stringify(t))}function hr(){try{for(var t in or){var e=parseInt(t);if(""==sr[e]||document.querySelector(sr[e])){var n=or[e];for(var a in n){var r=parseInt(a),i=(h=br(fr(n[r])))?JSON.stringify(h).substring(0,1e4):h;i&&vr(e,r,i)}var o=ur[e];for(var u in o){var c=parseInt(u),s=document.querySelectorAll(o[c]);if(s)vr(e,c,Array.from(s).map((function(t){return t.textContent})).join("<SEP>").substring(0,1e4))}var l=cr[e];for(var d in l){var f=parseInt(d);vr(e,f,$t(l[f]).trim().substring(0,1e4))}}}ir.size>0&&wr(40)}catch(t){nr(5,1,t?t.name:null)}var h}function pr(){ir.clear()}function vr(t,e,n){var a,r=!1;t in rr||(rr[t]={},r=!0),a=cr[t],0==Object.keys(a).length||e in rr[t]&&rr[t][e]==n||(r=!0),rr[t][e]=n,r&&ir.add(t)}function gr(){pr()}function mr(t){for(var e=[],n=t.split(".");n.length>0;){var a=n.shift(),r=a.indexOf("["),i=a.indexOf("{"),o=a.indexOf("}");e.push({name:r>0?a.substring(0,r):i>0?a.substring(0,i):a,type:r>0?1:i>0?2:3,condition:i>0?a.substring(i+1,o):null})}return e}function br(t,e){if(void 0===e&&(e=window),0==t.length)return e;var n,a=t.shift();if(e&&e[a.name]){var r=e[a.name];if(1!==a.type&&yr(r,a.condition))n=br(t,r);else if(Array.isArray(r)){for(var i=[],o=0,u=r;o<u.length;o++){var c=u[o];if(yr(c,a.condition)){var s=br(t,c);s&&i.push(s)}}n=i}return n}return null}function yr(t,e){if(e){var n=e.split(":");return n.length>1?t[n[0]]==n[1]:t[n[0]]}return!0}function wr(t){var e=[s(),t];switch(t){case 4:var n=N;n&&((e=[n.time,n.event]).push(n.data.visible),e.push(n.data.docWidth),e.push(n.data.docHeight),e.push(n.data.screenWidth),e.push(n.data.screenHeight),e.push(n.data.scrollX),e.push(n.data.scrollY),e.push(n.data.pointerX),e.push(n.data.pointerY),e.push(n.data.activityTime),e.push(n.data.scrollTime),Ua(e,!1)),x();break;case 25:e.push(R.gap),Ua(e);break;case 35:e.push(ar.check),Ua(e,!1);break;case 3:e.push(tt.key),Ua(e);break;case 2:e.push(Ha.sequence),e.push(Ha.attempts),e.push(Ha.status),Ua(e,!1);break;case 24:A.key&&e.push(A.key),e.push(A.value),Ua(e);break;case 34:var a=Object.keys(it);if(a.length>0){for(var r=0,i=a;r<i.length;r++){var o=i[r];e.push(o),e.push(it[o])}lt(),Ua(e,!1)}break;case 0:var u=Object.keys(z);if(u.length>0){for(var c=0,l=u;c<l.length;c++){var d=l[c],f=parseInt(d,10);e.push(f),e.push(Math.round(z[d]))}z={},Ua(e,!1)}break;case 1:var h=Object.keys(xr);if(h.length>0){for(var p=0,v=h;p<v.length;p++){var g=v[p];f=parseInt(g,10);e.push(f),e.push(xr[g])}Dr(),Ua(e,!1)}break;case 36:var m=Object.keys(K);if(m.length>0){for(var b=0,y=m;b<y.length;b++){var w=y[b];f=parseInt(w,10);e.push(f),e.push([].concat.apply([],K[w]))}Q(),Ua(e,!1)}break;case 40:ir.forEach((function(t){e.push(t);var n=[];for(var a in rr[t]){var r=parseInt(a,10);n.push(r),n.push(rr[t][a])}e.push(n)})),pr(),Ua(e,!1)}}function kr(){ar={check:0}}function Er(t){if(0===ar.check){var e=ar.check;e=$r.sequence>=128?1:e,e=$r.pageNum>=128?7:e,e=s()>72e5?2:e,(e=t>10485760?2:e)!==ar.check&&Or(e)}}function Or(t){ar.check=t,Yr(),Li()}function Nr(){0!==ar.check&&wr(35)}function Tr(){ar=null}var Sr=null,xr=null;function Mr(){Sr={},xr={}}function _r(){Sr={},xr={}}function Ir(t,e){e&&(e="".concat(e),t in Sr||(Sr[t]=[]),Sr[t].indexOf(e)<0&&(Sr[t].push(e),t in xr||(xr[t]=[]),xr[t].push(e),Sr[t].length>128&&Or(5)))}function Cr(){wr(1)}function Dr(){xr={}}var Ar=null,jr=[],Rr=0,Lr=null;function zr(){Lr=null;var t=navigator&&"userAgent"in navigator?navigator.userAgent:"",e=document&&document.title?document.title:"";Rr=t.indexOf("Electron")>0?1:0;var n,a=function(){var t={session:Vr(),ts:Math.round(Date.now()),count:1,upgrade:null,upload:""},e=Kr("_clsk");if(e){var n=e.split("|");n.length>=5&&t.ts-Br(n[1])<18e5&&(t.session=n[0],t.count=Br(n[2])+1,t.upgrade=Br(n[3]),t.upload=n.length>=6?"".concat("https://").concat(n[5],"/").concat(n[4]):"".concat("https://").concat(n[4]))}return t}(),r=Jr(),i=o.projectId||d(location.host);Ar={projectId:i,userId:r.id,sessionId:a.session,pageNum:a.count},o.lean=o.track&&null!==a.upgrade?0===a.upgrade:o.lean,o.upload=o.track&&"string"==typeof o.upload&&a.upload&&a.upload.length>"https://".length?a.upload:o.upload,Ir(0,t),Ir(3,e),Ir(1,b(location.href,!!Rr)),Ir(2,document.referrer),Ir(15,function(){var t=Vr();if(o.track&&Ur(window,"sessionStorage")){var e=sessionStorage.getItem("_cltk");t=e||t,sessionStorage.setItem("_cltk",t)}return t}()),Ir(16,document.documentElement.lang),Ir(17,document.dir),Ir(26,"".concat(window.devicePixelRatio)),Ir(28,r.dob.toString()),Ir(29,r.version.toString()),W(0,a.ts),W(1,0),W(35,Rr),navigator&&(Ir(9,navigator.language),W(33,navigator.hardwareConcurrency),W(32,navigator.maxTouchPoints),W(34,Math.round(navigator.deviceMemory)),(n=navigator.userAgentData)&&n.getHighEntropyValues?n.getHighEntropyValues(["model","platform","platformVersion","uaFullVersion"]).then((function(t){var e;Ir(22,t.platform),Ir(23,t.platformVersion),null===(e=t.brands)||void 0===e||e.forEach((function(t){Ir(24,t.name+"~"+t.version)})),Ir(25,t.model),W(27,t.mobile?1:0)})):Ir(22,navigator.platform)),screen&&(W(14,Math.round(screen.width)),W(15,Math.round(screen.height)),W(16,Math.round(screen.colorDepth)));for(var u=0,c=o.cookies;u<c.length;u++){var s=c[u],l=Kr(s);l&&ot(s,l)}Fr(r)}function Hr(){Lr=null,Ar=null}function Pr(t,e){void 0===e&&(e=!0);var n=o.lean?0:1;Ar&&(n||!1===e)?t(Ar,!o.lean):jr.push({callback:t,wait:e})}function Wr(){return Ar?[Ar.userId,Ar.sessionId,Ar.pageNum].join("."):""}function Xr(t){if(void 0===t&&(t=!0),!t)return o.track=!1,Zr("_clsk","",-Number.MAX_VALUE),Zr("_clck","",-Number.MAX_VALUE),Li(),void window.setTimeout(Ri,250);wi()&&(o.track=!0,Fr(Jr(),1))}function Yr(){Zr("_clsk","",0)}function qr(){var t=Math.round(Date.now()),e=o.upload&&"string"==typeof o.upload?o.upload.replace("https://",""):"",n=o.lean?0:1;!function(t){jr.length>0&&jr.forEach((function(e){!e.callback||e.wait&&!t||e.callback(Ar,!o.lean)}))}(n),Zr("_clsk",[Ar.sessionId,t,Ar.pageNum,n,e].join("|"),1)}function Ur(t,e){try{return!!t[e]}catch(t){return!1}}function Fr(t,e){void 0===e&&(e=null),e=null===e?t.consent:e;var n=Math.ceil((Date.now()+31536e6)/864e5),a=0===t.dob?null===o.dob?0:o.dob:t.dob;(null===t.expiry||Math.abs(n-t.expiry)>=1||t.consent!==e||t.dob!==a)&&Zr("_clck",[Ar.userId,2,n.toString(36),e,a].join("|"),365)}function Vr(){var t=Math.floor(Math.random()*Math.pow(2,32));return window&&window.crypto&&window.crypto.getRandomValues&&Uint32Array&&(t=window.crypto.getRandomValues(new Uint32Array(1))[0]),t.toString(36)}function Br(t,e){return void 0===e&&(e=10),parseInt(t,e)}function Jr(){var t={id:Vr(),version:0,expiry:null,consent:0,dob:0},e=Kr("_clck");if(e&&e.length>0){for(var n=e.split("|"),a=0,r=0,i=document.cookie.split(";");r<i.length;r++){a+="_clck"===i[r].split("=")[0].trim()?1:0}if(1===n.length||a>1){var u="".concat(";").concat("expires=").concat(new Date(0).toUTCString()).concat(";path=/");document.cookie="".concat("_clck","=").concat(u),document.cookie="".concat("_clsk","=").concat(u)}n.length>1&&(t.version=Br(n[1])),n.length>2&&(t.expiry=Br(n[2],36)),n.length>3&&1===Br(n[3])&&(t.consent=1),n.length>4&&Br(n[1])>1&&(t.dob=Br(n[4])),o.track=o.track||1===t.consent,t.id=o.track?n[0]:t.id}return t}function Kr(t){var e;if(Ur(document,"cookie")){var n=document.cookie.split(";");if(n)for(var a=0;a<n.length;a++){var r=n[a].split("=");if(r.length>1&&r[0]&&r[0].trim()===t){for(var i=Gr(r[1]),o=i[0],u=i[1];o;)o=(e=Gr(u))[0],u=e[1];return u}}}return null}function Gr(t){try{var e=decodeURIComponent(t);return[e!=t,e]}catch(t){}return[!1,t]}function Zr(t,e,n){if((o.track||""==e)&&(navigator&&navigator.cookieEnabled||Ur(document,"cookie"))){var a=function(t){return encodeURIComponent(t)}(e),r=new Date;r.setDate(r.getDate()+n);var i=r?"expires="+r.toUTCString():"",u="".concat(t,"=").concat(a).concat(";").concat(i).concat(";path=/");try{if(null===Lr){for(var c=location.hostname?location.hostname.split("."):[],s=c.length-1;s>=0;s--)if(Lr=".".concat(c[s]).concat(Lr||""),s<c.length-1&&(document.cookie="".concat(u).concat(";").concat("domain=").concat(Lr),Kr(t)===e))return;Lr=""}}catch(t){Lr=""}document.cookie=Lr?"".concat(u).concat(";").concat("domain=").concat(Lr):u}}var Qr,$r=null;function ti(){var t=Ar;$r={version:l,sequence:0,start:0,duration:0,projectId:t.projectId,userId:t.userId,sessionId:t.sessionId,pageNum:t.pageNum,upload:0,end:0}}function ei(){$r=null}function ni(t){return $r.start=$r.start+$r.duration,$r.duration=s()-$r.start,$r.sequence++,$r.upload=t&&"sendBeacon"in navigator?1:0,$r.end=t?1:0,[$r.version,$r.sequence,$r.start,$r.duration,$r.projectId,$r.userId,$r.sessionId,$r.pageNum,$r.upload,$r.end]}function ai(){Qr=[]}function ri(t){if(Qr&&-1===Qr.indexOf(t.message)){var e=o.report;if(e&&e.length>0){var n={v:$r.version,p:$r.projectId,u:$r.userId,s:$r.sessionId,n:$r.pageNum};t.message&&(n.m=t.message),t.stack&&(n.e=t.stack);var a=new XMLHttpRequest;a.open("POST",e,!0),a.send(JSON.stringify(n)),Qr.push(t.message)}}return t}function ii(t){return function(){var e=performance.now();try{t.apply(this,arguments)}catch(t){throw ri(t)}var n=performance.now()-e;P(4,n),n>30&&(H(7),W(6,n))}}var oi=[];function ui(t,e,n,a){void 0===a&&(a=!1),n=ii(n);try{t[u("addEventListener")](e,n,a),oi.push({event:e,target:t,listener:n,capture:a})}catch(t){}}function ci(){for(var t=0,e=oi;t<e.length;t++){var n=e[t];try{n.target[u("removeEventListener")](n.event,n.listener,n.capture)}catch(t){}}oi=[]}var si=null,li=null,di=null,fi=0;function hi(){return!(fi++>20)||(nr(4,0),!1)}function pi(){fi=0,di!==gi()&&(Li(),window.setTimeout(vi,250))}function vi(){Ri(),W(29,1)}function gi(){return location.href?location.href.replace(location.hash,""):location.href}var mi=!1;function bi(){mi=!0,c=performance.now(),ve(),ci(),ai(),di=gi(),fi=0,ui(window,"popstate",pi),null===si&&(si=history.pushState,history.pushState=function(){si.apply(this,arguments),wi()&&hi()&&pi()}),null===li&&(li=history.replaceState,history.replaceState=function(){li.apply(this,arguments),wi()&&hi()&&pi()})}function yi(){di=null,fi=0,ai(),ci(),ve(),c=0,mi=!1}function wi(){return mi}function ki(t){if(null===t||mi)return!1;for(var e in t)e in o&&(o[e]=t[e]);return!0}function Ei(){Ri(),j("clarity","restart")}var Oi=Object.freeze({__proto__:null,start:function(){!function(){Ot=[],W(26,navigator.webdriver?1:0);try{W(31,window.top==window.self?1:2)}catch(t){W(31,0)}}(),ui(window,"error",Qa),Za={},er={}},stop:function(){er={}}});function Ni(){return at(this,void 0,void 0,(function(){var t,e;return rt(this,(function(n){switch(n.label){case 0:return t=s(),ye(e={id:Wr(),cost:3}),[4,da(document,e,0)];case 1:return n.sent(),[4,We(5,e,t)];case 2:return n.sent(),we(e),[2]}}))}))}var Ti=Object.freeze({__proto__:null,hashText:$t,start:function(){Se(),xe(),nn(),Ke=null,Fe=new WeakMap,Ve={},Be=[],Je=!!window.IntersectionObserver,Ut(),o.delayDom&&ui(window,"load",(function(){!function(){if(fa=[],ma=[],ba=null,ya=0,wa={},null===pa&&(pa=CSSStyleSheet.prototype.insertRule,CSSStyleSheet.prototype.insertRule=function(){return wi()&&Ta(this.ownerNode),pa.apply(this,arguments)}),null===va&&(va=CSSStyleSheet.prototype.deleteRule,CSSStyleSheet.prototype.deleteRule=function(){return wi()&&Ta(this.ownerNode),va.apply(this,arguments)}),null===ga){ga=Element.prototype.attachShadow;try{Element.prototype.attachShadow=function(){return wi()?Ta(ga.apply(this,arguments)):ga.apply(this,arguments)}}catch(t){ga=null}}}()})),ge(Ni,1).then((function(){ii(xe)(),ii(Qe)()})),window.Animation&&window.KeyframeEffect&&window.KeyframeEffect.prototype.getKeyframes&&window.KeyframeEffect.prototype.getTiming&&(ze(),Pe(Ie,"play"),Pe(Ce,"pause"),Pe(De,"cancel"),Pe(Ae,"finish"))},stop:function(){nn(),Fe=null,Ve={},Be=[],Ke&&(Ke.disconnect(),Ke=null),Je=!1,Ft(),function(){for(var t=0,e=fa;t<e.length;t++){var n=e[t];n&&n.disconnect()}fa=[],wa={},ha=[],ma=[],ya=0,ba=null}(),Se(),ze()}});var Si,xi=null;function Mi(){xi=null}function _i(t){xi={fetchStart:Math.round(t.fetchStart),connectStart:Math.round(t.connectStart),connectEnd:Math.round(t.connectEnd),requestStart:Math.round(t.requestStart),responseStart:Math.round(t.responseStart),responseEnd:Math.round(t.responseEnd),domInteractive:Math.round(t.domInteractive),domComplete:Math.round(t.domComplete),loadEventStart:Math.round(t.loadEventStart),loadEventEnd:Math.round(t.loadEventEnd),redirectCount:Math.round(t.redirectCount),size:t.transferSize?t.transferSize:0,type:t.type,protocol:t.nextHopProtocol,encodedSize:t.encodedBodySize?t.encodedBodySize:0,decodedSize:t.decodedBodySize?t.decodedBodySize:0},function(t){at(this,void 0,void 0,(function(){var e,n;return rt(this,(function(a){return e=s(),n=[e,t],29===t&&(n.push(xi.fetchStart),n.push(xi.connectStart),n.push(xi.connectEnd),n.push(xi.requestStart),n.push(xi.responseStart),n.push(xi.responseEnd),n.push(xi.domInteractive),n.push(xi.domComplete),n.push(xi.loadEventStart),n.push(xi.loadEventEnd),n.push(xi.redirectCount),n.push(xi.size),n.push(xi.type),n.push(xi.protocol),n.push(xi.encodedSize),n.push(xi.decodedSize),Mi(),Ua(n)),[2]}))}))}(29)}var Ii=["navigation","resource","longtask","first-input","layout-shift","largest-contentful-paint"];function Ci(){try{Si&&Si.disconnect(),Si=new PerformanceObserver(ii(Di));for(var t=0,e=Ii;t<e.length;t++){var n=e[t];PerformanceObserver.supportedEntryTypes.indexOf(n)>=0&&("layout-shift"===n&&P(9,0),Si.observe({type:n,buffered:!0}))}}catch(t){nr(3,1)}}function Di(t){!function(t){for(var e=(!("visibilityState"in document)||"visible"===document.visibilityState),n=0;n<t.length;n++){var a=t[n];switch(a.entryType){case"navigation":_i(a);break;case"resource":var r=a.name;Ir(4,Ai(r)),r!==o.upload&&r!==o.fallback||W(28,a.duration);break;case"longtask":H(7);break;case"first-input":e&&W(10,a.processingStart-a.startTime);break;case"layout-shift":e&&!a.hadRecentInput&&P(9,1e3*a.value);break;case"largest-contentful-paint":e&&W(8,a.startTime)}}}(t.getEntries())}function Ai(t){var e=document.createElement("a");return e.href=t,e.host}var ji=[Oi,Ti,ea,Object.freeze({__proto__:null,start:function(){Mi(),function(){navigator&&"connection"in navigator&&Ir(27,navigator.connection.effectiveType),window.PerformanceObserver&&PerformanceObserver.supportedEntryTypes?"complete"!==document.readyState?ui(window,"load",X.bind(this,Ci,0)):Ci():nr(3,0)}()},stop:function(){Si&&Si.disconnect(),Si=null,Mi()}})];function Ri(t){void 0===t&&(t=null),function(){try{var t=navigator&&"globalPrivacyControl"in navigator&&1==navigator.globalPrivacyControl;return!1===mi&&"undefined"!=typeof Promise&&window.MutationObserver&&document.createTreeWalker&&"now"in Date&&"now"in performance&&"undefined"!=typeof WeakMap&&!t}catch(t){return!1}}()&&(ki(t),bi(),yt(),ji.forEach((function(t){return ii(t.start)()})),null===t&&Wi())}function Li(){wi()&&(ji.slice().reverse().forEach((function(t){return ii(t.stop)()})),wt(),yi(),void 0!==Hi&&(Hi[Pi]=function(){(Hi[Pi].q=Hi[Pi].q||[]).push(arguments),"start"===arguments[0]&&Hi[Pi].q.unshift(Hi[Pi].q.pop())&&Wi()}))}var zi=Object.freeze({__proto__:null,consent:Xr,event:j,hashText:$t,identify:ut,metadata:Pr,pause:function(){wi()&&(j("clarity","pause"),null===he&&(he=new Promise((function(t){pe=t}))))},resume:function(){wi()&&(he&&(pe(),he=null,null===fe&&me()),j("clarity","resume"))},set:ot,signal:function(t){gt=t},start:Ri,stop:Li,upgrade:et,version:l}),Hi=window,Pi="clarity";function Wi(){if(void 0!==Hi){if(Hi[Pi]&&Hi[Pi].v)return console.warn("Error CL001: Multiple Clarity tags detected.");var t=Hi[Pi]&&Hi[Pi].q||[];for(Hi[Pi]=function(t){for(var e=[],n=1;n<arguments.length;n++)e[n-1]=arguments[n];return zi[t].apply(zi,e)},Hi[Pi].v=l;t.length>0;)Hi[Pi].apply(Hi,t.shift())}}Wi()}();