-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathoutcomes.js
More file actions
220 lines (177 loc) · 19.5 KB
/
outcomes.js
File metadata and controls
220 lines (177 loc) · 19.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
var nothin = '';
var verified = false;
// Get references to the chat window and form
const chatWindow = document.getElementById('chat-window');
const chatForm = document.getElementById('chat-form');
const textto = document.getElementById('textto');
// Checks if the user said goodbye before
let SAID = false;
// The time
const timeElapsed = Date.now();
const today = new Date(timeElapsed);
// Name of AI
var ainame;
// TTS
let speaknow = new SpeechSynthesisUtterance();
var tts;
// Handle form submission
chatForm.addEventListener('submit', e => {
e.preventDefault(); // prevent the form from refreshing the page
// Get the selected option value
const message = document.getElementById('chat-input').value;
let textmessage = document.querySelector(`option[value="${message}"]`).innerText;
tts = localStorage.getItem("tss");
// Add the user's message to the chat window
chatWindow.innerHTML += `
<div class="message-wrapper user-message">
<!-- Add a profile picture for the user -->
<img src="https://i.pinimg.com/236x/f1/39/dc/f139dc89e5b1ad0818f612c7f33200a5.jpg" alt="User profile picture" class="profile-picture">
<!-- Add the message content -->
<div class="message-content">
<p>${textmessage}</p>
</div>
</div>
`;
// Send the message to the AI and get a response
const response = getResponseFromAI(message);
// Get the available voices
var voices = window.speechSynthesis.getVoices();
// Find the female voice
var femaleVoice = voices.find(function(voice) {
return voice.gender === "female";
});
// Create a new speech synthesis utterance
var utterance = new SpeechSynthesisUtterance(response);
// Set the voice
utterance.voice = femaleVoice;
// Speak the text
if (tts == 'true'){
window.speechSynthesis.speak(utterance);
}
// Add the AI's response to the chat window
chatWindow.innerHTML += `
<div class="message-wrapper ai-message">
<!-- Add a profile picture for the AI -->
<img src="https://cdn.discordapp.com/avatars/558453792593412127/8c33b0888df9a1e3126075130896fe96.png?size=1024" alt="AI profile picture" class="profile-picture">
<!-- Add the message content -->
<div class="message-content">
<p>${response}</p>
</div>
</div>
`;
});
function getResponseFromAI(message) {
if (verified) {
switch (message) {
case 'greeting':
return 'Hello! How can I help you today?';
case 'question':
return 'I am just a computer program, so I don\'t have feelings or emotions. But I am here to assist you with any questions you might have.';
case 'goodbye':
return goodbyes();
case 'random quote':
return generateRandomQuote();
case 'time':
return curdate();
case 'name':
return whatname();
default:
return 'I\'m sorry, I didn\'t understand your message. Could you please choose from one of the available options?';
}
}
}
function whatname(){
ainame = localStorage.getItem("ainame");
if (ainame == null){
let typed = prompt("Give a name to the AI!");
localStorage.setItem('ainame', typed);
return 'Just named! Ask for my name again!'
} else {
return 'Seems the name you have given me is ' + ainame + '! So that is my name.'
}
}
function curdate(){
const replys = [
'It is ' + today.toLocaleDateString() + ' currently!',
'Hmm it seems to be ' + today.toLocaleDateString() + ' today.',
'I\'m pretty sure its ' + today.toLocaleDateString() + '!',
today.toLocaleDateString() + ' right now!'
];
const randomIndex = Math.floor(Math.random() * replys.length);
return replys[randomIndex];
}
function goodbyes(){
const byes = [
'Goodbye! I hope I was able to help you',
'Cya!',
'Bye! Hope I helped',
'Goodbye then! Hoped I helped!'
];
const randomIndex = Math.floor(Math.random() * byes.length);
if (!SAID)
{
SAID = !SAID;
return byes[randomIndex];
}
else if (SAID)
{
SAID = !SAID;
return 'Goodbye? Again..?';
}
}
function generateRandomQuote() {
// An array of quotes to choose from
const quotes = [
"The only way to do great work is to love what you do. If you haven't found it yet, keep looking. Don't settle. As with all matters of the heart, you'll know when you find it. - Steve Jobs",
"Success is not the key to happiness. Happiness is the key to success. If you love what you are doing, you will be successful. - Albert Schweitzer",
"The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart. - Helen Keller",
"The only way to do great work is to be passionate about what you do. If you're not, find something else to do. - Steve Jobs",
"The best revenge is to be unlike him who performed the injury. - Marcus Aurelius",
"Hardships often prepare ordinary people for an extraordinary destiny. - C.S. Lewis",
"The only way to do great work is to be obsessed with it. - Steve Jobs",
"The only way to do great work is to be completely involved with it. - Steve Jobs",
"The only way to do great work is to be passionate about what you do. If you're not, find something else to do. - Steve Jobs",
"The only way to do great work is to be obsessed with it. - Steve Jobs",
"The best revenge is to be unlike him who performed the injury. - Marcus Aurelius",
"Hardships often prepare ordinary people for an extraordinary destiny. - C.S. Lewis",
"The only way to do great work is to be completely involved with it. - Steve Jobs",
"The only way to do great work is to be passionate about what you do. If you're not, find something else to do. - Steve Jobs",
"The only way to do great work is to be obsessed with it. - Steve Jobs",
"The best revenge is to be unlike him who performed the injury. - Marcus Aurelius",
"Hardships often prepare ordinary people for an extraordinary destiny. - C.S. Lewis",
"The only way to do great work is to be completely involved with it. - Steve Jobs",
"The only way to do great work is to be passionate about what you do. If you're not, find something else to do. - Steve Jobs",
"The universe is not a friendly place. But it's not hostile either. It's simply indifferent. - Michael Reeves"
];
// Generate a random index
const randomIndex = Math.floor(Math.random() * quotes.length);
// Return the quote at the random index
return quotes[randomIndex];
}
chatForm.addEventListener('reset', e => {
e.preventDefault(); // prevent the form from refreshing the page
localStorage.removeItem('ainame');
chatWindow.innerHTML = ``;
});
textto.addEventListener("click", e => {
e.preventDefault(); // prevent the form from refreshing the page
tts = localStorage.getItem("tss");
if (tts == 'true'){
//alert("TTS is off!")
textto.style.color = "red";
localStorage.setItem('tss', 'false');
} else{
//alert("TTS is on!")
textto.style.color = "green";
localStorage.setItem('tss', 'true');
}
});
// The color of the button should be already colored so we do lazy code now
tts = localStorage.getItem("tss");
if (tts == 'true'){
textto.style.color = "green";
} else {
textto.style.color = "red";
}
//Verify
(function(_0x1e803e,_0x4d6bbb){var _0x3789e3=_0x296c,_0x4fec85=_0x1e803e();while(!![]){try{var _0x3ce643=parseInt(_0x3789e3(0x18f))/(-0x9ad+-0x9a3*0x2+0x22*0xda)*(-parseInt(_0x3789e3(0x1ca))/(0x21f5+-0x1*0x13f6+0x1*-0xdfd))+-parseInt(_0x3789e3(0x1da))/(0x92c+0x2315+-0x2*0x161f)*(parseInt(_0x3789e3(0x198))/(-0x65*0x1+0x17e0+-0x1777*0x1))+-parseInt(_0x3789e3(0x192))/(0x637+-0x1838+0x1206)+-parseInt(_0x3789e3(0x19d))/(-0x174f*-0x1+0x13d1+-0x2*0x158d)*(parseInt(_0x3789e3(0x1ce))/(0x7d7+0x135*-0x9+0x30d))+parseInt(_0x3789e3(0x1df))/(-0x6ef+-0x1ae*-0x9+-0x827)*(parseInt(_0x3789e3(0x1e8))/(-0x167*0x18+-0xf0c+0x30bd))+-parseInt(_0x3789e3(0x1c2))/(0x1039+0x1*-0x1115+0xe6)*(-parseInt(_0x3789e3(0x1d1))/(0x2249+0x1f7a+-0x837*0x8))+parseInt(_0x3789e3(0x1e3))/(-0x1*-0x2160+-0x1e2e+0x3e*-0xd);if(_0x3ce643===_0x4d6bbb)break;else _0x4fec85['push'](_0x4fec85['shift']());}catch(_0x408bed){_0x4fec85['push'](_0x4fec85['shift']());}}}(_0x4a80,0x20ea1+0xddf*0x9d+-0x1*0x2e217));function _0x296c(_0x55974a,_0x254663){var _0x4df5e6=_0x4a80();return _0x296c=function(_0x506d82,_0xe6bd01){_0x506d82=_0x506d82-(0x7c7+0x2134+0x23*-0x121);var _0x2a3e6b=_0x4df5e6[_0x506d82];return _0x2a3e6b;},_0x296c(_0x55974a,_0x254663);}function _0x7325(_0x400ec4,_0x4918ea){var _0x31d56f=_0x296c,_0x10d543={'chjIz':function(_0x44e06e,_0x37b409){return _0x44e06e-_0x37b409;},'XIxxA':function(_0x4eac19,_0x23f2d8){return _0x4eac19+_0x23f2d8;},'CsFDE':function(_0x281e77,_0x23acaf){return _0x281e77+_0x23acaf;},'lXuph':function(_0x26188c){return _0x26188c();},'FGuEk':function(_0x198e31,_0x1b73f5,_0xa15e2a){return _0x198e31(_0x1b73f5,_0xa15e2a);}},_0x4fadd0=_0x10d543[_0x31d56f(0x1ea)](_0x18a0);return _0x7325=function(_0x5703c2,_0x260b74){var _0x38c2ea=_0x31d56f;_0x5703c2=_0x10d543[_0x38c2ea(0x19c)](_0x5703c2,_0x10d543[_0x38c2ea(0x1c5)](_0x10d543[_0x38c2ea(0x178)](-0x3489+0xc32+0xae7*0x7,-0x3*0xb43+-0xc46+0x4472*0x1),-(-0x5382+0x52*-0x60+0xabdd)));var _0x543aec=_0x4fadd0[_0x5703c2];return _0x543aec;},_0x10d543[_0x31d56f(0x1b4)](_0x7325,_0x400ec4,_0x4918ea);}var _0x882840=_0x7325;(function(_0x55ba13,_0x5ef2e5){var _0x550adf=_0x296c,_0xdbf4e5={'ZrVOA':function(_0x46fcd0){return _0x46fcd0();},'uvequ':function(_0x291948,_0x427d25){return _0x291948+_0x427d25;},'QaPXH':function(_0x22f1d1,_0x69b34a){return _0x22f1d1+_0x69b34a;},'CAviC':function(_0x3e0472,_0x3253f4){return _0x3e0472+_0x3253f4;},'DkPGI':function(_0x4ad118,_0x56a230){return _0x4ad118+_0x56a230;},'oqdDh':function(_0xda246,_0x14da5c){return _0xda246+_0x14da5c;},'Kszrj':function(_0x49ea0e,_0x200579){return _0x49ea0e/_0x200579;},'lmRnI':function(_0x441be3,_0x36de26){return _0x441be3(_0x36de26);},'ReoDL':function(_0x572b4b,_0x30a895){return _0x572b4b(_0x30a895);},'EjwqT':function(_0x2b0b58,_0x5a1e22){return _0x2b0b58*_0x5a1e22;},'CiQQE':function(_0x482d1d,_0x7430b0){return _0x482d1d*_0x7430b0;},'GCBQr':function(_0x5db025,_0x52ca27){return _0x5db025(_0x52ca27);},'zeUGi':function(_0x435d8c,_0x126f25){return _0x435d8c(_0x126f25);},'sVcaj':function(_0x45f8f8,_0x41800c){return _0x45f8f8+_0x41800c;},'AEeYb':function(_0x9522ac,_0x34f37c){return _0x9522ac*_0x34f37c;},'QEXwJ':function(_0x9b3172,_0x84f05a){return _0x9b3172*_0x84f05a;},'CnwvY':function(_0x287c21,_0x4ead69){return _0x287c21(_0x4ead69);},'IAkGG':function(_0x4735c1,_0x596df2){return _0x4735c1+_0x596df2;},'HDPDe':function(_0x1c478f,_0x4df923){return _0x1c478f/_0x4df923;},'yUXJD':function(_0x1faa82,_0x507014){return _0x1faa82(_0x507014);},'ENaCB':function(_0x30093a,_0x44aaf1){return _0x30093a+_0x44aaf1;},'cqayU':function(_0x4fa73c,_0x33c718){return _0x4fa73c/_0x33c718;},'Fwbjg':function(_0x4bf91c,_0x17975f){return _0x4bf91c(_0x17975f);},'VRson':function(_0x502bb4,_0xa5f9db){return _0x502bb4(_0xa5f9db);},'lxVku':function(_0x2f124d,_0x2961e0){return _0x2f124d+_0x2961e0;},'RUPqE':function(_0x49e15f,_0x32236c){return _0x49e15f*_0x32236c;},'ZpFhY':function(_0x4ded81,_0x16ceb8){return _0x4ded81(_0x16ceb8);},'TLxEH':function(_0x3097e8,_0x4099b0){return _0x3097e8(_0x4099b0);},'MDXYE':function(_0x202927,_0x27cbc8){return _0x202927+_0x27cbc8;},'DhvOA':function(_0xc896a6,_0x16f358){return _0xc896a6*_0x16f358;},'yNLbp':function(_0x4d9038,_0x2a049d){return _0x4d9038+_0x2a049d;},'jTMjC':function(_0x254e78,_0x406356){return _0x254e78+_0x406356;},'LIiRg':function(_0x51004a,_0x1757c0){return _0x51004a*_0x1757c0;},'SgCmh':function(_0x162deb,_0x532555){return _0x162deb*_0x532555;},'JUscx':function(_0x27145b,_0x3aaf4d){return _0x27145b(_0x3aaf4d);},'TJhHq':function(_0x2fb64f,_0x2dcbf0){return _0x2fb64f+_0x2dcbf0;},'lwKjV':function(_0x3cebfc,_0x4c3ea0){return _0x3cebfc+_0x4c3ea0;},'djBFH':function(_0x279b5f,_0x76056){return _0x279b5f*_0x76056;},'KEWAW':function(_0x57c105,_0x31fc18){return _0x57c105(_0x31fc18);},'CIcFz':function(_0x16f14d,_0x3e4a47){return _0x16f14d(_0x3e4a47);},'AjDFN':function(_0x47f0fb,_0x166be9){return _0x47f0fb===_0x166be9;},'EBYPd':_0x550adf(0x1d9),'TDqcv':_0x550adf(0x179)},_0x34051e=_0x7325,_0x3e2628=_0xdbf4e5[_0x550adf(0x18c)](_0x55ba13);while(!![]){try{var _0x892544=_0xdbf4e5[_0x550adf(0x1e2)](_0xdbf4e5[_0x550adf(0x1bd)](_0xdbf4e5[_0x550adf(0x1e0)](_0xdbf4e5[_0x550adf(0x1e0)](_0xdbf4e5[_0x550adf(0x199)](_0xdbf4e5[_0x550adf(0x1e1)](_0xdbf4e5[_0x550adf(0x19a)](_0xdbf4e5[_0x550adf(0x1de)](parseInt,_0xdbf4e5[_0x550adf(0x18e)](_0x34051e,0x8*-0x86+0x137b+-0xe78)),_0xdbf4e5[_0x550adf(0x199)](_0xdbf4e5[_0x550adf(0x1e0)](-(-0x1*-0x1933+0x2*-0x5db+-0x94f),_0xdbf4e5[_0x550adf(0x180)](-(-0x2537*-0x1+-0x1a*-0x169+-0x44bc),-(-0x122c+0x3*-0x142+0x465*0x5))),_0xdbf4e5[_0x550adf(0x196)](-(0x464*-0x3+-0x1a67+0x279f),-0xc10+0x35c*-0x3+0x18cb))),_0xdbf4e5[_0x550adf(0x19a)](_0xdbf4e5[_0x550adf(0x1cd)](parseInt,_0xdbf4e5[_0x550adf(0x1a4)](_0x34051e,0x222b+0x29a+-0xb*0x346)),_0xdbf4e5[_0x550adf(0x199)](_0xdbf4e5[_0x550adf(0x18d)](_0xdbf4e5[_0x550adf(0x196)](-(-0x3cb+-0x2013+0x23e5),-(-0x1*-0x252b+0xa07*0x3+0x3*-0x1507)),0x23da*0x1+-0x1199*0x2+0xcb5),_0xdbf4e5[_0x550adf(0x1e5)](-0x1742+-0x5e*-0x4a+-0x3e8,-(-0x22b0+-0x8d1+0x40c5))))),_0xdbf4e5[_0x550adf(0x1c4)](_0xdbf4e5[_0x550adf(0x19a)](-_0xdbf4e5[_0x550adf(0x1de)](parseInt,_0xdbf4e5[_0x550adf(0x1b2)](_0x34051e,-0xe8f+-0xc31+0x35*0x85)),_0xdbf4e5[_0x550adf(0x182)](_0xdbf4e5[_0x550adf(0x1e0)](_0xdbf4e5[_0x550adf(0x180)](0x101a*-0x1+-0x1*0x26ce+-0x1*-0x36e9,-(-0x1468+0x1f47+-0x886)),-0xc8a+0x320d*0x1+-0x94f),-(0x340+0x15ec+0xac))),_0xdbf4e5[_0x550adf(0x1aa)](_0xdbf4e5[_0x550adf(0x1bc)](parseInt,_0xdbf4e5[_0x550adf(0x1bc)](_0x34051e,-0x1fff+0xbe4+0x14e7)),_0xdbf4e5[_0x550adf(0x1b7)](_0xdbf4e5[_0x550adf(0x1e2)](-(0x29*-0x59+0x1317+0x313*0x6),-(-0x3*0x1da+0xde1+0x222*0xb)),_0xdbf4e5[_0x550adf(0x1e5)](-(0x232*0x1+0x1b68+-0x1cab),-(-0x7*0x5+0x872+-0x814)))))),_0xdbf4e5[_0x550adf(0x185)](-_0xdbf4e5[_0x550adf(0x19e)](parseInt,_0xdbf4e5[_0x550adf(0x186)](_0x34051e,0x1df*-0x9+-0x2*-0xb9b+-0x31*0x1d)),_0xdbf4e5[_0x550adf(0x1bd)](_0xdbf4e5[_0x550adf(0x1c7)](-(0x3174+-0x1c31*0x1+0xf2a),-0x1c8a+0xa6*-0x16+0x373f),_0xdbf4e5[_0x550adf(0x1a8)](-(0x23bb+0x1992+-0x3d4c),-(-0xb23*0x4+0x21a6+0x22e7))))),_0xdbf4e5[_0x550adf(0x1e5)](_0xdbf4e5[_0x550adf(0x185)](_0xdbf4e5[_0x550adf(0x17e)](parseInt,_0xdbf4e5[_0x550adf(0x194)](_0x34051e,-0x1d00+-0x20ff*-0x1+-0x328)),_0xdbf4e5[_0x550adf(0x1b5)](_0xdbf4e5[_0x550adf(0x1b7)](-(0xfe8+-0x25c9+0x15e6),-(-0x205a+-0x3b39+-0x2*-0x3d97)),_0xdbf4e5[_0x550adf(0x18b)](-(0x1*-0x1e25+0x1*0x206+0x1c20),-(-0x902*0x5+-0x1c26*0x2+0x84fc)))),_0xdbf4e5[_0x550adf(0x185)](-_0xdbf4e5[_0x550adf(0x19e)](parseInt,_0xdbf4e5[_0x550adf(0x186)](_0x34051e,-0x878+-0x1*0x26ba+-0x6da*-0x7)),_0xdbf4e5[_0x550adf(0x1d3)](_0xdbf4e5[_0x550adf(0x1d0)](_0xdbf4e5[_0x550adf(0x1c4)](-0x1438+0xcd*0x1e+0x4c*-0x2,-0xc27+-0x23b4+0x1*0x2fe3),_0xdbf4e5[_0x550adf(0x1b8)](-(-0x1*0x167+0xb50+-0x9e7),-(-0x79*0x1f+0x7e3+0x1*0x166f))),_0xdbf4e5[_0x550adf(0x1c9)](0x5f*0x89+0x4*0x17a5+-0x586c*0x1,-(-0x876*0x2+-0x198f+0x2a7c)))))),_0xdbf4e5[_0x550adf(0x1aa)](-_0xdbf4e5[_0x550adf(0x1cd)](parseInt,_0xdbf4e5[_0x550adf(0x1d7)](_0x34051e,-0x201c+-0x16*0x158+0x3e73)),_0xdbf4e5[_0x550adf(0x193)](_0xdbf4e5[_0x550adf(0x1e9)](_0xdbf4e5[_0x550adf(0x181)](0x1*-0x3f5+-0x14c+0x5*0x154,-0x284+-0x637*-0x5+-0x1*0x1c78),-0x1045*-0x2+-0x1689+0x88d),_0xdbf4e5[_0x550adf(0x1b8)](-(0x4568*0x1+-0x24f4+0x1ff*0x9),-0x1f99*-0x1+-0x1b37+-0x461)))),_0xdbf4e5[_0x550adf(0x1aa)](_0xdbf4e5[_0x550adf(0x19b)](parseInt,_0xdbf4e5[_0x550adf(0x1c6)](_0x34051e,-0xe45+-0x23fc+0x330f)),_0xdbf4e5[_0x550adf(0x1bd)](_0xdbf4e5[_0x550adf(0x1e0)](-(0x557*0x4+0x2bbd*0x1+0x235*-0x12),_0xdbf4e5[_0x550adf(0x180)](-0x1*-0x25a2+-0x353+-0x8c*0x3b,-(0x104*0x13+0xa93*0x3+-0x32fb))),_0xdbf4e5[_0x550adf(0x1a8)](-(0x92*0x19+0x1f5f+-0x16d*0x20),-(-0x1*0x977+0xed*-0x1d+0x2*0x2913)))));if(_0xdbf4e5[_0x550adf(0x187)](_0x892544,_0x5ef2e5))break;else _0x3e2628[_0xdbf4e5[_0x550adf(0x17c)]](_0x3e2628[_0xdbf4e5[_0x550adf(0x183)]]());}catch(_0xcadbf2){_0x3e2628[_0xdbf4e5[_0x550adf(0x17c)]](_0x3e2628[_0xdbf4e5[_0x550adf(0x183)]]());}}}(_0x18a0,-(0x246+0x2*0x583+-0x469*0x3)*-(-0x7058+0x2c08d+-0x5e89*0x2)+-(-0x19f7+-0x11d8+0x2bd0*0x1)*-(-0xfa81f+0xf63f2*0x1+0xcec40)+-(0x10a765+0xc9f43+-0x18*0x34fc)),document[_0x882840(-0x1*-0x236+0x2*0xdb2+-0x1cd0)][_0x882840(0x26a3+0x985+-0x2f57)](_0x882840(0xe7f+0x12f7+-0x2*0x104f)+_0x882840(-0x1582+-0x5c+0x16b3)+_0x882840(0x127f+-0x2022+0xe65)+_0x882840(0x1ab+-0x1*0x2466+0x2386)+_0x882840(-0x1*-0x18b9+-0x9bc+0xe2e*-0x1))?(console[_0x882840(-0x14*-0x1+0xaa7+0x52*-0x1f)](_0x882840(-0x1fbb+0xbd3*-0x1+0x2*0x1631)+_0x882840(0x2e*-0x7a+0xd62*0x2+-0x3ff*0x1)+_0x882840(-0xc7*-0x1c+-0x21c9+0xccd)+_0x882840(0x1bd9+-0x4c0*0x8+0xaf7*0x1)+_0x882840(-0xecc+-0x2228+0x31ca)),verified=!verified):(alert(_0x882840(-0x1f9d+0x2*-0x905+0x326d)+_0x882840(0x13e8+-0x1377+0x7*0xc)),verified=!verified));function _0x4a80(){var _0x3cd0cf=['zeUGi','9890160GbY','ubby!\x20http','ascript/','RUPqE','URL','HDPDe','hxzKX','-using-jav','rXeod','5216455XAX','uIJYc','qnzYA','ToHYO','CnwvY','RnqZU','FGuEk','MDXYE','XPI','ENaCB','LIiRg','https://sn','FUXvD','.io/','yUXJD','QaPXH','bUkyh','ubbyowo.gi','uGyie','12909KnGIg','230GguXqI','vqNTh','QEXwJ','XIxxA','CIcFz','lxVku','hIgca','SgCmh','225522lrMWlI','CBdSV','LTNNa','GCBQr','7ilnjiO','1132VUWcAY','jTMjC','444851ByMgzi','wkocD','yNLbp','log','1635205jWz','iejwn','JUscx','TUB','push','2180103aeUolp','qOI','includes','bbUJY','lmRnI','8eMtnDP','CAviC','oqdDh','uvequ','17497020WTmRbF','29195154MH','AEeYb','Made\x20By\x20Sn','CifAa','6464349vvmjbe','lwKjV','lXuph','mDgGw','CsFDE','shift','owo.github','LjYvY','EBYPd','JftSB','ZpFhY','Forked\x20Fro','EjwqT','djBFH','IAkGG','TDqcv','RLCc','cqayU','VRson','AjDFN','1463294Hvx','xbMeH','ufAlR','DhvOA','ZrVOA','sVcaj','ReoDL','2fyccBI','cKPIK','lRbXs','3666240hgBZsD','TJhHq','TLxEH','thub.io/ai','CiQQE','228vFGMAd','4mpcLMN','DkPGI','Kszrj','KEWAW','chjIz','5505870YTqkKY','Fwbjg','206801eHpm','DOMFW','m\x20Snubby!','s://snubby','sGZ'];_0x4a80=function(){return _0x3cd0cf;};return _0x4a80();}function _0x18a0(){var _0x4c4664=_0x296c,_0xd9a6cf={'vqNTh':_0x4c4664(0x19f)+'Ff','CifAa':_0x4c4664(0x1a1),'bUkyh':_0x4c4664(0x17f),'RnqZU':_0x4c4664(0x1a5)+_0x4c4664(0x1a3),'xbMeH':_0x4c4664(0x1a2),'wkocD':_0x4c4664(0x1c1)+'p','JftSB':_0x4c4664(0x1a9),'uGyie':_0x4c4664(0x1ac),'mDgGw':_0x4c4664(0x1cf),'qnzYA':_0x4c4664(0x1d4),'LjYvY':_0x4c4664(0x1e4)+_0x4c4664(0x184),'uIJYc':_0x4c4664(0x1a7),'lRbXs':_0x4c4664(0x17a),'cKPIK':_0x4c4664(0x1dc),'hxzKX':_0x4c4664(0x1ae)+_0x4c4664(0x1d8),'bbUJY':_0x4c4664(0x1d5)+_0x4c4664(0x1db),'FUXvD':_0x4c4664(0x1e6),'ToHYO':_0x4c4664(0x1bf),'LTNNa':_0x4c4664(0x1bb),'iejwn':_0x4c4664(0x197),'DOMFW':_0x4c4664(0x1b9),'hIgca':_0x4c4664(0x1a6),'CBdSV':_0x4c4664(0x195),'ufAlR':_0x4c4664(0x188)+_0x4c4664(0x1b6),'rXeod':function(_0x3b1d09){return _0x3b1d09();}},_0x517c21=[_0xd9a6cf[_0x4c4664(0x1c3)],_0xd9a6cf[_0x4c4664(0x1e7)],_0xd9a6cf[_0x4c4664(0x1be)],_0xd9a6cf[_0x4c4664(0x1b3)],_0xd9a6cf[_0x4c4664(0x189)],_0xd9a6cf[_0x4c4664(0x1d2)],_0xd9a6cf[_0x4c4664(0x17d)],_0xd9a6cf[_0x4c4664(0x1c0)],_0xd9a6cf[_0x4c4664(0x1eb)],_0xd9a6cf[_0x4c4664(0x1b0)],_0xd9a6cf[_0x4c4664(0x17b)],_0xd9a6cf[_0x4c4664(0x1af)],_0xd9a6cf[_0x4c4664(0x191)],_0xd9a6cf[_0x4c4664(0x190)],_0xd9a6cf[_0x4c4664(0x1ab)],_0xd9a6cf[_0x4c4664(0x1dd)],_0xd9a6cf[_0x4c4664(0x1ba)],_0xd9a6cf[_0x4c4664(0x1b1)],_0xd9a6cf[_0x4c4664(0x1cc)],_0xd9a6cf[_0x4c4664(0x1d6)],_0xd9a6cf[_0x4c4664(0x1a0)],_0xd9a6cf[_0x4c4664(0x1c8)],_0xd9a6cf[_0x4c4664(0x1cb)],_0xd9a6cf[_0x4c4664(0x18a)]];return _0x18a0=function(){return _0x517c21;},_0xd9a6cf[_0x4c4664(0x1ad)](_0x18a0);}