diff --git a/commands/admin/bye.js b/commands/admin/bye.js index c905ca0..df5307f 100644 --- a/commands/admin/bye.js +++ b/commands/admin/bye.js @@ -7,7 +7,7 @@ export default { .setDescription('Set a leave message') .addStringOption(option => option.setName('message') - .setDescription('The message you want the bot to say when someone leave in the current channel.')), + .setDescription('The message you want the bot to say when someone leaves the server, in the current channel.')), category: 'admin', userPermissions: [PermissionFlagsBits.ManageChannels], async execute(interaction, args, client) { diff --git a/commands/admin/welcome.js b/commands/admin/welcome.js index 351597b..5f3a598 100644 --- a/commands/admin/welcome.js +++ b/commands/admin/welcome.js @@ -7,7 +7,7 @@ export default { .setDescription('Set a join message') .addStringOption(option => option.setName('message') - .setDescription('The message you want the bot to say when someone join in the current channel.')), + .setDescription('The message you want the bot to say when someone joins the server, in the current channel.')), category: 'admin', userPermissions: [PermissionFlagsBits.ManageChannels], async execute(interaction, args, client) { diff --git a/commands/fun/reddit.js b/commands/fun/reddit.js index ced0ad3..782b8f7 100644 --- a/commands/fun/reddit.js +++ b/commands/fun/reddit.js @@ -26,7 +26,7 @@ export default { } const i = Math.floor((Math.random() * response.data.children.length)); if (response.data.children[i].data.over_18 == true && !interaction.channel.nsfw) { - return interaction.editReply('No nsfw'); + return interaction.editReply('Uh oh! This is a NSFW subreddit! Try again in a NSFW channel!'); } let description = response.data.children[i].data.selftext; diff --git a/commands/fun/tweet.js b/commands/fun/tweet.js index 09c819d..76e2d06 100644 --- a/commands/fun/tweet.js +++ b/commands/fun/tweet.js @@ -14,10 +14,10 @@ const Blacklists = db.Blacklists; export default { data: new SlashCommandBuilder() .setName('tweet') - .setDescription('Send tweet from Haha yes twitter account. Please do not use it for advertisement and keep it english') + .setDescription('Send tweet from Haha yes twitter account. Please do not use it for advertisement and keep it in English!') .addStringOption(option => option.setName('content') - .setDescription('The content of the tweet you want to send me.') + .setDescription('The content of the tweet you want me to send.') .setRequired(false)) .addAttachmentOption(option => option.setName('image') @@ -39,7 +39,7 @@ export default { const date = new Date(); // If account is less than 6 months old don't accept the tweet ( alt prevention ) if (interaction.user.createdAt > date.setMonth(date.getMonth() - 6)) { - await interaction.editReply({ content: 'Your account is too new to be able to use this command!' }); + await interaction.editReply({ content: 'Your Discord account is too new to be able to use this command!' }); return; } @@ -48,7 +48,7 @@ export default { // If account is less than 1 year old don't accept attachment if (attachment && interaction.user.createdAt > date.setFullYear(date.getFullYear() - 1)) { - await interaction.editReply({ content: 'Your account need to be 1 year or older to be able to send attachment!' }); + await interaction.editReply({ content: 'Your Discord account needs to be 1 year or older to be able to send attachments!' }); return; } @@ -74,7 +74,7 @@ export default { } // Do not allow discord invites if (tweet.includes('discord.gg') || tweet.includes('discord.com/invite/')) { - await interaction.editReply({ content: 'No discord invite allowed.' }); + await interaction.editReply({ content: 'No discord invites allowed.' }); return; } } @@ -110,7 +110,7 @@ export default { if (err) { console.log('OH NO AN ERROR!!!!!!!'); console.error(err); - return interaction.editReply({ content: 'OH NO!!! AN ERROR HAS occurred!!! please hold on while i find what\'s causing this issue! ' }); + return interaction.editReply({ content: 'OH NO!!! AN ERROR HAS OCCURRED!!! Please hold on while I find what\'s causing this issue! ' }); } else { Tweet(data); @@ -163,7 +163,7 @@ export default { if (err.code == 326) return interaction.editReply({ content: err.interaction }); console.error('OH NO!!!!'); console.error(err); - return interaction.editReply({ content: 'OH NO!!! AN ERROR HAS occurred!!! please hold on while i find what\'s causing this issue!' }); + return interaction.editReply({ content: 'OH NO!!! AN ERROR HAS OCCURRED!!! Please hold on while I find what\'s causing this issue!' }); } const tweetid = response.id_str; diff --git a/commands/fun/ytp.js b/commands/fun/ytp.js index 0ebddd4..e89ea2c 100644 --- a/commands/fun/ytp.js +++ b/commands/fun/ytp.js @@ -12,7 +12,7 @@ export default { .setDescription('Generate a YTP') .addBooleanOption(option => option.setName('force') - .setDescription('Force the generation of the video in non-nsfw channel.') + .setDescription('Force the generation of the video in a non-NSFW channel.') .setRequired(false)), category: 'fun', async execute(interaction, args) { @@ -39,7 +39,7 @@ export default { } } - const loadingmsg = await interaction.reply(`Processing, this can take a ***long*** time, i'll ping you when I finished \nSome info: There are currently ${mp4.length} videos, why not add yours? You can do so with the \`\`addytp\`\` command.\nLike ytp? Why not check out https://ytp.namejeff.xyz/`); + const loadingmsg = await interaction.reply(`Processing, this can take a ***long*** time, I'll ping you when it's finished \nSome info: There are currently ${mp4.length} videos, why not add yours? You can do so with the \`\`addytp\`\` command.\nLike ytp? Why not check out https://ytp.namejeff.xyz/`); const options = { debug: false, @@ -75,7 +75,7 @@ export default { new YTPGenerator().configurateAndGo(options) .then(() => { loadingmsg.delete(); - return interaction.reply({ content: 'Here is your YTP! Remember, it might contain nsfw, so be careful!', files: [`${os.tmpdir()}/${interaction.id}_YTP.mp4`] }) + return interaction.reply({ content: 'Here is your YTP! Remember, it might contain NSFW content, so be careful!', files: [`${os.tmpdir()}/${interaction.id}_YTP.mp4`] }) .catch(err => { console.error(err); return interaction.reply('Whoops, look like the vid might be too big for discord, my bad, please try again'); diff --git a/commands/owner/deletetweet.js b/commands/owner/deletetweet.js index 7e06918..883b856 100644 --- a/commands/owner/deletetweet.js +++ b/commands/owner/deletetweet.js @@ -9,7 +9,7 @@ export default { .setDescription('Delete a tweet') .addStringOption(option => option.setName('tweetid') - .setDescription('The id of the tweet you wish to delete.') + .setDescription('The ID of the tweet you wish to delete.') .setRequired(true)), category: 'owner', ownerOnly: true, @@ -26,7 +26,7 @@ export default { T.post('statuses/destroy', { id: args.tweetid, }); - return interaction.editReply('Tweet have been deleted!'); + return interaction.editReply('Tweet has been deleted!'); } catch (err) { console.error(err); diff --git a/commands/secret/s.js b/commands/secret/s.js index d1fb53d..fe5b632 100644 --- a/commands/secret/s.js +++ b/commands/secret/s.js @@ -38,10 +38,10 @@ export default { if (args.somethingelse) { if (owned.id === client.user.id) { - return interaction.reply('You really thought you could own me?, pathetic...'); + return interaction.reply('You really thought you could own me? Pathetic...'); } else if (owned.id === ownerId) { - return interaction.reply('You really thought you could own him?, pathetic...'); + return interaction.reply('You really thought you could own him? Pathetic...'); } else if (owned.id === '286054184623538177' || owned.id === '172112210863194113') { owned = interaction.user; @@ -70,7 +70,7 @@ export default { .then(() => interaction.reply(`sucessfully fart pissed on ${member.user.username} <:youngtroll:488559163832795136>`)) .catch((error) => { if (process.env.NODE_ENV === 'development') console.error(error); - interaction.reply(`Sorry i could not fart piss on ${member.user.username} :(`); + interaction.reply(`Sorry, I could not fart piss on ${member.user.username} :(`); }); @@ -80,7 +80,7 @@ export default { .then(() => interaction.reply('sucessfully fart pissed on you <:youngtroll:488559163832795136>')) .catch((error) => { if (process.env.NODE_ENV === 'development') console.error(error); - interaction.reply('Sorry i could not fart piss on you :('); + interaction.reply('Sorry, I could not fart piss on you :('); }); } default: diff --git a/commands/utility/download.js b/commands/utility/download.js index a788f9c..4216771 100644 --- a/commands/utility/download.js +++ b/commands/utility/download.js @@ -13,7 +13,7 @@ export default { .setDescription('Download a video.') .addStringOption(option => option.setName('url') - .setDescription('url of the video you want to download.') + .setDescription('URL of the video you want to download.') .setRequired(true)) .addBooleanOption(option => option.setName('format') diff --git a/commands/utility/feedback.js b/commands/utility/feedback.js index 9cf0c5d..d05102d 100644 --- a/commands/utility/feedback.js +++ b/commands/utility/feedback.js @@ -27,7 +27,7 @@ export default { // Don't let new account use this command to prevent spam const date = new Date(); if (interaction.user.createdAt > date.setDate(date.getDate() - 7)) { - return interaction.reply({ content: '❌ Your account is too new to be able to use this command!', ephemeral: true }); + return interaction.reply({ content: '❌ Your Discord account is too new to be able to use this command!', ephemeral: true }); } const channel = interaction.client.channels.resolve(feedbackChannelId); @@ -37,6 +37,6 @@ export default { else { channel.send({ embeds: [Embed] }); } - await interaction.reply({ content: 'Your feedback has been sent! Don\'t forget to have dm open if you want to get an answer from the dev!', ephemeral: true }); + await interaction.reply({ content: 'Your feedback has been sent! Don\'t forget to have DMs open if you want to get an answer from the dev!', ephemeral: true }); }, }; diff --git a/commands/utility/optout.js b/commands/utility/optout.js index 535227e..54d7f07 100644 --- a/commands/utility/optout.js +++ b/commands/utility/optout.js @@ -12,7 +12,7 @@ export default { if (!isOptOut) { const body = { userID: interaction.user.id }; await db.optout.create(body); - return await interaction.reply({ content: 'You have successfully been opt out.' }); + return await interaction.reply({ content: 'You have successfully been opted out.' }); } const row = new ActionRowBuilder() @@ -29,7 +29,7 @@ export default { .setStyle(ButtonStyle.Danger), ); - await interaction.reply({ content: 'You are already opt out, do you wish to opt in?', components: [row] }); + await interaction.reply({ content: 'You are already opted out, do you wish to opt in?', components: [row] }); client.on('interactionCreate', async (interactionMenu) => { if (interaction.user !== interactionMenu.user) return; @@ -37,7 +37,7 @@ export default { interactionMenu.update({ components: [] }); if (interactionMenu.customId === `yes${interaction.user.id}`) { await db.optout.destroy({ where: { userID: interaction.user.id } }); - return interaction.editReply('You have successfully been opt in'); + return interaction.editReply('You have successfully been opted in'); } else { return interaction.editReply('Nothing has been changed.'); diff --git a/commands/voice/dectalk.js b/commands/voice/dectalk.js index 65b9b7f..ad64b08 100644 --- a/commands/voice/dectalk.js +++ b/commands/voice/dectalk.js @@ -33,7 +33,7 @@ export default { if (error) { console.error(stderr); console.error(error); - return interaction.editReply('Oh no! an error has occurred!'); + return interaction.editReply('Oh no! An error has occurred!'); } return interaction.editReply({ files: [file] }); diff --git a/json/dictionary/adjectives.json b/json/dictionary/adjectives.json index 68340cd..1fed0c6 100644 --- a/json/dictionary/adjectives.json +++ b/json/dictionary/adjectives.json @@ -1 +1 @@ -["emotion", "- weight 10", "Africa nheritage", "African", "African-American", "African-Americanness", "American", "American heritage", "Australian", "Australian heritage", "British", "British heritage", "Canadian", "Canadian heritage", "Chinese", "Chinese heritage", "Confederate", "Confederateness", "French", "French heritage", "German", "German heritage", "Irish", "Irish heritage", "Italian", "Italian heritage", "Japanese", "Japanese heritage", "Korean", "Korean heritage", "Mexican", "Mexican heritage", "Norwegian", "Norwegian heritage", "Russian", "Russian heritage", "Spanish", "Spanish heritage", "Victorian", "Victorianness", "abhorrence", "abhorrent", "absolute", "absoluteness", "academic", "academicness", "acidic", "acidity", "acoustic", "active", "activity", "adaptability", "adaptable", "additional", "adequacy", "adequate", "administrative", "admirability", "admirable", "advantage", "advantageous", "advisable", "aerodynamics", "age", "aggravated", "aggression", "aggressive", "agressiveness", "alien", "alienness", "all-natural", "all-naturalness", "amazement", "amazing", "amazingness", "ambition", "ambitious", "amiable", "ancience", "ancient", "anger", "angrier", "angriest", "angry", "appeal", "appealing", "appetizing", "appetizingness", "arresting", "arrestingness", "arrogance", "arrogant", "artificial", "artificialness", "artsier", "artsiest", "artsiness", "artsy", "ashamed", "assertive", "assetiveness", "astonishing", "astonishingness", "astounding", "astoundingness", "athletic", "athleticness", "attractive", "attractiveness", "awe", "awe-inspiring", "awe-inspiringness", "awed", "awesome", "awesomeness", "awful", "barbeque", "barbequeness", "bashful", "bashfulness", "bearded", "beardedness", "beautiful", "beauty", "beefiness", "beloved", "belovedness", "bent", "bentness", "bilious", "biliousness", "bitter", "bitterness", "bittersweet", "bittersweetness", "black", "blacker", "blackest", "blackness", "blasphemous", "blasphemy", "blinding", "bliss", "blissful", "bloodier", "bloodiest", "bloodiness", "bloodthirstier", "bloodthirstiest", "bloodthirstiness", "bloodthirsty", "bloody", "blue", "blueness", "bluer", "bluest", "bold", "bolder", "boldest", "boldness", "bored", "boredom", "bouncier", "bounciest", "bounciness", "bouncy", "bountiful", "bountifulness", "brave", "braver", "bravery", "bravest", "breathtaking", "breathtakingness", "brighter", "brightest", "brightness", "brown", "browner", "brownest", "brownness", "bubblier", "bubbliest", "bubbliness", "bubbly", "bulges", "bulging", "busted", "bustedness", "butterier", "butteriest", "butteriness", "buttery", "calcification", "calcified", "captivating", "captivation", "casual", "casualness", "celestial", "celestialpower", "certification", "certified", "charitability", "charitable", "charm", "charming", "cheekier", "cheekiest", "cheekiness", "cheeky", "cheer", "cheerful", "childish", "chill", "chillier", "chilliest", "chilly", "chrome-plated", "chrome-platedness", "clever", "cleverer", "cleverest", "cleverness", "clockwise", "clockwise order", "cloudier", "cloudiest", "cloudiness", "cloudy", "cold", "colder", "coldest", "coldness", "color", "colorful", "colossal", "colossality", "comelier", "comeliest", "comeliness", "comely", "commendability", "commendable", "complimentarier", "complimentariest", "complimentariness", "complimentary", "concrete", "concreteness", "confusion", "considerate", "consideration", "constitutional", "constitutionalness", "contaminated", "contamination", "contempt", "contemptuous", "content", "contentfulness", "cooperation", "cooperative", "cornier", "corniest", "corniness", "corny", "corrugated", "corrugation", "counterclockwise", "counterclockwise order", "courage", "courageous", "cracklier", "crackliest", "crackliness", "crackly", "crankier", "crankiest", "crankiness", "cranky", "crapulous", "crapulousness", "cream-filled", "creamier", "creamiest", "creaminess", "creamy", "creative", "creativity", "criminal", "criminality", "critical", "criticalness", "crooked crookedness", "crustier", "crustiest", "crustiness", "crusty", "cubic", "cubicness", "cuddlier", "cuddliest", "cuddliness", "cuddly", "cultural", "culture", "damp", "damper", "dampest", "dampness", "dandier", "dandiest", "dandiness", "dandy", "danger", "dangerous", "dare", "daring", "dashing", "dashingness", "dazzling", "dazzlingness", "dead", "deader", "deadest", "deadlier", "deadliest", "deadliness", "deadly", "deadness", "deep", "deeper", "deepest", "defiance", "defiant", "delectable", "delectableness", "delicate", "delicateness", "delicious", "deliciousness", "delightful", "delightfulness", "delinquency", "delinquent", "deluxe", "deluxeness", "depth", "derogatorier", "derogatoriest", "derogatoriness", "derogatory", "devilish", "devilishness", "direful", "direfulness", "disagreeable", "disagreement", "disappointed", "disappointment", "disgust", "disgusting", "disjointed", "disjointedness", "disloyal", "disloyalty", "disorder", "disorganized", "distinction", "distinctive", "distinguished", "distinguishment", "distorted", "distortion", "divine", "divinity", "dizzier", "dizziest", "dizziness", "dizzy", "domestic", "domesticness", "dominance", "dominant", "domination", "dreadful", "dreadfulness", "dreamier", "dreamiest", "dreaminess", "dreamy", "drearier", "dreariest", "dreariness", "dreary", "drier", "driest", "drippier", "drippiest", "drippiness", "dripping", "drippingness", "drippy", "drooling", "dry", "dryness", "ductile", "ductileness", "dumb", "dumber", "dumbest", "dumbness", "durability", "durable", "dustier", "dustiest", "dustiness", "dusty", "eager", "eagerness", "eccentric", "eccentricity", "edgier", "edgiest", "edginess", "edgy", "educated", "education", "electric", "electricity", "elegance", "elegant", "emaciated", "emaciation", "emness", "emo", "enormous", "enormousness", "enticing", "enticingness", "envious", "envy", "epic", "epicness", "ergonomic", "ergonomicness", "essential", "essentialness", "ethical", "ethicalness", "evil", "excretory wetness", "exhausted", "exotic", "exoticness", "exploding", "explosive", "explosiveness", "exposed", "exposure", "expression", "expressive", "exquisite", "exquisiteness", "extra cheese", "extreme", "extremity", "fabulous", "fabulousness", "falseness", "fame", "family-friendlier", "family-friendliest", "family-friendliness", "family-friendly", "famous", "fancier", "fanciest", "fanciful", "fancy", "fantastic", "fantastical", "fantasticness", "fast", "faster", "fastest", "fat", "fatherlier", "fatherliest", "fatherliness", "fatherly", "fatigue", "fatness", "fatter", "fattest", "feasibility", "feasible", "feckless", "fecklessness", "fertile", "fertility", "festive", "festiveness", "fine", "fineness", "finer", "finest", "finger-licking", "finger-lickingness", "fire", "firm", "firmer", "firmest", "firmness", "fishier", "fishiest", "fishiness", "fishy", "fizzly shizzliness", "flabbergasted", "flaming", "flammability", "flammable", "flappier", "flappiest", "flappiness", "flappy", "flavor", "flavorful", "fleshier", "fleshiest", "fleshiness", "fleshy", "flexibility", "flexible", "flirtier", "flirtiest", "flirtiness", "flirty", "floppier", "floppiest", "floppiness", "floppy", "fluffier", "fluffiest", "fluffiness", "fluffy", "fluttering", "foamier", "foamiest", "foaminess", "foamy", "foggier", "foggiest", "fogginess", "foggy", "forgiveness", "forgiving", "formal", "formality", "formidable", "formidableness", "fortunate", "fortune", "four-star", "four-star quality", "fragrance", "fragrant", "freakier", "freakiest", "freakiness", "freaky", "fresh", "fresher", "freshest", "freshness", "friction", "frictional", "fright", "frightened", "frostier", "frostiest", "frostiness", "frosty", "fruitier", "fruitiest", "fruitiness", "fruity", "funnier", "funnier-looking", "funniest", "funniest-looking", "funny", "funny-looking", "funny-looking-ness", "furious", "furrier", "furriest", "furriness", "furrowed", "furrowedness", "furry", "fury", "fuzzier", "fuzziest", "fuzziness", "fuzzy", "gallant", "gallantness", "gassier", "gassiest", "gassiness", "gassy", "gay", "gayer", "gayest", "gayness", "gelatinous", "gelatinousgoodness", "gentle", "gentleness", "gentler", "gentlest", "ghetto", "ghettoness", "gigantic", "glamour", "glamourous", "glassier", "glassiest", "glassiness", "glassy", "glee", "gleeful", "glitter", "glitterier", "glitteriest", "glittery", "glorious", "gloriousness", "glossier", "glossiest", "glossiness", "glossy", "glowing-red heat", "golden", "goldenness", "golder", "goldest", "gourmet", "gourmetness", "grace", "graceful", "gracious", "grainier", "grainiest", "graininess", "grainy", "grand", "grander", "grandeset", "grandness", "grasiness", "grassier", "grassiest", "grassiness", "grassy", "greasier", "greasiest", "greasy", "green", "greener", "greenest", "greenness", "grey", "greyer", "greyest", "greyness", "groggier", "groggiest", "grogginess", "groggy", "groovier", "grooviest", "grooviness", "groovy", "gross", "grosser", "grossest", "grossness", "guilt", "guiltier", "guiltiest", "guilty", "gullibility", "gullible", "hairier", "hairiest", "hairiness", "hairy", "happier", "happiest", "happiness", "happy", "hard", "hardcore", "hardcoreness", "harder", "hardest", "hardness", "harmless", "harmlessness", "hate", "hateful", "hazardous", "hazardousness", "headless", "headlessness", "heavier", "heaviest", "heaviness", "heavy", "height", "heinous", "heinousness", "high-flying", "highbrow", "highbrowness", "historical", "historicalness", "holier", "holiest", "holiness", "holy", "honest", "honesty", "horizontal", "horizontalness", "horrid", "horridness", "horrified", "horrifying", "horror", "hulking", "hulkingness", "humid", "humidity", "humiliated", "humility", "humongous", "humongousness", "humor", "humorous", "humorousness", "hunger", "hungrier", "hungriest", "hungry", "hyper", "hyperness", "icier", "iciest", "iciness", "icy", "identical", "identity", "illiteracy", "illiterate", "immaculate", "immaculateness", "immaturity", "immense", "immensity", "immoral", "immorality", "impatience", "impatient", "impish", "impishness", "impressive", "impressive size", "impressiveness", "inadvisable", "inadvisablenature", "incredibility", "incredible", "indestructible", "indifference", "indifferent", "infallibility", "infallible", "infeasibility", "infeasible", "infectious", "infectiousness", "informative", "informativeness", "insane", "insanity", "instability", "intellect", "intellectual", "intelligence", "intelligent", "intense", "intensity", "intention", "intentional", "interest", "interested", "interracial", "interracialness", "intimidation", "intriguing", "invigorating", "invigoratingness", "invisibility", "invisible", "involunurability", "iridescence", "iridescent", "irrational", "irrationality", "irregular", "irregularity", "irritated", "itchier", "itchiest", "itchiness", "itchy", "jagged", "jaggedness", "jazzier", "jazziest", "jazziness", "jazzy", "jealous", "jelly-bellier", "jelly-belliest", "jelly-belly", "jelly-bellyness", "jigglier", "jiggliest", "jiggliness", "jiggly", "jitterier", "jitteriest", "jitteriness", "jittery", "jovial", "joy", "joyful", "jubilant", "juicier", "juiciest", "juiciness", "juicy", "juvenile", "juvenileness", "keen", "keener", "keenest", "keenness", "lameness", "large", "largeness", "larger", "largest", "least-pleasant", "legitimacy", "legitimate", "less pleasant", "lickability", "lickable", "light-hearted", "light-heartedness", "light-weightedness", "lightning speed", "limp", "limper", "limpest", "limpness", "livid", "logical", "lonelier", "loneliest", "loneliness", "lonely", "long", "longer", "longest", "longing", "longness", "loud", "louder", "loudest", "loudness", "love", "lovelier", "loveliest", "loveliness", "lovely", "loving", "loyal", "loyalty", "lubricated", "lubrication", "lumpier", "lumpiest", "lumpiness", "lumpy", "luscious", "lusciousness", "lust", "luster", "lustful", "luxurious", "luxuriousness", "mad", "madder", "maddest", "madness", "magic", "magical", "magnificence", "magnificent", "majestic", "majesticness", "major-league", "major-leagueness", "malleability", "malleable", "mammoth", "mammothness", "manlier", "manliest", "manliness", "manly", "marvelous", "marvelousness", "masculine", "masculinity", "meaning", "meaningful", "mellow", "mellower", "mellowest", "mellowness", "melodic", "melodicness", "menace", "menacing", "menthol", "mentholgoodness", "merciful", "mercy", "messier", "messiest", "messiness", "messy", "metallic", "microscopic", "microscopicness", "misaligned", "misalignedness", "miserlier", "miserliest", "miserly", "misery", "misfortune", "moist", "moister", "moistest", "moisture", "moldier", "moldiest", "moldiness", "moldy", "monochromatic", "monochromaticness", "monogamous", "monogamy", "monsterous", "monumental", "monumentalness", "moonlight", "moonlit", "mossier", "mossiest", "mossiness", "mossy", "muscular", "music", "musical", "mysterious", "mystery", "mythical", "mythicalness", "naked", "nakedness", "narrow", "narrower", "narrowness", "nastier", "nastiest", "nastiness", "nasty", "naughtier", "naughtiest", "naughtiness", "naughty", "niftier", "niftiest", "niftiness", "nifty", "noisier", "noisiest", "noisiness", "noisy", "noteworthier", "noteworthiest", "noteworthiness", "noteworthy", "nude", "nudity", "nutrition", "nutritious", "nuttier", "nuttiest", "nuttiness", "nutty", "obstinate", "odd", "odder", "oddest", "oddness", "odor", "odorous", "offensive", "offensiveness", "old", "old-fashioned", "old-fashionedness", "older", "oldest", "oozing", "optimism", "optimistic", "orbital", "order", "organic", "organicness", "organized", "out of this world", "out of this worldness", "outlandish", "outlandishness", "outrage", "outrageous", "outstanding", "over-whelmed", "pain", "painful", "paperier", "paperiest", "paperiness", "papery", "passion", "passionate", "pathetic", "patience", "patient", "patriotic", "patrioticness", "peachier", "peachiest", "peachiness", "peachy", "peckish", "peckishness", "penetrative", "penetrativepower", "pepperier", "pepperiest", "pepperiness", "peppery", "perfect", "perfection", "perplexed", "petite", "petiteness", "phallus", "pharmaceutical", "pharmaceuticalness", "phenomenal", "phenomenalness", "philosophical", "philosophy", "piggier", "piggiest", "pigginess", "piggy", "pitiful", "pity", "pleasant", "pleasantnature", "pleasurability", "pleasurable", "pleasure", "pleasured", "plentiful", "plentifulness", "plump", "plumper", "plumpest", "plumpness", "poisonous", "political", "politicalness", "polluted", "pollution", "polygamous", "polygamy", "popular", "popularity", "possibility", "possible", "potency", "potent", "potential", "powderier", "powderiest", "powderiness", "powdery", "power", "powerful", "praiseworthier", "praiseworthiest", "praiseworthiness", "praiseworthy", "pregnancy", "pregnant", "prettier", "prettiest", "prettiness", "pretty", "pride", "professional", "professionalism", "profitable", "proifitability", "proper", "properness", "proud", "prouder", "proudest", "pulsating", "pumpiness", "punctual", "punctuality", "purple", "purpleness", "puzzled", "qualitier", "qualitiest", "quality", "qualityness", "queer", "queerness", "questionability", "questionable", "quiet", "quieter", "quietest", "quietness", "radical", "radioactive", "radioactivity", "radishes", "rage", "ragged", "raggedness", "raging", "rainier", "rainiest", "raininess", "rainy", "raisins", "rambunctious", "rational", "rationality", "rattier", "rattiest", "rattiness", "ratty", "raunchier", "raunchiest", "raunchiness", "raunchy", "rebellious", "rebelliousness", "red", "red-hot", "redder", "reddest", "redness", "refreshing", "refreshingness", "regal", "regalness", "religious", "religiousness", "remorse", "remorseful", "resonance", "resonant", "respectability", "respectable", "retro", "retroness", "revealing", "revolting", "revoltingness", "righteous", "righteousness", "ripped", "rock-hard", "rock-hardness", "rockier", "rockiest", "rockiness", "rocky", "romance", "romantic", "rough", "rougher", "roughest", "roughness", "roundness", "rowdier", "rowdiest", "rowdiness", "rowdy", "royal", "royalty", "rude", "rudeness", "ruder", "rudest", "rustic", "rusticness", "sad", "sadder", "saddest", "sadness", "saltier", "saltiest", "saltiness", "salty", "sandier", "sandiest", "sandiness", "sandy", "satisfaction", "satisfactory", "savage", "savageness", "savorier", "savoriest", "savory", "scarier", "scariest", "scariness", "scary", "scholarlier", "scholarliest", "scholarliness", "scholarly", "scorn", "scornful", "seductive", "seductiveness", "sensational", "sensationalism", "sensibility", "sensible", "serene", "serenity", "severe", "severity", "shadier", "shadiest", "shadiness", "shady", "shame", "sharp", "sharper", "sharpest", "sharpness", "shinier", "shiniest", "shininess", "shiny", "shock", "shocked", "shocking", "short", "shorter", "shortest", "shortness", "shriveled", "sickening", "sickness", "significance", "significant", "silkier", "silkiest", "silkiness", "silky", "sillier", "silliest", "silliness", "silly", "sin", "sinful", "sizzling", "skeptical", "skepticism", "skininess", "skinnier", "skinniest", "skinny", "slammin", "sleek", "sleeker", "sleekest", "sleekness", "slender", "slenderness", "slick", "slicker", "slickest", "slickness", "slimier", "slimiest", "sliminess", "slimy", "slipperier", "slipperiest", "slipperiness", "slippery", "slippier", "slippiest", "slippiness", "slippy", "sloppier", "sloppiest", "sloppiness", "sloppy", "slow", "slower", "slowest", "slowness", "slurpee", "slurpiness", "sly", "slyer", "slyest", "slyness", "small", "smaller", "smallest", "smallness", "smart", "smarter", "smartest", "smartness", "smashing", "smashingness", "smoggier", "smoggiest", "smogginess", "smoggy", "smokier", "smokiest", "smokiness", "smoking", "smokingness", "smoky", "smooth", "smoother", "smoothest", "smoothness", "smug", "smugger", "smuggest", "smugness", "snappier", "snappiest", "snappiness", "snappy", "sneakier", "sneakiest", "sneakiness", "sneaky", "snobbish", "snobbishness", "snowier", "snowiest", "snowiness", "snowy", "soapier", "soapiest", "soapiness", "soapy", "sociopathic", "sociopathicness", "soft", "softer", "softest", "softness", "soothing", "soothingness", "sophisticated", "sophistication", "sopping", "sorrow", "sorrowful", "sour", "sourness", "sparkle", "sparkling", "special", "specialness", "speculation", "speculative", "speed", "speedier", "speediest", "speediness", "speedy", "spicier", "spiciest", "spiciness", "spicy", "spiderier", "spideriest", "spideriness", "spidery", "spikier", "spikiest", "spikiness", "spiky", "spine-tingling", "splendid", "splendidness", "splendiferous", "splendiferousness", "splintered", "splinters", "spontaneity", "spontaneous", "spotless", "spotlessness", "squeamish", "squeamishness", "squirrelier", "squirreliest", "squirrely", "squishier", "squishiest", "squishiness", "squishy", "standard", "standardness", "starnger", "starrier", "starriest", "starriness", "starry", "steamier", "steamiest", "steaminess", "steamy", "stereotypical", "stereotypicalness", "sterile", "sterility", "stickier", "stickiest", "stickiness", "sticky", "stimulating", "stimulus", "stinkier", "stinkiest", "stinkiness", "stinky", "stormier", "stormiest", "storminess", "stormy", "stout", "stoutness", "strange", "strangeness", "strangest", "stretchier", "stretchiest", "stretchiness", "stretchy", "strict", "stricter", "strictest", "strictness", "stubbornness", "sublime", "sublimeness", "submissive", "submissiveness", "succulant", "sullen", "sullenness", "sunnier", "sunniest", "sunniness", "sunny", "super", "super-duper", "super-duperness", "superb", "superbness", "superfluous", "superfluousness", "superness", "supple", "supplementarier", "supplementariest", "supplementariness", "supplementary", "suppler", "supplest", "sure", "sureness", "surprise", "surprised", "surprising", "sweatier", "sweatiest", "sweatiness", "sweaty", "sweet", "sweet love", "sweeter", "sweetest", "sweetness", "swift", "swifter", "swiftest", "symmetrical", "symmetry", "tactical", "tacticalness", "tall", "taller", "tallest", "tallness", "tangier", "tangiest", "tanginess", "tangy", "tastier", "tastiest", "tastiness", "tasty", "tattered", "tender", "tenderness", "terrible", "terrifying", "terror", "thankful", "thankfulness", "thick", "thicker", "thickest", "thickness", "thoroughness", "threatening", "thrill", "thrilling", "throbbing", "throbbingpleasure", "ticklish", "ticklishness", "tidier", "tidiest", "tidiness", "tidy", "tight-lipped", "tightlips", "tingliness", "toastier", "toastiest", "toastiness", "toasty", "top-notch", "top-notchness", "torment", "tormented", "torturous", "torturousness", "towering", "toxicity", "tradition", "traditional", "transparence", "transparent", "treacherous", "treachery", "tropical", "tropicalness", "trouble", "troubling", "trustworthier", "trustworthiest", "trustworthiness", "trustworthy", "unbelievable", "unconstitutional", "unconstitutionalness", "unethical", "unethicalness", "uneven", "unevenness", "unfortunate", "unlikelier", "unlikeliest", "unlikelihood", "unlikely", "unlimited", "unlimitedness", "unparalleled", "unparalleledness", "unpleasant", "unpleasantness", "unstable", "veinier", "veiniest", "veininess", "veiny", "velvetier", "velvetiest", "velvety", "velvetygoodness", "vertical", "verticalness", "vibrating", "vibration", "victorious", "victory", "vulnerability", "vulnerable", "waddlier", "waddliest", "waddliness", "waddly", "warm", "warmer", "warmest", "warmth", "wasted", "wastedness", "water-tight", "water-tightness", "waterier", "wateriest", "wateriness", "watery", "wavier", "waviest", "waviness", "wavy", "wear", "weedier", "weediest", "weediness", "weedy", "weightless", "weightlessness", "well-loved", "well-used", "wet", "wetness", "wetter", "wettest", "white", "whiteness", "whiter", "whitest", "whole-grain", "whole-graininess", "wholesome", "wholesomeness", "whopping", "whoppingness", "wicked", "wickedness", "wide", "wide-eyed", "wideness", "wider", "widest", "wild", "wilder", "wildest", "wildness", "windier", "windiest", "windiness", "windy", "wisdom", "wobblier", "wobbliest", "wobbliness", "wobbly", "wonderful", "wonderfulness", "wonderworking", "wonderworks", "wooden", "woodier", "woodiest", "woodiness", "woodness", "woody", "woolier", "wooliest", "wooliness", "wooly", "world-class", "world-classness", "worth", "wrinklier", "wrinkliest", "wrinkly", "young", "younger", "youngest", "youth", "yummier", "yummiest", "yumminess", "yummy", "zen", "zenness", "zestier", "zestiest", "zestiness", "zesty"] \ No newline at end of file +["emotion", "- weight 10", "African heritage", "African", "African-American", "African-Americanness", "American", "American heritage", "Australian", "Australian heritage", "British", "British heritage", "Canadian", "Canadian heritage", "Chinese", "Chinese heritage", "Confederate", "Confederateness", "French", "French heritage", "German", "German heritage", "Irish", "Irish heritage", "Italian", "Italian heritage", "Japanese", "Japanese heritage", "Korean", "Korean heritage", "Mexican", "Mexican heritage", "Norwegian", "Norwegian heritage", "Russian", "Russian heritage", "Spanish", "Spanish heritage", "Victorian", "Victorianness", "abhorrence", "abhorrent", "absolute", "absoluteness", "academic", "academicness", "acidic", "acidity", "acoustic", "active", "activity", "adaptability", "adaptable", "additional", "adequacy", "adequate", "administrative", "admirability", "admirable", "advantage", "advantageous", "advisable", "aerodynamics", "age", "aggravated", "aggression", "aggressive", "agressiveness", "alien", "alienness", "all-natural", "all-naturalness", "amazement", "amazing", "amazingness", "ambition", "ambitious", "amiable", "ancience", "ancient", "anger", "angrier", "angriest", "angry", "appeal", "appealing", "appetizing", "appetizingness", "arresting", "arrestingness", "arrogance", "arrogant", "artificial", "artificialness", "artsier", "artsiest", "artsiness", "artsy", "ashamed", "assertive", "assetiveness", "astonishing", "astonishingness", "astounding", "astoundingness", "athletic", "athleticness", "attractive", "attractiveness", "awe", "awe-inspiring", "awe-inspiringness", "awed", "awesome", "awesomeness", "awful", "barbeque", "barbequeness", "bashful", "bashfulness", "bearded", "beardedness", "beautiful", "beauty", "beefiness", "beloved", "belovedness", "bent", "bentness", "bilious", "biliousness", "bitter", "bitterness", "bittersweet", "bittersweetness", "black", "blacker", "blackest", "blackness", "blasphemous", "blasphemy", "blinding", "bliss", "blissful", "bloodier", "bloodiest", "bloodiness", "bloodthirstier", "bloodthirstiest", "bloodthirstiness", "bloodthirsty", "bloody", "blue", "blueness", "bluer", "bluest", "bold", "bolder", "boldest", "boldness", "bored", "boredom", "bouncier", "bounciest", "bounciness", "bouncy", "bountiful", "bountifulness", "brave", "braver", "bravery", "bravest", "breathtaking", "breathtakingness", "brighter", "brightest", "brightness", "brown", "browner", "brownest", "brownness", "bubblier", "bubbliest", "bubbliness", "bubbly", "bulges", "bulging", "busted", "bustedness", "butterier", "butteriest", "butteriness", "buttery", "calcification", "calcified", "captivating", "captivation", "casual", "casualness", "celestial", "celestialpower", "certification", "certified", "charitability", "charitable", "charm", "charming", "cheekier", "cheekiest", "cheekiness", "cheeky", "cheer", "cheerful", "childish", "chill", "chillier", "chilliest", "chilly", "chrome-plated", "chrome-platedness", "clever", "cleverer", "cleverest", "cleverness", "clockwise", "clockwise order", "cloudier", "cloudiest", "cloudiness", "cloudy", "cold", "colder", "coldest", "coldness", "color", "colorful", "colossal", "colossality", "comelier", "comeliest", "comeliness", "comely", "commendability", "commendable", "complimentarier", "complimentariest", "complimentariness", "complimentary", "concrete", "concreteness", "confusion", "considerate", "consideration", "constitutional", "constitutionalness", "contaminated", "contamination", "contempt", "contemptuous", "content", "contentfulness", "cooperation", "cooperative", "cornier", "corniest", "corniness", "corny", "corrugated", "corrugation", "counterclockwise", "counterclockwise order", "courage", "courageous", "cracklier", "crackliest", "crackliness", "crackly", "crankier", "crankiest", "crankiness", "cranky", "crapulous", "crapulousness", "cream-filled", "creamier", "creamiest", "creaminess", "creamy", "creative", "creativity", "criminal", "criminality", "critical", "criticalness", "crooked crookedness", "crustier", "crustiest", "crustiness", "crusty", "cubic", "cubicness", "cuddlier", "cuddliest", "cuddliness", "cuddly", "cultural", "culture", "damp", "damper", "dampest", "dampness", "dandier", "dandiest", "dandiness", "dandy", "danger", "dangerous", "dare", "daring", "dashing", "dashingness", "dazzling", "dazzlingness", "dead", "deader", "deadest", "deadlier", "deadliest", "deadliness", "deadly", "deadness", "deep", "deeper", "deepest", "defiance", "defiant", "delectable", "delectableness", "delicate", "delicateness", "delicious", "deliciousness", "delightful", "delightfulness", "delinquency", "delinquent", "deluxe", "deluxeness", "depth", "derogatorier", "derogatoriest", "derogatoriness", "derogatory", "devilish", "devilishness", "direful", "direfulness", "disagreeable", "disagreement", "disappointed", "disappointment", "disgust", "disgusting", "disjointed", "disjointedness", "disloyal", "disloyalty", "disorder", "disorganized", "distinction", "distinctive", "distinguished", "distinguishment", "distorted", "distortion", "divine", "divinity", "dizzier", "dizziest", "dizziness", "dizzy", "domestic", "domesticness", "dominance", "dominant", "domination", "dreadful", "dreadfulness", "dreamier", "dreamiest", "dreaminess", "dreamy", "drearier", "dreariest", "dreariness", "dreary", "drier", "driest", "drippier", "drippiest", "drippiness", "dripping", "drippingness", "drippy", "drooling", "dry", "dryness", "ductile", "ductileness", "dumb", "dumber", "dumbest", "dumbness", "durability", "durable", "dustier", "dustiest", "dustiness", "dusty", "eager", "eagerness", "eccentric", "eccentricity", "edgier", "edgiest", "edginess", "edgy", "educated", "education", "electric", "electricity", "elegance", "elegant", "emaciated", "emaciation", "emness", "emo", "enormous", "enormousness", "enticing", "enticingness", "envious", "envy", "epic", "epicness", "ergonomic", "ergonomicness", "essential", "essentialness", "ethical", "ethicalness", "evil", "excretory wetness", "exhausted", "exotic", "exoticness", "exploding", "explosive", "explosiveness", "exposed", "exposure", "expression", "expressive", "exquisite", "exquisiteness", "extra cheese", "extreme", "extremity", "fabulous", "fabulousness", "falseness", "fame", "family-friendlier", "family-friendliest", "family-friendliness", "family-friendly", "famous", "fancier", "fanciest", "fanciful", "fancy", "fantastic", "fantastical", "fantasticness", "fast", "faster", "fastest", "fat", "fatherlier", "fatherliest", "fatherliness", "fatherly", "fatigue", "fatness", "fatter", "fattest", "feasibility", "feasible", "feckless", "fecklessness", "fertile", "fertility", "festive", "festiveness", "fine", "fineness", "finer", "finest", "finger-licking", "finger-lickingness", "fire", "firm", "firmer", "firmest", "firmness", "fishier", "fishiest", "fishiness", "fishy", "fizzly shizzliness", "flabbergasted", "flaming", "flammability", "flammable", "flappier", "flappiest", "flappiness", "flappy", "flavor", "flavorful", "fleshier", "fleshiest", "fleshiness", "fleshy", "flexibility", "flexible", "flirtier", "flirtiest", "flirtiness", "flirty", "floppier", "floppiest", "floppiness", "floppy", "fluffier", "fluffiest", "fluffiness", "fluffy", "fluttering", "foamier", "foamiest", "foaminess", "foamy", "foggier", "foggiest", "fogginess", "foggy", "forgiveness", "forgiving", "formal", "formality", "formidable", "formidableness", "fortunate", "fortune", "four-star", "four-star quality", "fragrance", "fragrant", "freakier", "freakiest", "freakiness", "freaky", "fresh", "fresher", "freshest", "freshness", "friction", "frictional", "fright", "frightened", "frostier", "frostiest", "frostiness", "frosty", "fruitier", "fruitiest", "fruitiness", "fruity", "funnier", "funnier-looking", "funniest", "funniest-looking", "funny", "funny-looking", "funny-looking-ness", "furious", "furrier", "furriest", "furriness", "furrowed", "furrowedness", "furry", "fury", "fuzzier", "fuzziest", "fuzziness", "fuzzy", "gallant", "gallantness", "gassier", "gassiest", "gassiness", "gassy", "gay", "gayer", "gayest", "gayness", "gelatinous", "gelatinousgoodness", "gentle", "gentleness", "gentler", "gentlest", "ghetto", "ghettoness", "gigantic", "glamour", "glamourous", "glassier", "glassiest", "glassiness", "glassy", "glee", "gleeful", "glitter", "glitterier", "glitteriest", "glittery", "glorious", "gloriousness", "glossier", "glossiest", "glossiness", "glossy", "glowing-red heat", "golden", "goldenness", "golder", "goldest", "gourmet", "gourmetness", "grace", "graceful", "gracious", "grainier", "grainiest", "graininess", "grainy", "grand", "grander", "grandeset", "grandness", "grasiness", "grassier", "grassiest", "grassiness", "grassy", "greasier", "greasiest", "greasy", "green", "greener", "greenest", "greenness", "grey", "greyer", "greyest", "greyness", "groggier", "groggiest", "grogginess", "groggy", "groovier", "grooviest", "grooviness", "groovy", "gross", "grosser", "grossest", "grossness", "guilt", "guiltier", "guiltiest", "guilty", "gullibility", "gullible", "hairier", "hairiest", "hairiness", "hairy", "happier", "happiest", "happiness", "happy", "hard", "hardcore", "hardcoreness", "harder", "hardest", "hardness", "harmless", "harmlessness", "hate", "hateful", "hazardous", "hazardousness", "headless", "headlessness", "heavier", "heaviest", "heaviness", "heavy", "height", "heinous", "heinousness", "high-flying", "highbrow", "highbrowness", "historical", "historicalness", "holier", "holiest", "holiness", "holy", "honest", "honesty", "horizontal", "horizontalness", "horrid", "horridness", "horrified", "horrifying", "horror", "hulking", "hulkingness", "humid", "humidity", "humiliated", "humility", "humongous", "humongousness", "humor", "humorous", "humorousness", "hunger", "hungrier", "hungriest", "hungry", "hyper", "hyperness", "icier", "iciest", "iciness", "icy", "identical", "identity", "illiteracy", "illiterate", "immaculate", "immaculateness", "immaturity", "immense", "immensity", "immoral", "immorality", "impatience", "impatient", "impish", "impishness", "impressive", "impressive size", "impressiveness", "inadvisable", "inadvisablenature", "incredibility", "incredible", "indestructible", "indifference", "indifferent", "infallibility", "infallible", "infeasibility", "infeasible", "infectious", "infectiousness", "informative", "informativeness", "insane", "insanity", "instability", "intellect", "intellectual", "intelligence", "intelligent", "intense", "intensity", "intention", "intentional", "interest", "interested", "interracial", "interracialness", "intimidation", "intriguing", "invigorating", "invigoratingness", "invisibility", "invisible", "involunurability", "iridescence", "iridescent", "irrational", "irrationality", "irregular", "irregularity", "irritated", "itchier", "itchiest", "itchiness", "itchy", "jagged", "jaggedness", "jazzier", "jazziest", "jazziness", "jazzy", "jealous", "jelly-bellier", "jelly-belliest", "jelly-belly", "jelly-bellyness", "jigglier", "jiggliest", "jiggliness", "jiggly", "jitterier", "jitteriest", "jitteriness", "jittery", "jovial", "joy", "joyful", "jubilant", "juicier", "juiciest", "juiciness", "juicy", "juvenile", "juvenileness", "keen", "keener", "keenest", "keenness", "lameness", "large", "largeness", "larger", "largest", "least-pleasant", "legitimacy", "legitimate", "less pleasant", "lickability", "lickable", "light-hearted", "light-heartedness", "light-weightedness", "lightning speed", "limp", "limper", "limpest", "limpness", "livid", "logical", "lonelier", "loneliest", "loneliness", "lonely", "long", "longer", "longest", "longing", "longness", "loud", "louder", "loudest", "loudness", "love", "lovelier", "loveliest", "loveliness", "lovely", "loving", "loyal", "loyalty", "lubricated", "lubrication", "lumpier", "lumpiest", "lumpiness", "lumpy", "luscious", "lusciousness", "lust", "luster", "lustful", "luxurious", "luxuriousness", "mad", "madder", "maddest", "madness", "magic", "magical", "magnificence", "magnificent", "majestic", "majesticness", "major-league", "major-leagueness", "malleability", "malleable", "mammoth", "mammothness", "manlier", "manliest", "manliness", "manly", "marvelous", "marvelousness", "masculine", "masculinity", "meaning", "meaningful", "mellow", "mellower", "mellowest", "mellowness", "melodic", "melodicness", "menace", "menacing", "menthol", "mentholgoodness", "merciful", "mercy", "messier", "messiest", "messiness", "messy", "metallic", "microscopic", "microscopicness", "misaligned", "misalignedness", "miserlier", "miserliest", "miserly", "misery", "misfortune", "moist", "moister", "moistest", "moisture", "moldier", "moldiest", "moldiness", "moldy", "monochromatic", "monochromaticness", "monogamous", "monogamy", "monsterous", "monumental", "monumentalness", "moonlight", "moonlit", "mossier", "mossiest", "mossiness", "mossy", "muscular", "music", "musical", "mysterious", "mystery", "mythical", "mythicalness", "naked", "nakedness", "narrow", "narrower", "narrowness", "nastier", "nastiest", "nastiness", "nasty", "naughtier", "naughtiest", "naughtiness", "naughty", "niftier", "niftiest", "niftiness", "nifty", "noisier", "noisiest", "noisiness", "noisy", "noteworthier", "noteworthiest", "noteworthiness", "noteworthy", "nude", "nudity", "nutrition", "nutritious", "nuttier", "nuttiest", "nuttiness", "nutty", "obstinate", "odd", "odder", "oddest", "oddness", "odor", "odorous", "offensive", "offensiveness", "old", "old-fashioned", "old-fashionedness", "older", "oldest", "oozing", "optimism", "optimistic", "orbital", "order", "organic", "organicness", "organized", "out of this world", "out of this worldness", "outlandish", "outlandishness", "outrage", "outrageous", "outstanding", "over-whelmed", "pain", "painful", "paperier", "paperiest", "paperiness", "papery", "passion", "passionate", "pathetic", "patience", "patient", "patriotic", "patrioticness", "peachier", "peachiest", "peachiness", "peachy", "peckish", "peckishness", "penetrative", "penetrativepower", "pepperier", "pepperiest", "pepperiness", "peppery", "perfect", "perfection", "perplexed", "petite", "petiteness", "phallus", "pharmaceutical", "pharmaceuticalness", "phenomenal", "phenomenalness", "philosophical", "philosophy", "piggier", "piggiest", "pigginess", "piggy", "pitiful", "pity", "pleasant", "pleasantnature", "pleasurability", "pleasurable", "pleasure", "pleasured", "plentiful", "plentifulness", "plump", "plumper", "plumpest", "plumpness", "poisonous", "political", "politicalness", "polluted", "pollution", "polygamous", "polygamy", "popular", "popularity", "possibility", "possible", "potency", "potent", "potential", "powderier", "powderiest", "powderiness", "powdery", "power", "powerful", "praiseworthier", "praiseworthiest", "praiseworthiness", "praiseworthy", "pregnancy", "pregnant", "prettier", "prettiest", "prettiness", "pretty", "pride", "professional", "professionalism", "profitable", "proifitability", "proper", "properness", "proud", "prouder", "proudest", "pulsating", "pumpiness", "punctual", "punctuality", "purple", "purpleness", "puzzled", "qualitier", "qualitiest", "quality", "qualityness", "queer", "queerness", "questionability", "questionable", "quiet", "quieter", "quietest", "quietness", "radical", "radioactive", "radioactivity", "radishes", "rage", "ragged", "raggedness", "raging", "rainier", "rainiest", "raininess", "rainy", "raisins", "rambunctious", "rational", "rationality", "rattier", "rattiest", "rattiness", "ratty", "raunchier", "raunchiest", "raunchiness", "raunchy", "rebellious", "rebelliousness", "red", "red-hot", "redder", "reddest", "redness", "refreshing", "refreshingness", "regal", "regalness", "religious", "religiousness", "remorse", "remorseful", "resonance", "resonant", "respectability", "respectable", "retro", "retroness", "revealing", "revolting", "revoltingness", "righteous", "righteousness", "ripped", "rock-hard", "rock-hardness", "rockier", "rockiest", "rockiness", "rocky", "romance", "romantic", "rough", "rougher", "roughest", "roughness", "roundness", "rowdier", "rowdiest", "rowdiness", "rowdy", "royal", "royalty", "rude", "rudeness", "ruder", "rudest", "rustic", "rusticness", "sad", "sadder", "saddest", "sadness", "saltier", "saltiest", "saltiness", "salty", "sandier", "sandiest", "sandiness", "sandy", "satisfaction", "satisfactory", "savage", "savageness", "savorier", "savoriest", "savory", "scarier", "scariest", "scariness", "scary", "scholarlier", "scholarliest", "scholarliness", "scholarly", "scorn", "scornful", "seductive", "seductiveness", "sensational", "sensationalism", "sensibility", "sensible", "serene", "serenity", "severe", "severity", "shadier", "shadiest", "shadiness", "shady", "shame", "sharp", "sharper", "sharpest", "sharpness", "shinier", "shiniest", "shininess", "shiny", "shock", "shocked", "shocking", "short", "shorter", "shortest", "shortness", "shriveled", "sickening", "sickness", "significance", "significant", "silkier", "silkiest", "silkiness", "silky", "sillier", "silliest", "silliness", "silly", "sin", "sinful", "sizzling", "skeptical", "skepticism", "skininess", "skinnier", "skinniest", "skinny", "slammin", "sleek", "sleeker", "sleekest", "sleekness", "slender", "slenderness", "slick", "slicker", "slickest", "slickness", "slimier", "slimiest", "sliminess", "slimy", "slipperier", "slipperiest", "slipperiness", "slippery", "slippier", "slippiest", "slippiness", "slippy", "sloppier", "sloppiest", "sloppiness", "sloppy", "slow", "slower", "slowest", "slowness", "slurpee", "slurpiness", "sly", "slyer", "slyest", "slyness", "small", "smaller", "smallest", "smallness", "smart", "smarter", "smartest", "smartness", "smashing", "smashingness", "smoggier", "smoggiest", "smogginess", "smoggy", "smokier", "smokiest", "smokiness", "smoking", "smokingness", "smoky", "smooth", "smoother", "smoothest", "smoothness", "smug", "smugger", "smuggest", "smugness", "snappier", "snappiest", "snappiness", "snappy", "sneakier", "sneakiest", "sneakiness", "sneaky", "snobbish", "snobbishness", "snowier", "snowiest", "snowiness", "snowy", "soapier", "soapiest", "soapiness", "soapy", "sociopathic", "sociopathicness", "soft", "softer", "softest", "softness", "soothing", "soothingness", "sophisticated", "sophistication", "sopping", "sorrow", "sorrowful", "sour", "sourness", "sparkle", "sparkling", "special", "specialness", "speculation", "speculative", "speed", "speedier", "speediest", "speediness", "speedy", "spicier", "spiciest", "spiciness", "spicy", "spiderier", "spideriest", "spideriness", "spidery", "spikier", "spikiest", "spikiness", "spiky", "spine-tingling", "splendid", "splendidness", "splendiferous", "splendiferousness", "splintered", "splinters", "spontaneity", "spontaneous", "spotless", "spotlessness", "squeamish", "squeamishness", "squirrelier", "squirreliest", "squirrely", "squishier", "squishiest", "squishiness", "squishy", "standard", "standardness", "starnger", "starrier", "starriest", "starriness", "starry", "steamier", "steamiest", "steaminess", "steamy", "stereotypical", "stereotypicalness", "sterile", "sterility", "stickier", "stickiest", "stickiness", "sticky", "stimulating", "stimulus", "stinkier", "stinkiest", "stinkiness", "stinky", "stormier", "stormiest", "storminess", "stormy", "stout", "stoutness", "strange", "strangeness", "strangest", "stretchier", "stretchiest", "stretchiness", "stretchy", "strict", "stricter", "strictest", "strictness", "stubbornness", "sublime", "sublimeness", "submissive", "submissiveness", "succulant", "sullen", "sullenness", "sunnier", "sunniest", "sunniness", "sunny", "super", "super-duper", "super-duperness", "superb", "superbness", "superfluous", "superfluousness", "superness", "supple", "supplementarier", "supplementariest", "supplementariness", "supplementary", "suppler", "supplest", "sure", "sureness", "surprise", "surprised", "surprising", "sweatier", "sweatiest", "sweatiness", "sweaty", "sweet", "sweet love", "sweeter", "sweetest", "sweetness", "swift", "swifter", "swiftest", "symmetrical", "symmetry", "tactical", "tacticalness", "tall", "taller", "tallest", "tallness", "tangier", "tangiest", "tanginess", "tangy", "tastier", "tastiest", "tastiness", "tasty", "tattered", "tender", "tenderness", "terrible", "terrifying", "terror", "thankful", "thankfulness", "thick", "thicker", "thickest", "thickness", "thoroughness", "threatening", "thrill", "thrilling", "throbbing", "throbbingpleasure", "ticklish", "ticklishness", "tidier", "tidiest", "tidiness", "tidy", "tight-lipped", "tightlips", "tingliness", "toastier", "toastiest", "toastiness", "toasty", "top-notch", "top-notchness", "torment", "tormented", "torturous", "torturousness", "towering", "toxicity", "tradition", "traditional", "transparence", "transparent", "treacherous", "treachery", "tropical", "tropicalness", "trouble", "troubling", "trustworthier", "trustworthiest", "trustworthiness", "trustworthy", "unbelievable", "unconstitutional", "unconstitutionalness", "unethical", "unethicalness", "uneven", "unevenness", "unfortunate", "unlikelier", "unlikeliest", "unlikelihood", "unlikely", "unlimited", "unlimitedness", "unparalleled", "unparalleledness", "unpleasant", "unpleasantness", "unstable", "veinier", "veiniest", "veininess", "veiny", "velvetier", "velvetiest", "velvety", "velvetygoodness", "vertical", "verticalness", "vibrating", "vibration", "victorious", "victory", "vulnerability", "vulnerable", "waddlier", "waddliest", "waddliness", "waddly", "warm", "warmer", "warmest", "warmth", "wasted", "wastedness", "water-tight", "water-tightness", "waterier", "wateriest", "wateriness", "watery", "wavier", "waviest", "waviness", "wavy", "wear", "weedier", "weediest", "weediness", "weedy", "weightless", "weightlessness", "well-loved", "well-used", "wet", "wetness", "wetter", "wettest", "white", "whiteness", "whiter", "whitest", "whole-grain", "whole-graininess", "wholesome", "wholesomeness", "whopping", "whoppingness", "wicked", "wickedness", "wide", "wide-eyed", "wideness", "wider", "widest", "wild", "wilder", "wildest", "wildness", "windier", "windiest", "windiness", "windy", "wisdom", "wobblier", "wobbliest", "wobbliness", "wobbly", "wonderful", "wonderfulness", "wonderworking", "wonderworks", "wooden", "woodier", "woodiest", "woodiness", "woodness", "woody", "woolier", "wooliest", "wooliness", "wooly", "world-class", "world-classness", "worth", "wrinklier", "wrinkliest", "wrinkly", "young", "younger", "youngest", "youth", "yummier", "yummiest", "yumminess", "yummy", "zen", "zenness", "zestier", "zestiest", "zestiness", "zesty"] \ No newline at end of file diff --git a/json/donations.json b/json/donations.json index eb38842..aff177e 100644 --- a/json/donations.json +++ b/json/donations.json @@ -1,4 +1,4 @@ [ - "ETH adresse: 0x9F3FB51e4C295d774a0861b9D6796D12525dD81d", - "XMR adresse: 87PdPzX6u2nE1ucHDKQtGk2BE2zS42LwPS886KHUqCPoK5TDfkgnin4ZByb3zw5F5acYvbFWcjC83CJWVB6bXkfjAhkJkqU" + "ETH address: 0x9F3FB51e4C295d774a0861b9D6796D12525dD81d", + "XMR address: 87PdPzX6u2nE1ucHDKQtGk2BE2zS42LwPS886KHUqCPoK5TDfkgnin4ZByb3zw5F5acYvbFWcjC83CJWVB6bXkfjAhkJkqU" ] \ No newline at end of file