@allior/wmake-streamelements-events 2.0.2 → 2.0.4

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.
Files changed (66) hide show
  1. package/dist/react/hooks/use-on-event-received.d.ts +1 -1
  2. package/dist/react/hooks/use-on-widget-load.d.ts +1 -1
  3. package/dist/react/index.iife.js +2 -2
  4. package/dist/react/index.iife.js.map +1 -1
  5. package/dist/react/index.js +32 -92
  6. package/dist/react/index.js.map +1 -1
  7. package/dist/root/guards/on-event-received.d.ts +1 -1
  8. package/dist/root/index.iife.js +2 -2
  9. package/dist/root/index.iife.js.map +1 -1
  10. package/dist/root/index.js +2 -3116
  11. package/dist/root/queue/alert-queue.d.ts +1 -1
  12. package/dist/root/queue/next-alert-callback.d.ts +1 -1
  13. package/dist/root/types/on-event-received/message.d.ts +1 -1
  14. package/dist/root-BzhLLMHq.js +2934 -0
  15. package/dist/root-BzhLLMHq.js.map +1 -0
  16. package/package.json +11 -13
  17. package/dist/root/index.js.map +0 -1
  18. package/src/react/hooks/index.ts +0 -3
  19. package/src/react/hooks/use-event-listener.ts +0 -20
  20. package/src/react/hooks/use-on-event-received.ts +0 -108
  21. package/src/react/hooks/use-on-widget-load.ts +0 -15
  22. package/src/react/index.ts +0 -3
  23. package/src/react/types/index.ts +0 -1
  24. package/src/react/types/window-events.ts +0 -6
  25. package/src/root/aggregate.ts +0 -257
  26. package/src/root/classifier.ts +0 -271
  27. package/src/root/commands.ts +0 -39
  28. package/src/root/data/field-value.ts +0 -2
  29. package/src/root/data/index.ts +0 -2
  30. package/src/root/data/widget-load.ts +0 -5
  31. package/src/root/guards/index.ts +0 -1
  32. package/src/root/guards/on-event-received.ts +0 -58
  33. package/src/root/index.ts +0 -11
  34. package/src/root/keys.ts +0 -14
  35. package/src/root/message/index.ts +0 -1
  36. package/src/root/message/twitch/index.ts +0 -2
  37. package/src/root/message/twitch/message.ts +0 -48
  38. package/src/root/message/twitch/user-message-data.ts +0 -112
  39. package/src/root/queue/alert-queue.ts +0 -31
  40. package/src/root/queue/index.ts +0 -2
  41. package/src/root/queue/next-alert-callback.ts +0 -7
  42. package/src/root/sources/alerts.ts +0 -163
  43. package/src/root/sources/index.ts +0 -5
  44. package/src/root/sources/messages.ts +0 -1611
  45. package/src/root/sources/on-widget-load-detail.ts +0 -968
  46. package/src/root/types/index.ts +0 -2
  47. package/src/root/types/on-event-received/base.ts +0 -94
  48. package/src/root/types/on-event-received/cheer.ts +0 -10
  49. package/src/root/types/on-event-received/donation.ts +0 -29
  50. package/src/root/types/on-event-received/follower.ts +0 -9
  51. package/src/root/types/on-event-received/index.ts +0 -58
  52. package/src/root/types/on-event-received/message.ts +0 -13
  53. package/src/root/types/on-event-received/moderation.ts +0 -7
  54. package/src/root/types/on-event-received/other.ts +0 -14
  55. package/src/root/types/on-event-received/raid.ts +0 -10
  56. package/src/root/types/on-event-received/subscriber.ts +0 -77
  57. package/src/root/types/on-widget-load/base.ts +0 -35
  58. package/src/root/types/on-widget-load/index.ts +0 -3
  59. package/src/root/types/on-widget-load/recents.ts +0 -33
  60. package/src/root/types/on-widget-load/session.ts +0 -102
  61. package/src/root/window-event-map.ts +0 -9
  62. package/tsconfig.app.json +0 -31
  63. package/tsconfig.json +0 -8
  64. package/tsconfig.node.json +0 -25
  65. package/vite.config.ts +0 -36
  66. package/vite.iife.config.ts +0 -52
@@ -1,5 +1,5 @@
1
1
  import type { DependencyList } from "react";
2
- import type { CheerDetail, CommunityGiftPurchaseDetail, DeleteMessageDetail, DeleteMessagesDetail, DonationDetail, FollowerDetail, RaidDetail, SubscriberDetail, SubscriberLatestDetail, TwitchMessageDetail, WidgetButtonDetail } from "@/root/types/on-event-received";
2
+ import type { CheerDetail, CommunityGiftPurchaseDetail, DeleteMessageDetail, DeleteMessagesDetail, DonationDetail, FollowerDetail, RaidDetail, SubscriberDetail, SubscriberLatestDetail, TwitchMessageDetail, WidgetButtonDetail } from "../../root/types/on-event-received";
3
3
  import type { WindowEventListener } from "../types/window-events";
4
4
  export declare function useOnEventReceived(handler: WindowEventListener<"onEventReceived">, deps?: DependencyList): void;
5
5
  export declare const useOnTwitchMessageReceived: (handler: (ev: CustomEvent<TwitchMessageDetail>) => void, deps?: DependencyList) => void;
@@ -1,4 +1,4 @@
1
1
  import type { DependencyList } from "react";
2
- import type { OnWidgetLoadEventDetails } from "@/root/types/on-widget-load";
2
+ import type { OnWidgetLoadEventDetails } from "../../root/types/on-widget-load";
3
3
  export declare function useOnWidgetLoad<FieldData = unknown>(handler: (ev: CustomEvent<OnWidgetLoadEventDetails<FieldData>>) => void, deps?: DependencyList): void;
4
4
  //# sourceMappingURL=use-on-widget-load.d.ts.map
@@ -1,2 +1,2 @@
1
- var he=Object.defineProperty;var ge=(o,h,w)=>h in o?he(o,h,{enumerable:!0,configurable:!0,writable:!0,value:w}):o[h]=w;var B=(o,h,w)=>ge(o,typeof h!="symbol"?h+"":h,w);(function(o,h){"use strict";function w(e){if(e==null)return{tier:0,tierText:""};const t=typeof e=="string"?e:String(e),s=parseInt(t,10);return Number.isNaN(s)?{tier:0,tierText:t}:{tier:s>=3e3?3:s>=2e3?2:s>=1e3?1:0,tierText:t}}function S(e){const t=e.listener,s=e.event??{},n=s.activityGroup,a=s.activityId??s._id;return n?String(n):a?String(a):t==="subscriber-latest"&&s.bulkGifted?"sl-bulk-"+(s.sender??"")+"-"+(s.amount??"")+"-"+(s.tier??"")+"-"+(s._id??""):`sl-${s._id??s.activityId??""}`}function K(e){var c;const t=e.listener,s=e.event??{},n=s.data??s,a=w(n.tier??s.tier);if(t==="event"){if(s.type==="communityGiftPurchase"){const r=n.username&&String(n.username).toLowerCase()==="anonymous"||n.sender==="Anonymous";return{type:r?"community-gift-anonymous":"community-gift",tier:a.tier,tierText:a.tierText,totalAmount:parseInt(String(n.amount),10)||1,recipients:[],sender:r?void 0:n.sender??n.displayName??n.username,anonymousDisplayName:r?n.displayName??"Anonymous":void 0}}if(s.type==="subscriber"){const r=n.gifted===!0,m=n.sender,u=parseInt(String(n.amount),10)||1,p=n.username??n.displayName,d=s.activityGroup;if(m==="Anonymous"&&d)return{type:"community-gift-anonymous",_role:"recipient",activityGroup:d,recipient:p??n.displayName,tier:a.tier,tierText:a.tierText};if(r&&m&&m!=="Anonymous"){if(!(n.communityGifted===!0||d!=null&&d!=="")){const l=String(n.message??"").indexOf("first Gift Sub")!==-1;return{type:"solo-sub-to-someone",sender:m,recipient:p??n.displayName,tier:a.tier,tierText:a.tierText,firstGiftInChannel:l}}return{type:"community-gift",_role:"recipient",activityGroup:d??"",recipient:p??n.displayName,tier:a.tier,tierText:a.tierText}}return!r&&u>1?{type:"sub-renewal",name:p??n.displayName,months:u,tier:a.tier,tierText:a.tierText}:!r&&u===1?{type:"self-sub",name:p??n.displayName,tier:a.tier,tierText:a.tierText}:d?{type:"community-gift",_role:"recipient",activityGroup:d,recipient:p??n.displayName,tier:a.tier,tierText:a.tierText}:{type:"unknown",detail:e}}return{type:"unknown",detail:e}}if(t==="subscriber-latest"){const r=s.bulkGifted===!0,m=s.sender,u=s.name,p=parseInt(String(s.amount),10)||1,d=s.gifted===!0,i=s.isCommunityGift===!0||s.communityGifted===!0;if(r&&m==="Anonymous")return{type:"community-gift-anonymous",tier:a.tier,tierText:a.tierText,totalAmount:p,recipients:[]};if(r&&m)return{type:"community-gift",sender:m,tier:a.tier,tierText:a.tierText,totalAmount:p,recipients:[]};if(d&&!i&&m){const l=String(s.message??"").indexOf("first Gift Sub")!==-1;return{type:"solo-sub-to-someone",sender:m,recipient:u??"",tier:a.tier,tierText:a.tierText,firstGiftInChannel:l}}return!d&&p>1?{type:"sub-renewal",name:u??"",months:p,tier:a.tier,tierText:a.tierText}:!d&&p===1&&(m==null||u===m)?{type:"self-sub",name:u??"",tier:a.tier,tierText:a.tierText}:{type:"unknown",detail:e}}if(t==="follower-latest")return{type:"follow",name:s.name??""};if(t==="cheer-latest"){const r=parseInt(String(s.amount),10)||0;return{type:"cheer",name:s.name??"",amount:r}}if(t==="raid-latest"){const r=parseInt(String(s.amount),10)||0;return{type:"raid",name:s.name??"",viewers:r}}if(t==="donation"){const r=(c=e.event)==null?void 0:c.data;return{type:"donation",amount:(r==null?void 0:r.amount_main)??(r==null?void 0:r.amount)??0,currency:r==null?void 0:r.currency,username:r==null?void 0:r.username,message:r==null?void 0:r.message,billingSystem:r==null?void 0:r.billing_system,id:r==null?void 0:r.id}}return{type:"unknown",detail:e}}const G=2500,b={},g={};function k(e,t){if(!e)return null;if(typeof e._has=="function"&&typeof e._set=="function")return e;const s=e[t];return s&&typeof s._has=="function"?s:null}function Q(e,t,s,n){const a=k(s,t.type);a!=null&&a._has(e)||(a&&a._set(e,!0),n(t))}function E(e,t,s,n){const a=b[e];if(!a)return;delete b[e],g[e]&&(clearTimeout(g[e]),delete g[e]);const c=a.purchase,r=a.subscribers??[],m=a.type,u=a.tier,p=a.tierText,d=a.totalAmount??r.length,i=r.map(f=>f.recipient??f.username??f.name).filter(Boolean),l=r[0],C=l==null?void 0:l.sender,T=(c==null?void 0:c.sender)??a.sender??C;m==="community-gift"&&n&&T===n||(m==="community-gift-anonymous"?Q(e,{type:"community-gift-anonymous",tier:u,tierText:p,totalAmount:d,recipients:i,anonymousDisplayName:c==null?void 0:c.anonymousDisplayName},t,s):Q(e,{type:"community-gift",sender:T,tier:u,tierText:p,totalAmount:d,recipients:i},t,s))}function Z(e,t,s){const n=t==null?void 0:t.cacheSubs,a=(t==null?void 0:t.broadcasterLogin)??"",c=K(e);if(!c){s(null);return}const r=k(n,c.type),m=S(e),u=e.event??{},p=u.data??u;if(c._role==="recipient"){const d=c,i=d.activityGroup??m;b[i]||(b[i]={type:d.type,subscribers:[],tier:d.tier,tierText:d.tierText,totalAmount:0}),g[i]&&clearTimeout(g[i]),g[i]=setTimeout(()=>{E(i,n,s,a)},G),b[i].subscribers.push({recipient:d.recipient,username:p.username,name:p.displayName,sender:p.sender}),b[i].totalAmount===0&&(b[i].totalAmount=1);return}if(c.type==="community-gift-anonymous"||c.type==="community-gift"){if(e.listener==="event"&&u.type==="communityGiftPurchase"){const i=u.activityGroup??(p==null?void 0:p.activityGroup)??m,l=c;b[i]?(b[i].purchase=l,b[i].tier=l.tier,b[i].tierText=l.tierText,b[i].totalAmount=l.totalAmount??b[i].totalAmount,b[i].sender=l.sender,g[i]&&clearTimeout(g[i]),g[i]=setTimeout(()=>{E(i,n,s,a)},G)):(b[i]={type:l.type,purchase:l,subscribers:[],tier:l.tier,tierText:l.tierText,totalAmount:Number(l.totalAmount)||0,sender:l.sender},g[i]=setTimeout(()=>{E(i,n,s,a)},G));return}if(e.listener==="subscriber-latest"){const i=c;if(c.type==="community-gift"&&a&&i.sender===a){s(null);return}return}return}if(c.type==="self-sub"||c.type==="solo-sub-to-someone"||c.type==="sub-renewal"){if(r!=null&&r._has(m)){s(null);return}r&&r._set(m,!0);const d=c;if(c.type==="solo-sub-to-someone"&&a&&d.sender===a){s(null);return}s(c)}}const j={session:{data:{"follower-latest":{name:"imacanadiannn"},"follower-session":{count:0},"follower-week":{count:0},"follower-month":{count:0},"follower-goal":{amount:137},"follower-total":{count:118,activityId:"",sessionTop:!1},"subscriber-latest":{name:"",amount:0,tier:"",message:""},"subscriber-new-latest":{name:"",amount:0,message:""},"subscriber-resub-latest":{name:"",amount:0,message:""},"subscriber-gifted-latest":{name:"",amount:0,message:"",tier:"",sender:""},"subscriber-session":{count:0},"subscriber-new-session":{count:0},"subscriber-resub-session":{count:0},"subscriber-gifted-session":{count:0},"subscriber-week":{count:0},"subscriber-month":{count:0},"subscriber-goal":{amount:0},"subscriber-total":{count:0,activityId:"",sessionTop:!1},"subscriber-points":{amount:0,activityId:"",sessionTop:!1},"subscriber-alltime-gifter":{name:"",amount:0},"host-latest":{name:"",amount:0},"raid-latest":{name:"agnascor2",amount:6},"cheer-session":{amount:0},"cheer-week":{amount:0},"cheer-month":{amount:0},"cheer-total":{amount:0},"cheer-count":{count:0},"cheer-goal":{amount:0},"cheer-latest":{name:"",amount:0},"cheer-session-top-donation":{amount:0,name:""},"cheer-weekly-top-donation":{amount:0,name:""},"cheer-monthly-top-donation":{amount:0,name:""},"cheer-alltime-top-donation":{amount:0,name:""},"cheer-session-top-donator":{amount:0,name:""},"cheer-weekly-top-donator":{amount:0,name:""},"cheer-monthly-top-donator":{amount:0,name:""},"cheer-alltime-top-donator":{amount:0,name:""},"tip-latest":{name:"",amount:0},"tip-session-top-donation":{amount:0,name:""},"tip-weekly-top-donation":{name:"",amount:0},"tip-monthly-top-donation":{name:"",amount:0},"tip-alltime-top-donation":{name:"",amount:0},"tip-session-top-donator":{amount:0,name:""},"tip-weekly-top-donator":{name:"",amount:0},"tip-monthly-top-donator":{name:"",amount:0},"tip-alltime-top-donator":{name:"",amount:0},"tip-session":{amount:0},"tip-week":{amount:0},"tip-month":{amount:0},"tip-total":{amount:0},"tip-count":{count:0},"tip-goal":{amount:0},"merch-goal-orders":{amount:0},"merch-goal-items":{amount:0},"merch-goal-total":{amount:0},"merch-latest":{name:"",amount:0,items:[]},"charityCampaignDonation-latest":{name:"",amount:0},"charityCampaignDonation-weekly-top-donation":{name:"",amount:0},"charityCampaignDonation-monthly-top-donation":{name:"",amount:0},"charityCampaignDonation-alltime-top-donation":{name:"",amount:0},"charityCampaignDonation-weekly-top-donator":{name:"",amount:0},"charityCampaignDonation-monthly-top-donator":{name:"",amount:0},"charityCampaignDonation-alltime-top-donator":{name:"",amount:0},"cheerPurchase-latest":{name:"",amount:0},"cheerPurchase-weekly-top-donation":{name:"",amount:0},"cheerPurchase-monthly-top-donation":{name:"",amount:0},"cheerPurchase-alltime-top-donation":{name:"",amount:0},"cheerPurchase-weekly-top-donator":{name:"",amount:0},"cheerPurchase-monthly-top-donator":{name:"",amount:0},"cheerPurchase-alltime-top-donator":{name:"",amount:0},"superchat-latest":{name:"",amount:0},"superchat-weekly-top-donation":{name:"",amount:0},"superchat-monthly-top-donation":{name:"",amount:0},"superchat-alltime-top-donation":{name:"",amount:0},"superchat-weekly-top-donator":{name:"",amount:0},"superchat-monthly-top-donator":{name:"",amount:0},"superchat-alltime-top-donator":{name:"",amount:0},"superchat-session":{amount:0},"superchat-week":{amount:0},"superchat-month":{amount:0},"superchat-total":{amount:0},"superchat-count":{count:0},"superchat-goal":{amount:0},"purchase-latest":{name:"",amount:0,avatar:"",message:"",items:[]},"follower-recent":[{name:"imacanadiannn",createdAt:"2026-01-13T01:53:50.296Z",type:"follower"},{name:"piwo143",createdAt:"2026-01-13T01:51:39.472Z",type:"follower"},{name:"latvan_",createdAt:"2026-01-12T23:54:29.235Z",type:"follower"},{name:"wheinwait",createdAt:"2026-01-12T23:11:28.946Z",type:"follower"},{name:"agnascor2",createdAt:"2026-01-12T23:11:14.880Z",type:"follower"},{name:"sunlitetuts",createdAt:"2026-01-12T21:03:59.207Z",type:"follower"},{name:"ayanamya",createdAt:"2026-01-12T20:00:55.509Z",type:"follower"},{name:"hopeless28",createdAt:"2026-01-12T18:35:21.731Z",type:"follower"},{name:"kakoytoclown",createdAt:"2026-01-11T18:39:36.843Z",type:"follower"},{name:"dababe__jq1",createdAt:"2024-10-10T23:27:49.699Z",type:"follower"},{name:"jjjllkmf",createdAt:"2024-05-05T09:44:16.287Z",type:"follower"},{name:"d4c_valintine",createdAt:"2024-05-03T15:13:28.365Z",type:"follower"},{name:"angelbliss_",createdAt:"2024-04-30T20:07:23.132Z",type:"follower"},{name:"o1zich",createdAt:"2024-04-22T16:23:26.139Z",type:"follower"},{name:"nearbuziky",createdAt:"2024-04-19T19:21:27.569Z",type:"follower"},{name:"samirkasamsa",createdAt:"2024-04-19T17:06:38.963Z",type:"follower"},{name:"flip1mip",createdAt:"2024-04-19T17:06:18.276Z",type:"follower"},{name:"valerie_solo",createdAt:"2024-04-19T17:06:07.473Z",type:"follower"},{name:"sxaelence",createdAt:"2024-04-19T07:06:46.330Z",type:"follower"},{name:"avokadik99",createdAt:"2024-04-17T16:11:29.604Z",type:"follower"},{name:"blackvoronstream",createdAt:"2024-04-16T21:29:33.306Z",type:"follower"},{name:"baldejniyy",createdAt:"2024-04-16T21:29:09.647Z",type:"follower"},{name:"p3ch4n_ka",createdAt:"2024-04-16T16:37:31.841Z",type:"follower"},{name:"kakosik_bee",createdAt:"2024-04-16T15:56:27.435Z",type:"follower"},{name:"hikotoru",createdAt:"2024-04-16T15:13:25.226Z",type:"follower"}],"subscriber-recent":[],"host-recent":[],"raid-recent":[{name:"agnascor2",amount:6,createdAt:"2026-01-12T23:08:21.815Z",type:"raid"},{name:"justduckomgg",amount:7,createdAt:"2024-04-19T17:05:53.185Z",type:"raid"},{name:"veessmk",amount:6,createdAt:"2024-04-17T15:40:43.945Z",type:"raid"},{name:"night_sculptor",amount:12,createdAt:"2024-04-16T18:07:40.040Z",type:"raid"},{name:"pixiemays",amount:6,createdAt:"2024-04-16T16:37:24.433Z",type:"raid"},{name:"night_sculptor",amount:8,createdAt:"2024-04-14T18:31:20.049Z",type:"raid"},{name:"pixiemays",amount:19,createdAt:"2024-04-14T13:22:05.794Z",type:"raid"},{name:"pixiemays",amount:15,createdAt:"2024-04-12T17:03:36.115Z",type:"raid"},{name:"alechkavt",amount:9,createdAt:"2024-04-11T17:54:47.691Z",type:"raid"},{name:"pixiemays",amount:8,createdAt:"2024-04-11T14:10:49.548Z",type:"raid"},{name:"night_sculptor",amount:22,createdAt:"2024-04-09T16:13:41.195Z",type:"raid"},{name:"pixiemays",amount:5,createdAt:"2024-04-08T09:54:01.603Z",type:"raid"},{name:"aki_neki",amount:5,createdAt:"2024-04-07T21:52:45.919Z",type:"raid"},{name:"alechkavt",amount:11,createdAt:"2024-04-07T18:59:39.286Z",type:"raid"},{name:"veessmk",amount:15,createdAt:"2024-04-07T16:13:25.172Z",type:"raid"},{name:"veessmk",amount:10,createdAt:"2024-03-17T16:11:38.631Z",type:"raid"}],"charityCampaignDonation-recent":[],"cheer-recent":[],"cheerPurchase-recent":[],"superchat-recent":[],"tip-recent":[],"merch-recent":[],"channel-points-latest":{amount:0,message:"",name:"",redemption:""},"community-gift-latest":{amount:0,name:"",tier:""},"charityCampaignDonation-session-top-donation":{amount:0,name:""},"charityCampaignDonation-session-top-donator":{amount:0,name:""},"cheerPurchase-session-top-donation":{amount:0,name:""},"cheerPurchase-session-top-donator":{amount:0,name:""},"hypetrain-latest":{active:0,amount:0,level:0,levelChanged:0,name:"",type:""},"hypetrain-latest-top-contributors":[],"hypetrain-level-goal":{amount:0},"hypetrain-level-progress":{amount:0,percent:0},"hypetrain-total":{amount:0},"superchat-session-top-donation":{amount:0,name:""},"superchat-session-top-donator":{amount:0,name:""}},settings:{autoReset:!0,calendar:!1,resetOnStart:!1}},recents:[{name:"imacanadiannn",createdAt:"2026-01-13T01:53:50.296Z",type:"follower"},{name:"piwo143",createdAt:"2026-01-13T01:51:39.472Z",type:"follower"},{name:"latvan_",createdAt:"2026-01-12T23:54:29.235Z",type:"follower"},{name:"wheinwait",createdAt:"2026-01-12T23:11:28.946Z",type:"follower"},{name:"agnascor2",createdAt:"2026-01-12T23:11:14.880Z",type:"follower"},{name:"sunlitetuts",createdAt:"2026-01-12T21:03:59.207Z",type:"follower"},{name:"ayanamya",createdAt:"2026-01-12T20:00:55.509Z",type:"follower"},{name:"hopeless28",createdAt:"2026-01-12T18:35:21.731Z",type:"follower"},{name:"kakoytoclown",createdAt:"2026-01-11T18:39:36.843Z",type:"follower"},{name:"dababe__jq1",createdAt:"2024-10-10T23:27:49.699Z",type:"follower"},{name:"jjjllkmf",createdAt:"2024-05-05T09:44:16.287Z",type:"follower"},{name:"d4c_valintine",createdAt:"2024-05-03T15:13:28.365Z",type:"follower"},{name:"angelbliss_",createdAt:"2024-04-30T20:07:23.132Z",type:"follower"},{name:"o1zich",createdAt:"2024-04-22T16:23:26.139Z",type:"follower"},{name:"nearbuziky",createdAt:"2024-04-19T19:21:27.569Z",type:"follower"},{name:"samirkasamsa",createdAt:"2024-04-19T17:06:38.963Z",type:"follower"},{name:"flip1mip",createdAt:"2024-04-19T17:06:18.276Z",type:"follower"},{name:"valerie_solo",createdAt:"2024-04-19T17:06:07.473Z",type:"follower"},{name:"sxaelence",createdAt:"2024-04-19T07:06:46.330Z",type:"follower"},{name:"avokadik99",createdAt:"2024-04-17T16:11:29.604Z",type:"follower"},{name:"blackvoronstream",createdAt:"2024-04-16T21:29:33.306Z",type:"follower"},{name:"baldejniyy",createdAt:"2024-04-16T21:29:09.647Z",type:"follower"},{name:"p3ch4n_ka",createdAt:"2024-04-16T16:37:31.841Z",type:"follower"},{name:"kakosik_bee",createdAt:"2024-04-16T15:56:27.435Z",type:"follower"},{name:"hikotoru",createdAt:"2024-04-16T15:13:25.226Z",type:"follower"},{name:"agnascor2",amount:6,createdAt:"2026-01-12T23:08:21.815Z",type:"raid"},{name:"justduckomgg",amount:7,createdAt:"2024-04-19T17:05:53.185Z",type:"raid"},{name:"veessmk",amount:6,createdAt:"2024-04-17T15:40:43.945Z",type:"raid"},{name:"night_sculptor",amount:12,createdAt:"2024-04-16T18:07:40.040Z",type:"raid"},{name:"pixiemays",amount:6,createdAt:"2024-04-16T16:37:24.433Z",type:"raid"},{name:"night_sculptor",amount:8,createdAt:"2024-04-14T18:31:20.049Z",type:"raid"},{name:"pixiemays",amount:19,createdAt:"2024-04-14T13:22:05.794Z",type:"raid"},{name:"pixiemays",amount:15,createdAt:"2024-04-12T17:03:36.115Z",type:"raid"},{name:"alechkavt",amount:9,createdAt:"2024-04-11T17:54:47.691Z",type:"raid"},{name:"pixiemays",amount:8,createdAt:"2024-04-11T14:10:49.548Z",type:"raid"},{name:"night_sculptor",amount:22,createdAt:"2024-04-09T16:13:41.195Z",type:"raid"},{name:"pixiemays",amount:5,createdAt:"2024-04-08T09:54:01.603Z",type:"raid"},{name:"aki_neki",amount:5,createdAt:"2024-04-07T21:52:45.919Z",type:"raid"},{name:"alechkavt",amount:11,createdAt:"2024-04-07T18:59:39.286Z",type:"raid"},{name:"veessmk",amount:15,createdAt:"2024-04-07T16:13:25.172Z",type:"raid"},{name:"veessmk",amount:10,createdAt:"2024-03-17T16:11:38.631Z",type:"raid"}],currency:{code:"USD",name:"U.S. Dollar",symbol:"$"},channel:{username:"encry_s",apiToken:"HAHANOTNOW",id:"65ba7503dc0415cb368947b1",providerId:"485678132",avatar:"https://static-cdn.jtvnw.net/jtv_user_pictures/6fe93724-803a-4e5a-b58a-1d42fbc84661-profile_image-300x300.jpeg"},fieldData:{testMessageButton:"zaytri_dynamicchatbubbles",previewMode:!1,previewType:"random",previewMessage:"",theme:"animal-crossing",corner:"round",darkMode:!1,highlightStyle:"normal",actionStyle:"italics",maxWidth:400,maxHeight:300,fixedWidth:!1,positionMode:"list",listDirection:"bottom",listAlignment:"center",topEdge:!0,bottomEdge:!0,leftEdge:!0,rightEdge:!0,edgeDeviation:0,padding:30,animation:"dynamic",dynamicModifier:1.75,maxMessages:25,hideOutOfBounds:!0,lifetime:0,delay:1,googleFont:"Nunito",customFont:"",fontSize:18,fontWeight:"bold",textDirection:"ltr",useCustomBorderColors:!0,borderColor:"#fed400",nameColor:"#000000",useCustomMessageColors:!0,backgroundColor:"#fff3c0",textColor:"#000000",pronounsMode:"suffix",pronounsLowercase:!0,pronounsBadgeCustomColors:!1,pronounsBadgeBackgroundColor:"#000000",pronounsBadgeBorderColor:"#FFFFFF",pronounsBadgeTextColor:"#FFFFFF",showBadges:!0,largeEmotes:!0,ffzGlobal:!1,bttvGlobal:!1,emoteOnly:!1,highlightOnly:!1,allowedStrings:[],minMessages:0,messageCooldown:0,raidCooldown:0,raidMin:0,includeEveryone:!0,includeFollowers:"true",minFollowTime:1,includeSubs:!0,includeVIPs:!0,includeMods:!0,allowUserList:[],ignoreUserList:["StreamElements","Streamlabs","Nightbot","Sery_Bot"],ignorePrefixList:["!"],volume:50,soundGroup1:[],userLevelSoundGroup1:"everyone",specificUsersSoundGroup1:[],messageTypeSoundGroup1:"all",soundGroup2:[],userLevelSoundGroup2:"everyone",specificUsersSoundGroup2:[],messageTypeSoundGroup2:"all",soundGroup3:[],userLevelSoundGroup3:"everyone",specificUsersSoundGroup3:[],messageTypeSoundGroup3:"all",soundGroup4:[],userLevelSoundGroup4:"everyone",specificUsersSoundGroup4:[],messageTypeSoundGroup4:"all",soundGroup5:[],userLevelSoundGroup5:"everyone",specificUsersSoundGroup5:[],messageTypeSoundGroup5:"all",soundGroup6:[],userLevelSoundGroup6:"everyone",specificUsersSoundGroup6:[],messageTypeSoundGroup6:"all",soundGroup7:[],userLevelSoundGroup7:"everyone",specificUsersSoundGroup7:[],messageTypeSoundGroup7:"all",soundGroup8:[],userLevelSoundGroup8:"everyone",specificUsersSoundGroup8:[],messageTypeSoundGroup8:"all",soundGroup9:[],userLevelSoundGroup9:"everyone",specificUsersSoundGroup9:[],messageTypeSoundGroup9:"all",soundGroup10:[],userLevelSoundGroup10:"everyone",specificUsersSoundGroup10:[],messageTypeSoundGroup10:"all",widgetName:"Chat Bubbles",widgetAuthor:"Zaytri",widgetVersion:"2.12.0",widgetUpdateUrl:"https://github.com/zaytri/stream-elements-widgets/blob/main/DynamicChatBubbles",ignoreFirst:!0},overlay:{isEditorMode:!0,muted:!1}},F={follower:{listener:"follower-latest",event:{name:"An1by"}},communityGiftAnonymous:{listener:"event",event:{type:"communityGiftPurchase",provider:"twitch",channel:"663b10ba6cd449c4162a2230",activityGroup:"41a50a915794e4ae7cf5e600fd3445d4",data:{amount:2,username:"anonymous",displayName:"AnAnonymousGifter",tier:"2000",sender:"Anonymous"},_id:"699868d7df734989ec85d393",activityId:"699868d7df734989ec85d393"}},communityGift:{listener:"event",event:{type:"communityGiftPurchase",provider:"twitch",channel:"663b10ba6cd449c4162a2230",activityGroup:"841592c0bccbf3e1e7de71e1c8f4d9f0",data:{amount:1,username:"rishamon",displayName:"rishamon",tier:"1000",sender:"rishamon"},_id:"699867c7fef23197a6a089f5",activityId:"699867c7fef23197a6a089f5"}},sub:{listener:"subscriber-latest",event:{name:"An1by",amount:1}},selfSub:{listener:"event",event:{type:"subscriber",provider:"twitch",channel:"663b10ba6cd449c4162a2230",data:{amount:1,username:"rishamon",displayName:"rishamon",tier:"1000"},_id:"6998676317aed69e62b8f283",activityId:"6998676317aed69e62b8f283"}},soloSubToSomeone:{listener:"event",event:{type:"subscriber",provider:"twitch",channel:"663b10ba6cd449c4162a2230",data:{amount:1,username:"encry_s",displayName:"encry_s",message:"rishamon gifted a Tier 1 sub to encry_s! This is their first Gift Sub in the channel!",tier:"1000",sender:"rishamon",gifted:!0},_id:"699866e82d9cd9a70854baf2",activityId:"699866e82d9cd9a70854baf2"}},subRenewal:{listener:"event",event:{type:"subscriber",provider:"twitch",channel:"663b10ba6cd449c4162a2230",data:{amount:8,username:"silgestian",displayName:"SilgeStian",tier:"1000"},_id:"69986dfaf25724ff4162bd1a",activityId:"69986dfaf25724ff4162bd1a"}},bits:{listener:"cheer-latest",event:{name:"An1by",amount:30}},raid:{listener:"raid-latest",event:{name:"An1by",amount:50}},donationShortText:{listener:"donation",event:{data:{alert_type:"1",currency:"RUB",billing_system:"CARD",id:5,amount_main:500,amount:500,username:"An1by",message:"Simple message text"}}},donationLongText:{listener:"donation",event:{data:{alert_type:"1",currency:"RUB",billing_system:"CARD",id:5,amount_main:500,amount:500,username:"An1by",message:`A plain gray stone lay on the shore, basking in the sun's warmth. A shove broke its peace—a thoughtless toss sent it flying. The stone splashed into water. Ripples spread, yet none noticed. It sank to the bottom, heavy with loneliness. "Didn't I deserve to stay where I was happy still?" it wondered.`}}},donation:{listener:"donation",event:{data:{alert_type:"1",currency:"RUB",billing_system:"CARD",id:5,amount_main:500,amount:500,username:"An1by",message:""}}}},M={zeroWidthEmotesInRow:{listener:"message",event:{service:"twitch",data:{time:1768317417111,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"f70c4cd8b6034d1f805298246ee1bc35",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"5f752ae3-4be9-4f93-82d1-d78575ba07fd",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768317416862",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"Censored Censored Censored emotes in row",isAction:!1,emotes:[{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:0,end:8},{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:9,end:17},{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:18,end:26}],msgId:"5f752ae3-4be9-4f93-82d1-d78575ba07fd"},renderedText:'<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emotes in row'}},zeroWidthEmoteInMiddle:{listener:"message",event:{service:"twitch",data:{time:1768317383248,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"847f9c27722340d090eddcb0d0662b5b",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3dea1e1e-89f7-4a5f-b743-13ba0386492f",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768317382987",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"text and Censored emote",isAction:!1,emotes:[{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:9,end:17}],msgId:"3dea1e1e-89f7-4a5f-b743-13ba0386492f"},renderedText:'text and <img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emote'}},zeroWidthEmoteFirst:{listener:"message",event:{service:"twitch",data:{time:1768317236883,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"e9d0621827184c1b940fd700ae599d60",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"6f347337-354a-42e5-bab0-935e19d74152",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768317236625",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"Censored <- zeroWidth emote on the first place",isAction:!1,emotes:[{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:0,end:8}],msgId:"6f347337-354a-42e5-bab0-935e19d74152"},renderedText:'<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">&lt;- zeroWidth emote on the first place'}},veryShort:{listener:"message",event:{service:"twitch",data:{time:1749743750546,tags:{"badge-info":"",badges:"","client-nonce":"a3fe71a5771d0c31466dd333c963231e",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3d0d1a43-45e5-4652-be59-0b31dfeba796",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743749437",turbo:"0","user-id":"958683839","user-type":""},nick:"IHaveVeryBigNickname",userId:"958683839",displayName:"IHaveVeryBigNickname",displayColor:"",badges:[],channel:"IHaveVeryBigNickname",text:"A!",isAction:!1,emotes:[],msgId:"3d0d1a43-45e5-4652-be59-0b31dfeba796"},renderedText:"A!"}},viewer:{listener:"message",event:{service:"twitch",data:{time:1749743750546,tags:{"badge-info":"",badges:"","client-nonce":"a3fe71a5771d0c31466dd333c963231e",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3d0d1a43-45e5-4652-be59-0b31dfeba796",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743749437",turbo:"0","user-id":"958683839","user-type":""},nick:"SimpleViewer",userId:"958683839",displayName:"SimpleViewer",displayColor:"",badges:[],channel:"SimpleViewer",text:"I finally finished it...",isAction:!1,emotes:[],msgId:"3d0d1a43-45e5-4652-be59-0b31dfeba796"},renderedText:"I finally finished it..."}},vip:{listener:"message",event:{service:"twitch",data:{time:1749743844261,tags:{"badge-info":"",badges:"vip/1","client-nonce":"fd72ba163a9cc1a6486b2eddb0f5d893",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"51cac44b-9908-49d2-b424-489276e1e521",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743843170",turbo:"0","user-id":"958683839","user-type":"",vip:"1"},nick:"VipPersona",userId:"958683839",displayName:"VipPersona",displayColor:"",badges:[{type:"vip",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3",description:"VIP"}],channel:"VipPersona",text:"I am a VIP persona!",isAction:!1,emotes:[],msgId:"51cac44b-9908-49d2-b424-489276e1e521"},renderedText:"I am a VIP persona!"}},vipLong:{listener:"message",event:{service:"twitch",data:{time:1749743844261,tags:{"badge-info":"",badges:"vip/1","client-nonce":"fd72ba163a9cc1a6486b2eddb0f5d893",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"51cac44b-9908-49d2-b424-489276e1e521",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743843170",turbo:"0","user-id":"958683839","user-type":"",vip:"1"},nick:"VipPersona",userId:"958683839",displayName:"VipPersona",displayColor:"",badges:[{type:"vip",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3",description:"VIP"}],channel:"VipPersona",text:"I am a VIP persona! Are you see this?",isAction:!1,emotes:[],msgId:"51cac44b-9908-49d2-b424-489276e1e521"},renderedText:"I am a VIP persona! Are you see this?"}},artist:{listener:"message",event:{service:"twitch",data:{time:1749743916482,tags:{"badge-info":"",badges:"artist-badge/1","client-nonce":"54128d734d44e28ffc32e1ce236993f5",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"8ee7e71a-3608-486a-bd82-a82b65982ca7",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743915371",turbo:"0","user-id":"958683839","user-type":""},nick:"StarArtist",userId:"958683839",displayName:"StarArtist",displayColor:"",badges:[{type:"artist-badge",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/4300a897-03dc-4e83-8c0e-c332fee7057f/3",description:"Artist"}],channel:"StarArtist",text:"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.",isAction:!1,emotes:[],msgId:"8ee7e71a-3608-486a-bd82-a82b65982ca7"},renderedText:"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."}},subscriber:{listener:"message",event:{data:{tags:{badges:"subscriber/1",color:"#ff69b4",vip:"0",subscriber:"1","user-id":"100135110","user-type":"subscriber"},nick:"YourSub",userId:"100135110",displayName:"YourSub",displayColor:"#ff69b4",badges:[{type:"partner",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/d12a2e27-16f6-41d0-ab77-b780518f00a3/3",description:"Verified"}],text:"This is a subscriber's test message. I'm just a subscriber, srsly.",emotes:[],msgId:"43285909-412c-4eee-b80d-89f1482ba53142"},renderedText:"This is a subscriber's test message. I'm just a subscriber, srsly."}},founder:{listener:"message",event:{service:"twitch",data:{time:1749743750546,tags:{"badge-info":"",badges:"founder/1,subscriber/1","client-nonce":"a3fe71a5771d0c31466dd333c963231e",color:"","display-name":"sub__founder",emotes:"","first-msg":"0",flags:"",id:"3d0d1a43-45e5-4652-be59-0b31dfeba796",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1749743749437",turbo:"0","user-id":"958683839","user-type":""},nick:"sub__founder",userId:"958683839",displayName:"sub__founder",displayColor:"",badges:[{type:"founder"}],channel:"an1by",text:"I finally finished it...",isAction:!1,emotes:[],msgId:"3d0d1a43-45e5-4652-be59-0b31dfeba796"},renderedText:"I finally finished it..."}},moderator:{listener:"message",event:{service:"twitch",data:{time:1749743997223,tags:{"badge-info":"",badges:"moderator/1",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820",mod:"1","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743996136",turbo:"0","user-id":"958683839","user-type":"mod"},nick:"mediator",userId:"958683839",displayName:"mediator",displayColor:"",badges:[{type:"moderator",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3",description:"Moderator"}],channel:"mediator",text:"Did someone say... MODERATOR!?",isAction:!1,emotes:[],msgId:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820"},renderedText:"Did someone say... MODERATOR!?"}},moderatorLong:{listener:"message",event:{service:"twitch",data:{time:1749743997223,tags:{"badge-info":"",badges:"moderator/1",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820",mod:"1","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749743996136",turbo:"0","user-id":"958683839","user-type":"mod"},nick:"mediator",userId:"958683839",displayName:"mediator",displayColor:"",badges:[{type:"moderator",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3",description:"Moderator"}],channel:"mediator",text:"Did someone say... MODERATOR!? Yes, I am moderator!",isAction:!1,emotes:[],msgId:"3e7ba532-f181-4bcc-90f1-a3c48ca3c820"},renderedText:"Did someone say... MODERATOR!? Yes, I am moderator!"}},broadcaster:{listener:"message",event:{service:"twitch",data:{time:1749744800809,tags:{"badge-info":"subscriber/16",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"6989104421ee14c0a8c216ef1c6bb5ed",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1749744799706",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"I made this chat Besplatno",isAction:!1,emotes:[{type:"7tv",name:"Besplatno",id:"01FE70VRT00009TR6M9N941A28",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp",2:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp",3:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/3x.webp",4:"https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp"},start:17,end:26}],msgId:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d"},renderedText:'I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">'}},broadcasterShort:{listener:"message",event:{service:"twitch",data:{time:1749744800809,tags:{"badge-info":"subscriber/16",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"6989104421ee14c0a8c216ef1c6bb5ed",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1749744799706",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"okak",isAction:!1,emotes:[],msgId:"35a9bea7-076e-4d17-8cb7-7e65c8111b3d"},renderedText:'I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">'}},emoteSolo:{listener:"message",event:{service:"twitch",data:{time:1749744097330,tags:{"badge-info":"",badges:"",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"9ab645b9-7c27-4c6f-99fd-f63727ca3700",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744096217",turbo:"0","user-id":"958683839","user-type":""},nick:"tr0l1",userId:"958683839",displayName:"tr0l1",displayColor:"",badges:[],channel:"tr0l1",text:"🤤😮💀👈👉",isAction:!1,emotes:[{type:"emoji",name:"1f62e",id:"1f62e",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f62e.png"}},{type:"emoji",name:"1f480",id:"1f480",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f480.png"}},{type:"emoji",name:"1f448",id:"1f448",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f448.png"}},{type:"emoji",name:"1f449",id:"1f449",gif:!1,urls:{1:"https://twemoji.maxcdn.com/36x36/1f449.png"}}],msgId:"9ab645b9-7c27-4c6f-99fd-f63727ca3700"},renderedText:"🤤😮💀👈👉"}},emoteOne:{listener:"message",event:{service:"twitch",data:{time:1749744131183,tags:{"badge-info":"",badges:"",color:"","display-name":"An1by",emotes:"41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18","first-msg":"0",flags:"",id:"beb957ea-dfbd-4184-82a3-458121f44867",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744130018",turbo:"0","user-id":"958683839","user-type":""},nick:"tr0l1",userId:"958683839",displayName:"tr0l1",displayColor:"",badges:[],channel:"tr0l1",text:"SeemsGood",isAction:!1,emotes:[{type:"twitch",name:"SeemsGood",id:"64138",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0"},start:0,end:9}],msgId:"beb957ea-dfbd-4184-82a3-458121f44867"},renderedText:'<img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote">'}},emoteText:{listener:"message",event:{service:"twitch",data:{time:1749744131183,tags:{"badge-info":"",badges:"",color:"","display-name":"7TVUser",emotes:"41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18","first-msg":"0",flags:"",id:"beb957ea-dfbd-4184-82a3-458121f44867",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744130018",turbo:"0","user-id":"958683839","user-type":""},nick:"7TVUser",userId:"958683839",displayName:"7TVUser",displayColor:"",badges:[],channel:"7TVUser",text:"Not emote SeemsGood Kreygasm ResidentSleeper WutFace NotLikeThis <3",isAction:!1,emotes:[{type:"twitch",name:"SeemsGood",id:"64138",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0"},start:10,end:19},{type:"twitch",name:"Kreygasm",id:"41",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0"},start:20,end:28},{type:"twitch",name:"ResidentSleeper",id:"245",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0"},start:29,end:44},{type:"twitch",name:"WutFace",id:"28087",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0"},start:45,end:52},{type:"twitch",name:"NotLikeThis",id:"58765",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0"},start:53,end:64},{type:"twitch",name:"<3",id:"9",gif:!1,animated:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0"},start:65,end:67}],msgId:"beb957ea-dfbd-4184-82a3-458121f44867"},renderedText:'Not emote <img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0 4x" title="Kreygasm" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0 4x" title="ResidentSleeper" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0 4x" title="WutFace" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0 4x" title="NotLikeThis" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0 4x" title="<3" class="emote">'}},zeroWidthEmotes:{listener:"message",event:{service:"twitch",data:{time:1759956619137,tags:{"badge-info":"subscriber/20",badges:"","client-nonce":"f7b17aea5c07c5c08fd920278fb52b5a",color:"#DAA520","display-name":"7TVUser",emotes:"","first-msg":"0",flags:"",id:"b44d1c53-1de9-454c-a269-bd8849cbcd2d",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1759956618295",turbo:"0","user-id":"958683839","user-type":""},nick:"7TVUser",userId:"958683839",displayName:"7TVUser",displayColor:"#DAA520",badges:[{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"7TVUser",text:"Zero-width emotes AYAYA PETPET right there!!",isAction:!1,emotes:[{type:"7tv",name:"AYAYA",id:"01GB32XE6R00018VJGJ4A9BNCV",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp",2:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp",3:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/3x.webp",4:"https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp"},start:18,end:23},{type:"7tv",name:"PETPET",id:"01FE3XY508000AA32JP519W2EW",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp",2:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp",3:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/3x.webp",4:"https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp"},start:24,end:30}],msgId:"b44d1c53-1de9-454c-a269-bd8849cbcd2d"},renderedText:'Zero-width emotes <img src="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp" srcset="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp 1x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp 2x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp 4x" title="AYAYA" class="emote"><img src="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp" srcset="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp 1x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp 2x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp 4x" title="PETPET" class="emote">right there!!'}},sevenTv:{listener:"message",event:{service:"twitch",data:{time:1749744413746,tags:{"badge-info":"",badges:"","client-nonce":"2bd56e3c058b5a4fc4e46c3e369891e6",color:"","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"4c71789c-8c02-4e25-a71f-3a7d0ef19a33",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"0","tmi-sent-ts":"1749744412641",turbo:"0","user-id":"958683839","user-type":""},nick:"tr0l1",userId:"958683839",displayName:"tr0l1",displayColor:"",badges:[],channel:"tr0l1",text:"ало ало Инса Каори Hello everyone! Hello everyone! Hello everyone!Hello everyone! Hello everyone! Hello everyone! Hello everyone! Hello everyone!",isAction:!1,emotes:[{type:"7tv",name:"ало",id:"01F6PRA3N80003BH8AEY9DWKDQ",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp",2:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp",3:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp",4:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp"},start:0,end:3},{type:"7tv",name:"ало",id:"01F6PRA3N80003BH8AEY9DWKDQ",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp",2:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp",3:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp",4:"https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp"},start:4,end:7},{type:"7tv",name:"Инса",id:"01JRE4VRRXWF0922HA3F9BZG6M",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp",2:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp",3:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/3x.webp",4:"https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp"},start:8,end:12},{type:"7tv",name:"Каори",id:"01GY6TCEFG000BGHWA5T6NGBRA",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp",2:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp",3:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/3x.webp",4:"https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp"},start:13,end:18}],msgId:"4c71789c-8c02-4e25-a71f-3a7d0ef19a33"},renderedText:'<img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp" srcset="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp 1x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp 2x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp 4x" title="Инса" class="emote"><img src="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp" srcset="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp 1x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp 2x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp 4x" title="Каори" class="emote">Hello everyone!'}},sevenTvSolo:{listener:"message",event:{service:"twitch",data:{time:1768321684253,tags:{"badge-info":"subscriber/23",badges:"broadcaster/1,subscriber/0","client-nonce":"51cc77206bf346eda20774b75aac675d",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"e30a02bf-a3c7-40f2-9325-cdc2690d3631",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1768321684074",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"}],channel:"an1by",text:"DurkaDance ͏",isAction:!1,emotes:[{type:"7tv",name:"DurkaDance",id:"01JQBC7K2FX7HE4SFZFJEN6CWY",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp",2:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp",3:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/3x.webp",4:"https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp"},start:0,end:10}],msgId:"e30a02bf-a3c7-40f2-9325-cdc2690d3631"},renderedText:'<img src="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp" srcset="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp 1x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp 2x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp 4x" title="DurkaDance" class="emote"> ͏'}},replyToEmotes:{listener:"message",event:{service:"twitch",data:{time:1761442000746,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"467bc72d78248ec07dfb0602744268ca",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"9efd9377-2bd3-4c69-ace4-c21760337bab",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761442000143",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"AREYOUAGIRL Censored Emotes there DiscoDoge Кута",isAction:!1,emotes:[{type:"7tv",name:"AREYOUAGIRL",id:"01F6N58M5R0004P7N4A9PK7KD9",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp",2:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp",3:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/3x.webp",4:"https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp"},start:0,end:11},{type:"7tv",name:"Censored",id:"01GC2KBETR0009QMKQRDSHDTVB",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp",2:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp",3:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp",4:"https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp"},start:12,end:20},{type:"7tv",name:"DiscoDoge",id:"01F6REQR2R0006GRP49Q74YFVT",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp",2:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp",3:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/3x.webp",4:"https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp"},start:34,end:43},{type:"7tv",name:"Кута",id:"01GZRXWQMR0001GP2RPRY13KD2",gif:!0,animated:!0,urls:{1:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp",2:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp",3:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/3x.webp",4:"https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp"},start:44,end:48}],msgId:"9efd9377-2bd3-4c69-ace4-c21760337bab"},renderedText:'<img src="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp" srcset="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp 1x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp 2x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp 4x" title="AREYOUAGIRL" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">Emotes there <img src="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp" srcset="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp 1x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp 2x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp 4x" title="DiscoDoge" class="emote"><img src="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp" srcset="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp 1x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp 2x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp 4x" title="Кута" class="emote">'}},replyFromEmotes:{listener:"message",event:{service:"twitch",data:{time:1761442023380,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"4052e6a7ed6bb6b8836aa625170c4f7b",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"f7bed8dd-5a48-4209-8617-e1a3c0720ee4",mod:"0","reply-parent-display-name":"An1by","reply-parent-msg-body":"AREYOUAGIRL\\sCensored\\sThere\\semotes\\sDiscoDoge\\sКута","reply-parent-msg-id":"9efd9377-2bd3-4c69-ace4-c21760337bab","reply-parent-user-id":"958683839","reply-parent-user-login":"an1by","reply-thread-parent-display-name":"An1by","reply-thread-parent-msg-id":"9efd9377-2bd3-4c69-ace4-c21760337bab","reply-thread-parent-user-id":"958683839","reply-thread-parent-user-login":"an1by","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761442022738",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"@An1by I'm replying to message with emotes agarge Looks good, am I right?",isAction:!1,emotes:[{type:"7tv",name:"agarge",id:"01HTDV6DE8000B1F9GAE4NZ73B",gif:!1,animated:!1,urls:{1:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp",2:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp",3:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/3x.webp",4:"https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp"},start:43,end:49}],msgId:"f7bed8dd-5a48-4209-8617-e1a3c0720ee4"},renderedText:`@An1by I'm replying to message with emotes <img src="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp" srcset="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp 1x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp 2x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp 4x" title="agarge" class="emote">Looks good, am I right?`}},replyTo:{listener:"message",event:{service:"twitch",data:{time:1761435519083,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"da4c68fddba7eb1be7ae2b6a44c207a2",color:"#DAA520","display-name":"An1by",emotes:"","first-msg":"0",flags:"",id:"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7",mod:"0","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761435518511",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"I'll reply to that message",isAction:!1,emotes:[],msgId:"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7"},renderedText:"I'll reply to that message"}},replyFrom:{listener:"message",event:{service:"twitch",data:{time:1761435541811,tags:{"badge-info":"subscriber/21",badges:"broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1","client-nonce":"b59db94320a8a01942290c61f6a27480",color:"#DAA520","display-name":"An1by",emotes:"emotesv2_f54e2bcddf4948808b845e37dd4e08de:26-36","first-msg":"0",flags:"",id:"bc101ec7-5663-4ee5-9580-536ed9a5804e",mod:"0","reply-parent-display-name":"An1by","reply-parent-msg-body":"I'll\\sreply\\sto\\sthat\\smessage","reply-parent-msg-id":"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7","reply-parent-user-id":"958683839","reply-parent-user-login":"an1by","reply-thread-parent-display-name":"An1by","reply-thread-parent-msg-id":"794c103d-a5d5-4ce1-bcd8-98ac6717c8e7","reply-thread-parent-user-id":"958683839","reply-thread-parent-user-login":"an1by","returning-chatter":"0","room-id":"958683839",subscriber:"1","tmi-sent-ts":"1761435541217",turbo:"0","user-id":"958683839","user-type":""},nick:"an1by",userId:"958683839",displayName:"An1by",displayColor:"#DAA520",badges:[{type:"broadcaster",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3",description:"Broadcaster"},{type:"subscriber",version:"0",url:"https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3",description:"Subscriber"},{type:"minecraft-15th-anniversary-celebration",version:"1",url:"https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3",description:"Minecraft 15th Anniversary Celebration"}],channel:"an1by",text:"@An1by Replying right now akidaKrutoi",isAction:!1,emotes:[{type:"twitch",name:"akidaKrutoi",id:"emotesv2_f54e2bcddf4948808b845e37dd4e08de",gif:!1,urls:{1:"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0",2:"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0",4:"https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0"},start:26,end:36}],msgId:"bc101ec7-5663-4ee5-9580-536ed9a5804e"},renderedText:'@An1by Replying right now <img src="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0 4x" title="akidaKrutoi" class="emote">'}}},V="onEventReceived";function I(e){if(typeof window>"u")return;const t=e.startsWith("testMessage_")?e.replace("testMessage_",""):e,s=M[t];s&&window.dispatchEvent(new CustomEvent(V,{detail:s}))}function P(e){if(typeof window>"u")return;const t=e.startsWith("testAlert_")?e.replace("testAlert_",""):e,s=F[t];s&&window.dispatchEvent(new CustomEvent(V,{detail:s}))}function W(e){if(!e.startsWith("testMessage"))return null;const t=e.replace("testMessage","");return t.charAt(0).toLowerCase()+t.slice(1)}function _(e){if(!e.startsWith("testAlert"))return null;const t=e.replace("testAlert","");return t.charAt(0).toLowerCase()+t.slice(1)}var N=(e=>(e.BROADCASTER="broadcaster",e.LEAD_MODERATOR="lead_moderator",e.MODERATOR="moderator",e.VIP="vip",e.ARTIST="artist",e.FOUNDER="founder",e.SUBSCRIBER="subscriber",e.TURBO="turbo",e.DEFAULT="default",e))(N||{});const Y=({badges:e=[],tags:t={}})=>{const s=R=>!!e.find(A=>A.type===R),n=t.badges??"",a=t["user-type"]??"",c=n.includes("subscriber/1")||t.subscriber==="1"||s("subscriber"),r=n.includes("founder/1")||s("founder"),m=n.includes("broadcaster/1")||s("broadcaster"),u=t["first-msg"]==="1",p=t.turbo==="1",d=t.vip==="1"||n.includes("vip/1")||s("vip"),i=n.includes("lead_moderator/1")||s("lead_moderator"),l=(t.mod==="1"||n.includes("moderator/1")||a==="mod")&&!i||s("moderator"),C=l||i,T=n.includes("artist-badge/1")||s("artist-badge"),f=[];return m&&f.push("broadcaster"),i&&f.push("lead_moderator"),l&&f.push("moderator"),d&&f.push("vip"),T&&f.push("artist"),r&&f.push("founder"),c&&f.push("subscriber"),p&&f.push("turbo"),f.push("default"),{isSubscriber:c,isBroadcaster:m,isFirstMessageChatter:u,isFounder:r,isTurbo:p,isVip:d,isAnyModerator:C,isModerator:l,isLeadModerator:i,isArtist:T,roles:f,includesBadgeType:s,getSubscriberMonths:()=>{for(const R of["badge-info","badges"]){const A=t[R];if(A){const D=A.match(/^subscriber\/(\d+)$/);if(D)return parseInt(D[1],10)}}return 0},getBadgeUrlByType:R=>{var A;return(A=e.find(D=>D.type===R))==null?void 0:A.url}}};class O{constructor(t){B(this,"queue",[]);B(this,"isShowingAlert",!1);B(this,"onNextAlert");this.onNextAlert=t}push(t){this.queue.push(t)}processNextAlert(){if(this.queue.length===0||this.isShowingAlert)return;const t=this.queue.shift();t&&(this.isShowingAlert=!0,this.onNextAlert(this,t))}}function x(e,t,s=[]){const n=h.useRef(t);n.current=t,h.useEffect(()=>{const a=c=>n.current.call(window,c);return window.addEventListener(e,a),()=>window.removeEventListener(e,a)},[e,...s])}const J=e=>typeof e=="object"&&e!==null&&"listener"in e;function y(e){return t=>J(t)&&e(t)}const L=y(e=>e.listener==="message"),X=y(e=>e.listener==="follower-latest"),U=y(e=>e.listener==="subscriber-latest"),q=y(e=>e.listener==="cheer-latest"),z=y(e=>e.listener==="raid-latest"),$=y(e=>e.listener==="donation"),ee=y(e=>e.listener==="delete-message"),te=y(e=>e.listener==="delete-messages"),se=y(e=>{var t;return e.listener==="event"&&((t=e.event)==null?void 0:t.type)==="communityGiftPurchase"}),ae=y(e=>{var t;return e.listener==="event"&&((t=e.event)==null?void 0:t.type)==="subscriber"}),ne=y(e=>{var t;return e.listener==="event:test"&&((t=e.event)==null?void 0:t.listener)==="widget-button"});function v(e,t,s=[]){x("onEventReceived",n=>{e(n.detail)&&t(n)},s)}function re(e,t=[]){x("onEventReceived",e,t)}const H=(e,t)=>v(L,e,t),ie=H,oe=(e,t)=>v(ne,e,t),ce=(e,t)=>v(X,e,t),de=(e,t)=>v(se,e,t),pe=(e,t)=>v(U,e,t),me=(e,t)=>v(ae,e,t),le=(e,t)=>v(q,e,t),ue=(e,t)=>v(z,e,t),be=(e,t)=>v($,e,t),fe=(e,t)=>v(ee,e,t),ye=(e,t)=>v(te,e,t);function ve(e,t=[]){x("onWidgetLoad",e,t)}o.AlertQueue=O,o.TwitchUserMessageData=Y,o.UserRole=N,o.classifyEvent=K,o.getCacheKey=S,o.getTestAlertKey=_,o.getTestMessageKey=W,o.normalizeIncomingEvent=Z,o.parseTier=w,o.testAlert=P,o.testAlerts=F,o.testMessage=I,o.testMessages=M,o.testOnWidgetLoadDetail=j,o.useEventListener=x,o.useOnCheerReceived=le,o.useOnCommunityGiftPurchaseReceived=de,o.useOnDeleteMessage=fe,o.useOnDeleteMessages=ye,o.useOnDonationReceived=be,o.useOnEventReceived=re,o.useOnFollowerReceived=ce,o.useOnMessageReceived=ie,o.useOnRaidReceived=ue,o.useOnSubscriberLatestReceived=pe,o.useOnSubscriberReceived=me,o.useOnTwitchMessageReceived=H,o.useOnWidgetButtonReceived=oe,o.useOnWidgetLoad=ve,Object.defineProperty(o,Symbol.toStringTag,{value:"Module"})})(this.WmakeStreamelementsEventsReact=this.WmakeStreamelementsEventsReact||{},React);
2
- //# sourceMappingURL=index.iife.js.map
1
+ (function(e,t){Object.defineProperty(e,Symbol.toStringTag,{value:`Module`});function n(e){if(e==null)return{tier:0,tierText:``};let t=typeof e==`string`?e:String(e),n=parseInt(t,10);return Number.isNaN(n)?{tier:0,tierText:t}:{tier:n>=3e3?3:n>=2e3?2:+(n>=1e3),tierText:t}}function r(e){let t=e.listener,n=e.event??{},r=n.activityGroup,i=n.activityId??n._id;return r?String(r):i?String(i):t===`subscriber-latest`&&n.bulkGifted?`sl-bulk-`+(n.sender??``)+`-`+(n.amount??``)+`-`+(n.tier??``)+`-`+(n._id??``):`sl-${n._id??n.activityId??``}`}function i(e){let t=e.listener,r=e.event??{},i=r.data??r,a=n(i.tier??r.tier);if(t===`event`){if(r.type===`communityGiftPurchase`){let e=i.username&&String(i.username).toLowerCase()===`anonymous`||i.sender===`Anonymous`;return{type:e?`community-gift-anonymous`:`community-gift`,tier:a.tier,tierText:a.tierText,totalAmount:parseInt(String(i.amount),10)||1,recipients:[],sender:e?void 0:i.sender??i.displayName??i.username,anonymousDisplayName:e?i.displayName??`Anonymous`:void 0}}if(r.type===`subscriber`){let t=i.gifted===!0,n=i.sender,o=parseInt(String(i.amount),10)||1,s=i.username??i.displayName,c=r.activityGroup;if(n===`Anonymous`&&c)return{type:`community-gift-anonymous`,_role:`recipient`,activityGroup:c,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText};if(t&&n&&n!==`Anonymous`){if(!(i.communityGifted===!0||c!=null&&c!==``)){let e=String(i.message??``).indexOf(`first Gift Sub`)!==-1;return{type:`solo-sub-to-someone`,sender:n,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText,firstGiftInChannel:e}}return{type:`community-gift`,_role:`recipient`,activityGroup:c??``,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText}}return!t&&o>1?{type:`sub-renewal`,name:s??i.displayName,months:o,tier:a.tier,tierText:a.tierText}:!t&&o===1?{type:`self-sub`,name:s??i.displayName,tier:a.tier,tierText:a.tierText}:c?{type:`community-gift`,_role:`recipient`,activityGroup:c,recipient:s??i.displayName,tier:a.tier,tierText:a.tierText}:{type:`unknown`,detail:e}}return{type:`unknown`,detail:e}}if(t===`subscriber-latest`){let t=r.bulkGifted===!0,n=r.sender,i=r.name,o=parseInt(String(r.amount),10)||1,s=r.gifted===!0,c=r.isCommunityGift===!0||r.communityGifted===!0;if(t&&n===`Anonymous`)return{type:`community-gift-anonymous`,tier:a.tier,tierText:a.tierText,totalAmount:o,recipients:[]};if(t&&n)return{type:`community-gift`,sender:n,tier:a.tier,tierText:a.tierText,totalAmount:o,recipients:[]};if(s&&!c&&n){let e=String(r.message??``).indexOf(`first Gift Sub`)!==-1;return{type:`solo-sub-to-someone`,sender:n,recipient:i??``,tier:a.tier,tierText:a.tierText,firstGiftInChannel:e}}return!s&&o>1?{type:`sub-renewal`,name:i??``,months:o,tier:a.tier,tierText:a.tierText}:!s&&o===1&&(n==null||i===n)?{type:`self-sub`,name:i??``,tier:a.tier,tierText:a.tierText}:{type:`unknown`,detail:e}}if(t===`follower-latest`)return{type:`follow`,name:r.name??``};if(t===`cheer-latest`){let e=parseInt(String(r.amount),10)||0;return{type:`cheer`,name:r.name??``,amount:e}}if(t===`raid-latest`){let e=parseInt(String(r.amount),10)||0;return{type:`raid`,name:r.name??``,viewers:e}}if(t===`donation`){let t=e.event?.data;return{type:`donation`,amount:t?.amount_main??t?.amount??0,currency:t?.currency,username:t?.username,message:t?.message,billingSystem:t?.billing_system,id:t?.id}}return{type:`unknown`,detail:e}}var a=2500,o={},s={};function c(e,t){if(!e)return null;if(typeof e._has==`function`&&typeof e._set==`function`)return e;let n=e[t];return n&&typeof n._has==`function`?n:null}function l(e,t,n,r){let i=c(n,t.type);i?._has(e)||(i&&i._set(e,!0),r(t))}function u(e,t,n,r){let i=o[e];if(!i)return;delete o[e],s[e]&&(clearTimeout(s[e]),delete s[e]);let a=i.purchase,c=i.subscribers??[],u=i.type,d=i.tier,f=i.tierText,p=i.totalAmount??c.length,m=c.map(e=>e.recipient??e.username??e.name).filter(Boolean),h=c[0]?.sender,g=a?.sender??i.sender??h;u===`community-gift`&&r&&g===r||(u===`community-gift-anonymous`?l(e,{type:`community-gift-anonymous`,tier:d,tierText:f,totalAmount:p,recipients:m,anonymousDisplayName:a?.anonymousDisplayName},t,n):l(e,{type:`community-gift`,sender:g,tier:d,tierText:f,totalAmount:p,recipients:m},t,n))}function d(e,t,n){let l=t?.cacheSubs,d=t?.broadcasterLogin??``,f=i(e);if(!f){n(null);return}let p=c(l,f.type),m=r(e),h=e.event??{},g=h.data??h;if(f._role===`recipient`){let e=f,t=e.activityGroup??m;o[t]||(o[t]={type:e.type,subscribers:[],tier:e.tier,tierText:e.tierText,totalAmount:0}),s[t]&&clearTimeout(s[t]),s[t]=setTimeout(()=>{u(t,l,n,d)},a),o[t].subscribers.push({recipient:e.recipient,username:g.username,name:g.displayName,sender:g.sender}),o[t].totalAmount===0&&(o[t].totalAmount=1);return}if(f.type===`community-gift-anonymous`||f.type===`community-gift`){if(e.listener===`event`&&h.type===`communityGiftPurchase`){let e=h.activityGroup??g?.activityGroup??m,t=f;o[e]?(o[e].purchase=t,o[e].tier=t.tier,o[e].tierText=t.tierText,o[e].totalAmount=t.totalAmount??o[e].totalAmount,o[e].sender=t.sender,s[e]&&clearTimeout(s[e]),s[e]=setTimeout(()=>{u(e,l,n,d)},a)):(o[e]={type:t.type,purchase:t,subscribers:[],tier:t.tier,tierText:t.tierText,totalAmount:Number(t.totalAmount)||0,sender:t.sender},s[e]=setTimeout(()=>{u(e,l,n,d)},a));return}if(e.listener===`subscriber-latest`){let e=f;if(f.type===`community-gift`&&d&&e.sender===d){n(null);return}return}return}if(f.type===`self-sub`||f.type===`solo-sub-to-someone`||f.type===`sub-renewal`){if(p?._has(m)){n(null);return}p&&p._set(m,!0);let e=f;if(f.type===`solo-sub-to-someone`&&d&&e.sender===d){n(null);return}n(f)}}var f={session:{data:{"follower-latest":{name:`imacanadiannn`},"follower-session":{count:0},"follower-week":{count:0},"follower-month":{count:0},"follower-goal":{amount:137},"follower-total":{count:118,activityId:``,sessionTop:!1},"subscriber-latest":{name:``,amount:0,tier:``,message:``},"subscriber-new-latest":{name:``,amount:0,message:``},"subscriber-resub-latest":{name:``,amount:0,message:``},"subscriber-gifted-latest":{name:``,amount:0,message:``,tier:``,sender:``},"subscriber-session":{count:0},"subscriber-new-session":{count:0},"subscriber-resub-session":{count:0},"subscriber-gifted-session":{count:0},"subscriber-week":{count:0},"subscriber-month":{count:0},"subscriber-goal":{amount:0},"subscriber-total":{count:0,activityId:``,sessionTop:!1},"subscriber-points":{amount:0,activityId:``,sessionTop:!1},"subscriber-alltime-gifter":{name:``,amount:0},"host-latest":{name:``,amount:0},"raid-latest":{name:`agnascor2`,amount:6},"cheer-session":{amount:0},"cheer-week":{amount:0},"cheer-month":{amount:0},"cheer-total":{amount:0},"cheer-count":{count:0},"cheer-goal":{amount:0},"cheer-latest":{name:``,amount:0},"cheer-session-top-donation":{amount:0,name:``},"cheer-weekly-top-donation":{amount:0,name:``},"cheer-monthly-top-donation":{amount:0,name:``},"cheer-alltime-top-donation":{amount:0,name:``},"cheer-session-top-donator":{amount:0,name:``},"cheer-weekly-top-donator":{amount:0,name:``},"cheer-monthly-top-donator":{amount:0,name:``},"cheer-alltime-top-donator":{amount:0,name:``},"tip-latest":{name:``,amount:0},"tip-session-top-donation":{amount:0,name:``},"tip-weekly-top-donation":{name:``,amount:0},"tip-monthly-top-donation":{name:``,amount:0},"tip-alltime-top-donation":{name:``,amount:0},"tip-session-top-donator":{amount:0,name:``},"tip-weekly-top-donator":{name:``,amount:0},"tip-monthly-top-donator":{name:``,amount:0},"tip-alltime-top-donator":{name:``,amount:0},"tip-session":{amount:0},"tip-week":{amount:0},"tip-month":{amount:0},"tip-total":{amount:0},"tip-count":{count:0},"tip-goal":{amount:0},"merch-goal-orders":{amount:0},"merch-goal-items":{amount:0},"merch-goal-total":{amount:0},"merch-latest":{name:``,amount:0,items:[]},"charityCampaignDonation-latest":{name:``,amount:0},"charityCampaignDonation-weekly-top-donation":{name:``,amount:0},"charityCampaignDonation-monthly-top-donation":{name:``,amount:0},"charityCampaignDonation-alltime-top-donation":{name:``,amount:0},"charityCampaignDonation-weekly-top-donator":{name:``,amount:0},"charityCampaignDonation-monthly-top-donator":{name:``,amount:0},"charityCampaignDonation-alltime-top-donator":{name:``,amount:0},"cheerPurchase-latest":{name:``,amount:0},"cheerPurchase-weekly-top-donation":{name:``,amount:0},"cheerPurchase-monthly-top-donation":{name:``,amount:0},"cheerPurchase-alltime-top-donation":{name:``,amount:0},"cheerPurchase-weekly-top-donator":{name:``,amount:0},"cheerPurchase-monthly-top-donator":{name:``,amount:0},"cheerPurchase-alltime-top-donator":{name:``,amount:0},"superchat-latest":{name:``,amount:0},"superchat-weekly-top-donation":{name:``,amount:0},"superchat-monthly-top-donation":{name:``,amount:0},"superchat-alltime-top-donation":{name:``,amount:0},"superchat-weekly-top-donator":{name:``,amount:0},"superchat-monthly-top-donator":{name:``,amount:0},"superchat-alltime-top-donator":{name:``,amount:0},"superchat-session":{amount:0},"superchat-week":{amount:0},"superchat-month":{amount:0},"superchat-total":{amount:0},"superchat-count":{count:0},"superchat-goal":{amount:0},"purchase-latest":{name:``,amount:0,avatar:``,message:``,items:[]},"follower-recent":[{name:`imacanadiannn`,createdAt:`2026-01-13T01:53:50.296Z`,type:`follower`},{name:`piwo143`,createdAt:`2026-01-13T01:51:39.472Z`,type:`follower`},{name:`latvan_`,createdAt:`2026-01-12T23:54:29.235Z`,type:`follower`},{name:`wheinwait`,createdAt:`2026-01-12T23:11:28.946Z`,type:`follower`},{name:`agnascor2`,createdAt:`2026-01-12T23:11:14.880Z`,type:`follower`},{name:`sunlitetuts`,createdAt:`2026-01-12T21:03:59.207Z`,type:`follower`},{name:`ayanamya`,createdAt:`2026-01-12T20:00:55.509Z`,type:`follower`},{name:`hopeless28`,createdAt:`2026-01-12T18:35:21.731Z`,type:`follower`},{name:`kakoytoclown`,createdAt:`2026-01-11T18:39:36.843Z`,type:`follower`},{name:`dababe__jq1`,createdAt:`2024-10-10T23:27:49.699Z`,type:`follower`},{name:`jjjllkmf`,createdAt:`2024-05-05T09:44:16.287Z`,type:`follower`},{name:`d4c_valintine`,createdAt:`2024-05-03T15:13:28.365Z`,type:`follower`},{name:`angelbliss_`,createdAt:`2024-04-30T20:07:23.132Z`,type:`follower`},{name:`o1zich`,createdAt:`2024-04-22T16:23:26.139Z`,type:`follower`},{name:`nearbuziky`,createdAt:`2024-04-19T19:21:27.569Z`,type:`follower`},{name:`samirkasamsa`,createdAt:`2024-04-19T17:06:38.963Z`,type:`follower`},{name:`flip1mip`,createdAt:`2024-04-19T17:06:18.276Z`,type:`follower`},{name:`valerie_solo`,createdAt:`2024-04-19T17:06:07.473Z`,type:`follower`},{name:`sxaelence`,createdAt:`2024-04-19T07:06:46.330Z`,type:`follower`},{name:`avokadik99`,createdAt:`2024-04-17T16:11:29.604Z`,type:`follower`},{name:`blackvoronstream`,createdAt:`2024-04-16T21:29:33.306Z`,type:`follower`},{name:`baldejniyy`,createdAt:`2024-04-16T21:29:09.647Z`,type:`follower`},{name:`p3ch4n_ka`,createdAt:`2024-04-16T16:37:31.841Z`,type:`follower`},{name:`kakosik_bee`,createdAt:`2024-04-16T15:56:27.435Z`,type:`follower`},{name:`hikotoru`,createdAt:`2024-04-16T15:13:25.226Z`,type:`follower`}],"subscriber-recent":[],"host-recent":[],"raid-recent":[{name:`agnascor2`,amount:6,createdAt:`2026-01-12T23:08:21.815Z`,type:`raid`},{name:`justduckomgg`,amount:7,createdAt:`2024-04-19T17:05:53.185Z`,type:`raid`},{name:`veessmk`,amount:6,createdAt:`2024-04-17T15:40:43.945Z`,type:`raid`},{name:`night_sculptor`,amount:12,createdAt:`2024-04-16T18:07:40.040Z`,type:`raid`},{name:`pixiemays`,amount:6,createdAt:`2024-04-16T16:37:24.433Z`,type:`raid`},{name:`night_sculptor`,amount:8,createdAt:`2024-04-14T18:31:20.049Z`,type:`raid`},{name:`pixiemays`,amount:19,createdAt:`2024-04-14T13:22:05.794Z`,type:`raid`},{name:`pixiemays`,amount:15,createdAt:`2024-04-12T17:03:36.115Z`,type:`raid`},{name:`alechkavt`,amount:9,createdAt:`2024-04-11T17:54:47.691Z`,type:`raid`},{name:`pixiemays`,amount:8,createdAt:`2024-04-11T14:10:49.548Z`,type:`raid`},{name:`night_sculptor`,amount:22,createdAt:`2024-04-09T16:13:41.195Z`,type:`raid`},{name:`pixiemays`,amount:5,createdAt:`2024-04-08T09:54:01.603Z`,type:`raid`},{name:`aki_neki`,amount:5,createdAt:`2024-04-07T21:52:45.919Z`,type:`raid`},{name:`alechkavt`,amount:11,createdAt:`2024-04-07T18:59:39.286Z`,type:`raid`},{name:`veessmk`,amount:15,createdAt:`2024-04-07T16:13:25.172Z`,type:`raid`},{name:`veessmk`,amount:10,createdAt:`2024-03-17T16:11:38.631Z`,type:`raid`}],"charityCampaignDonation-recent":[],"cheer-recent":[],"cheerPurchase-recent":[],"superchat-recent":[],"tip-recent":[],"merch-recent":[],"channel-points-latest":{amount:0,message:``,name:``,redemption:``},"community-gift-latest":{amount:0,name:``,tier:``},"charityCampaignDonation-session-top-donation":{amount:0,name:``},"charityCampaignDonation-session-top-donator":{amount:0,name:``},"cheerPurchase-session-top-donation":{amount:0,name:``},"cheerPurchase-session-top-donator":{amount:0,name:``},"hypetrain-latest":{active:0,amount:0,level:0,levelChanged:0,name:``,type:``},"hypetrain-latest-top-contributors":[],"hypetrain-level-goal":{amount:0},"hypetrain-level-progress":{amount:0,percent:0},"hypetrain-total":{amount:0},"superchat-session-top-donation":{amount:0,name:``},"superchat-session-top-donator":{amount:0,name:``}},settings:{autoReset:!0,calendar:!1,resetOnStart:!1}},recents:[{name:`imacanadiannn`,createdAt:`2026-01-13T01:53:50.296Z`,type:`follower`},{name:`piwo143`,createdAt:`2026-01-13T01:51:39.472Z`,type:`follower`},{name:`latvan_`,createdAt:`2026-01-12T23:54:29.235Z`,type:`follower`},{name:`wheinwait`,createdAt:`2026-01-12T23:11:28.946Z`,type:`follower`},{name:`agnascor2`,createdAt:`2026-01-12T23:11:14.880Z`,type:`follower`},{name:`sunlitetuts`,createdAt:`2026-01-12T21:03:59.207Z`,type:`follower`},{name:`ayanamya`,createdAt:`2026-01-12T20:00:55.509Z`,type:`follower`},{name:`hopeless28`,createdAt:`2026-01-12T18:35:21.731Z`,type:`follower`},{name:`kakoytoclown`,createdAt:`2026-01-11T18:39:36.843Z`,type:`follower`},{name:`dababe__jq1`,createdAt:`2024-10-10T23:27:49.699Z`,type:`follower`},{name:`jjjllkmf`,createdAt:`2024-05-05T09:44:16.287Z`,type:`follower`},{name:`d4c_valintine`,createdAt:`2024-05-03T15:13:28.365Z`,type:`follower`},{name:`angelbliss_`,createdAt:`2024-04-30T20:07:23.132Z`,type:`follower`},{name:`o1zich`,createdAt:`2024-04-22T16:23:26.139Z`,type:`follower`},{name:`nearbuziky`,createdAt:`2024-04-19T19:21:27.569Z`,type:`follower`},{name:`samirkasamsa`,createdAt:`2024-04-19T17:06:38.963Z`,type:`follower`},{name:`flip1mip`,createdAt:`2024-04-19T17:06:18.276Z`,type:`follower`},{name:`valerie_solo`,createdAt:`2024-04-19T17:06:07.473Z`,type:`follower`},{name:`sxaelence`,createdAt:`2024-04-19T07:06:46.330Z`,type:`follower`},{name:`avokadik99`,createdAt:`2024-04-17T16:11:29.604Z`,type:`follower`},{name:`blackvoronstream`,createdAt:`2024-04-16T21:29:33.306Z`,type:`follower`},{name:`baldejniyy`,createdAt:`2024-04-16T21:29:09.647Z`,type:`follower`},{name:`p3ch4n_ka`,createdAt:`2024-04-16T16:37:31.841Z`,type:`follower`},{name:`kakosik_bee`,createdAt:`2024-04-16T15:56:27.435Z`,type:`follower`},{name:`hikotoru`,createdAt:`2024-04-16T15:13:25.226Z`,type:`follower`},{name:`agnascor2`,amount:6,createdAt:`2026-01-12T23:08:21.815Z`,type:`raid`},{name:`justduckomgg`,amount:7,createdAt:`2024-04-19T17:05:53.185Z`,type:`raid`},{name:`veessmk`,amount:6,createdAt:`2024-04-17T15:40:43.945Z`,type:`raid`},{name:`night_sculptor`,amount:12,createdAt:`2024-04-16T18:07:40.040Z`,type:`raid`},{name:`pixiemays`,amount:6,createdAt:`2024-04-16T16:37:24.433Z`,type:`raid`},{name:`night_sculptor`,amount:8,createdAt:`2024-04-14T18:31:20.049Z`,type:`raid`},{name:`pixiemays`,amount:19,createdAt:`2024-04-14T13:22:05.794Z`,type:`raid`},{name:`pixiemays`,amount:15,createdAt:`2024-04-12T17:03:36.115Z`,type:`raid`},{name:`alechkavt`,amount:9,createdAt:`2024-04-11T17:54:47.691Z`,type:`raid`},{name:`pixiemays`,amount:8,createdAt:`2024-04-11T14:10:49.548Z`,type:`raid`},{name:`night_sculptor`,amount:22,createdAt:`2024-04-09T16:13:41.195Z`,type:`raid`},{name:`pixiemays`,amount:5,createdAt:`2024-04-08T09:54:01.603Z`,type:`raid`},{name:`aki_neki`,amount:5,createdAt:`2024-04-07T21:52:45.919Z`,type:`raid`},{name:`alechkavt`,amount:11,createdAt:`2024-04-07T18:59:39.286Z`,type:`raid`},{name:`veessmk`,amount:15,createdAt:`2024-04-07T16:13:25.172Z`,type:`raid`},{name:`veessmk`,amount:10,createdAt:`2024-03-17T16:11:38.631Z`,type:`raid`}],currency:{code:`USD`,name:`U.S. Dollar`,symbol:`$`},channel:{username:`encry_s`,apiToken:`HAHANOTNOW`,id:`65ba7503dc0415cb368947b1`,providerId:`485678132`,avatar:`https://static-cdn.jtvnw.net/jtv_user_pictures/6fe93724-803a-4e5a-b58a-1d42fbc84661-profile_image-300x300.jpeg`},fieldData:{testMessageButton:`zaytri_dynamicchatbubbles`,previewMode:!1,previewType:`random`,previewMessage:``,theme:`animal-crossing`,corner:`round`,darkMode:!1,highlightStyle:`normal`,actionStyle:`italics`,maxWidth:400,maxHeight:300,fixedWidth:!1,positionMode:`list`,listDirection:`bottom`,listAlignment:`center`,topEdge:!0,bottomEdge:!0,leftEdge:!0,rightEdge:!0,edgeDeviation:0,padding:30,animation:`dynamic`,dynamicModifier:1.75,maxMessages:25,hideOutOfBounds:!0,lifetime:0,delay:1,googleFont:`Nunito`,customFont:``,fontSize:18,fontWeight:`bold`,textDirection:`ltr`,useCustomBorderColors:!0,borderColor:`#fed400`,nameColor:`#000000`,useCustomMessageColors:!0,backgroundColor:`#fff3c0`,textColor:`#000000`,pronounsMode:`suffix`,pronounsLowercase:!0,pronounsBadgeCustomColors:!1,pronounsBadgeBackgroundColor:`#000000`,pronounsBadgeBorderColor:`#FFFFFF`,pronounsBadgeTextColor:`#FFFFFF`,showBadges:!0,largeEmotes:!0,ffzGlobal:!1,bttvGlobal:!1,emoteOnly:!1,highlightOnly:!1,allowedStrings:[],minMessages:0,messageCooldown:0,raidCooldown:0,raidMin:0,includeEveryone:!0,includeFollowers:`true`,minFollowTime:1,includeSubs:!0,includeVIPs:!0,includeMods:!0,allowUserList:[],ignoreUserList:[`StreamElements`,`Streamlabs`,`Nightbot`,`Sery_Bot`],ignorePrefixList:[`!`],volume:50,soundGroup1:[],userLevelSoundGroup1:`everyone`,specificUsersSoundGroup1:[],messageTypeSoundGroup1:`all`,soundGroup2:[],userLevelSoundGroup2:`everyone`,specificUsersSoundGroup2:[],messageTypeSoundGroup2:`all`,soundGroup3:[],userLevelSoundGroup3:`everyone`,specificUsersSoundGroup3:[],messageTypeSoundGroup3:`all`,soundGroup4:[],userLevelSoundGroup4:`everyone`,specificUsersSoundGroup4:[],messageTypeSoundGroup4:`all`,soundGroup5:[],userLevelSoundGroup5:`everyone`,specificUsersSoundGroup5:[],messageTypeSoundGroup5:`all`,soundGroup6:[],userLevelSoundGroup6:`everyone`,specificUsersSoundGroup6:[],messageTypeSoundGroup6:`all`,soundGroup7:[],userLevelSoundGroup7:`everyone`,specificUsersSoundGroup7:[],messageTypeSoundGroup7:`all`,soundGroup8:[],userLevelSoundGroup8:`everyone`,specificUsersSoundGroup8:[],messageTypeSoundGroup8:`all`,soundGroup9:[],userLevelSoundGroup9:`everyone`,specificUsersSoundGroup9:[],messageTypeSoundGroup9:`all`,soundGroup10:[],userLevelSoundGroup10:`everyone`,specificUsersSoundGroup10:[],messageTypeSoundGroup10:`all`,widgetName:`Chat Bubbles`,widgetAuthor:`Zaytri`,widgetVersion:`2.12.0`,widgetUpdateUrl:`https://github.com/zaytri/stream-elements-widgets/blob/main/DynamicChatBubbles`,ignoreFirst:!0},overlay:{isEditorMode:!0,muted:!1}},p={follower:{listener:`follower-latest`,event:{name:`An1by`}},communityGiftAnonymous:{listener:`event`,event:{type:`communityGiftPurchase`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,activityGroup:`41a50a915794e4ae7cf5e600fd3445d4`,data:{amount:2,username:`anonymous`,displayName:`AnAnonymousGifter`,tier:`2000`,sender:`Anonymous`},_id:`699868d7df734989ec85d393`,activityId:`699868d7df734989ec85d393`}},communityGift:{listener:`event`,event:{type:`communityGiftPurchase`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,activityGroup:`841592c0bccbf3e1e7de71e1c8f4d9f0`,data:{amount:1,username:`rishamon`,displayName:`rishamon`,tier:`1000`,sender:`rishamon`},_id:`699867c7fef23197a6a089f5`,activityId:`699867c7fef23197a6a089f5`}},sub:{listener:`subscriber-latest`,event:{name:`An1by`,amount:1}},selfSub:{listener:`event`,event:{type:`subscriber`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,data:{amount:1,username:`rishamon`,displayName:`rishamon`,tier:`1000`},_id:`6998676317aed69e62b8f283`,activityId:`6998676317aed69e62b8f283`}},soloSubToSomeone:{listener:`event`,event:{type:`subscriber`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,data:{amount:1,username:`encry_s`,displayName:`encry_s`,message:`rishamon gifted a Tier 1 sub to encry_s! This is their first Gift Sub in the channel!`,tier:`1000`,sender:`rishamon`,gifted:!0},_id:`699866e82d9cd9a70854baf2`,activityId:`699866e82d9cd9a70854baf2`}},subRenewal:{listener:`event`,event:{type:`subscriber`,provider:`twitch`,channel:`663b10ba6cd449c4162a2230`,data:{amount:8,username:`silgestian`,displayName:`SilgeStian`,tier:`1000`},_id:`69986dfaf25724ff4162bd1a`,activityId:`69986dfaf25724ff4162bd1a`}},bits:{listener:`cheer-latest`,event:{name:`An1by`,amount:30}},raid:{listener:`raid-latest`,event:{name:`An1by`,amount:50}},donationShortText:{listener:`donation`,event:{data:{alert_type:`1`,currency:`RUB`,billing_system:`CARD`,id:5,amount_main:500,amount:500,username:`An1by`,message:`Simple message text`}}},donationLongText:{listener:`donation`,event:{data:{alert_type:`1`,currency:`RUB`,billing_system:`CARD`,id:5,amount_main:500,amount:500,username:`An1by`,message:`A plain gray stone lay on the shore, basking in the sun's warmth. A shove broke its peace—a thoughtless toss sent it flying. The stone splashed into water. Ripples spread, yet none noticed. It sank to the bottom, heavy with loneliness. "Didn't I deserve to stay where I was happy still?" it wondered.`}}},donation:{listener:`donation`,event:{data:{alert_type:`1`,currency:`RUB`,billing_system:`CARD`,id:5,amount_main:500,amount:500,username:`An1by`,message:``}}}},m={zeroWidthEmotesInRow:{listener:`message`,event:{service:`twitch`,data:{time:1768317417111,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`f70c4cd8b6034d1f805298246ee1bc35`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`5f752ae3-4be9-4f93-82d1-d78575ba07fd`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768317416862`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`Censored Censored Censored emotes in row`,isAction:!1,emotes:[{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:0,end:8},{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:9,end:17},{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:18,end:26}],msgId:`5f752ae3-4be9-4f93-82d1-d78575ba07fd`},renderedText:`<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emotes in row`}},zeroWidthEmoteInMiddle:{listener:`message`,event:{service:`twitch`,data:{time:1768317383248,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`847f9c27722340d090eddcb0d0662b5b`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3dea1e1e-89f7-4a5f-b743-13ba0386492f`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768317382987`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`text and Censored emote`,isAction:!1,emotes:[{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:9,end:17}],msgId:`3dea1e1e-89f7-4a5f-b743-13ba0386492f`},renderedText:`text and <img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">emote`}},zeroWidthEmoteFirst:{listener:`message`,event:{service:`twitch`,data:{time:1768317236883,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`e9d0621827184c1b940fd700ae599d60`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`6f347337-354a-42e5-bab0-935e19d74152`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768317236625`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`Censored <- zeroWidth emote on the first place`,isAction:!1,emotes:[{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:0,end:8}],msgId:`6f347337-354a-42e5-bab0-935e19d74152`},renderedText:`<img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">&lt;- zeroWidth emote on the first place`}},veryShort:{listener:`message`,event:{service:`twitch`,data:{time:1749743750546,tags:{"badge-info":``,badges:``,"client-nonce":`a3fe71a5771d0c31466dd333c963231e`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3d0d1a43-45e5-4652-be59-0b31dfeba796`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743749437`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`IHaveVeryBigNickname`,userId:`958683839`,displayName:`IHaveVeryBigNickname`,displayColor:``,badges:[],channel:`IHaveVeryBigNickname`,text:`A!`,isAction:!1,emotes:[],msgId:`3d0d1a43-45e5-4652-be59-0b31dfeba796`},renderedText:`A!`}},viewer:{listener:`message`,event:{service:`twitch`,data:{time:1749743750546,tags:{"badge-info":``,badges:``,"client-nonce":`a3fe71a5771d0c31466dd333c963231e`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3d0d1a43-45e5-4652-be59-0b31dfeba796`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743749437`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`SimpleViewer`,userId:`958683839`,displayName:`SimpleViewer`,displayColor:``,badges:[],channel:`SimpleViewer`,text:`I finally finished it...`,isAction:!1,emotes:[],msgId:`3d0d1a43-45e5-4652-be59-0b31dfeba796`},renderedText:`I finally finished it...`}},vip:{listener:`message`,event:{service:`twitch`,data:{time:1749743844261,tags:{"badge-info":``,badges:`vip/1`,"client-nonce":`fd72ba163a9cc1a6486b2eddb0f5d893`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`51cac44b-9908-49d2-b424-489276e1e521`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743843170`,turbo:`0`,"user-id":`958683839`,"user-type":``,vip:`1`},nick:`VipPersona`,userId:`958683839`,displayName:`VipPersona`,displayColor:``,badges:[{type:`vip`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3`,description:`VIP`}],channel:`VipPersona`,text:`I am a VIP persona!`,isAction:!1,emotes:[],msgId:`51cac44b-9908-49d2-b424-489276e1e521`},renderedText:`I am a VIP persona!`}},vipLong:{listener:`message`,event:{service:`twitch`,data:{time:1749743844261,tags:{"badge-info":``,badges:`vip/1`,"client-nonce":`fd72ba163a9cc1a6486b2eddb0f5d893`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`51cac44b-9908-49d2-b424-489276e1e521`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743843170`,turbo:`0`,"user-id":`958683839`,"user-type":``,vip:`1`},nick:`VipPersona`,userId:`958683839`,displayName:`VipPersona`,displayColor:``,badges:[{type:`vip`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/b817aba4-fad8-49e2-b88a-7cc744dfa6ec/3`,description:`VIP`}],channel:`VipPersona`,text:`I am a VIP persona! Are you see this?`,isAction:!1,emotes:[],msgId:`51cac44b-9908-49d2-b424-489276e1e521`},renderedText:`I am a VIP persona! Are you see this?`}},artist:{listener:`message`,event:{service:`twitch`,data:{time:1749743916482,tags:{"badge-info":``,badges:`artist-badge/1`,"client-nonce":`54128d734d44e28ffc32e1ce236993f5`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`8ee7e71a-3608-486a-bd82-a82b65982ca7`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743915371`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`StarArtist`,userId:`958683839`,displayName:`StarArtist`,displayColor:``,badges:[{type:`artist-badge`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/4300a897-03dc-4e83-8c0e-c332fee7057f/3`,description:`Artist`}],channel:`StarArtist`,text:`Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`,isAction:!1,emotes:[],msgId:`8ee7e71a-3608-486a-bd82-a82b65982ca7`},renderedText:`Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.`}},subscriber:{listener:`message`,event:{data:{tags:{badges:`subscriber/1`,color:`#ff69b4`,vip:`0`,subscriber:`1`,"user-id":`100135110`,"user-type":`subscriber`},nick:`YourSub`,userId:`100135110`,displayName:`YourSub`,displayColor:`#ff69b4`,badges:[{type:`partner`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/d12a2e27-16f6-41d0-ab77-b780518f00a3/3`,description:`Verified`}],text:`This is a subscriber's test message. I'm just a subscriber, srsly.`,emotes:[],msgId:`43285909-412c-4eee-b80d-89f1482ba53142`},renderedText:`This is a subscriber's test message. I'm just a subscriber, srsly.`}},founder:{listener:`message`,event:{service:`twitch`,data:{time:1749743750546,tags:{"badge-info":``,badges:`founder/1,subscriber/1`,"client-nonce":`a3fe71a5771d0c31466dd333c963231e`,color:``,"display-name":`sub__founder`,emotes:``,"first-msg":`0`,flags:``,id:`3d0d1a43-45e5-4652-be59-0b31dfeba796`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1749743749437`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`sub__founder`,userId:`958683839`,displayName:`sub__founder`,displayColor:``,badges:[{type:`founder`}],channel:`an1by`,text:`I finally finished it...`,isAction:!1,emotes:[],msgId:`3d0d1a43-45e5-4652-be59-0b31dfeba796`},renderedText:`I finally finished it...`}},moderator:{listener:`message`,event:{service:`twitch`,data:{time:1749743997223,tags:{"badge-info":``,badges:`moderator/1`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`,mod:`1`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743996136`,turbo:`0`,"user-id":`958683839`,"user-type":`mod`},nick:`mediator`,userId:`958683839`,displayName:`mediator`,displayColor:``,badges:[{type:`moderator`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3`,description:`Moderator`}],channel:`mediator`,text:`Did someone say... MODERATOR!?`,isAction:!1,emotes:[],msgId:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`},renderedText:`Did someone say... MODERATOR!?`}},moderatorLong:{listener:`message`,event:{service:`twitch`,data:{time:1749743997223,tags:{"badge-info":``,badges:`moderator/1`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`,mod:`1`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749743996136`,turbo:`0`,"user-id":`958683839`,"user-type":`mod`},nick:`mediator`,userId:`958683839`,displayName:`mediator`,displayColor:``,badges:[{type:`moderator`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/3267646d-33f0-4b17-b3df-f923a41db1d0/3`,description:`Moderator`}],channel:`mediator`,text:`Did someone say... MODERATOR!? Yes, I am moderator!`,isAction:!1,emotes:[],msgId:`3e7ba532-f181-4bcc-90f1-a3c48ca3c820`},renderedText:`Did someone say... MODERATOR!? Yes, I am moderator!`}},broadcaster:{listener:`message`,event:{service:`twitch`,data:{time:1749744800809,tags:{"badge-info":`subscriber/16`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`6989104421ee14c0a8c216ef1c6bb5ed`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1749744799706`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`I made this chat Besplatno`,isAction:!1,emotes:[{type:`7tv`,name:`Besplatno`,id:`01FE70VRT00009TR6M9N941A28`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp`,2:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp`,3:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/3x.webp`,4:`https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp`},start:17,end:26}],msgId:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`},renderedText:`I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">`}},broadcasterShort:{listener:`message`,event:{service:`twitch`,data:{time:1749744800809,tags:{"badge-info":`subscriber/16`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`6989104421ee14c0a8c216ef1c6bb5ed`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1749744799706`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`okak`,isAction:!1,emotes:[],msgId:`35a9bea7-076e-4d17-8cb7-7e65c8111b3d`},renderedText:`I made this chat <img src="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp" srcset="https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/1x.webp 1x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/2x.webp 2x, https://cdn.7tv.app/emote/01FE70VRT00009TR6M9N941A28/4x.webp 4x" title="Besplatno" class="emote">`}},emoteSolo:{listener:`message`,event:{service:`twitch`,data:{time:1749744097330,tags:{"badge-info":``,badges:``,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`9ab645b9-7c27-4c6f-99fd-f63727ca3700`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744096217`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`tr0l1`,userId:`958683839`,displayName:`tr0l1`,displayColor:``,badges:[],channel:`tr0l1`,text:`🤤😮💀👈👉`,isAction:!1,emotes:[{type:`emoji`,name:`1f62e`,id:`1f62e`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f62e.png`}},{type:`emoji`,name:`1f480`,id:`1f480`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f480.png`}},{type:`emoji`,name:`1f448`,id:`1f448`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f448.png`}},{type:`emoji`,name:`1f449`,id:`1f449`,gif:!1,urls:{1:`https://twemoji.maxcdn.com/36x36/1f449.png`}}],msgId:`9ab645b9-7c27-4c6f-99fd-f63727ca3700`},renderedText:`🤤😮💀👈👉`}},emoteOne:{listener:`message`,event:{service:`twitch`,data:{time:1749744131183,tags:{"badge-info":``,badges:``,color:``,"display-name":`An1by`,emotes:`41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18`,"first-msg":`0`,flags:``,id:`beb957ea-dfbd-4184-82a3-458121f44867`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744130018`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`tr0l1`,userId:`958683839`,displayName:`tr0l1`,displayColor:``,badges:[],channel:`tr0l1`,text:`SeemsGood`,isAction:!1,emotes:[{type:`twitch`,name:`SeemsGood`,id:`64138`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0`},start:0,end:9}],msgId:`beb957ea-dfbd-4184-82a3-458121f44867`},renderedText:`<img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote">`}},emoteText:{listener:`message`,event:{service:`twitch`,data:{time:1749744131183,tags:{"badge-info":``,badges:``,color:``,"display-name":`7TVUser`,emotes:`41:20-27/245:29-43/28087:45-51/58765:53-63/555555584:65-66/64138:10-18`,"first-msg":`0`,flags:``,id:`beb957ea-dfbd-4184-82a3-458121f44867`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744130018`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`7TVUser`,userId:`958683839`,displayName:`7TVUser`,displayColor:``,badges:[],channel:`7TVUser`,text:`Not emote SeemsGood Kreygasm ResidentSleeper WutFace NotLikeThis <3`,isAction:!1,emotes:[{type:`twitch`,name:`SeemsGood`,id:`64138`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0`},start:10,end:19},{type:`twitch`,name:`Kreygasm`,id:`41`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0`},start:20,end:28},{type:`twitch`,name:`ResidentSleeper`,id:`245`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0`},start:29,end:44},{type:`twitch`,name:`WutFace`,id:`28087`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0`},start:45,end:52},{type:`twitch`,name:`NotLikeThis`,id:`58765`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0`},start:53,end:64},{type:`twitch`,name:`<3`,id:`9`,gif:!1,animated:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0`},start:65,end:67}],msgId:`beb957ea-dfbd-4184-82a3-458121f44867`},renderedText:`Not emote <img src="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/64138/static/dark/3.0 4x" title="SeemsGood" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/41/static/dark/3.0 4x" title="Kreygasm" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/245/static/dark/3.0 4x" title="ResidentSleeper" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/28087/static/dark/3.0 4x" title="WutFace" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/58765/static/dark/3.0 4x" title="NotLikeThis" class="emote"><img src="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/9/static/dark/3.0 4x" title="<3" class="emote">`}},zeroWidthEmotes:{listener:`message`,event:{service:`twitch`,data:{time:1759956619137,tags:{"badge-info":`subscriber/20`,badges:``,"client-nonce":`f7b17aea5c07c5c08fd920278fb52b5a`,color:`#DAA520`,"display-name":`7TVUser`,emotes:``,"first-msg":`0`,flags:``,id:`b44d1c53-1de9-454c-a269-bd8849cbcd2d`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1759956618295`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`7TVUser`,userId:`958683839`,displayName:`7TVUser`,displayColor:`#DAA520`,badges:[{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`7TVUser`,text:`Zero-width emotes AYAYA PETPET right there!!`,isAction:!1,emotes:[{type:`7tv`,name:`AYAYA`,id:`01GB32XE6R00018VJGJ4A9BNCV`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp`,2:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp`,3:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/3x.webp`,4:`https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp`},start:18,end:23},{type:`7tv`,name:`PETPET`,id:`01FE3XY508000AA32JP519W2EW`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp`,2:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp`,3:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/3x.webp`,4:`https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp`},start:24,end:30}],msgId:`b44d1c53-1de9-454c-a269-bd8849cbcd2d`},renderedText:`Zero-width emotes <img src="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp" srcset="https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/1x.webp 1x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/2x.webp 2x, https://cdn.7tv.app/emote/01GB32XE6R00018VJGJ4A9BNCV/4x.webp 4x" title="AYAYA" class="emote"><img src="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp" srcset="https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/1x.webp 1x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/2x.webp 2x, https://cdn.7tv.app/emote/01FE3XY508000AA32JP519W2EW/4x.webp 4x" title="PETPET" class="emote">right there!!`}},sevenTv:{listener:`message`,event:{service:`twitch`,data:{time:1749744413746,tags:{"badge-info":``,badges:``,"client-nonce":`2bd56e3c058b5a4fc4e46c3e369891e6`,color:``,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`4c71789c-8c02-4e25-a71f-3a7d0ef19a33`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`0`,"tmi-sent-ts":`1749744412641`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`tr0l1`,userId:`958683839`,displayName:`tr0l1`,displayColor:``,badges:[],channel:`tr0l1`,text:`ало ало Инса Каори Hello everyone! Hello everyone! Hello everyone!Hello everyone! Hello everyone! Hello everyone! Hello everyone! Hello everyone!`,isAction:!1,emotes:[{type:`7tv`,name:`ало`,id:`01F6PRA3N80003BH8AEY9DWKDQ`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp`,2:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp`,3:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp`,4:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp`},start:0,end:3},{type:`7tv`,name:`ало`,id:`01F6PRA3N80003BH8AEY9DWKDQ`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp`,2:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp`,3:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/3x.webp`,4:`https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp`},start:4,end:7},{type:`7tv`,name:`Инса`,id:`01JRE4VRRXWF0922HA3F9BZG6M`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp`,2:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp`,3:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/3x.webp`,4:`https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp`},start:8,end:12},{type:`7tv`,name:`Каори`,id:`01GY6TCEFG000BGHWA5T6NGBRA`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp`,2:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp`,3:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/3x.webp`,4:`https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp`},start:13,end:18}],msgId:`4c71789c-8c02-4e25-a71f-3a7d0ef19a33`},renderedText:`<img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp" srcset="https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/1x.webp 1x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/2x.webp 2x, https://cdn.7tv.app/emote/01F6PRA3N80003BH8AEY9DWKDQ/4x.webp 4x" title="ало" class="emote"><img src="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp" srcset="https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/1x.webp 1x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/2x.webp 2x, https://cdn.7tv.app/emote/01JRE4VRRXWF0922HA3F9BZG6M/4x.webp 4x" title="Инса" class="emote"><img src="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp" srcset="https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/1x.webp 1x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/2x.webp 2x, https://cdn.7tv.app/emote/01GY6TCEFG000BGHWA5T6NGBRA/4x.webp 4x" title="Каори" class="emote">Hello everyone!`}},sevenTvSolo:{listener:`message`,event:{service:`twitch`,data:{time:1768321684253,tags:{"badge-info":`subscriber/23`,badges:`broadcaster/1,subscriber/0`,"client-nonce":`51cc77206bf346eda20774b75aac675d`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`e30a02bf-a3c7-40f2-9325-cdc2690d3631`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1768321684074`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`}],channel:`an1by`,text:`DurkaDance ͏`,isAction:!1,emotes:[{type:`7tv`,name:`DurkaDance`,id:`01JQBC7K2FX7HE4SFZFJEN6CWY`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp`,2:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp`,3:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/3x.webp`,4:`https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp`},start:0,end:10}],msgId:`e30a02bf-a3c7-40f2-9325-cdc2690d3631`},renderedText:`<img src="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp" srcset="https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/1x.webp 1x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/2x.webp 2x, https://cdn.7tv.app/emote/01JQBC7K2FX7HE4SFZFJEN6CWY/4x.webp 4x" title="DurkaDance" class="emote"> ͏`}},replyToEmotes:{listener:`message`,event:{service:`twitch`,data:{time:1761442000746,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`467bc72d78248ec07dfb0602744268ca`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`9efd9377-2bd3-4c69-ace4-c21760337bab`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761442000143`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`AREYOUAGIRL Censored Emotes there DiscoDoge Кута`,isAction:!1,emotes:[{type:`7tv`,name:`AREYOUAGIRL`,id:`01F6N58M5R0004P7N4A9PK7KD9`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp`,2:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp`,3:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/3x.webp`,4:`https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp`},start:0,end:11},{type:`7tv`,name:`Censored`,id:`01GC2KBETR0009QMKQRDSHDTVB`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp`,2:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp`,3:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/3x.webp`,4:`https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp`},start:12,end:20},{type:`7tv`,name:`DiscoDoge`,id:`01F6REQR2R0006GRP49Q74YFVT`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp`,2:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp`,3:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/3x.webp`,4:`https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp`},start:34,end:43},{type:`7tv`,name:`Кута`,id:`01GZRXWQMR0001GP2RPRY13KD2`,gif:!0,animated:!0,urls:{1:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp`,2:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp`,3:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/3x.webp`,4:`https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp`},start:44,end:48}],msgId:`9efd9377-2bd3-4c69-ace4-c21760337bab`},renderedText:`<img src="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp" srcset="https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/1x.webp 1x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/2x.webp 2x, https://cdn.7tv.app/emote/01F6N58M5R0004P7N4A9PK7KD9/4x.webp 4x" title="AREYOUAGIRL" class="emote"><img src="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp" srcset="https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/1x.webp 1x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/2x.webp 2x, https://cdn.7tv.app/emote/01GC2KBETR0009QMKQRDSHDTVB/4x.webp 4x" title="Censored" class="emote">Emotes there <img src="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp" srcset="https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/1x.webp 1x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/2x.webp 2x, https://cdn.7tv.app/emote/01F6REQR2R0006GRP49Q74YFVT/4x.webp 4x" title="DiscoDoge" class="emote"><img src="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp" srcset="https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/1x.webp 1x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/2x.webp 2x, https://cdn.7tv.app/emote/01GZRXWQMR0001GP2RPRY13KD2/4x.webp 4x" title="Кута" class="emote">`}},replyFromEmotes:{listener:`message`,event:{service:`twitch`,data:{time:1761442023380,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`4052e6a7ed6bb6b8836aa625170c4f7b`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`f7bed8dd-5a48-4209-8617-e1a3c0720ee4`,mod:`0`,"reply-parent-display-name":`An1by`,"reply-parent-msg-body":`AREYOUAGIRL\\sCensored\\sThere\\semotes\\sDiscoDoge\\sКута`,"reply-parent-msg-id":`9efd9377-2bd3-4c69-ace4-c21760337bab`,"reply-parent-user-id":`958683839`,"reply-parent-user-login":`an1by`,"reply-thread-parent-display-name":`An1by`,"reply-thread-parent-msg-id":`9efd9377-2bd3-4c69-ace4-c21760337bab`,"reply-thread-parent-user-id":`958683839`,"reply-thread-parent-user-login":`an1by`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761442022738`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`@An1by I'm replying to message with emotes agarge Looks good, am I right?`,isAction:!1,emotes:[{type:`7tv`,name:`agarge`,id:`01HTDV6DE8000B1F9GAE4NZ73B`,gif:!1,animated:!1,urls:{1:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp`,2:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp`,3:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/3x.webp`,4:`https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp`},start:43,end:49}],msgId:`f7bed8dd-5a48-4209-8617-e1a3c0720ee4`},renderedText:`@An1by I'm replying to message with emotes <img src="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp" srcset="https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/1x.webp 1x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/2x.webp 2x, https://cdn.7tv.app/emote/01HTDV6DE8000B1F9GAE4NZ73B/4x.webp 4x" title="agarge" class="emote">Looks good, am I right?`}},replyTo:{listener:`message`,event:{service:`twitch`,data:{time:1761435519083,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`da4c68fddba7eb1be7ae2b6a44c207a2`,color:`#DAA520`,"display-name":`An1by`,emotes:``,"first-msg":`0`,flags:``,id:`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`,mod:`0`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761435518511`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`I'll reply to that message`,isAction:!1,emotes:[],msgId:`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`},renderedText:`I'll reply to that message`}},replyFrom:{listener:`message`,event:{service:`twitch`,data:{time:1761435541811,tags:{"badge-info":`subscriber/21`,badges:`broadcaster/1,subscriber/0,minecraft-15th-anniversary-celebration/1`,"client-nonce":`b59db94320a8a01942290c61f6a27480`,color:`#DAA520`,"display-name":`An1by`,emotes:`emotesv2_f54e2bcddf4948808b845e37dd4e08de:26-36`,"first-msg":`0`,flags:``,id:`bc101ec7-5663-4ee5-9580-536ed9a5804e`,mod:`0`,"reply-parent-display-name":`An1by`,"reply-parent-msg-body":`I'll\\sreply\\sto\\sthat\\smessage`,"reply-parent-msg-id":`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`,"reply-parent-user-id":`958683839`,"reply-parent-user-login":`an1by`,"reply-thread-parent-display-name":`An1by`,"reply-thread-parent-msg-id":`794c103d-a5d5-4ce1-bcd8-98ac6717c8e7`,"reply-thread-parent-user-id":`958683839`,"reply-thread-parent-user-login":`an1by`,"returning-chatter":`0`,"room-id":`958683839`,subscriber:`1`,"tmi-sent-ts":`1761435541217`,turbo:`0`,"user-id":`958683839`,"user-type":``},nick:`an1by`,userId:`958683839`,displayName:`An1by`,displayColor:`#DAA520`,badges:[{type:`broadcaster`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/5527c58c-fb7d-422d-b71b-f309dcb85cc1/3`,description:`Broadcaster`},{type:`subscriber`,version:`0`,url:`https://static-cdn.jtvnw.net/badges/v1/5d9f2208-5dd8-11e7-8513-2ff4adfae661/3`,description:`Subscriber`},{type:`minecraft-15th-anniversary-celebration`,version:`1`,url:`https://static-cdn.jtvnw.net/badges/v1/178077b2-8b86-4f8d-927c-66ed6c1b025f/3`,description:`Minecraft 15th Anniversary Celebration`}],channel:`an1by`,text:`@An1by Replying right now akidaKrutoi`,isAction:!1,emotes:[{type:`twitch`,name:`akidaKrutoi`,id:`emotesv2_f54e2bcddf4948808b845e37dd4e08de`,gif:!1,urls:{1:`https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0`,2:`https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0`,4:`https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0`},start:26,end:36}],msgId:`bc101ec7-5663-4ee5-9580-536ed9a5804e`},renderedText:`@An1by Replying right now <img src="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0" srcset="https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/1.0 1x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/2.0 2x, https://static-cdn.jtvnw.net/emoticons/v2/emotesv2_f54e2bcddf4948808b845e37dd4e08de/default/dark/3.0 4x" title="akidaKrutoi" class="emote">`}}},h=`onEventReceived`;function g(e){if(typeof window>`u`)return;let t=m[e.startsWith(`testMessage_`)?e.replace(`testMessage_`,``):e];t&&window.dispatchEvent(new CustomEvent(h,{detail:t}))}function _(e){if(typeof window>`u`)return;let t=p[e.startsWith(`testAlert_`)?e.replace(`testAlert_`,``):e];t&&window.dispatchEvent(new CustomEvent(h,{detail:t}))}function v(e){if(!e.startsWith(`testMessage`))return null;let t=e.replace(`testMessage`,``);return t.charAt(0).toLowerCase()+t.slice(1)}function y(e){if(!e.startsWith(`testAlert`))return null;let t=e.replace(`testAlert`,``);return t.charAt(0).toLowerCase()+t.slice(1)}var b=function(e){return e.BROADCASTER=`broadcaster`,e.LEAD_MODERATOR=`lead_moderator`,e.MODERATOR=`moderator`,e.VIP=`vip`,e.ARTIST=`artist`,e.FOUNDER=`founder`,e.SUBSCRIBER=`subscriber`,e.TURBO=`turbo`,e.DEFAULT=`default`,e}({}),x=({badges:e=[],tags:t={}})=>{let n=t=>!!e.find(e=>e.type===t),r=t.badges??``,i=t[`user-type`]??``,a=r.includes(`subscriber/1`)||t.subscriber===`1`||n(`subscriber`),o=r.includes(`founder/1`)||n(`founder`),s=r.includes(`broadcaster/1`)||n(`broadcaster`),c=t[`first-msg`]===`1`,l=t.turbo===`1`,u=t.vip===`1`||r.includes(`vip/1`)||n(`vip`),d=r.includes(`lead_moderator/1`)||n(`lead_moderator`),f=(t.mod===`1`||r.includes(`moderator/1`)||i===`mod`)&&!d||n(`moderator`),p=f||d,m=r.includes(`artist-badge/1`)||n(`artist-badge`),h=[];return s&&h.push(b.BROADCASTER),d&&h.push(b.LEAD_MODERATOR),f&&h.push(b.MODERATOR),u&&h.push(b.VIP),m&&h.push(b.ARTIST),o&&h.push(b.FOUNDER),a&&h.push(b.SUBSCRIBER),l&&h.push(b.TURBO),h.push(b.DEFAULT),{isSubscriber:a,isBroadcaster:s,isFirstMessageChatter:c,isFounder:o,isTurbo:l,isVip:u,isAnyModerator:p,isModerator:f,isLeadModerator:d,isArtist:m,roles:h,includesBadgeType:n,getSubscriberMonths:()=>{for(let e of[`badge-info`,`badges`]){let n=t[e];if(n){let e=n.match(/^subscriber\/(\d+)$/);if(e)return parseInt(e[1],10)}}return 0},getBadgeUrlByType:t=>e.find(e=>e.type===t)?.url}},S=class{queue=[];isShowingAlert=!1;onNextAlert;constructor(e){this.onNextAlert=e}push(e){this.queue.push(e)}processNextAlert(){if(this.queue.length===0||this.isShowingAlert)return;let e=this.queue.shift();e&&(this.isShowingAlert=!0,this.onNextAlert(this,e))}};function C(e,n,r=[]){let i=(0,t.useRef)(n);i.current=n,(0,t.useEffect)(()=>{let t=e=>i.current.call(window,e);return window.addEventListener(e,t),()=>window.removeEventListener(e,t)},[e,...r])}var w=e=>typeof e==`object`&&!!e&&`listener`in e;function T(e){return t=>w(t)&&e(t)}var E=T(e=>e.listener===`message`),D=T(e=>e.listener===`follower-latest`),O=T(e=>e.listener===`subscriber-latest`),k=T(e=>e.listener===`cheer-latest`),A=T(e=>e.listener===`raid-latest`),j=T(e=>e.listener===`donation`),M=T(e=>e.listener===`delete-message`),N=T(e=>e.listener===`delete-messages`),P=T(e=>e.listener===`event`&&e.event?.type===`communityGiftPurchase`),F=T(e=>e.listener===`event`&&e.event?.type===`subscriber`),I=T(e=>e.listener===`event:test`&&e.event?.listener===`widget-button`);function L(e,t,n=[]){C(`onEventReceived`,n=>{e(n.detail)&&t(n)},n)}function R(e,t=[]){C(`onEventReceived`,e,t)}var z=(e,t)=>L(E,e,t),B=z,V=(e,t)=>L(I,e,t),H=(e,t)=>L(D,e,t),U=(e,t)=>L(P,e,t),W=(e,t)=>L(O,e,t),G=(e,t)=>L(F,e,t),K=(e,t)=>L(k,e,t),q=(e,t)=>L(A,e,t),J=(e,t)=>L(j,e,t),Y=(e,t)=>L(M,e,t),X=(e,t)=>L(N,e,t);function Z(e,t=[]){C(`onWidgetLoad`,e,t)}e.AlertQueue=S,e.TwitchUserMessageData=x,e.UserRole=b,e.classifyEvent=i,e.getCacheKey=r,e.getTestAlertKey=y,e.getTestMessageKey=v,e.normalizeIncomingEvent=d,e.parseTier=n,e.testAlert=_,e.testAlerts=p,e.testMessage=g,e.testMessages=m,e.testOnWidgetLoadDetail=f,e.useEventListener=C,e.useOnCheerReceived=K,e.useOnCommunityGiftPurchaseReceived=U,e.useOnDeleteMessage=Y,e.useOnDeleteMessages=X,e.useOnDonationReceived=J,e.useOnEventReceived=R,e.useOnFollowerReceived=H,e.useOnMessageReceived=B,e.useOnRaidReceived=q,e.useOnSubscriberLatestReceived=W,e.useOnSubscriberReceived=G,e.useOnTwitchMessageReceived=z,e.useOnWidgetButtonReceived=V,e.useOnWidgetLoad=Z})(this.WmakeStreamelementsEventsReact=this.WmakeStreamelementsEventsReact||{},React);
2
+ //# sourceMappingURL=index.iife.js.map