diff --git a/src/createServer.js b/src/createServer.js index 1cf1dda..41b137c 100644 --- a/src/createServer.js +++ b/src/createServer.js @@ -1,8 +1,136 @@ 'use strict'; +const formidable = require('formidable'); +const { createReadStream, createWriteStream, unlink } = require('node:fs'); +const { Server } = require('node:http'); +const path = require('node:path'); +const { pipeline } = require('node:stream'); +const zlib = require('node:zlib'); + function createServer() { - /* Write your code here */ - // Return instance of http.Server class + const server = new Server(); + + server.on('request', async (req, res) => { + const { pathname } = new URL( + req.url || '', + `http://${req.headers.host || 'localhost'}`, + ); + + if (pathname === '/' || pathname === '/index.html') { + res.writeHead(200, { 'content-type': 'text/html' }); + + const readStream = createReadStream( + path.join(__dirname, 'public', 'index.html'), + ); + + pipeline(readStream, res, (err) => { + if (err) { + sendResponse(res, 500, 'Error reading index.html'); + } + }); + + return; + } + + if (pathname === '/compress') { + if (req.method === 'GET') { + return sendResponse( + res, + 400, + 'GET requests are not allowed on /compress', + ); + } + + await handleFileCompression(req, res); + + return; + } + + sendResponse(res, 404, 'Not Found'); + }); + + return server; +} + +function sendResponse(res, statusCode, message) { + res.writeHead(statusCode, { 'content-type': 'text/plain' }); + res.end(message); +} + +async function handleFileCompression(req, res) { + const form = new formidable.IncomingForm(); + + form.parse(req, async (err, fields, files) => { + if (err || !fields.compressionType || !files.file) { + return sendResponse(res, 400, 'Invalid form submission'); + } + + const compressionType = Array.isArray(fields.compressionType) + ? fields.compressionType[0] + : fields.compressionType; + const fileObj = Array.isArray(files.file) ? files.file[0] : files.file; + const filePath = fileObj.filepath; + const originalFileName = fileObj.originalFilename; + + let compressedStream; + let extension; + + switch (compressionType) { + case 'gzip': + compressedStream = zlib.createGzip(); + extension = '.gzip'; + break; + case 'deflate': + compressedStream = zlib.createDeflate(); + extension = '.deflate'; + break; + case 'br': + compressedStream = zlib.createBrotliCompress(); + extension = '.br'; + break; + default: + return sendResponse(res, 400, 'Unsupported compression type'); + } + + const compressedFileName = originalFileName + extension; + const compressedFilePath = path.join( + __dirname, + 'public', + compressedFileName, + ); + const writeStream = createWriteStream(compressedFilePath); + + try { + await new Promise((resolve, reject) => { + pipeline( + createReadStream(filePath), + compressedStream, + writeStream, + (errPromise) => (errPromise ? reject(errPromise) : resolve()), + ); + }); + + res.writeHead(200, { + 'content-disposition': `attachment; filename=${compressedFileName}`, + }); + + const readStream = createReadStream(compressedFilePath); + + pipeline(readStream, res, (errSendFile) => { + unlink(compressedFilePath, (unlinkErr) => { + if (unlinkErr) { + return unlinkErr; + } + }); + + if (errSendFile) { + return sendResponse(res, 500, 'Error sending compressed file'); + } + }); + } catch (error) { + sendResponse(res, 500, 'Error compressing file'); + } + }); } module.exports = { diff --git a/src/public/a.csv.gz b/src/public/a.csv.gz new file mode 100644 index 0000000..7a2e644 Binary files /dev/null and b/src/public/a.csv.gz differ diff --git a/src/public/abaft_but_if.dms.gzip b/src/public/abaft_but_if.dms.gzip new file mode 100644 index 0000000..ca4a45e Binary files /dev/null and b/src/public/abaft_but_if.dms.gzip differ diff --git a/src/public/advanced_vice_ouch.gz.br b/src/public/advanced_vice_ouch.gz.br new file mode 100644 index 0000000..0b73290 --- /dev/null +++ b/src/public/advanced_vice_ouch.gz.br @@ -0,0 +1 @@ +\W=#Tz ٜQU;Eeٳ(\@<&^3bĉ5p uJEy[k0#:a:gdOhg9R!+C~~9w[∛(=,;!!)ىI޻k?T4%bXIuJnVl8"Q`cl qd|XYy`2ㅖ.MJK1p%TcM_#&-;svc:Ȏ3DkMd?[:q߈oZ.?:dB,mը=wz<{,"ݴ:ŽGBM7:ȰХEѽn acnM<4~iMf'щ+><%MO \ No newline at end of file diff --git a/src/public/anti.mpga.gz b/src/public/anti.mpga.gz new file mode 100644 index 0000000..7aec5da Binary files /dev/null and b/src/public/anti.mpga.gz differ diff --git a/src/public/anti_though_tendency.ods.br b/src/public/anti_though_tendency.ods.br new file mode 100644 index 0000000..171c58c --- /dev/null +++ b/src/public/anti_though_tendency.ods.br @@ -0,0 +1 @@ + W=fQ3j,{VKtpt(r3 %0 c%q#dV+>&m6Q)StL(*5^exd?M/E-UF b$G0;D鹑^;V>fj hr7&f-ub<$Ӟk Ȝ+ 3uoIĉe.#ޯ+vdjFt듚Hr+i_K{& \ No newline at end of file diff --git a/src/public/aspire_apud.mpeg.br b/src/public/aspire_apud.mpeg.br new file mode 100644 index 0000000..fcea185 Binary files /dev/null and b/src/public/aspire_apud.mpeg.br differ diff --git a/src/public/assent_pro_reclaim.vss.br b/src/public/assent_pro_reclaim.vss.br new file mode 100644 index 0000000..8b9d5d2 Binary files /dev/null and b/src/public/assent_pro_reclaim.vss.br differ diff --git a/src/public/astride.vst.deflate b/src/public/astride.vst.deflate new file mode 100644 index 0000000..5efecdd --- /dev/null +++ b/src/public/astride.vst.deflate @@ -0,0 +1 @@ +x=m0 L C.PdZȢBJF/=Ǜ֬.y!hRr8;-u | 5dRPׁ 1=]Y4Q+r[bʐsZ4uDsF;Tf$7kѱl? mP{Zh&|qp(=5s48wyM *Ð[C&F̂n \ No newline at end of file diff --git a/src/public/athwart_blast.mp4.gzip b/src/public/athwart_blast.mp4.gzip new file mode 100644 index 0000000..e4e839a Binary files /dev/null and b/src/public/athwart_blast.mp4.gzip differ diff --git a/src/public/atop.csh.deflate b/src/public/atop.csh.deflate new file mode 100644 index 0000000..bc22098 --- /dev/null +++ b/src/public/atop.csh.deflate @@ -0,0 +1 @@ +x==n\1 {bN;ԮO.Hl"A g{Z܄yF:jlG]UQL^-"t^rh4ҒȞ ~\K`{iy#cV靐a9@Jچn>) `35PSqJ'W*~$+ >8W;؞W_L-ow a%B)UC!*;y|:wFͥ%"k7/xKoHXl4CUTɁ=WP Q \ No newline at end of file diff --git a/src/public/aver_exposure.ini.gzip b/src/public/aver_exposure.ini.gzip new file mode 100644 index 0000000..4d3e0d2 Binary files /dev/null and b/src/public/aver_exposure.ini.gzip differ diff --git a/src/public/baggy_zowie_portion.jsonld.br b/src/public/baggy_zowie_portion.jsonld.br new file mode 100644 index 0000000..d6210ee --- /dev/null +++ b/src/public/baggy_zowie_portion.jsonld.br @@ -0,0 +1 @@ +@W=uP[3j,{N6fT|@,wȿ0H[k'eAmsA rf|kϐR9=ސ{G-s|C˵x7,%L$T0mo&09\|a1N'z[6dKX:kԞN̠*ב[lEGI`"[jRyN+IB%bZK4}@T 開( OY̑ b4Ĵe=z \ No newline at end of file diff --git a/src/public/barring_port_consequently.msi.gzip b/src/public/barring_port_consequently.msi.gzip new file mode 100644 index 0000000..bda797e Binary files /dev/null and b/src/public/barring_port_consequently.msi.gzip differ diff --git a/src/public/bean_plus.ifb.dfl b/src/public/bean_plus.ifb.dfl new file mode 100644 index 0000000..a688ce5 Binary files /dev/null and b/src/public/bean_plus.ifb.dfl differ diff --git a/src/public/belittle_ick.doc.gzip b/src/public/belittle_ick.doc.gzip new file mode 100644 index 0000000..c9fff8d Binary files /dev/null and b/src/public/belittle_ick.doc.gzip differ diff --git a/src/public/beside.bz2.br b/src/public/beside.bz2.br new file mode 100644 index 0000000..c0891d4 --- /dev/null +++ b/src/public/beside.bz2.br @@ -0,0 +1 @@ +'ngSŦ)1Ial0Jd9}IYdie-H$ (F9NU,_ *AsiB4sICΫv7N.oD>zR%Tw{4 *b?΀2lԼ|d 3ayV)Wk6v>Yh;qOQG(ʶ]WUoC S[l]PC_ՠ \ No newline at end of file diff --git a/src/public/blah_bridge.txt.dfl b/src/public/blah_bridge.txt.dfl new file mode 100644 index 0000000..7916ec8 --- /dev/null +++ b/src/public/blah_bridge.txt.dfl @@ -0,0 +1 @@ +xEAJDA DNw.}M:`'WB(+Jka pMp:nCvJXeM\Z%Lz? \ No newline at end of file diff --git a/src/public/boo.avif.br b/src/public/boo.avif.br new file mode 100644 index 0000000..9a03c77 Binary files /dev/null and b/src/public/boo.avif.br differ diff --git a/src/public/boohoo_cup.mp4v.br b/src/public/boohoo_cup.mp4v.br new file mode 100644 index 0000000..67ed3cf Binary files /dev/null and b/src/public/boohoo_cup.mp4v.br differ diff --git a/src/public/boxer.rng.gz b/src/public/boxer.rng.gz new file mode 100644 index 0000000..da0fb7f Binary files /dev/null and b/src/public/boxer.rng.gz differ diff --git a/src/public/but_morning.tiff.gz b/src/public/but_morning.tiff.gz new file mode 100644 index 0000000..8a67e48 Binary files /dev/null and b/src/public/but_morning.tiff.gz differ diff --git a/src/public/carefully_brr.tiff.gz b/src/public/carefully_brr.tiff.gz new file mode 100644 index 0000000..4914701 Binary files /dev/null and b/src/public/carefully_brr.tiff.gz differ diff --git a/src/public/carnival_subtitle_fooey.spx.deflate b/src/public/carnival_subtitle_fooey.spx.deflate new file mode 100644 index 0000000..874b139 --- /dev/null +++ b/src/public/carnival_subtitle_fooey.spx.deflate @@ -0,0 +1,2 @@ +xEQj,QDZA!lmGM<<{)jίZnXmXM䩡L5,&% 7 uc({OAG)ӱC=@c;r7ح{6,OYXaBU=)G{jSH⺄A5*? ]5qKouK\%W Yad$+ Vet]ۻs4isx]qUnMԷǷZ.C.jHJt!^I{e-< J |Nc7tkͰ e @ \ No newline at end of file diff --git a/src/public/earthquake.woff2.br b/src/public/earthquake.woff2.br new file mode 100644 index 0000000..ca732eb Binary files /dev/null and b/src/public/earthquake.woff2.br differ diff --git a/src/public/enormously.def.deflate b/src/public/enormously.def.deflate new file mode 100644 index 0000000..4e6cf6b --- /dev/null +++ b/src/public/enormously.def.deflate @@ -0,0 +1,2 @@ +xMKnA D9E` )t7G |e/c-X= IKHQ4OeD'Xő>qN,}.Hѹt%hRX>oW*V. +ӢfEO0-Kp L *M'.+R\&xe{*k4ثØJAMDu5ӣ[fO]BOc#SpHuUO]ߘ9 L/G=5 \?~V[q .wsnUJntWGEܣ'&=Tl[99'µӸ0m$P.j7}vlvH;͘B ]Zz=h:g^^o \ No newline at end of file diff --git a/src/public/for_hence_patiently.msm.br b/src/public/for_hence_patiently.msm.br new file mode 100644 index 0000000..3e48bce Binary files /dev/null and b/src/public/for_hence_patiently.msm.br differ diff --git a/src/public/for_vastly_because.xla.gz b/src/public/for_vastly_because.xla.gz new file mode 100644 index 0000000..6183563 Binary files /dev/null and b/src/public/for_vastly_because.xla.gz differ diff --git a/src/public/forfeit_before.vsw.deflate b/src/public/forfeit_before.vsw.deflate new file mode 100644 index 0000000..5d88b73 Binary files /dev/null and b/src/public/forfeit_before.vsw.deflate differ diff --git a/src/public/forum_unfortunately_irritably.xsl.deflate b/src/public/forum_unfortunately_irritably.xsl.deflate new file mode 100644 index 0000000..1673328 Binary files /dev/null and b/src/public/forum_unfortunately_irritably.xsl.deflate differ diff --git a/src/public/fresh_vague_hockey.vss.deflate b/src/public/fresh_vague_hockey.vss.deflate new file mode 100644 index 0000000..bac402e --- /dev/null +++ b/src/public/fresh_vague_hockey.vss.deflate @@ -0,0 +1,4 @@ +x=m%1 sW1l_ +xI|2NHrsF/C ++yk> O,Ggc"5vT!yq \9!C"tUSՄ_nCNsH]˟˛|$*>p +Y]FO"rm?E47͡OVfM}rAE0ҎZzӃ#ҎBt> W%v ho5®~hcA֔KSMhJʤ& \ No newline at end of file diff --git a/src/public/furthermore_duh.ppt.gzip b/src/public/furthermore_duh.ppt.gzip new file mode 100644 index 0000000..85aa629 Binary files /dev/null and b/src/public/furthermore_duh.ppt.gzip differ diff --git a/src/public/gah.ts.br b/src/public/gah.ts.br new file mode 100644 index 0000000..692c892 --- /dev/null +++ b/src/public/gah.ts.br @@ -0,0 +1,2 @@ + W=䁇,τ647LU!Q/7N| xޞa6dpO`d)W{8 +pu eGQGĥOtgWÐ&F.-DsjmjREԣil?z*@gn2No DŖ).Q(ڠDWAF ahoN_ݐ W'ʩ@w.rmeؖO|$BbH簶7DM$.'zҞ#kO5 \ No newline at end of file diff --git a/src/public/gee_how_during.3g2.br b/src/public/gee_how_during.3g2.br new file mode 100644 index 0000000..71d2f39 Binary files /dev/null and b/src/public/gee_how_during.3g2.br differ diff --git a/src/public/gee_humiliating_briefly.xsl.gz b/src/public/gee_humiliating_briefly.xsl.gz new file mode 100644 index 0000000..5b6998a Binary files /dev/null and b/src/public/gee_humiliating_briefly.xsl.gz differ diff --git a/src/public/geez_against.ico.deflate b/src/public/geez_against.ico.deflate new file mode 100644 index 0000000..de702a8 --- /dev/null +++ b/src/public/geez_against.ico.deflate @@ -0,0 +1 @@ +x5An@D9'HvcCV(^h9-jAbC!6taʸ;1ĠC‡FL!z2_a6 , ŬI-;{ƣ~3ܨY}^s׮A gR&]>>۫L#Odw8P40U#qO8/HԌ|4Eф`Z`>7A{Tf ~{t-mW \ No newline at end of file diff --git a/src/public/goggles_particle.webm.br b/src/public/goggles_particle.webm.br new file mode 100644 index 0000000..b858a1c Binary files /dev/null and b/src/public/goggles_particle.webm.br differ diff --git a/src/public/ha_hmph_addiction.eot.gz b/src/public/ha_hmph_addiction.eot.gz new file mode 100644 index 0000000..08941b8 Binary files /dev/null and b/src/public/ha_hmph_addiction.eot.gz differ diff --git a/src/public/harmony_lick_on.mpkg.deflate b/src/public/harmony_lick_on.mpkg.deflate new file mode 100644 index 0000000..c2eadc4 --- /dev/null +++ b/src/public/harmony_lick_on.mpkg.deflate @@ -0,0 +1 @@ +xEInAE>';X6T'HTQMAǏp%qЎ֍Zj@5F7hFܳO#gq梓A#F/egP]nX2rr$(0v xMeǑ9"VEra3mPGо *J&9&v- \ No newline at end of file diff --git a/src/public/huzzah.m2v.br b/src/public/huzzah.m2v.br new file mode 100644 index 0000000..7783322 --- /dev/null +++ b/src/public/huzzah.m2v.br @@ -0,0 +1 @@ + vLmY@^5EuVNQm< `Nx<eaq@IrSfwlnRx.u9S?S\$f*P_juBE{•y5?a(n:TPf:Ǵl20:DN.))%VbTe\6,v ꑘ*w'ߞacʡ}lXI%V<&ew]Ci᜾P\&wwZRPou{;ՏyӪCLfYNJ \ No newline at end of file diff --git a/src/public/ill_fated_matchmaker_quickly.vss.br b/src/public/ill_fated_matchmaker_quickly.vss.br new file mode 100644 index 0000000..a8b0060 --- /dev/null +++ b/src/public/ill_fated_matchmaker_quickly.vss.br @@ -0,0 +1 @@ +(,lw4;{ ZCDjMl]:@d;JޟM) TmN@xЃa-$H4pqN*2SI ePǵʻ/:Xӱ0jYRi@_6,qՏt2i=qY-UXWՖ68w3l!b߂,mbt{z!ۺ 3H' D~Mk }W1t>+ObD*ZJ=$m1;"w[̲3bm$;hNL \ No newline at end of file diff --git a/src/public/immerse.pdf.gzip b/src/public/immerse.pdf.gzip new file mode 100644 index 0000000..aaf0979 Binary files /dev/null and b/src/public/immerse.pdf.gzip differ diff --git a/src/public/index.html b/src/public/index.html new file mode 100644 index 0000000..c94b54f --- /dev/null +++ b/src/public/index.html @@ -0,0 +1,27 @@ + + + + + + + File Compression + + +

File Compression

+
+ + +
+ + + +
+ + +
+ + diff --git a/src/public/innocently_who.dll.deflate b/src/public/innocently_who.dll.deflate new file mode 100644 index 0000000..a3c96b9 Binary files /dev/null and b/src/public/innocently_who.dll.deflate differ diff --git a/src/public/insert_along.xlt.gzip b/src/public/insert_along.xlt.gzip new file mode 100644 index 0000000..849e19c Binary files /dev/null and b/src/public/insert_along.xlt.gzip differ diff --git a/src/public/inside.bz2.deflate b/src/public/inside.bz2.deflate new file mode 100644 index 0000000..4018c51 Binary files /dev/null and b/src/public/inside.bz2.deflate differ diff --git a/src/public/into_announce.abw.deflate b/src/public/into_announce.abw.deflate new file mode 100644 index 0000000..3cf230b Binary files /dev/null and b/src/public/into_announce.abw.deflate differ diff --git a/src/public/jealously_mid_pleasant.tif.deflate b/src/public/jealously_mid_pleasant.tif.deflate new file mode 100644 index 0000000..1774131 --- /dev/null +++ b/src/public/jealously_mid_pleasant.tif.deflate @@ -0,0 +1 @@ +x5m1 D]T=IՎ7$Qc"`_,z~S}1̽24vNGr2X5ۇ2+`cj_ n]!2% WeUBG:.)8ƬŋrB.׊otP"dٵAǷ*%_(n~ F@R%28Omh6o-/-|to0XlM6aZRZN \ No newline at end of file diff --git a/src/public/junior_phew.mpkg.deflate b/src/public/junior_phew.mpkg.deflate new file mode 100644 index 0000000..ca908ac --- /dev/null +++ b/src/public/junior_phew.mpkg.deflate @@ -0,0 +1,2 @@ +x5nAC +Cszggi6z7mԡg<7 Cr)߭[×LK 45ĢGMCvel\%. OnN8>>s儝!5W1yQMɽ.7|wI LUi7\6-)vEF9>n7)찃UfϲKkUZDMjeM5'0^H9x \ No newline at end of file diff --git a/src/public/keen_worth.log.br b/src/public/keen_worth.log.br new file mode 100644 index 0000000..965a5a6 Binary files /dev/null and b/src/public/keen_worth.log.br differ diff --git a/src/public/key_hierarchy_gestate.oga.br b/src/public/key_hierarchy_gestate.oga.br new file mode 100644 index 0000000..97a024d --- /dev/null +++ b/src/public/key_hierarchy_gestate.oga.br @@ -0,0 +1,4 @@ +n}{/A:hȊN VӍ;% +) iɁzA !V# l`Zy*M nPXDGhHxy|MobƇ7 g!F PՆMgUu|TY O<h[;ʛi^u;FWMMȿGL- +ष +sY›S0 ngŁ&*:ѨX1 \ No newline at end of file diff --git a/src/public/knowledgeable_quaver_sympathetically.odt.deflate b/src/public/knowledgeable_quaver_sympathetically.odt.deflate new file mode 100644 index 0000000..37021f5 Binary files /dev/null and b/src/public/knowledgeable_quaver_sympathetically.odt.deflate differ diff --git a/src/public/kookily_since.dll.br b/src/public/kookily_since.dll.br new file mode 100644 index 0000000..daee151 Binary files /dev/null and b/src/public/kookily_since.dll.br differ diff --git a/src/public/lazily_as_however.ics.gzip b/src/public/lazily_as_however.ics.gzip new file mode 100644 index 0000000..121e65f Binary files /dev/null and b/src/public/lazily_as_however.ics.gzip differ diff --git a/src/public/lean_scan_diplomacy.m2a.gzip b/src/public/lean_scan_diplomacy.m2a.gzip new file mode 100644 index 0000000..1751c74 Binary files /dev/null and b/src/public/lean_scan_diplomacy.m2a.gzip differ diff --git a/src/public/lest.ogv.br b/src/public/lest.ogv.br new file mode 100644 index 0000000..797872b Binary files /dev/null and b/src/public/lest.ogv.br differ diff --git a/src/public/likewise_observe_but.json.gz b/src/public/likewise_observe_but.json.gz new file mode 100644 index 0000000..b98ee5c Binary files /dev/null and b/src/public/likewise_observe_but.json.gz differ diff --git a/src/public/lively_psst.dump.gz b/src/public/lively_psst.dump.gz new file mode 100644 index 0000000..d9c95a6 Binary files /dev/null and b/src/public/lively_psst.dump.gz differ diff --git a/src/public/loosely.img.dfl b/src/public/loosely.img.dfl new file mode 100644 index 0000000..31b7b01 --- /dev/null +++ b/src/public/loosely.img.dfl @@ -0,0 +1,3 @@ +xMMn1 9O0x9BVlkwMvEP~\K&- +< t*UwA:oF3?'Ӑ?u +n'u }!: 79𨛝)HINtznl amo!*oN >lNH ):t9 6v}+&| #]l3WUxH~?p%DjLoB_ꍻ-?fV;ug{{o=o  \ No newline at end of file diff --git a/src/public/lovable_history_ouch.ppt.deflate b/src/public/lovable_history_ouch.ppt.deflate new file mode 100644 index 0000000..df4cb1b --- /dev/null +++ b/src/public/lovable_history_ouch.ppt.deflate @@ -0,0 +1 @@ +xUMj`C9N;^ x<$8U=9Kё>EB}O}sh֎5d.*G'$2-_#DvwsArZCcr@5j|/fӯ0>!{9kB&K.Alv\rsTtL{Onrep,.ėITn:Hyvt~^ϧ8u^vdt.j \ No newline at end of file diff --git a/src/public/marvel_amazon_dumbfound.shtml.deflate b/src/public/marvel_amazon_dumbfound.shtml.deflate new file mode 100644 index 0000000..5552d95 --- /dev/null +++ b/src/public/marvel_amazon_dumbfound.shtml.deflate @@ -0,0 +1,2 @@ +x5;n#A s❠OnsCt-~_RUx$ulJm)2]1]6Oe n9 L%F,)uNξ6.?RIG.ĔXͩ;sඕ{0[ʳ~G]Dw$*Kb|z-Gϊem R᢫DKO +~h #doNu(ݧ \ No newline at end of file diff --git a/src/public/meanwhile.distz.br b/src/public/meanwhile.distz.br new file mode 100644 index 0000000..7422ea8 Binary files /dev/null and b/src/public/meanwhile.distz.br differ diff --git a/src/public/measles_while_foolishly.pot.br b/src/public/measles_while_foolishly.pot.br new file mode 100644 index 0000000..2d96bf5 --- /dev/null +++ b/src/public/measles_while_foolishly.pot.br @@ -0,0 +1,2 @@ +n}{/A:h ?|"Tm!`iXVOccT}Byw׉λxI3Q>=s:;Sy!¡ )@*_Ԏ[k)HsOk7/ԫƭ^Z}P7zu9^i1W:Gk>~J9 S%, +oŰB8 Q9X +41>x:Ĵu-ӎ'qBvYgұ8K[5?OpHAģ, \ No newline at end of file diff --git a/src/public/mmm.deploy.br b/src/public/mmm.deploy.br new file mode 100644 index 0000000..baca6f1 Binary files /dev/null and b/src/public/mmm.deploy.br differ diff --git a/src/public/mocha.arc.deflate b/src/public/mocha.arc.deflate new file mode 100644 index 0000000..1cff24c --- /dev/null +++ b/src/public/mocha.arc.deflate @@ -0,0 +1,4 @@ +xE;n1 C'l"^Alk)RR '5@ ɉf|^ [B 'N6T^R9QR< +l6 +q?xyXaudP%S +>z:BWgT!dO6EqSI^>TZTD&:ꌦٶ@c-4o!ihӱy-q*brxlvջ$_qzB \ No newline at end of file diff --git a/src/public/musty_questioningly_incredible.mpkgundefined b/src/public/musty_questioningly_incredible.mpkgundefined new file mode 100644 index 0000000..e69de29 diff --git a/src/public/neatly_fussy.bz2.gz b/src/public/neatly_fussy.bz2.gz new file mode 100644 index 0000000..b3807dd Binary files /dev/null and b/src/public/neatly_fussy.bz2.gz differ diff --git a/src/public/nobody_booking_painting.xla.deflate b/src/public/nobody_booking_painting.xla.deflate new file mode 100644 index 0000000..7ac9cdc Binary files /dev/null and b/src/public/nobody_booking_painting.xla.deflate differ diff --git a/src/public/novel_militate_forenenst.mp2.dfl b/src/public/novel_militate_forenenst.mp2.dfl new file mode 100644 index 0000000..efc6c88 --- /dev/null +++ b/src/public/novel_militate_forenenst.mp2.dfl @@ -0,0 +1 @@ +x-KN1C'; }MR))C}ZږdY`1kh\Qt)^[ES:PnۢEǩD׮WY݈(JKKB,%|eioJ#9ee\EĶV&^?u:ݗEdx㲼 qs55k 15 \ No newline at end of file diff --git a/src/public/now_joyfully.xul.deflate b/src/public/now_joyfully.xul.deflate new file mode 100644 index 0000000..431bd91 Binary files /dev/null and b/src/public/now_joyfully.xul.deflate differ diff --git a/src/public/now_tambourine.map.br b/src/public/now_tambourine.map.br new file mode 100644 index 0000000..69e3512 --- /dev/null +++ b/src/public/now_tambourine.map.br @@ -0,0 +1 @@ +W=uU)UպR^"M,ї48&!"AV`X~"~K|Ԙv70,|- 'njWeͺhK$xkyIܾ'oEﴱ8GŭJ.݉c1v5,Jp\0ըZKewqb鯃ľd.sp4lCZjКH|C{zdbr[ oP7-M?||:nUz/+ah'0 \ No newline at end of file diff --git a/src/public/once_yesterday_sugary.ogv.br b/src/public/once_yesterday_sugary.ogv.br new file mode 100644 index 0000000..0dbdf9b Binary files /dev/null and b/src/public/once_yesterday_sugary.ogv.br differ diff --git a/src/public/only_boogie_so.json.gz b/src/public/only_boogie_so.json.gz new file mode 100644 index 0000000..31b2577 Binary files /dev/null and b/src/public/only_boogie_so.json.gz differ diff --git a/src/public/only_plunge.png.deflate b/src/public/only_plunge.png.deflate new file mode 100644 index 0000000..ddeb5e5 --- /dev/null +++ b/src/public/only_plunge.png.deflate @@ -0,0 +1 @@ +x=IN1 DN;0-X#;i=D%YK_ԠgµI:[ccqy!2(鼱iI? Ed`I^ޓ\MKbIzzs:mNU--*xh dS'V=-=wRxSo:] K{]2|kWȼuroy!A ;?lS-\ \ No newline at end of file diff --git a/src/public/oof_bowdlerize.vss.gz b/src/public/oof_bowdlerize.vss.gz new file mode 100644 index 0000000..91391a1 Binary files /dev/null and b/src/public/oof_bowdlerize.vss.gz differ diff --git a/src/public/openly_fingerling.xlm.gzip b/src/public/openly_fingerling.xlm.gzip new file mode 100644 index 0000000..a483639 Binary files /dev/null and b/src/public/openly_fingerling.xlm.gzip differ diff --git a/src/public/out_fairly_tinted.img.br b/src/public/out_fairly_tinted.img.br new file mode 100644 index 0000000..c6f8f44 Binary files /dev/null and b/src/public/out_fairly_tinted.img.br differ diff --git a/src/public/over.dump.deflate b/src/public/over.dump.deflate new file mode 100644 index 0000000..e12c69a Binary files /dev/null and b/src/public/over.dump.deflate differ diff --git a/src/public/overview_very_that.kar.br b/src/public/overview_very_that.kar.br new file mode 100644 index 0000000..b29104e Binary files /dev/null and b/src/public/overview_very_that.kar.br differ diff --git a/src/public/pace_galoshes_why.ogx.deflate b/src/public/pace_galoshes_why.ogx.deflate new file mode 100644 index 0000000..47da6be --- /dev/null +++ b/src/public/pace_galoshes_why.ogx.deflate @@ -0,0 +1,2 @@ +xm0 Co +NݠY 8ϒv)z*Hz@*h 4u앭XH:t0vG/Z|lKe sPi#瞵\y;t\&nwr 9AmҩT>8Vwu,Kl{.ZbFk,bFGjYU;bAO 7dk?G \ No newline at end of file diff --git a/src/public/packetize_from_curry.3gp.deflate b/src/public/packetize_from_curry.3gp.deflate new file mode 100644 index 0000000..7b625a1 Binary files /dev/null and b/src/public/packetize_from_curry.3gp.deflate differ diff --git a/src/public/patch_zowie_gee.vsw.gzip b/src/public/patch_zowie_gee.vsw.gzip new file mode 100644 index 0000000..3155030 Binary files /dev/null and b/src/public/patch_zowie_gee.vsw.gzip differ diff --git a/src/public/peppery_round.mpeg.deflate b/src/public/peppery_round.mpeg.deflate new file mode 100644 index 0000000..1512176 Binary files /dev/null and b/src/public/peppery_round.mpeg.deflate differ diff --git a/src/public/per.csv.gz b/src/public/per.csv.gz new file mode 100644 index 0000000..ad95619 Binary files /dev/null and b/src/public/per.csv.gz differ diff --git a/src/public/perfumed.shtml.gz b/src/public/perfumed.shtml.gz new file mode 100644 index 0000000..d31822a Binary files /dev/null and b/src/public/perfumed.shtml.gz differ diff --git a/src/public/pfft.svgz.deflate b/src/public/pfft.svgz.deflate new file mode 100644 index 0000000..c008321 --- /dev/null +++ b/src/public/pfft.svgz.deflate @@ -0,0 +1,2 @@ +xU=n1 {bNwUjH= 9@b/- t=lu` 4sF~"l>%%^4 xX@bMI^ b?DoG37%JedGڲ;dDzq L @t'ܺn;!Z]'4$ \QXk&%x'%.]S]eO9xH9%lBkߎI.XSNhݮm{ħm7 N +P%Am7n! \ No newline at end of file diff --git a/src/public/phew_helplessly_cupcake.svg.gz b/src/public/phew_helplessly_cupcake.svg.gz new file mode 100644 index 0000000..89ba2cf Binary files /dev/null and b/src/public/phew_helplessly_cupcake.svg.gz differ diff --git a/src/public/pinpoint_thrifty.mp4.br b/src/public/pinpoint_thrifty.mp4.br new file mode 100644 index 0000000..61f1dea Binary files /dev/null and b/src/public/pinpoint_thrifty.mp4.br differ diff --git a/src/public/pish.mp2a.gzip b/src/public/pish.mp2a.gzip new file mode 100644 index 0000000..252aac8 Binary files /dev/null and b/src/public/pish.mp2a.gzip differ diff --git a/src/public/plus_yippee.msp.deflate b/src/public/plus_yippee.msp.deflate new file mode 100644 index 0000000..f9a18d3 --- /dev/null +++ b/src/public/plus_yippee.msp.deflate @@ -0,0 +1 @@ +x;n1 D{bN;m ??P7sbl+m`H;QyZJ÷KWW6\$ wiЦ.MP珦p䒥1iZ=շJ]@VҔHPn` 6 &5gYԮ6v^KDE}9.GȊ'Qt"[ ?"}^ ]NiH䥬5o \ No newline at end of file diff --git a/src/public/pompom_screamer.woff.gzip b/src/public/pompom_screamer.woff.gzip new file mode 100644 index 0000000..77c879f Binary files /dev/null and b/src/public/pompom_screamer.woff.gzip differ diff --git a/src/public/portly_garlic.mpkg.deflate b/src/public/portly_garlic.mpkg.deflate new file mode 100644 index 0000000..5e01878 --- /dev/null +++ b/src/public/portly_garlic.mpkg.deflate @@ -0,0 +1,7 @@ +xEM1 T +GN +&/8Q$.c3~ŃQ**!%z:-H?O5PAS!EN PaP +*2z*<*VK_Vmjp +>/kݝk F\645b\bN#S¸*-m9MW\0 +5p܉qcuP*$ +BxzrG#o4A U6w;SsG&{xlBgr=;FeM~lmaJ;%E|+0G:e۪%!ُus \ No newline at end of file diff --git a/src/public/provided_botch.ogv.br b/src/public/provided_botch.ogv.br new file mode 100644 index 0000000..1e6230f --- /dev/null +++ b/src/public/provided_botch.ogv.br @@ -0,0 +1,2 @@ +`W=eАRݐu3(+i- ?81Cn?֯M!kq;_|bg?D[㣡b d^]|4DURb vr?U>#x\ ŧP1 :򹩔:Dgk(9[KV['>/a 5-+RO9wG&h:6N|̊>X~Nǫ2Elzdl2$&.]M,kKG4Kј +َ%>^tHP \ No newline at end of file diff --git a/src/public/psst_comptroller.dot.deflate b/src/public/psst_comptroller.dot.deflate new file mode 100644 index 0000000..f6a20c0 --- /dev/null +++ b/src/public/psst_comptroller.dot.deflate @@ -0,0 +1,3 @@ +x-m1 Db*PsISZzC@yo{;h:s7E#klh`E%ɞKlWrS{+u +)OB3$WJ#~QCjn +Z꡻~T ڦ^EV dU¶%UUd*'!{ojե"hKols覘n6?{ϙz{>͓?_p{=txgk|hu= \ No newline at end of file diff --git a/src/public/questioningly.xhtml.br b/src/public/questioningly.xhtml.br new file mode 100644 index 0000000..9e1c300 Binary files /dev/null and b/src/public/questioningly.xhtml.br differ diff --git a/src/public/questioningly_cinch.pkg.deflate b/src/public/questioningly_cinch.pkg.deflate new file mode 100644 index 0000000..7e020ff --- /dev/null +++ b/src/public/questioningly_cinch.pkg.deflate @@ -0,0 +1 @@ +xEAn@yEDv, ~4]꽌: ͭqw)l~JǬuqiw1:7VI6Ǡ:inC~26ߵGY'K\G)(=FkLǣ:8BQQ+b]MذWܚ\õ0C|5\ tR[\7IҋM>_Rҋ׋M3G:hE&t) d|LT@5Y18l]:K? jdJ* \ No newline at end of file diff --git a/src/public/quirkily_drat.vsw.br b/src/public/quirkily_drat.vsw.br new file mode 100644 index 0000000..eed8144 --- /dev/null +++ b/src/public/quirkily_drat.vsw.br @@ -0,0 +1 @@ +`vLmY@^ u[.Lꤧow&<N4gY-#86$ IV5hSP44eO)a /s))xsԲ\K@{ӑpnUHހNԓ{?)XV@B, p9Iy[:+慎4x-R*=52Rs&O[VH-rk&y Qhy}wteʠ㵏[m;MY=n|2}˴) \ No newline at end of file diff --git a/src/public/searchingly_successfully_kindheartedly.dll.gz b/src/public/searchingly_successfully_kindheartedly.dll.gz new file mode 100644 index 0000000..9e754c3 Binary files /dev/null and b/src/public/searchingly_successfully_kindheartedly.dll.gz differ diff --git a/src/public/secrete_duckie.shtml.gz b/src/public/secrete_duckie.shtml.gz new file mode 100644 index 0000000..c75dfdd Binary files /dev/null and b/src/public/secrete_duckie.shtml.gz differ diff --git a/src/public/seriously_nor_although.vsw.br b/src/public/seriously_nor_although.vsw.br new file mode 100644 index 0000000..66b235c Binary files /dev/null and b/src/public/seriously_nor_although.vsw.br differ diff --git a/src/public/sleepily.gif.br b/src/public/sleepily.gif.br new file mode 100644 index 0000000..1e54f68 --- /dev/null +++ b/src/public/sleepily.gif.br @@ -0,0 +1,2 @@ + vLmY@^QUUY[T= 3*>MR + O40M* ~ȉ.|#]`t%Bb™]!tbRbOu@qc+}:qP:*L;1e)sc td?6!yGc q/גFސi:.#IYB^RcO/.zxp\0AdK}m& ? N_.yM˜FuۆR=YL+GFDZmKzhv˼CoGR%OzOfZ  \ No newline at end of file diff --git a/src/public/so_curiously_beside.bmp.gzip b/src/public/so_curiously_beside.bmp.gzip new file mode 100644 index 0000000..7b294f0 Binary files /dev/null and b/src/public/so_curiously_beside.bmp.gzip differ diff --git a/src/public/so_hmph.bufferundefined b/src/public/so_hmph.bufferundefined new file mode 100644 index 0000000..e69de29 diff --git a/src/public/solid_midline.3gpp.dfl b/src/public/solid_midline.3gpp.dfl new file mode 100644 index 0000000..0bece39 Binary files /dev/null and b/src/public/solid_midline.3gpp.dfl differ diff --git a/src/public/speedily.ifb.gz b/src/public/speedily.ifb.gz new file mode 100644 index 0000000..74f68fc Binary files /dev/null and b/src/public/speedily.ifb.gz differ diff --git a/src/public/suitcase_youthfully_cute.m2a.br b/src/public/suitcase_youthfully_cute.m2a.br new file mode 100644 index 0000000..9694f24 --- /dev/null +++ b/src/public/suitcase_youthfully_cute.m2a.br @@ -0,0 +1 @@ +W=ޒdˉʾPqmJ4.I}*w,l'oGbԢY=] 9M/+%N(< w9G|wN= iwB.]+xZ%zwBf/)'WuKqB Qe'wv@ߞ3_xڐ\s\Gx!K._Y\Hv/*v@i˴:u z5ugagεnj% x' ^^>$lځ6G^H=J +φIq7?>, \ No newline at end of file diff --git a/src/public/tamp_brocolli.img.deflate b/src/public/tamp_brocolli.img.deflate new file mode 100644 index 0000000..0522d4d --- /dev/null +++ b/src/public/tamp_brocolli.img.deflate @@ -0,0 +1,5 @@ +xMK$1 D} + Pwhj m}7Z/?Dxn5-8v +Id99V5cujFF|fn*j=JN%f]/&)#YqU&Bf_O-ΒFGӢX/s{¦vAQGfWi7>GߘAY4(9]ƖZ +2p๋<bhQa %1 +'El^ɻ*81&*z6l-J.3oLjSP%%2gjRŮwTF* \vGSsRj>~&ӎ \ No newline at end of file diff --git a/src/public/teeming_aware_on.exe.gzip b/src/public/teeming_aware_on.exe.gzip new file mode 100644 index 0000000..5f2cd9c Binary files /dev/null and b/src/public/teeming_aware_on.exe.gzip differ diff --git a/src/public/terribly.mjs.deflate b/src/public/terribly.mjs.deflate new file mode 100644 index 0000000..545b4d1 --- /dev/null +++ b/src/public/terribly.mjs.deflate @@ -0,0 +1 @@ +x%m1 Db*wE>ByWVssD'.:tFh@>(U)ԪbZh(&slaR5h4%/Om{Rz{Jj%.odHo6U; ;Ow'tKۃC%sbH$eDG)*eiHܻ$5rE~ᚻ!{QԱ< \ No newline at end of file diff --git a/src/public/than.m2v.gzip b/src/public/than.m2v.gzip new file mode 100644 index 0000000..01fa4dc Binary files /dev/null and b/src/public/than.m2v.gzip differ diff --git a/src/public/thousand.dms.deflate b/src/public/thousand.dms.deflate new file mode 100644 index 0000000..fcd2855 Binary files /dev/null and b/src/public/thousand.dms.deflate differ diff --git a/src/public/throughout.xhtml.gz b/src/public/throughout.xhtml.gz new file mode 100644 index 0000000..13bc843 Binary files /dev/null and b/src/public/throughout.xhtml.gz differ diff --git a/src/public/throughout_ew_unnecessarily.vsw.gzip b/src/public/throughout_ew_unnecessarily.vsw.gzip new file mode 100644 index 0000000..9f580b0 Binary files /dev/null and b/src/public/throughout_ew_unnecessarily.vsw.gzip differ diff --git a/src/public/till_gee_onto.zipundefined b/src/public/till_gee_onto.zipundefined new file mode 100644 index 0000000..e69de29 diff --git a/src/public/towards.mp3.br b/src/public/towards.mp3.br new file mode 100644 index 0000000..dd0d66a --- /dev/null +++ b/src/public/towards.mp3.br @@ -0,0 +1,2 @@ +,l DtJO RDe#waE)Q + IF~iC Cw<&F3ϴq mxzl}J:X*K'4([{ =j*i>bmqLW?/`M?a(lV6V؋u4a'gb1+5 Z"/˶&Vܤ}>b,r ku*ձ78bK Wƣ \ No newline at end of file diff --git a/src/public/ugh_documentation_by.zip.br b/src/public/ugh_documentation_by.zip.br new file mode 100644 index 0000000..a4539bb Binary files /dev/null and b/src/public/ugh_documentation_by.zip.br differ diff --git a/src/public/uh_huh.in.deflate b/src/public/uh_huh.in.deflate new file mode 100644 index 0000000..aafd26a Binary files /dev/null and b/src/public/uh_huh.in.deflate differ diff --git a/src/public/ultimately_famously_thin.dmg.gz b/src/public/ultimately_famously_thin.dmg.gz new file mode 100644 index 0000000..864f177 Binary files /dev/null and b/src/public/ultimately_famously_thin.dmg.gz differ diff --git a/src/public/undefined.br b/src/public/undefined.br new file mode 100644 index 0000000..e69de29 diff --git a/src/public/undefined.dfl b/src/public/undefined.dfl new file mode 100644 index 0000000..e69de29 diff --git a/src/public/undefined.gz b/src/public/undefined.gz new file mode 100644 index 0000000..e69de29 diff --git a/src/public/under_midst.mp2a.br b/src/public/under_midst.mp2a.br new file mode 100644 index 0000000..f80067e Binary files /dev/null and b/src/public/under_midst.mp2a.br differ diff --git a/src/public/unimpressively_limply.rtf.br b/src/public/unimpressively_limply.rtf.br new file mode 100644 index 0000000..d6c0dd4 Binary files /dev/null and b/src/public/unimpressively_limply.rtf.br differ diff --git a/src/public/unlawful_pish.spx.br b/src/public/unlawful_pish.spx.br new file mode 100644 index 0000000..3d5b809 Binary files /dev/null and b/src/public/unlawful_pish.spx.br differ diff --git a/src/public/unless_wherever.html.br b/src/public/unless_wherever.html.br new file mode 100644 index 0000000..11763c0 Binary files /dev/null and b/src/public/unless_wherever.html.br differ diff --git a/src/public/unlike_er_unless.conf.dfl b/src/public/unlike_er_unless.conf.dfl new file mode 100644 index 0000000..74a651f Binary files /dev/null and b/src/public/unlike_er_unless.conf.dfl differ diff --git a/src/public/until_reassuringly_forever.dist.gz b/src/public/until_reassuringly_forever.dist.gz new file mode 100644 index 0000000..034d326 Binary files /dev/null and b/src/public/until_reassuringly_forever.dist.gz differ diff --git a/src/public/upside_down_duh.avif.br b/src/public/upside_down_duh.avif.br new file mode 100644 index 0000000..dac1e98 Binary files /dev/null and b/src/public/upside_down_duh.avif.br differ diff --git a/src/public/upskill.xlc.gz b/src/public/upskill.xlc.gz new file mode 100644 index 0000000..83fabcf Binary files /dev/null and b/src/public/upskill.xlc.gz differ diff --git a/src/public/urge_drat_vastly.mpg4.br b/src/public/urge_drat_vastly.mpg4.br new file mode 100644 index 0000000..fa42832 Binary files /dev/null and b/src/public/urge_drat_vastly.mpg4.br differ diff --git a/src/public/vacillate.jsonld.deflate b/src/public/vacillate.jsonld.deflate new file mode 100644 index 0000000..9d96a98 Binary files /dev/null and b/src/public/vacillate.jsonld.deflate differ diff --git a/src/public/vainly_ideal_contemplate.boz.br b/src/public/vainly_ideal_contemplate.boz.br new file mode 100644 index 0000000..1394fb9 --- /dev/null +++ b/src/public/vainly_ideal_contemplate.boz.br @@ -0,0 +1,3 @@ + n}{/A:hɪUST="'QfO4 8xݮ7>-;dž&m/|7πڑPt ,!? +c4ix,nI[~2*Bh6mWlz{v 3*oi,UHg2NJ6([K RYP@644 >-TQX!>GT_ \ No newline at end of file diff --git a/src/public/vainly_whoa.in.gz b/src/public/vainly_whoa.in.gz new file mode 100644 index 0000000..e08e3eb Binary files /dev/null and b/src/public/vainly_whoa.in.gz differ diff --git a/src/public/verbally.dot.gz b/src/public/verbally.dot.gz new file mode 100644 index 0000000..413125a Binary files /dev/null and b/src/public/verbally.dot.gz differ diff --git a/src/public/vol.bz2.deflate b/src/public/vol.bz2.deflate new file mode 100644 index 0000000..31dbb7e --- /dev/null +++ b/src/public/vol.bz2.deflate @@ -0,0 +1 @@ +x%q$AkųaorЈ*h鐼WT Af.$⑽9@d +Ed=.bR|6 .b?[ђJSTNZI=QKLNv;)mzIe@RUN u ⠡&{1XE6ttbswH/7@cioo)w;B%&m\k}ФL]Zz?ҬN \ No newline at end of file diff --git a/src/public/wealthy.dms.deflate b/src/public/wealthy.dms.deflate new file mode 100644 index 0000000..7208fe9 Binary files /dev/null and b/src/public/wealthy.dms.deflate differ diff --git a/src/public/weaponise_given_married.def.deflate b/src/public/weaponise_given_married.def.deflate new file mode 100644 index 0000000..a4fb2ba Binary files /dev/null and b/src/public/weaponise_given_married.def.deflate differ diff --git a/src/public/weasel_what_as.azw.br b/src/public/weasel_what_as.azw.br new file mode 100644 index 0000000..033bbd4 Binary files /dev/null and b/src/public/weasel_what_as.azw.br differ diff --git a/src/public/what_even.xulundefined b/src/public/what_even.xulundefined new file mode 100644 index 0000000..e69de29 diff --git a/src/public/whenever_aw.php.br b/src/public/whenever_aw.php.br new file mode 100644 index 0000000..e61ba66 --- /dev/null +++ b/src/public/whenever_aw.php.br @@ -0,0 +1 @@ +Pn}{DToZ=LwJzHI#P}pȁáZH4{7FQvsNk-.K>SL|% \϶B1`Cq)=`Й[W?`|ReB߶`ԅ]a(sA~DExƝJp4-+{>p>zUNwm6lNh7ngC0^` \ No newline at end of file diff --git a/src/public/where_gasket_oily.m2v.dfl b/src/public/where_gasket_oily.m2v.dfl new file mode 100644 index 0000000..883047b Binary files /dev/null and b/src/public/where_gasket_oily.m2v.dfl differ diff --git a/src/public/whether_pish_novel.html.gz b/src/public/whether_pish_novel.html.gz new file mode 100644 index 0000000..cd851db Binary files /dev/null and b/src/public/whether_pish_novel.html.gz differ diff --git a/src/public/which_whereas_how.csv.br b/src/public/which_whereas_how.csv.br new file mode 100644 index 0000000..9d81dbd Binary files /dev/null and b/src/public/which_whereas_how.csv.br differ diff --git a/src/public/whoa_clerk.midi.dfl b/src/public/whoa_clerk.midi.dfl new file mode 100644 index 0000000..4aaaa03 Binary files /dev/null and b/src/public/whoa_clerk.midi.dfl differ diff --git a/src/public/whoever.eot.dfl b/src/public/whoever.eot.dfl new file mode 100644 index 0000000..564d45e --- /dev/null +++ b/src/public/whoever.eot.dfl @@ -0,0 +1,3 @@ +x-m0 b+P PcLWtc1yHI$!syzʨj,xwXN^roCHM̋)pjKtF^t{sty6 +l[! +l5|u^TC٫ⴡrRQOWg󴳆!;WV[:)"ޥdž/C;QcT@4M6l>Ԯ&W"9lxpҐ6&~p7HΓcRf(:_Xي KS5mjnvDɓlxʼn5dR&TL;> ?5gVH덚RNȲ+mA*zv:Pee \ No newline at end of file diff --git a/src/public/within_because_absent.xlm.br b/src/public/within_because_absent.xlm.br new file mode 100644 index 0000000..9429ff3 --- /dev/null +++ b/src/public/within_because_absent.xlm.br @@ -0,0 +1 @@ + W=䁇,g(raʮPr|@lvr[ m(Lr}xxדsAjRjX~<טfCaCCX3*l c:+S.m1nqǿ΍f_qpY'| K4KlLi$~٘7n~cO"үgYL!*lh7L y,,٩!{큂'cJzPGzՓ$g! RˆH9jG6>C^ \ No newline at end of file diff --git a/src/public/without.bz.br b/src/public/without.bz.br new file mode 100644 index 0000000..8c914fc Binary files /dev/null and b/src/public/without.bz.br differ diff --git a/src/public/worried.dump.dfl b/src/public/worried.dump.dfl new file mode 100644 index 0000000..6216719 --- /dev/null +++ b/src/public/worried.dump.dfl @@ -0,0 +1,2 @@ +x=KN1 DNw@a3bػw$(#znaQLEѐ*ox|:IdUxNn:RQy? "ݵz+i&%[e!IPYK[QC*c9sv=GRW\b'PeJi4޵IȵiK`8nl&#]Mpr'Kjae6GNS>&iG \ No newline at end of file diff --git a/src/public/worth_happily.tif.deflate b/src/public/worth_happily.tif.deflate new file mode 100644 index 0000000..4fbfa8d --- /dev/null +++ b/src/public/worth_happily.tif.deflate @@ -0,0 +1 @@ +x-KjA >E` C5cAwGQCGD:XXlH]NiasCC<P$m#.Sܛ/42Q/_]:rTҴAh:vӝ|}^SNlۥwJMMmgluɄ" ق+E9(cvPvߤؖ駼XB+{Π #G!d35t6TZ|rx&Z!w^-&@V=Ĉ ɮbhˊ|UUlx 4'h?ȴ \ No newline at end of file diff --git a/src/public/yearningly_noon.php.gzip b/src/public/yearningly_noon.php.gzip new file mode 100644 index 0000000..7db3e7f Binary files /dev/null and b/src/public/yearningly_noon.php.gzip differ diff --git a/src/public/yet.deploy.br b/src/public/yet.deploy.br new file mode 100644 index 0000000..5039444 --- /dev/null +++ b/src/public/yet.deploy.br @@ -0,0 +1 @@ +`n}{/A:hȊUST=*wOrPzC9x [2NnAqti lc,*\%wbݭCq HŢ * q5 2+rj6«B<!}Rt$Z;;%5R.]]@}j_%Ip٨kⲩi _ihRT %^3ijHkT+Np9?S"*@cODu m=e:K \ No newline at end of file diff --git a/src/public/zampone_questionably_though.iso.deflate b/src/public/zampone_questionably_though.iso.deflate new file mode 100644 index 0000000..9ee1ef2 Binary files /dev/null and b/src/public/zampone_questionably_though.iso.deflate differ diff --git a/src/public/zigzag_intentional.msi.gz b/src/public/zigzag_intentional.msi.gz new file mode 100644 index 0000000..edb4063 Binary files /dev/null and b/src/public/zigzag_intentional.msi.gz differ diff --git a/src/public/zowie_parachute.ttf.deflate b/src/public/zowie_parachute.ttf.deflate new file mode 100644 index 0000000..1d57b77 --- /dev/null +++ b/src/public/zowie_parachute.ttf.deflate @@ -0,0 +1 @@ +x=Mn\A>Ea { uØQr'QԍV'Jb㮌b%qG8h=V_ d=JAw-r;+-?C&:lt$HSy{N  Ek.GL4^4zJAj;TJtN?p3*6]t&_ \ No newline at end of file