diff --git a/build/actions.js b/build/actions.js index e8340c6..c0a37fa 100644 --- a/build/actions.js +++ b/build/actions.js @@ -12,16 +12,17 @@ const actions = { return readFile(input); }, - async transcode ({ input, output }) { + async transcode ({ input, output, duplicate }) { const result = await actions.image({ input, output, + duplicate, format: 'jpeg', }); return result; }, - async fetch ({ input, output }) { + async fetch ({ input, output, duplicate }) { const res = await fetch(input); if (res.status !== 200) { throw new Error(`File could not be fetched (${res.status}): "${input}"`); @@ -30,16 +31,24 @@ const actions = { output = resolve(output); await fs.ensureDir(path.dirname(output)); await fs.writeFile(output, body); + if (duplicate) { + await fs.ensureDir(resolve(path.dirname(duplicate))); + await fs.writeFile(duplicate, body); + } return body; }, - async write ({ output, content }) { + async write ({ output, content, duplicate }) { if (!content) { throw new TypeError('Got an empty write?' + output); } output = resolve(output); await fs.ensureDir(path.dirname(output)); await fs.writeFile(output, content); + if (duplicate) { + await fs.ensureDir(resolve(path.dirname(duplicate))); + await fs.writeFile(duplicate, content); + } return Buffer.from(content); }, @@ -157,6 +166,10 @@ const actions = { let result = await Promise.fromCallback((cb) => gmfile.toBuffer(cb)); if (options.format === 'ico') result = await ico(result); await fs.writeFile(output, result); + if (options.duplicate) { + await fs.ensureDir(resolve(path.dirname(options.duplicate))); + await fs.writeFile(options.duplicate, result); + } return result; }, diff --git a/build/cache.js b/build/cache.js index 6382b15..f73c70e 100644 --- a/build/cache.js +++ b/build/cache.js @@ -72,10 +72,10 @@ module.exports = exports = class Manifest { async get (task) { const hash = this.hash(task); - const { input, output } = task; + const { input, output, cache: altCachePath } = task; const ext = path.extname(task.output); const local = !task.input.includes('://'); - const cached = path.join(CACHE, hash + ext); + var cached = path.join(CACHE, hash + ext); const result = { iTime: 0, iRev: null, @@ -85,9 +85,15 @@ module.exports = exports = class Manifest { action: task.action.name, input, output, + duplicate: altCachePath, mode: 'new', }; + var acTime; + if (altCachePath) { + acTime = await this.stat(altCachePath); + } + const [ iTime, oTime, cTime, iRev ] = await Promise.all([ local && this.stat(input), this.stat(output), @@ -148,7 +154,17 @@ module.exports = exports = class Manifest { } result.mode = 'cached'; - result.cache = await readFile(cached); + + if (acTime && acTime > cTime) { + result.cache = await readFile(altCachePath); + } else { + result.cache = await readFile(cached); + if (altCachePath && !acTime) { + await fs.ensureDir(resolve(path.dirname(altCachePath))); + await fs.writeFile(resolve(altCachePath), result.cache); + } + } + return result; } @@ -157,7 +173,7 @@ module.exports = exports = class Manifest { if (task.nocache || !task.action.name) return null; const hash = this.hash(task); - const { input, output } = task; + const { input, output, cache: altCachePath } = task; const local = !task.input.includes('://'); const [ iTime, iRev ] = await Promise.all([ @@ -175,6 +191,7 @@ module.exports = exports = class Manifest { output, oTime: Math.floor(lastSeen / 1000), lastSeen, + duplicate: altCachePath, }; if (record.revPath) this.revManifest[output] = record.revPath; @@ -185,17 +202,22 @@ module.exports = exports = class Manifest { async set (task, result, lastSeen = new Date()) { const hash = this.hash(task); - const { input, output } = task; + const { input, output, cache: altCachePath } = task; const nocache = task.nocache || task.action.name === 'copy'; const ext = path.extname(task.output); const local = !task.input.includes('://'); const cached = path.join(CACHE, hash + ext); const oRev = revHash(result); + if (result && altCachePath) { + await fs.ensureDir(resolve(path.dirname(altCachePath))); + } + const [ iTime, iRev ] = await Promise.all([ local && this.stat(input), local && this.compareBy.inputRev && this.revFile(input), result && !nocache && fs.writeFile(resolve(cached), result), + result && altCachePath && fs.writeFile(resolve(altCachePath), result), ]); const record = { @@ -208,6 +230,7 @@ module.exports = exports = class Manifest { oTime: Math.floor(lastSeen / 1000), oRev, lastSeen, + duplicate: altCachePath, revPath: revPath(output, oRev), }; diff --git a/build/lib/tweetparse.js b/build/lib/tweetparse.js index 5cde97e..760acce 100644 --- a/build/lib/tweetparse.js +++ b/build/lib/tweetparse.js @@ -1,5 +1,6 @@ var twemoji = require('twemoji' ); const { deepPick, has } = require('./util'); +const path = require('path'); const schema = { id_str: true, @@ -23,6 +24,7 @@ const schema = { } ] }, } ] }, media: true, + in_reply_to_status_id_str: true, }; var entityProcessors = { @@ -94,7 +96,8 @@ module.exports = exports = function (tweets) { tweet.user.avatar = { input: tweet.user.profile_image_url_https, - output: 'tweets/' + tweet.user.screen_name + '.jpg', + output: `tweets/${tweet.user.screen_name}.jpg`, + cache: `twitter-avatars/${tweet.user.screen_name}.jpg`, }; tweet.media = [ @@ -113,7 +116,22 @@ module.exports = exports = function (tweets) { } if (has(tweet, 'entities.media') && has(tweet, 'extended_entities.media')) { - tweet.entities.media = tweet.extended_entities.media; + tweet.entities.media = tweet.extended_entities.media.map((media) => { + media = { ...media }; + if (media.media_url_https) { + const mediaItem = { + input: media.media_url_https, + output: `tweets/${tweet.id_str}/${path.basename(media.media_url_https)}`, + cache: `twitter-entities/${tweet.id_str}/${path.basename(media.media_url_https)}`, + }; + if (media.type === 'photo') mediaItem.input += '?name=medium'; + tweet.media.push(mediaItem); + media.media_url_https = '/' + mediaItem.output; + } + + return media; + }); + delete tweet.extended_entities; } diff --git a/build/page-tweets.js b/build/page-tweets.js index d85ed94..15b2b93 100644 --- a/build/page-tweets.js +++ b/build/page-tweets.js @@ -1,4 +1,4 @@ -const { chunk, uniq, difference } = require('lodash'); +const { chunk, uniq, uniqBy, difference } = require('lodash'); const fs = require('fs-extra'); const { resolve } = require('./resolve'); const log = require('fancy-log'); @@ -65,7 +65,7 @@ module.exports = exports = async function tweets (pages) { /* Apply Tweets to Pages **************************************************/ - const twitterMedia = []; + var twitterMedia = []; function attachTweet (dict, tweetid) { if (!hasOwn(twitterCache, tweetid) && twitterBackup[tweetid]) { @@ -91,6 +91,8 @@ module.exports = exports = async function tweets (pages) { }, {}); } + twitterMedia = uniqBy(twitterMedia, 'output'); + await Promise.all([ fs.writeFile(resolve('twitter-media.json'), JSON.stringify(twitterMedia, null, 2)), fs.writeFile(resolve('twitter-cache.json'), JSON.stringify(twitterCache, null, 2)), diff --git a/build/resolve.js b/build/resolve.js index 1245d52..0a99af2 100644 --- a/build/resolve.js +++ b/build/resolve.js @@ -94,7 +94,7 @@ const TYPE = exports.TYPE = { exports.type = dictMatch({ [TYPE.IMAGE]: isImage, - [TYPE.HANDYBARS]: isHandybars, + [TYPE.HANDYBARS]: isHandybars, [TYPE.MARKDOWN]: isMarkdown, [TYPE.VIDEO]: isVideo, [TYPE.SCRIPT]: is(JS, JSX), diff --git a/build/twitter-client.js b/build/twitter-client.js new file mode 100644 index 0000000..f09795a --- /dev/null +++ b/build/twitter-client.js @@ -0,0 +1,107 @@ +const fs = require('fs-extra'); +const { resolve } = require('./resolve'); +const { chunk, uniq, difference } = require('lodash'); +const Twitter = require('twitter-lite'); +const log = require('fancy-log'); +const tweetparse = require('./lib/tweetparse'); +const { hasOwn } = require('./lib/util'); + +module.exports = exports = async function () { + const tc = new TwitterClient(); + await tc.initialize(); + return tc; +}; + + +class TwitterClient { + + async initialize () { + const [ lookup, backup, cache ] = await Promise.all([ + fs.readJson(resolve('twitter-config.json')).catch(() => null) + .then(makeFetcher), + fs.readJson(resolve('twitter-backup.json')).catch(() => ({})), + fs.readJson(resolve('twitter-cache.json')).catch(() => ({})), + ]); + + this._lookup = lookup; + this._backupData = backup; + this._cache = cache; + this._presentTweets = Object.keys(cache); + } + + async write () { + return Promise.all([ + fs.writeFile(resolve('twitter-cache.json'), JSON.stringify(this._cache, null, 2)), + fs.writeFile(resolve('twitter-backup.json'), JSON.stringify(this._backupData, null, 2)), + ]); + } + + async get (tweetids) { + if (!Array.isArray(tweetids)) tweetids = [ tweetids ]; + + tweetids = uniq(tweetids.map(parseTweetId)); + + let tweetsNeeded = this._missing(tweetids); + + while (tweetsNeeded.length) { + log('Fetching tweets: ' + tweetsNeeded.join(', ')); + const arriving = await Promise.all(chunk(tweetsNeeded, 99).map(this._lookup)); + const tweetsRequested = tweetsNeeded; + tweetsNeeded = []; + const loaded = []; + for (const tweet of arriving.flat(1)) { + if (tweet.quoted_status_id_str && !this._cache[tweet.quoted_status_id_str]) { + tweetsNeeded.push(tweet.quoted_status_id_str); + } + + this._backupData[tweet.id_str] = tweet; + this._cache[tweet.id_str] = tweetparse(tweet); + loaded.push(tweet.id_str); + } + + const absent = difference(tweetsRequested, loaded); + for (const id of absent) { + if (!hasOwn(this._backupData, id)) { + log.error('Could not find tweet ' + id); + continue; + } + const tweet = this._backupData[id]; + + if (tweet) { + log('Pulled tweet from backup ' + id); + this._cache[id] = tweetparse(this._backupData[id]); + } else { + this._cache[id] = false; + } + } + } + + return tweetids.map((id) => this._cache[id] || null); + } + + _missing (tweetids) { + return difference(tweetids, this._presentTweets); + } +} + + +function makeFetcher (config) { + if (!config) return () => []; + const client = new Twitter(config); + return (tweetids) => client + .get('statuses/lookup', { id: tweetids.join(','), tweet_mode: 'extended' }) + // .then((r) => { console.log({r}); return r; }) + .catch((e) => { log.error(e); return []; }); +} + +const tweeturl = /https?:\/\/twitter\.com\/(?:#!\/)?(?:\w+)\/status(?:es)?\/(\d+)/i; +const tweetidcheck = /^\d+$/; +function parseTweetId (tweetid) { + // we can't trust an id that isn't a string + if (typeof tweetid !== 'string') return false; + + const match = tweetid.match(tweeturl); + if (match) return match[1]; + if (tweetid.match(tweetidcheck)) return tweetid; + return false; +} diff --git a/build/twitter-thread.js b/build/twitter-thread.js new file mode 100644 index 0000000..f142676 --- /dev/null +++ b/build/twitter-thread.js @@ -0,0 +1,34 @@ + +const twitterClient = require('./twitter-client'); + +module.exports = exports = async function loadThread (tweetid) { + const tc = await twitterClient(); + + async function quoteds (tweet) { + if (!tweet.quoted_status_id_str) return []; + const [ qt ] = await tc.get(tweet.quoted_status_id_str); + if (!qt) return []; + return [ qt.id_str, ...(await quoteds(qt)) ]; + } + + const embeds = []; + const dependencies = []; + let id = tweetid; + do { + const [ tweet ] = await tc.get(id); + if (!tweet) break; + embeds.unshift(tweet.id_str); + dependencies.unshift(tweet.id_str); + + if (tweet.quoted_status_id_str) { + const qts = await quoteds(tweet); + if (qts.length) dependencies.unshift(...qts); + } + + id = tweet.in_reply_to_status_id_str; + } while (id); + + await tc.write(); + + return [ embeds, dependencies ]; +}; diff --git a/twitter-avatars/ABC.jpg b/twitter-avatars/ABC.jpg new file mode 100644 index 0000000..6ee0395 Binary files /dev/null and b/twitter-avatars/ABC.jpg differ diff --git a/twitter-avatars/AFortune69.jpg b/twitter-avatars/AFortune69.jpg new file mode 100644 index 0000000..b6e06d1 Binary files /dev/null and b/twitter-avatars/AFortune69.jpg differ diff --git a/twitter-avatars/AOC.jpg b/twitter-avatars/AOC.jpg new file mode 100644 index 0000000..8a5a891 Binary files /dev/null and b/twitter-avatars/AOC.jpg differ diff --git a/twitter-avatars/Adoratrix.jpg b/twitter-avatars/Adoratrix.jpg new file mode 100644 index 0000000..3cf8234 Binary files /dev/null and b/twitter-avatars/Adoratrix.jpg differ diff --git a/twitter-avatars/Amsteffy87.jpg b/twitter-avatars/Amsteffy87.jpg new file mode 100644 index 0000000..227b2f5 Binary files /dev/null and b/twitter-avatars/Amsteffy87.jpg differ diff --git a/twitter-avatars/BathysphereHat.jpg b/twitter-avatars/BathysphereHat.jpg new file mode 100644 index 0000000..c2fc071 Binary files /dev/null and b/twitter-avatars/BathysphereHat.jpg differ diff --git a/twitter-avatars/BellaRizinti.jpg b/twitter-avatars/BellaRizinti.jpg new file mode 100644 index 0000000..8f6d15f Binary files /dev/null and b/twitter-avatars/BellaRizinti.jpg differ diff --git a/twitter-avatars/BonzoixofMN.jpg b/twitter-avatars/BonzoixofMN.jpg new file mode 100644 index 0000000..7613b0b Binary files /dev/null and b/twitter-avatars/BonzoixofMN.jpg differ diff --git a/twitter-avatars/CateSpice.jpg b/twitter-avatars/CateSpice.jpg new file mode 100644 index 0000000..5a2abf4 Binary files /dev/null and b/twitter-avatars/CateSpice.jpg differ diff --git a/twitter-avatars/Chican3ry.jpg b/twitter-avatars/Chican3ry.jpg new file mode 100644 index 0000000..ab91d5c Binary files /dev/null and b/twitter-avatars/Chican3ry.jpg differ diff --git a/twitter-avatars/CognitiveSoc.jpg b/twitter-avatars/CognitiveSoc.jpg new file mode 100644 index 0000000..f4560b1 Binary files /dev/null and b/twitter-avatars/CognitiveSoc.jpg differ diff --git a/twitter-avatars/CrypticGoblin.jpg b/twitter-avatars/CrypticGoblin.jpg new file mode 100644 index 0000000..6bd6f73 Binary files /dev/null and b/twitter-avatars/CrypticGoblin.jpg differ diff --git a/twitter-avatars/CuddlePotato.jpg b/twitter-avatars/CuddlePotato.jpg new file mode 100644 index 0000000..e518877 Binary files /dev/null and b/twitter-avatars/CuddlePotato.jpg differ diff --git a/twitter-avatars/DameKraft.jpg b/twitter-avatars/DameKraft.jpg new file mode 100644 index 0000000..c368bf0 Binary files /dev/null and b/twitter-avatars/DameKraft.jpg differ diff --git a/twitter-avatars/DrRachaelF.jpg b/twitter-avatars/DrRachaelF.jpg new file mode 100644 index 0000000..ae596f2 Binary files /dev/null and b/twitter-avatars/DrRachaelF.jpg differ diff --git a/twitter-avatars/EloraEdwards.jpg b/twitter-avatars/EloraEdwards.jpg new file mode 100644 index 0000000..379de74 Binary files /dev/null and b/twitter-avatars/EloraEdwards.jpg differ diff --git a/twitter-avatars/Emmy_Zje.jpg b/twitter-avatars/Emmy_Zje.jpg new file mode 100644 index 0000000..269329e Binary files /dev/null and b/twitter-avatars/Emmy_Zje.jpg differ diff --git a/twitter-avatars/ErinInTheMorn.jpg b/twitter-avatars/ErinInTheMorn.jpg new file mode 100644 index 0000000..1f57a07 Binary files /dev/null and b/twitter-avatars/ErinInTheMorn.jpg differ diff --git a/twitter-avatars/GenderGP.jpg b/twitter-avatars/GenderGP.jpg new file mode 100644 index 0000000..e36e8eb Binary files /dev/null and b/twitter-avatars/GenderGP.jpg differ diff --git a/twitter-avatars/KaliRainH2O.jpg b/twitter-avatars/KaliRainH2O.jpg new file mode 100644 index 0000000..bc9ec6a Binary files /dev/null and b/twitter-avatars/KaliRainH2O.jpg differ diff --git a/twitter-avatars/KatyMontgomerie.jpg b/twitter-avatars/KatyMontgomerie.jpg new file mode 100644 index 0000000..8e7f129 Binary files /dev/null and b/twitter-avatars/KatyMontgomerie.jpg differ diff --git a/twitter-avatars/LisaTMullin.jpg b/twitter-avatars/LisaTMullin.jpg new file mode 100644 index 0000000..478a4b6 Binary files /dev/null and b/twitter-avatars/LisaTMullin.jpg differ diff --git a/twitter-avatars/MagsVisaggs.jpg b/twitter-avatars/MagsVisaggs.jpg new file mode 100644 index 0000000..af7dde2 Binary files /dev/null and b/twitter-avatars/MagsVisaggs.jpg differ diff --git a/twitter-avatars/MoonyXIV.jpg b/twitter-avatars/MoonyXIV.jpg new file mode 100644 index 0000000..71ca105 Binary files /dev/null and b/twitter-avatars/MoonyXIV.jpg differ diff --git a/twitter-avatars/NMorganCreates.jpg b/twitter-avatars/NMorganCreates.jpg new file mode 100644 index 0000000..77b0bfe Binary files /dev/null and b/twitter-avatars/NMorganCreates.jpg differ diff --git a/twitter-avatars/NightlingBug.jpg b/twitter-avatars/NightlingBug.jpg new file mode 100644 index 0000000..3f995da Binary files /dev/null and b/twitter-avatars/NightlingBug.jpg differ diff --git a/twitter-avatars/OneWeirdAngel.jpg b/twitter-avatars/OneWeirdAngel.jpg new file mode 100644 index 0000000..3ef5ae8 Binary files /dev/null and b/twitter-avatars/OneWeirdAngel.jpg differ diff --git a/twitter-avatars/OttoLontra.jpg b/twitter-avatars/OttoLontra.jpg new file mode 100644 index 0000000..eca041f Binary files /dev/null and b/twitter-avatars/OttoLontra.jpg differ diff --git a/twitter-avatars/QuinnPBrown.jpg b/twitter-avatars/QuinnPBrown.jpg new file mode 100644 index 0000000..f6b3a31 Binary files /dev/null and b/twitter-avatars/QuinnPBrown.jpg differ diff --git a/twitter-avatars/RaeGun2k.jpg b/twitter-avatars/RaeGun2k.jpg new file mode 100644 index 0000000..1a577da Binary files /dev/null and b/twitter-avatars/RaeGun2k.jpg differ diff --git a/twitter-avatars/RebeccaRHelm.jpg b/twitter-avatars/RebeccaRHelm.jpg new file mode 100644 index 0000000..6468fce Binary files /dev/null and b/twitter-avatars/RebeccaRHelm.jpg differ diff --git a/twitter-avatars/RileyFaelan.jpg b/twitter-avatars/RileyFaelan.jpg new file mode 100644 index 0000000..aed4656 Binary files /dev/null and b/twitter-avatars/RileyFaelan.jpg differ diff --git a/twitter-avatars/RoseOfWindsong.jpg b/twitter-avatars/RoseOfWindsong.jpg new file mode 100644 index 0000000..8665fce Binary files /dev/null and b/twitter-avatars/RoseOfWindsong.jpg differ diff --git a/twitter-avatars/RowanChurch.jpg b/twitter-avatars/RowanChurch.jpg new file mode 100644 index 0000000..cb08055 Binary files /dev/null and b/twitter-avatars/RowanChurch.jpg differ diff --git a/twitter-avatars/S_Winterthorn.jpg b/twitter-avatars/S_Winterthorn.jpg new file mode 100644 index 0000000..aafd95a Binary files /dev/null and b/twitter-avatars/S_Winterthorn.jpg differ diff --git a/twitter-avatars/SassKnight.jpg b/twitter-avatars/SassKnight.jpg new file mode 100644 index 0000000..fbfdfde Binary files /dev/null and b/twitter-avatars/SassKnight.jpg differ diff --git a/twitter-avatars/SecretGamerGrrl.jpg b/twitter-avatars/SecretGamerGrrl.jpg new file mode 100644 index 0000000..a991824 Binary files /dev/null and b/twitter-avatars/SecretGamerGrrl.jpg differ diff --git a/twitter-avatars/ShaggyDemiurge.jpg b/twitter-avatars/ShaggyDemiurge.jpg new file mode 100644 index 0000000..22fb9b6 Binary files /dev/null and b/twitter-avatars/ShaggyDemiurge.jpg differ diff --git a/twitter-avatars/TheEmmelineMay.jpg b/twitter-avatars/TheEmmelineMay.jpg new file mode 100644 index 0000000..3782b49 Binary files /dev/null and b/twitter-avatars/TheEmmelineMay.jpg differ diff --git a/twitter-avatars/TransEthics.jpg b/twitter-avatars/TransEthics.jpg new file mode 100644 index 0000000..0d4ca45 Binary files /dev/null and b/twitter-avatars/TransEthics.jpg differ diff --git a/twitter-avatars/TransSalamander.jpg b/twitter-avatars/TransSalamander.jpg new file mode 100644 index 0000000..955314f Binary files /dev/null and b/twitter-avatars/TransSalamander.jpg differ diff --git a/twitter-avatars/Tuplet.jpg b/twitter-avatars/Tuplet.jpg new file mode 100644 index 0000000..f07ea69 Binary files /dev/null and b/twitter-avatars/Tuplet.jpg differ diff --git a/twitter-avatars/TwippingVanilla.jpg b/twitter-avatars/TwippingVanilla.jpg new file mode 100644 index 0000000..9beb5f3 Binary files /dev/null and b/twitter-avatars/TwippingVanilla.jpg differ diff --git a/twitter-avatars/alexand_erleon.jpg b/twitter-avatars/alexand_erleon.jpg new file mode 100644 index 0000000..4cd2d92 Binary files /dev/null and b/twitter-avatars/alexand_erleon.jpg differ diff --git a/twitter-avatars/alicemiriel.jpg b/twitter-avatars/alicemiriel.jpg new file mode 100644 index 0000000..01d7d02 Binary files /dev/null and b/twitter-avatars/alicemiriel.jpg differ diff --git a/twitter-avatars/ayumeril.jpg b/twitter-avatars/ayumeril.jpg new file mode 100644 index 0000000..c93dc34 Binary files /dev/null and b/twitter-avatars/ayumeril.jpg differ diff --git a/twitter-avatars/biscuit_heid.jpg b/twitter-avatars/biscuit_heid.jpg new file mode 100644 index 0000000..2c44426 Binary files /dev/null and b/twitter-avatars/biscuit_heid.jpg differ diff --git a/twitter-avatars/blotchkat.jpg b/twitter-avatars/blotchkat.jpg new file mode 100644 index 0000000..2f00cf0 Binary files /dev/null and b/twitter-avatars/blotchkat.jpg differ diff --git a/twitter-avatars/buttonsandfluff.jpg b/twitter-avatars/buttonsandfluff.jpg new file mode 100644 index 0000000..492e243 Binary files /dev/null and b/twitter-avatars/buttonsandfluff.jpg differ diff --git a/twitter-avatars/bzarcher.jpg b/twitter-avatars/bzarcher.jpg new file mode 100644 index 0000000..2f754ed Binary files /dev/null and b/twitter-avatars/bzarcher.jpg differ diff --git a/twitter-avatars/canamKim.jpg b/twitter-avatars/canamKim.jpg new file mode 100644 index 0000000..a475ccc Binary files /dev/null and b/twitter-avatars/canamKim.jpg differ diff --git a/twitter-avatars/cismender.jpg b/twitter-avatars/cismender.jpg new file mode 100644 index 0000000..f8d6542 Binary files /dev/null and b/twitter-avatars/cismender.jpg differ diff --git a/twitter-avatars/crypticenbug.jpg b/twitter-avatars/crypticenbug.jpg new file mode 100644 index 0000000..b7475e7 Binary files /dev/null and b/twitter-avatars/crypticenbug.jpg differ diff --git a/twitter-avatars/delaneykingrox.jpg b/twitter-avatars/delaneykingrox.jpg new file mode 100644 index 0000000..9122022 Binary files /dev/null and b/twitter-avatars/delaneykingrox.jpg differ diff --git a/twitter-avatars/itsaddis.jpg b/twitter-avatars/itsaddis.jpg new file mode 100644 index 0000000..134a012 Binary files /dev/null and b/twitter-avatars/itsaddis.jpg differ diff --git a/twitter-avatars/meimeimeixie.jpg b/twitter-avatars/meimeimeixie.jpg new file mode 100644 index 0000000..0f84e82 Binary files /dev/null and b/twitter-avatars/meimeimeixie.jpg differ diff --git a/twitter-avatars/naylorillo.jpg b/twitter-avatars/naylorillo.jpg new file mode 100644 index 0000000..b42793b Binary files /dev/null and b/twitter-avatars/naylorillo.jpg differ diff --git a/twitter-avatars/persenche.jpg b/twitter-avatars/persenche.jpg new file mode 100644 index 0000000..c155cfd Binary files /dev/null and b/twitter-avatars/persenche.jpg differ diff --git a/twitter-avatars/queenofnevers.jpg b/twitter-avatars/queenofnevers.jpg new file mode 100644 index 0000000..7a1472b Binary files /dev/null and b/twitter-avatars/queenofnevers.jpg differ diff --git a/twitter-avatars/raddifferent.jpg b/twitter-avatars/raddifferent.jpg new file mode 100644 index 0000000..6d01e95 Binary files /dev/null and b/twitter-avatars/raddifferent.jpg differ diff --git a/twitter-avatars/rozietoez.jpg b/twitter-avatars/rozietoez.jpg new file mode 100644 index 0000000..a5a527c Binary files /dev/null and b/twitter-avatars/rozietoez.jpg differ diff --git a/twitter-avatars/snakmicks.jpg b/twitter-avatars/snakmicks.jpg new file mode 100644 index 0000000..106f1f5 Binary files /dev/null and b/twitter-avatars/snakmicks.jpg differ diff --git a/twitter-avatars/tedcruz.jpg b/twitter-avatars/tedcruz.jpg new file mode 100644 index 0000000..dcce079 Binary files /dev/null and b/twitter-avatars/tedcruz.jpg differ diff --git a/twitter-avatars/tomorrowville.jpg b/twitter-avatars/tomorrowville.jpg new file mode 100644 index 0000000..c3130d1 Binary files /dev/null and b/twitter-avatars/tomorrowville.jpg differ diff --git a/twitter-avatars/two_n_minus_one.jpg b/twitter-avatars/two_n_minus_one.jpg new file mode 100644 index 0000000..584df08 Binary files /dev/null and b/twitter-avatars/two_n_minus_one.jpg differ diff --git a/twitter-avatars/zeghostboy.jpg b/twitter-avatars/zeghostboy.jpg new file mode 100644 index 0000000..b190295 Binary files /dev/null and b/twitter-avatars/zeghostboy.jpg differ diff --git a/twitter-backup.json b/twitter-backup.json index 7b5825d..840bdd9 100644 --- a/twitter-backup.json +++ b/twitter-backup.json @@ -35,16 +35,16 @@ } }, "protected": false, - "followers_count": 1333, - "friends_count": 1252, + "followers_count": 1299, + "friends_count": 1214, "listed_count": 2, "created_at": "Fri Jan 26 12:17:54 +0000 2018", - "favourites_count": 148496, + "favourites_count": 165101, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 16615, + "statuses_count": 17004, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -67,15 +67,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 66, - "favorite_count": 409, + "retweet_count": 68, + "favorite_count": 406, "favorited": false, "retweeted": false, "lang": "en" @@ -218,16 +219,16 @@ } }, "protected": false, - "followers_count": 2308, - "friends_count": 892, - "listed_count": 3, + "followers_count": 2339, + "friends_count": 895, + "listed_count": 4, "created_at": "Tue Jul 28 13:51:35 +0000 2015", - "favourites_count": 37315, + "favourites_count": 39065, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 14143, + "statuses_count": 14503, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -250,7 +251,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -258,7 +260,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 5, - "favorite_count": 24, + "favorite_count": 26, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -292,37 +294,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -333,7 +332,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -345,15 +344,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2980, - "favorite_count": 10820, + "retweet_count": 3118, + "favorite_count": 11303, "favorited": true, "retweeted": true, "lang": "en" @@ -383,10 +383,10 @@ "user": { "id": 1115826452715511800, "id_str": "1115826452715511809", - "name": "Erin, boycotting Arkansas businesses", + "name": "Erin, Sundresses Mom", "screen_name": "ErinInTheMorn", "location": "Washington, DC", - "description": "Solidarity with trans kids✊Democrat⬅️ Mom👩‍👦Weather nerd⛈ Sex changeling🏳️‍⚧️ DC🇺🇸 Deacon✝️ Digital director @amerindependent! she/her. Venmo @erin888", + "description": "Lookout, dangerous gender expression ahead Solidarity w/ trans kids ✊Democrat ⬅️ Mom 👩‍👦Weather nerd ⛈ DC 🇺🇸 Deacon ✝️ D&D DM 🐲 She/her. Venmo erin888", "url": null, "entities": { "description": { @@ -394,16 +394,16 @@ } }, "protected": false, - "followers_count": 15475, - "friends_count": 634, - "listed_count": 32, + "followers_count": 18268, + "friends_count": 893, + "listed_count": 42, "created_at": "Wed Apr 10 03:58:52 +0000 2019", - "favourites_count": 46985, + "favourites_count": 59716, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 10945, + "statuses_count": 13860, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -412,21 +412,22 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1374062295282769920/p7BLnJuR_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1374062295282769920/p7BLnJuR_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1385754861904486400/mBBTpmb1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1385754861904486400/mBBTpmb1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1115826452715511809/1589988576", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, - "has_extended_profile": false, + "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -434,7 +435,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 446, + "favorite_count": 439, "favorited": false, "retweeted": false, "lang": "en" @@ -455,7 +456,7 @@ "user_mentions": [ { "screen_name": "ErinInTheMorn", - "name": "Erin, boycotting Arkansas businesses", + "name": "Erin, Sundresses Mom", "id": 1115826452715511800, "id_str": "1115826452715511809", "indices": [ @@ -475,16 +476,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -499,16 +500,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -531,7 +532,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -560,7 +562,7 @@ "user_mentions": [ { "screen_name": "TwippingVanilla", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "id": 820322649456844800, "id_str": "820322649456844800", "indices": [ @@ -580,10 +582,10 @@ "user": { "id": 1115826452715511800, "id_str": "1115826452715511809", - "name": "Erin, boycotting Arkansas businesses", + "name": "Erin, Sundresses Mom", "screen_name": "ErinInTheMorn", "location": "Washington, DC", - "description": "Solidarity with trans kids✊Democrat⬅️ Mom👩‍👦Weather nerd⛈ Sex changeling🏳️‍⚧️ DC🇺🇸 Deacon✝️ Digital director @amerindependent! she/her. Venmo @erin888", + "description": "Lookout, dangerous gender expression ahead Solidarity w/ trans kids ✊Democrat ⬅️ Mom 👩‍👦Weather nerd ⛈ DC 🇺🇸 Deacon ✝️ D&D DM 🐲 She/her. Venmo erin888", "url": null, "entities": { "description": { @@ -591,16 +593,16 @@ } }, "protected": false, - "followers_count": 15475, - "friends_count": 634, - "listed_count": 32, + "followers_count": 18268, + "friends_count": 893, + "listed_count": 42, "created_at": "Wed Apr 10 03:58:52 +0000 2019", - "favourites_count": 46985, + "favourites_count": 59716, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 10945, + "statuses_count": 13860, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -609,21 +611,22 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1374062295282769920/p7BLnJuR_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1374062295282769920/p7BLnJuR_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1385754861904486400/mBBTpmb1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1385754861904486400/mBBTpmb1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1115826452715511809/1589988576", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, - "has_extended_profile": false, + "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -661,18 +664,18 @@ "user": { "id": 28763613, "id_str": "28763613", - "name": "Kathryn Gibes the Salazzle 🦎 🏳️‍⚧️ ✨", + "name": "🏳️‍⚧️ Kathryn Gibes ✨", "screen_name": "TransSalamander", "location": "@TenaciousRanch in Colorado", "description": "Submissive plural trans lesbian furry artist toy collector (she/her) 🔞 Property of @steampunkpenny GFs: @norintha @IzzyBunBop @Katabassist @StebMcDreb", - "url": "https://t.co/lMjENUoFl2", + "url": "https://t.co/kvOC6uiqYF", "entities": { "url": { "urls": [ { - "url": "https://t.co/lMjENUoFl2", - "expanded_url": "https://tfsource.com/wishlist/?cw=NzQ2", - "display_url": "tfsource.com/wishlist/?cw=N…", + "url": "https://t.co/kvOC6uiqYF", + "expanded_url": "https://www.amazon.com/hz/wishlist/ls/F6E2X4ZN7G0K", + "display_url": "amazon.com/hz/wishlist/ls…", "indices": [ 0, 23 @@ -685,16 +688,16 @@ } }, "protected": false, - "followers_count": 10932, - "friends_count": 2024, - "listed_count": 25, + "followers_count": 12983, + "friends_count": 2298, + "listed_count": 29, "created_at": "Sat Apr 04 08:27:30 +0000 2009", - "favourites_count": 519942, + "favourites_count": 588361, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197176, + "statuses_count": 219255, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -703,8 +706,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1291195296177770498/MsOUOLub_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1291195296177770498/MsOUOLub_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1423399082668687360/p3XA4s-a_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423399082668687360/p3XA4s-a_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/28763613/1567897498", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", @@ -717,15 +720,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 53, - "favorite_count": 394, + "retweet_count": 75, + "favorite_count": 621, "favorited": false, "retweeted": false, "lang": "en" @@ -766,10 +770,10 @@ "user": { "id": 2864164252, "id_str": "2864164252", - "name": "The Legend of Panda: Trails in the Bamboo", + "name": "Sussy Baka Defense Force", "screen_name": "meimeimeixie", "location": "", - "description": "Chelsea/Meixie/Cy // 🐼 irl // 👰 💍 @zerker127 // 💜💜 @ririsusquirrel // jrpg garbage // assigned gamer grill at birth (she/her) // 18+ only // No RP", + "description": "Chelsea/Meixie // 🐼 irl // 👰 💍 @zerker127 // 💜💜 @ririsusquirrel // jrpg garbage // assigned gamer at birth (she/her) // 18+ only // No RP", "url": null, "entities": { "description": { @@ -777,16 +781,16 @@ } }, "protected": false, - "followers_count": 739, - "friends_count": 291, - "listed_count": 3, + "followers_count": 763, + "friends_count": 316, + "listed_count": 0, "created_at": "Thu Nov 06 17:39:12 +0000 2014", - "favourites_count": 13778, + "favourites_count": 15706, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 27613, + "statuses_count": 33050, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -795,9 +799,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1376564512078315525/pLC1QAGl_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376564512078315525/pLC1QAGl_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2864164252/1616718633", + "profile_image_url": "http://pbs.twimg.com/profile_images/1423773941982695424/-ndg817G_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423773941982695424/-ndg817G_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2864164252/1626662836", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -809,7 +813,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -847,18 +852,18 @@ "user": { "id": 28763613, "id_str": "28763613", - "name": "Kathryn Gibes the Salazzle 🦎 🏳️‍⚧️ ✨", + "name": "🏳️‍⚧️ Kathryn Gibes ✨", "screen_name": "TransSalamander", "location": "@TenaciousRanch in Colorado", "description": "Submissive plural trans lesbian furry artist toy collector (she/her) 🔞 Property of @steampunkpenny GFs: @norintha @IzzyBunBop @Katabassist @StebMcDreb", - "url": "https://t.co/lMjENUoFl2", + "url": "https://t.co/kvOC6uiqYF", "entities": { "url": { "urls": [ { - "url": "https://t.co/lMjENUoFl2", - "expanded_url": "https://tfsource.com/wishlist/?cw=NzQ2", - "display_url": "tfsource.com/wishlist/?cw=N…", + "url": "https://t.co/kvOC6uiqYF", + "expanded_url": "https://www.amazon.com/hz/wishlist/ls/F6E2X4ZN7G0K", + "display_url": "amazon.com/hz/wishlist/ls…", "indices": [ 0, 23 @@ -871,16 +876,16 @@ } }, "protected": false, - "followers_count": 10932, - "friends_count": 2024, - "listed_count": 25, + "followers_count": 12983, + "friends_count": 2298, + "listed_count": 29, "created_at": "Sat Apr 04 08:27:30 +0000 2009", - "favourites_count": 519942, + "favourites_count": 588361, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197176, + "statuses_count": 219255, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -889,8 +894,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1291195296177770498/MsOUOLub_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1291195296177770498/MsOUOLub_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1423399082668687360/p3XA4s-a_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423399082668687360/p3XA4s-a_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/28763613/1567897498", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", @@ -903,15 +908,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 563, - "favorite_count": 1648, + "retweet_count": 957, + "favorite_count": 2759, "favorited": false, "retweeted": false, "lang": "en" @@ -932,7 +938,7 @@ "user_mentions": [ { "screen_name": "meimeimeixie", - "name": "The Legend of Panda: Trails in the Bamboo", + "name": "Sussy Baka Defense Force", "id": 2864164252, "id_str": "2864164252", "indices": [ @@ -962,16 +968,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -986,16 +992,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1018,7 +1024,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -1026,7 +1033,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 16, + "favorite_count": 17, "favorited": false, "retweeted": false, "lang": "en" @@ -1067,16 +1074,16 @@ } }, "protected": false, - "followers_count": 6423, - "friends_count": 136, - "listed_count": 12, + "followers_count": 6312, + "friends_count": 160, + "listed_count": 11, "created_at": "Wed Jan 23 23:46:08 +0000 2019", - "favourites_count": 9429, + "favourites_count": 9810, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9275, + "statuses_count": 9470, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1085,8 +1092,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1323620819705147395/xWzSSDFs_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1323620819705147395/xWzSSDFs_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1413626911121678338/CdaBNgsj_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1413626911121678338/CdaBNgsj_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1088221374018138118/1588765481", "profile_link_color": "FF691F", "profile_sidebar_border_color": "000000", @@ -1099,15 +1106,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 134, + "retweet_count": 5, + "favorite_count": 137, "favorited": false, "retweeted": false, "lang": "en" @@ -1140,37 +1148,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1181,7 +1186,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -1193,15 +1198,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 105, - "favorite_count": 2076, + "retweet_count": 119, + "favorite_count": 2286, "favorited": false, "retweeted": false, "lang": "en" @@ -1255,16 +1261,16 @@ } }, "protected": false, - "followers_count": 7481, - "friends_count": 479, + "followers_count": 7677, + "friends_count": 482, "listed_count": 92, "created_at": "Thu Sep 04 23:29:11 +0000 2014", - "favourites_count": 150996, + "favourites_count": 147073, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197362, + "statuses_count": 194502, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1286,7 +1292,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -1327,37 +1334,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1368,7 +1372,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -1380,15 +1384,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 106, - "favorite_count": 2120, + "retweet_count": 115, + "favorite_count": 2334, "favorited": false, "retweeted": false, "lang": "en" @@ -1442,16 +1447,16 @@ } }, "protected": false, - "followers_count": 7481, - "friends_count": 479, + "followers_count": 7677, + "friends_count": 482, "listed_count": 92, "created_at": "Thu Sep 04 23:29:11 +0000 2014", - "favourites_count": 150996, + "favourites_count": 147073, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197362, + "statuses_count": 194502, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1473,7 +1478,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -1514,37 +1520,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1555,7 +1558,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -1567,15 +1570,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 114, - "favorite_count": 2044, + "retweet_count": 122, + "favorite_count": 2246, "favorited": false, "retweeted": false, "lang": "en" @@ -1629,16 +1633,16 @@ } }, "protected": false, - "followers_count": 7481, - "friends_count": 479, + "followers_count": 7677, + "friends_count": 482, "listed_count": 92, "created_at": "Thu Sep 04 23:29:11 +0000 2014", - "favourites_count": 150996, + "favourites_count": 147073, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197362, + "statuses_count": 194502, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1660,7 +1664,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -1668,7 +1673,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 10, - "favorite_count": 100, + "favorite_count": 102, "favorited": false, "retweeted": false, "lang": "en" @@ -1722,16 +1727,16 @@ } }, "protected": false, - "followers_count": 7481, - "friends_count": 479, + "followers_count": 7677, + "friends_count": 482, "listed_count": 92, "created_at": "Thu Sep 04 23:29:11 +0000 2014", - "favourites_count": 150996, + "favourites_count": 147073, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197362, + "statuses_count": 194502, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1753,7 +1758,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -1815,16 +1821,16 @@ } }, "protected": false, - "followers_count": 7481, - "friends_count": 479, + "followers_count": 7677, + "friends_count": 482, "listed_count": 92, "created_at": "Thu Sep 04 23:29:11 +0000 2014", - "favourites_count": 150996, + "favourites_count": 147073, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197362, + "statuses_count": 194502, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1846,15 +1852,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 37, - "favorite_count": 158, + "retweet_count": 40, + "favorite_count": 161, "favorited": false, "retweeted": false, "lang": "en" @@ -1887,37 +1894,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -1928,7 +1932,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -1940,15 +1944,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 87, - "favorite_count": 2475, + "retweet_count": 99, + "favorite_count": 2703, "favorited": false, "retweeted": false, "lang": "en" @@ -2002,16 +2007,16 @@ } }, "protected": false, - "followers_count": 7481, - "friends_count": 479, + "followers_count": 7677, + "friends_count": 482, "listed_count": 92, "created_at": "Thu Sep 04 23:29:11 +0000 2014", - "favourites_count": 150996, + "favourites_count": 147073, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197362, + "statuses_count": 194502, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2033,7 +2038,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -2041,7 +2047,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 78, + "favorite_count": 79, "favorited": false, "retweeted": false, "lang": "en" @@ -2074,37 +2080,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2115,7 +2118,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -2127,15 +2130,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 64, - "favorite_count": 1906, + "retweet_count": 69, + "favorite_count": 2071, "favorited": false, "retweeted": false, "lang": "en" @@ -2168,37 +2172,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2209,7 +2210,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -2221,15 +2222,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 99, - "favorite_count": 2132, + "retweet_count": 103, + "favorite_count": 2313, "favorited": false, "retweeted": false, "lang": "en" @@ -2270,27 +2272,27 @@ "user": { "id": 730081186689617900, "id_str": "730081186689617921", - "name": "kiva, on hiatus", + "name": "kiva", "screen_name": "persenche", "location": "Seattle, WA", - "description": "lead designer of battletech (2018). ⚧⚢ (she/her). on hiatus; mentions and DMs will likely be ignored.", + "description": "⚧⚢ (she/her). powered down. design stuff at @design_kiva; personal stuff at @ninshubar.", "url": null, "entities": { "description": { "urls": [] } }, - "protected": false, - "followers_count": 7300, - "friends_count": 2220, - "listed_count": 20, + "protected": true, + "followers_count": 7390, + "friends_count": 2210, + "listed_count": 21, "created_at": "Tue May 10 17:04:53 +0000 2016", - "favourites_count": 67988, + "favourites_count": 68225, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 45001, + "statuses_count": 46098, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2313,15 +2315,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 42, + "retweet_count": 4, + "favorite_count": 47, "favorited": false, "retweeted": false, "lang": "en" @@ -2354,37 +2357,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2395,7 +2395,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -2407,15 +2407,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 76, - "favorite_count": 2210, + "retweet_count": 82, + "favorite_count": 2423, "favorited": false, "retweeted": false, "lang": "en" @@ -2542,37 +2543,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2583,7 +2581,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -2595,15 +2593,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 101, - "favorite_count": 2175, + "retweet_count": 111, + "favorite_count": 2382, "favorited": false, "retweeted": false, "lang": "en" @@ -2636,37 +2635,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2677,7 +2673,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -2689,15 +2685,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 71, - "favorite_count": 1772, + "retweet_count": 86, + "favorite_count": 1940, "favorited": false, "retweeted": false, "lang": "en" @@ -2730,37 +2727,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2771,7 +2765,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -2783,15 +2777,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 65, - "favorite_count": 1960, + "retweet_count": 78, + "favorite_count": 2132, "favorited": false, "retweeted": false, "lang": "en" @@ -2939,16 +2934,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -2957,8 +2952,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -2971,7 +2966,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -2979,7 +2975,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 6, - "favorite_count": 114, + "favorite_count": 111, "favorited": false, "retweeted": false, "lang": "en" @@ -3033,16 +3029,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3051,8 +3047,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -3065,7 +3061,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -3073,7 +3070,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 7, - "favorite_count": 116, + "favorite_count": 114, "favorited": false, "retweeted": false, "lang": "en" @@ -3127,16 +3124,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3145,8 +3142,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -3159,15 +3156,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 12, - "favorite_count": 154, + "retweet_count": 11, + "favorite_count": 150, "favorited": false, "retweeted": false, "lang": "en" @@ -3221,16 +3219,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3239,8 +3237,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -3253,7 +3251,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -3261,7 +3260,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 8, - "favorite_count": 122, + "favorite_count": 119, "favorited": false, "retweeted": false, "lang": "en" @@ -3315,16 +3314,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3333,8 +3332,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -3347,15 +3346,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 8, - "favorite_count": 106, + "retweet_count": 9, + "favorite_count": 107, "favorited": false, "retweeted": false, "lang": "en" @@ -3409,16 +3409,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3427,8 +3427,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -3441,7 +3441,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -3449,7 +3450,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 19, - "favorite_count": 174, + "favorite_count": 167, "favorited": false, "retweeted": false, "lang": "en" @@ -3503,16 +3504,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3521,8 +3522,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -3535,7 +3536,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -3543,7 +3545,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 7, - "favorite_count": 145, + "favorite_count": 140, "favorited": false, "retweeted": false, "lang": "en" @@ -3597,16 +3599,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3615,8 +3617,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -3629,7 +3631,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -3637,7 +3640,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 11, - "favorite_count": 121, + "favorite_count": 118, "favorited": false, "retweeted": false, "lang": "en" @@ -3667,18 +3670,18 @@ "user": { "id": 28763613, "id_str": "28763613", - "name": "Kathryn Gibes the Salazzle 🦎 🏳️‍⚧️ ✨", + "name": "🏳️‍⚧️ Kathryn Gibes ✨", "screen_name": "TransSalamander", "location": "@TenaciousRanch in Colorado", "description": "Submissive plural trans lesbian furry artist toy collector (she/her) 🔞 Property of @steampunkpenny GFs: @norintha @IzzyBunBop @Katabassist @StebMcDreb", - "url": "https://t.co/lMjENUoFl2", + "url": "https://t.co/kvOC6uiqYF", "entities": { "url": { "urls": [ { - "url": "https://t.co/lMjENUoFl2", - "expanded_url": "https://tfsource.com/wishlist/?cw=NzQ2", - "display_url": "tfsource.com/wishlist/?cw=N…", + "url": "https://t.co/kvOC6uiqYF", + "expanded_url": "https://www.amazon.com/hz/wishlist/ls/F6E2X4ZN7G0K", + "display_url": "amazon.com/hz/wishlist/ls…", "indices": [ 0, 23 @@ -3691,16 +3694,16 @@ } }, "protected": false, - "followers_count": 10932, - "friends_count": 2024, - "listed_count": 25, + "followers_count": 12983, + "friends_count": 2298, + "listed_count": 29, "created_at": "Sat Apr 04 08:27:30 +0000 2009", - "favourites_count": 519942, + "favourites_count": 588361, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 197176, + "statuses_count": 219255, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3709,8 +3712,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1291195296177770498/MsOUOLub_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1291195296177770498/MsOUOLub_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1423399082668687360/p3XA4s-a_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423399082668687360/p3XA4s-a_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/28763613/1567897498", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", @@ -3723,7 +3726,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -3731,7 +3735,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 72, + "favorite_count": 70, "favorited": false, "retweeted": false, "lang": "en" @@ -3764,37 +3768,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3805,7 +3806,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -3817,15 +3818,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 122, - "favorite_count": 2731, + "retweet_count": 127, + "favorite_count": 2974, "favorited": false, "retweeted": false, "lang": "en" @@ -3858,37 +3860,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3899,7 +3898,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -3911,15 +3910,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 101, - "favorite_count": 2617, + "retweet_count": 116, + "favorite_count": 2855, "favorited": true, "retweeted": false, "lang": "en" @@ -3952,37 +3952,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -3993,7 +3990,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -4005,15 +4002,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 111, - "favorite_count": 2686, + "retweet_count": 120, + "favorite_count": 2922, "favorited": true, "retweeted": false, "lang": "en" @@ -4046,37 +4044,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4087,7 +4082,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -4099,15 +4094,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 113, - "favorite_count": 2619, + "retweet_count": 120, + "favorite_count": 2835, "favorited": false, "retweeted": false, "lang": "en" @@ -4139,14 +4135,14 @@ "id_str": "1025777589216927749", "name": "Cherry Blossom", "screen_name": "DameKraft", - "location": "Eugene Oregon", - "description": "Director of Security Engineering at a rather large gaming company", - "url": "https://t.co/gCWPOEngei", + "location": "Seattle, WA", + "description": "an inconsequential nobody of she her pronouns and low stakes engagement, a femme disaster of twee proportions.", + "url": "https://t.co/TH5K53QhTD", "entities": { "url": { "urls": [ { - "url": "https://t.co/gCWPOEngei", + "url": "https://t.co/TH5K53QhTD", "expanded_url": "http://www.damekraft.com", "display_url": "damekraft.com", "indices": [ @@ -4161,16 +4157,16 @@ } }, "protected": false, - "followers_count": 1284, - "friends_count": 1445, - "listed_count": 8, + "followers_count": 1378, + "friends_count": 1494, + "listed_count": 10, "created_at": "Sat Aug 04 16:16:50 +0000 2018", - "favourites_count": 16801, + "favourites_count": 17878, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 15597, + "statuses_count": 17642, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4193,7 +4189,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -4201,7 +4198,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 33, + "favorite_count": 31, "favorited": false, "retweeted": false, "lang": "en" @@ -4234,37 +4231,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4275,7 +4269,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -4287,15 +4281,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 45, - "favorite_count": 1462, + "retweet_count": 48, + "favorite_count": 1592, "favorited": false, "retweeted": false, "lang": "en" @@ -4328,37 +4323,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4369,7 +4361,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -4381,15 +4373,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 66, - "favorite_count": 1784, + "retweet_count": 76, + "favorite_count": 1951, "favorited": false, "retweeted": false, "lang": "en" @@ -4419,16 +4412,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -4443,16 +4436,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4475,7 +4468,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -4483,7 +4477,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 46, + "favorite_count": 48, "favorited": false, "retweeted": false, "lang": "en" @@ -4516,7 +4510,7 @@ "name": "Faith", "screen_name": "RoseOfWindsong", "location": "North Carolina, USA", - "description": "Pretending to be a real author. Democrat. Socialism and social justice. Bisexual, transgender, polyamorous. NASCAR tweets. Pronouns: she/her.", + "description": "World's okay-est looking transgender. Democrat. Socialism and social justice. Polyamorous. NASCAR tweets: 22 48 12 16 23 99. Pronouns: she/her.", "url": "https://t.co/s51tjkf5Y2", "entities": { "url": { @@ -4537,16 +4531,16 @@ } }, "protected": false, - "followers_count": 17387, - "friends_count": 828, - "listed_count": 89, + "followers_count": 17761, + "friends_count": 849, + "listed_count": 85, "created_at": "Mon Feb 29 01:55:05 +0000 2016", - "favourites_count": 78020, + "favourites_count": 81548, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 38327, + "statuses_count": 40457, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4555,9 +4549,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1377440438353858561/TAOmJYNB_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1377440438353858561/TAOmJYNB_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/704122685794750464/1617047558", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429125284758970369/y-n8KbYj_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429125284758970369/y-n8KbYj_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/704122685794750464/1624237847", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -4569,15 +4563,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 434, - "favorite_count": 2358, + "retweet_count": 419, + "favorite_count": 2313, "favorited": false, "retweeted": false, "lang": "en" @@ -4607,16 +4602,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -4631,16 +4626,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4663,7 +4658,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -4671,7 +4667,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 64, + "favorite_count": 67, "favorited": false, "retweeted": false, "lang": "en" @@ -4701,16 +4697,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -4725,16 +4721,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4757,7 +4753,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -4765,7 +4762,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 25, - "favorite_count": 91, + "favorite_count": 95, "favorited": false, "retweeted": false, "lang": "en" @@ -4795,16 +4792,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -4819,16 +4816,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4851,7 +4848,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -4859,7 +4857,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 59, + "favorite_count": 64, "favorited": false, "retweeted": false, "lang": "en" @@ -4889,16 +4887,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -4913,16 +4911,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -4945,7 +4943,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -4953,7 +4952,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 66, + "favorite_count": 69, "favorited": false, "retweeted": false, "lang": "en" @@ -4983,16 +4982,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -5007,16 +5006,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5039,7 +5038,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -5047,7 +5047,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 60, + "favorite_count": 62, "favorited": false, "retweeted": false, "lang": "en" @@ -5101,37 +5101,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5142,7 +5139,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -5154,15 +5151,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1, - "favorite_count": 13, + "retweet_count": 3, + "favorite_count": 16, "favorited": false, "retweeted": false, "lang": "en" @@ -5195,7 +5193,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -5216,16 +5214,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5248,15 +5246,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 240, - "favorite_count": 6094, + "retweet_count": 245, + "favorite_count": 6202, "favorited": false, "retweeted": false, "lang": "en" @@ -5308,16 +5307,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5339,7 +5338,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -5347,7 +5347,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 17, + "favorite_count": 19, "favorited": false, "retweeted": false, "lang": "en" @@ -5380,7 +5380,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -5401,16 +5401,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5433,7 +5433,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -5441,7 +5442,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 387, - "favorite_count": 7452, + "favorite_count": 7558, "favorited": false, "retweeted": false, "lang": "en" @@ -5474,7 +5475,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -5495,16 +5496,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5527,15 +5528,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 340, - "favorite_count": 7259, + "retweet_count": 345, + "favorite_count": 7379, "favorited": false, "retweeted": false, "lang": "en" @@ -5587,16 +5589,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5618,7 +5620,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -5626,7 +5629,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 19, + "favorite_count": 20, "favorited": false, "retweeted": false, "lang": "en" @@ -5678,16 +5681,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5709,7 +5712,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -5717,7 +5721,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 17, + "favorite_count": 19, "favorited": false, "retweeted": false, "lang": "en" @@ -5750,7 +5754,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -5771,16 +5775,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5803,15 +5807,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 874, - "favorite_count": 9113, + "retweet_count": 877, + "favorite_count": 9236, "favorited": false, "retweeted": false, "lang": "en" @@ -5844,7 +5849,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -5865,16 +5870,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5897,15 +5902,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 482, - "favorite_count": 7965, + "retweet_count": 485, + "favorite_count": 8082, "favorited": false, "retweeted": false, "lang": "en" @@ -5938,7 +5944,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -5959,16 +5965,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -5991,15 +5997,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1447, - "favorite_count": 14603, + "retweet_count": 1455, + "favorite_count": 14731, "favorited": false, "retweeted": false, "lang": "en" @@ -6064,16 +6071,16 @@ } }, "protected": false, - "followers_count": 71, - "friends_count": 412, + "followers_count": 69, + "friends_count": 432, "listed_count": 0, "created_at": "Sat Oct 22 18:11:19 +0000 2016", - "favourites_count": 19912, + "favourites_count": 20385, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 1975, + "statuses_count": 2097, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6096,7 +6103,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -6104,7 +6112,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 5, - "favorite_count": 105, + "favorite_count": 101, "favorited": false, "retweeted": false, "lang": "en" @@ -6156,16 +6164,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6187,7 +6195,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -6195,7 +6204,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 17, + "favorite_count": 19, "favorited": false, "retweeted": false, "lang": "en" @@ -6259,16 +6268,16 @@ } }, "protected": false, - "followers_count": 16562, - "friends_count": 5945, - "listed_count": 133, + "followers_count": 17661, + "friends_count": 6066, + "listed_count": 124, "created_at": "Sat Jan 31 10:31:52 +0000 2015", - "favourites_count": 210974, + "favourites_count": 216903, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 189684, + "statuses_count": 194342, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6291,15 +6300,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1201, - "favorite_count": 8054, + "retweet_count": 1172, + "favorite_count": 7941, "favorited": false, "retweeted": false, "lang": "en" @@ -6332,7 +6342,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -6353,16 +6363,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6385,15 +6395,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 465, - "favorite_count": 8051, + "retweet_count": 469, + "favorite_count": 8168, "favorited": false, "retweeted": false, "lang": "en" @@ -6426,7 +6437,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -6447,16 +6458,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6479,15 +6490,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 720, - "favorite_count": 9076, + "retweet_count": 719, + "favorite_count": 9197, "favorited": false, "retweeted": false, "lang": "en" @@ -6520,7 +6532,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -6541,16 +6553,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6573,15 +6585,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 27761, - "favorite_count": 56779, + "retweet_count": 27800, + "favorite_count": 57058, "favorited": false, "retweeted": false, "lang": "en" @@ -6614,7 +6627,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -6635,16 +6648,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6667,15 +6680,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 332, - "favorite_count": 7068, + "retweet_count": 334, + "favorite_count": 7194, "favorited": false, "retweeted": false, "lang": "en" @@ -6727,16 +6741,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6758,7 +6772,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -6766,7 +6781,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 19, + "favorite_count": 21, "favorited": false, "retweeted": false, "lang": "en" @@ -6799,7 +6814,7 @@ "name": "Open Ocean Exploration", "screen_name": "RebeccaRHelm", "location": "Beyond National Jurisdiction", - "description": "Assistant Prof of Biology discovering life on the high seas. Follows/likes/retweets do not equal endorsements. Tweets are my own. Please bring Croissants.", + "description": "90% ocean 10% everything else. Assist. Prof studying life on the high seas. Follows/likes/retweets ≠ endorsements. Tweets are my own. Please bring Croissants.", "url": "https://t.co/u68MEpgFs5", "entities": { "url": { @@ -6820,16 +6835,16 @@ } }, "protected": false, - "followers_count": 77873, - "friends_count": 1473, - "listed_count": 744, + "followers_count": 89588, + "friends_count": 1563, + "listed_count": 814, "created_at": "Sat Mar 31 13:02:00 +0000 2012", - "favourites_count": 32348, + "favourites_count": 35258, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11309, + "statuses_count": 13217, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6852,15 +6867,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2392, - "favorite_count": 13673, + "retweet_count": 2386, + "favorite_count": 13819, "favorited": false, "retweeted": false, "lang": "en" @@ -6912,16 +6928,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -6943,7 +6959,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -6951,7 +6968,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 36, + "favorite_count": 38, "favorited": false, "retweeted": false, "lang": "en" @@ -7016,16 +7033,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7034,8 +7051,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -7048,7 +7065,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -7089,7 +7107,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 71, + "favorite_count": 73, "favorited": false, "retweeted": false, "lang": "en" @@ -7122,7 +7140,7 @@ "name": "Miss Foe", "screen_name": "snakmicks", "location": "San Francisco Bay Area", - "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Possibly 🏳️‍⚧️ Deffo 🏳️‍🌈 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", + "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Sesame Street Loremaster 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", "url": "https://t.co/abhPrMzS9B", "entities": { "url": { @@ -7143,16 +7161,16 @@ } }, "protected": false, - "followers_count": 3803, + "followers_count": 3975, "friends_count": 497, - "listed_count": 13, + "listed_count": 15, "created_at": "Fri Apr 17 00:10:29 +0000 2009", - "favourites_count": 23472, + "favourites_count": 27527, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 23427, + "statuses_count": 24898, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7161,8 +7179,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/32215718/1571519638", "profile_link_color": "81D8D0", "profile_sidebar_border_color": "000000", @@ -7175,7 +7193,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -7183,7 +7202,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 26, + "favorite_count": 25, "favorited": false, "retweeted": false, "lang": "en" @@ -7237,16 +7256,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7255,8 +7274,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -7269,15 +7288,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 72, - "favorite_count": 955, + "retweet_count": 71, + "favorite_count": 958, "favorited": false, "retweeted": false, "lang": "en" @@ -7310,7 +7330,7 @@ "name": "Miss Foe", "screen_name": "snakmicks", "location": "San Francisco Bay Area", - "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Possibly 🏳️‍⚧️ Deffo 🏳️‍🌈 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", + "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Sesame Street Loremaster 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", "url": "https://t.co/abhPrMzS9B", "entities": { "url": { @@ -7331,16 +7351,16 @@ } }, "protected": false, - "followers_count": 3803, + "followers_count": 3975, "friends_count": 497, - "listed_count": 13, + "listed_count": 15, "created_at": "Fri Apr 17 00:10:29 +0000 2009", - "favourites_count": 23472, + "favourites_count": 27527, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 23427, + "statuses_count": 24898, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7349,8 +7369,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/32215718/1571519638", "profile_link_color": "81D8D0", "profile_sidebar_border_color": "000000", @@ -7363,7 +7383,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -7371,7 +7392,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 35, + "favorite_count": 34, "favorited": false, "retweeted": false, "lang": "en" @@ -7425,16 +7446,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7443,8 +7464,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -7457,15 +7478,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 19, - "favorite_count": 547, + "retweet_count": 18, + "favorite_count": 544, "favorited": false, "retweeted": false, "lang": "en" @@ -7519,16 +7541,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7537,8 +7559,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -7551,15 +7573,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 38, - "favorite_count": 607, + "retweet_count": 37, + "favorite_count": 611, "favorited": false, "retweeted": false, "lang": "en" @@ -7613,16 +7636,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7631,8 +7654,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -7645,15 +7668,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 65, - "favorite_count": 839, + "retweet_count": 64, + "favorite_count": 845, "favorited": false, "retweeted": false, "lang": "en" @@ -7707,16 +7731,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7725,8 +7749,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -7739,7 +7763,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -7747,7 +7772,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 70, - "favorite_count": 1145, + "favorite_count": 1156, "favorited": false, "retweeted": false, "lang": "en" @@ -7780,7 +7805,7 @@ "name": "Miss Foe", "screen_name": "snakmicks", "location": "San Francisco Bay Area", - "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Possibly 🏳️‍⚧️ Deffo 🏳️‍🌈 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", + "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Sesame Street Loremaster 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", "url": "https://t.co/abhPrMzS9B", "entities": { "url": { @@ -7801,16 +7826,16 @@ } }, "protected": false, - "followers_count": 3803, + "followers_count": 3975, "friends_count": 497, - "listed_count": 13, + "listed_count": 15, "created_at": "Fri Apr 17 00:10:29 +0000 2009", - "favourites_count": 23472, + "favourites_count": 27527, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 23427, + "statuses_count": 24898, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7819,8 +7844,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/32215718/1571519638", "profile_link_color": "81D8D0", "profile_sidebar_border_color": "000000", @@ -7833,7 +7858,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -7841,7 +7867,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 21, - "favorite_count": 137, + "favorite_count": 133, "favorited": false, "retweeted": false, "lang": "en" @@ -7874,7 +7900,7 @@ "name": "Miss Foe", "screen_name": "snakmicks", "location": "San Francisco Bay Area", - "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Possibly 🏳️‍⚧️ Deffo 🏳️‍🌈 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", + "description": "🌵 Heather 🌵 She/Her 🌵 Pan 🌵 Ex(ish)-Mormon 🌵Sesame Street Loremaster 🌵 Video Games & Music 🌵 Incredibly Anxious 🌵 DMs Open 🌵 $MissFoe 🌵", "url": "https://t.co/abhPrMzS9B", "entities": { "url": { @@ -7895,16 +7921,16 @@ } }, "protected": false, - "followers_count": 3803, + "followers_count": 3975, "friends_count": 497, - "listed_count": 13, + "listed_count": 15, "created_at": "Fri Apr 17 00:10:29 +0000 2009", - "favourites_count": 23472, + "favourites_count": 27527, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 23427, + "statuses_count": 24898, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -7913,8 +7939,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1351376162199461889/eu3KaTS7_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1393343055894179841/Iuc7gfl9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/32215718/1571519638", "profile_link_color": "81D8D0", "profile_sidebar_border_color": "000000", @@ -7927,7 +7953,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -7935,7 +7962,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 26, + "favorite_count": 25, "favorited": false, "retweeted": false, "lang": "en" @@ -7989,16 +8016,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8007,8 +8034,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -8021,15 +8048,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 24, - "favorite_count": 526, + "retweet_count": 23, + "favorite_count": 525, "favorited": false, "retweeted": false, "lang": "en" @@ -8083,16 +8111,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8101,8 +8129,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -8115,15 +8143,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 24, - "favorite_count": 585, + "retweet_count": 23, + "favorite_count": 588, "favorited": false, "retweeted": false, "lang": "en" @@ -8177,16 +8206,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8195,8 +8224,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -8209,15 +8238,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 23, - "favorite_count": 778, + "retweet_count": 22, + "favorite_count": 784, "favorited": false, "retweeted": false, "lang": "en" @@ -8281,16 +8311,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8299,8 +8329,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -8313,7 +8343,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -8327,8 +8358,8 @@ "expanded": "https://twitter.com/tedcruz/status/1233130604436369409", "display": "twitter.com/tedcruz/status…" }, - "retweet_count": 989, - "favorite_count": 4194, + "retweet_count": 995, + "favorite_count": 4217, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -8383,16 +8414,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8401,8 +8432,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -8415,15 +8446,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 26, - "favorite_count": 542, + "retweet_count": 25, + "favorite_count": 541, "favorited": false, "retweeted": false, "lang": "en" @@ -8477,16 +8509,16 @@ } }, "protected": false, - "followers_count": 5347, - "friends_count": 3438, - "listed_count": 146, + "followers_count": 6107, + "friends_count": 3599, + "listed_count": 144, "created_at": "Tue May 15 18:41:06 +0000 2012", - "favourites_count": 7100, + "favourites_count": 7842, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 128665, + "statuses_count": 132045, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8495,8 +8527,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme7/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1200479013657030656/KcQ6NSrT_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1394332568518987777/I2RRX3zV_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/581145322/1545428570", "profile_link_color": "990000", "profile_sidebar_border_color": "DFDFDF", @@ -8509,15 +8541,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 19, - "favorite_count": 503, + "retweet_count": 18, + "favorite_count": 504, "favorited": false, "retweeted": false, "lang": "en" @@ -8581,16 +8614,16 @@ } }, "protected": false, - "followers_count": 4395207, - "friends_count": 5424, - "listed_count": 14302, + "followers_count": 4521226, + "friends_count": 5395, + "listed_count": 14643, "created_at": "Fri Mar 06 03:20:20 +0000 2009", - "favourites_count": 1276, + "favourites_count": 1260, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 30706, + "statuses_count": 32667, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8613,7 +8646,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -8686,16 +8720,16 @@ } }, "protected": false, - "followers_count": 12685449, - "friends_count": 3176, - "listed_count": 23818, + "followers_count": 12765631, + "friends_count": 3371, + "listed_count": 24438, "created_at": "Wed Apr 28 22:38:40 +0000 2010", - "favourites_count": 30881, + "favourites_count": 32603, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, - "statuses_count": 12419, + "statuses_count": 12832, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8718,7 +8752,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -8732,15 +8767,15 @@ "expanded": "https://twitter.com/ABC/status/1232817112139341824", "display": "twitter.com/ABC/status/123…" }, - "retweet_count": 35097, - "favorite_count": 170717, + "retweet_count": 34517, + "favorite_count": 168713, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en" }, - "retweet_count": 7715, - "favorite_count": 44092, + "retweet_count": 7489, + "favorite_count": 43204, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -8805,16 +8840,16 @@ } }, "protected": false, - "followers_count": 12685449, - "friends_count": 3176, - "listed_count": 23818, + "followers_count": 12765631, + "friends_count": 3371, + "listed_count": 24438, "created_at": "Wed Apr 28 22:38:40 +0000 2010", - "favourites_count": 30881, + "favourites_count": 32603, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": true, - "statuses_count": 12419, + "statuses_count": 12832, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -8837,7 +8872,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -8998,13 +9034,13 @@ "name": "ABC News", "screen_name": "ABC", "location": "New York City / Worldwide", - "description": "All the news and information you need to see, curated by the @ABC News team. \n\nWatch full ABC News broadcasts on @Hulu: https://t.co/w3wQ1O1Szs", - "url": "https://t.co/B4vihbwCGa", + "description": "All the news and information you need to see, curated by the @ABC News team. Watch full ABC News broadcasts on @Hulu: https://t.co/w3wQ1O1Szs", + "url": "https://t.co/26XEt8onYo", "entities": { "url": { "urls": [ { - "url": "https://t.co/B4vihbwCGa", + "url": "https://t.co/26XEt8onYo", "expanded_url": "https://abcnews.go.com/", "display_url": "abcnews.go.com", "indices": [ @@ -9021,24 +9057,24 @@ "expanded_url": "http://abcn.ws/3bJ62RK", "display_url": "abcn.ws/3bJ62RK", "indices": [ - 120, - 143 + 118, + 141 ] } ] } }, "protected": false, - "followers_count": 16608659, - "friends_count": 517, - "listed_count": 62076, + "followers_count": 16780432, + "friends_count": 507, + "listed_count": 63103, "created_at": "Sat Apr 04 12:40:32 +0000 2009", "favourites_count": 23, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 341463, + "statuses_count": 357302, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -9061,22 +9097,23 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "regular" + "translator_type": "regular", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 675, - "favorite_count": 2641, + "retweet_count": 660, + "favorite_count": 2594, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en" }, - "retweet_count": 35097, - "favorite_count": 170717, + "retweet_count": 34517, + "favorite_count": 168713, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -9229,13 +9266,13 @@ "name": "ABC News", "screen_name": "ABC", "location": "New York City / Worldwide", - "description": "All the news and information you need to see, curated by the @ABC News team. \n\nWatch full ABC News broadcasts on @Hulu: https://t.co/w3wQ1O1Szs", - "url": "https://t.co/B4vihbwCGa", + "description": "All the news and information you need to see, curated by the @ABC News team. Watch full ABC News broadcasts on @Hulu: https://t.co/w3wQ1O1Szs", + "url": "https://t.co/26XEt8onYo", "entities": { "url": { "urls": [ { - "url": "https://t.co/B4vihbwCGa", + "url": "https://t.co/26XEt8onYo", "expanded_url": "https://abcnews.go.com/", "display_url": "abcnews.go.com", "indices": [ @@ -9252,24 +9289,24 @@ "expanded_url": "http://abcn.ws/3bJ62RK", "display_url": "abcn.ws/3bJ62RK", "indices": [ - 120, - 143 + 118, + 141 ] } ] } }, "protected": false, - "followers_count": 16608659, - "friends_count": 517, - "listed_count": 62076, + "followers_count": 16780432, + "friends_count": 507, + "listed_count": 63103, "created_at": "Sat Apr 04 12:40:32 +0000 2009", "favourites_count": 23, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 341463, + "statuses_count": 357302, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -9292,15 +9329,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "regular" + "translator_type": "regular", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 675, - "favorite_count": 2641, + "retweet_count": 660, + "favorite_count": 2594, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -9481,10 +9519,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -9505,16 +9543,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -9523,8 +9561,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -9537,15 +9575,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 8368, - "favorite_count": 26363, + "retweet_count": 8189, + "favorite_count": 25921, "favorited": false, "retweeted": true, "possibly_sensitive": false, @@ -9597,16 +9636,16 @@ "user": { "id": 9835742, "id_str": "9835742", - "name": "Queen of Nevers ⚧👑✴️👁🚪🌌 (they/them)", + "name": "Queen of Nevers ⚧ 👑✴️👁🚪🌌 (they/them)", "screen_name": "queenofnevers", - "location": "Atlantis, GA", - "description": "Hi, I'm Indigo (they/them), a moonage daydream about an invisible sun.\n\n\n{fat, trans, nonbinary, lesbian, ace, liminal conflux, alien crone, goblin royalty, ✴️}", - "url": "https://t.co/3TcWfv2fhw", + "location": "Atlantis, Georgias", + "description": "Indigo (they/them), a moonage daydream about an invisible sun.\n\n\n{fat, trans, nonbinary, lesbian, ace, liminal conflux, alien crone, goblin royalty, ✴️}", + "url": "https://t.co/3TcWfuKEpY", "entities": { "url": { "urls": [ { - "url": "https://t.co/3TcWfv2fhw", + "url": "https://t.co/3TcWfuKEpY", "expanded_url": "https://queenofnevers.carrd.co/", "display_url": "queenofnevers.carrd.co", "indices": [ @@ -9621,16 +9660,16 @@ } }, "protected": false, - "followers_count": 1653, - "friends_count": 440, - "listed_count": 9, + "followers_count": 1718, + "friends_count": 451, + "listed_count": 10, "created_at": "Wed Oct 31 20:38:12 +0000 2007", - "favourites_count": 106884, + "favourites_count": 119777, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43369, + "statuses_count": 49143, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -9639,9 +9678,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1377311189802360837/FIIWQL7-_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1377311189802360837/FIIWQL7-_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9835742/1615260032", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429561208181600257/nZL-Jx7P_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429561208181600257/nZL-Jx7P_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9835742/1621390917", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -9653,7 +9692,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -9661,7 +9701,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 28, + "favorite_count": 26, "favorited": false, "retweeted": false, "lang": "en" @@ -9726,16 +9766,16 @@ } }, "protected": false, - "followers_count": 3803, - "friends_count": 3765, + "followers_count": 3744, + "friends_count": 3705, "listed_count": 22, "created_at": "Mon Oct 05 21:15:01 +0000 2015", - "favourites_count": 29170, + "favourites_count": 28767, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 4865, + "statuses_count": 4872, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -9758,7 +9798,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -9766,7 +9807,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 29, + "favorite_count": 27, "favorited": false, "retweeted": false, "lang": "en" @@ -9969,16 +10010,16 @@ "user": { "id": 9835742, "id_str": "9835742", - "name": "Queen of Nevers ⚧👑✴️👁🚪🌌 (they/them)", + "name": "Queen of Nevers ⚧ 👑✴️👁🚪🌌 (they/them)", "screen_name": "queenofnevers", - "location": "Atlantis, GA", - "description": "Hi, I'm Indigo (they/them), a moonage daydream about an invisible sun.\n\n\n{fat, trans, nonbinary, lesbian, ace, liminal conflux, alien crone, goblin royalty, ✴️}", - "url": "https://t.co/3TcWfv2fhw", + "location": "Atlantis, Georgias", + "description": "Indigo (they/them), a moonage daydream about an invisible sun.\n\n\n{fat, trans, nonbinary, lesbian, ace, liminal conflux, alien crone, goblin royalty, ✴️}", + "url": "https://t.co/3TcWfuKEpY", "entities": { "url": { "urls": [ { - "url": "https://t.co/3TcWfv2fhw", + "url": "https://t.co/3TcWfuKEpY", "expanded_url": "https://queenofnevers.carrd.co/", "display_url": "queenofnevers.carrd.co", "indices": [ @@ -9993,16 +10034,16 @@ } }, "protected": false, - "followers_count": 1653, - "friends_count": 440, - "listed_count": 9, + "followers_count": 1718, + "friends_count": 451, + "listed_count": 10, "created_at": "Wed Oct 31 20:38:12 +0000 2007", - "favourites_count": 106884, + "favourites_count": 119777, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43369, + "statuses_count": 49143, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10011,9 +10052,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1377311189802360837/FIIWQL7-_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1377311189802360837/FIIWQL7-_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9835742/1615260032", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429561208181600257/nZL-Jx7P_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429561208181600257/nZL-Jx7P_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9835742/1621390917", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10025,15 +10066,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 34, - "favorite_count": 482, + "retweet_count": 33, + "favorite_count": 477, "favorited": false, "retweeted": false, "lang": "en" @@ -10085,16 +10127,16 @@ } }, "protected": false, - "followers_count": 1058, - "friends_count": 406, - "listed_count": 87, + "followers_count": 1056, + "friends_count": 429, + "listed_count": 89, "created_at": "Fri Mar 09 19:40:20 +0000 2007", - "favourites_count": 110895, + "favourites_count": 117307, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 37086, + "statuses_count": 37770, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10103,8 +10145,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme14/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370918856022188036/DW8wNng-_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370918856022188036/DW8wNng-_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428914466784153600/dv9gQzPa_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428914466784153600/dv9gQzPa_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/843931/1611288246", "profile_link_color": "009999", "profile_sidebar_border_color": "EEEEEE", @@ -10117,7 +10159,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -10125,7 +10168,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 7, + "favorite_count": 6, "favorited": false, "retweeted": false, "lang": "en" @@ -10155,16 +10198,16 @@ "user": { "id": 9835742, "id_str": "9835742", - "name": "Queen of Nevers ⚧👑✴️👁🚪🌌 (they/them)", + "name": "Queen of Nevers ⚧ 👑✴️👁🚪🌌 (they/them)", "screen_name": "queenofnevers", - "location": "Atlantis, GA", - "description": "Hi, I'm Indigo (they/them), a moonage daydream about an invisible sun.\n\n\n{fat, trans, nonbinary, lesbian, ace, liminal conflux, alien crone, goblin royalty, ✴️}", - "url": "https://t.co/3TcWfv2fhw", + "location": "Atlantis, Georgias", + "description": "Indigo (they/them), a moonage daydream about an invisible sun.\n\n\n{fat, trans, nonbinary, lesbian, ace, liminal conflux, alien crone, goblin royalty, ✴️}", + "url": "https://t.co/3TcWfuKEpY", "entities": { "url": { "urls": [ { - "url": "https://t.co/3TcWfv2fhw", + "url": "https://t.co/3TcWfuKEpY", "expanded_url": "https://queenofnevers.carrd.co/", "display_url": "queenofnevers.carrd.co", "indices": [ @@ -10179,16 +10222,16 @@ } }, "protected": false, - "followers_count": 1653, - "friends_count": 440, - "listed_count": 9, + "followers_count": 1718, + "friends_count": 451, + "listed_count": 10, "created_at": "Wed Oct 31 20:38:12 +0000 2007", - "favourites_count": 106884, + "favourites_count": 119777, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43369, + "statuses_count": 49143, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10197,9 +10240,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme9/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1377311189802360837/FIIWQL7-_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1377311189802360837/FIIWQL7-_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/9835742/1615260032", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429561208181600257/nZL-Jx7P_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429561208181600257/nZL-Jx7P_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/9835742/1621390917", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10211,15 +10254,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1364, - "favorite_count": 4829, + "retweet_count": 1324, + "favorite_count": 4756, "favorited": false, "retweeted": false, "lang": "en" @@ -10412,37 +10456,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10453,7 +10494,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10465,15 +10506,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6043, - "favorite_count": 21717, + "retweet_count": 6757, + "favorite_count": 23492, "favorited": false, "retweeted": true, "lang": "en" @@ -10506,37 +10548,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10547,7 +10586,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10559,15 +10598,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 86, - "favorite_count": 1027, + "retweet_count": 87, + "favorite_count": 1029, "favorited": false, "retweeted": false, "lang": "en" @@ -10600,37 +10640,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10641,7 +10678,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10653,15 +10690,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 18, - "favorite_count": 597, + "retweet_count": 17, + "favorite_count": 602, "favorited": false, "retweeted": false, "lang": "en" @@ -10694,37 +10732,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10735,7 +10770,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10747,7 +10782,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -10755,7 +10791,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 22, - "favorite_count": 639, + "favorite_count": 641, "favorited": false, "retweeted": false, "lang": "en" @@ -10788,37 +10824,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10829,7 +10862,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10841,15 +10874,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 24, - "favorite_count": 678, + "retweet_count": 22, + "favorite_count": 682, "favorited": false, "retweeted": false, "lang": "en" @@ -10882,37 +10916,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -10923,7 +10954,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -10935,15 +10966,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 58, - "favorite_count": 901, + "retweet_count": 59, + "favorite_count": 910, "favorited": false, "retweeted": false, "lang": "en" @@ -10976,37 +11008,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11017,7 +11046,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11029,15 +11058,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 49, - "favorite_count": 892, + "retweet_count": 50, + "favorite_count": 911, "favorited": false, "retweeted": false, "lang": "en" @@ -11070,37 +11100,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11111,7 +11138,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11123,15 +11150,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 34, - "favorite_count": 657, + "retweet_count": 32, + "favorite_count": 659, "favorited": false, "retweeted": false, "lang": "en" @@ -11164,37 +11192,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11205,7 +11230,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11217,7 +11242,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -11225,7 +11251,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 36, - "favorite_count": 848, + "favorite_count": 861, "favorited": false, "retweeted": false, "lang": "en" @@ -11258,37 +11284,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11299,7 +11322,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11311,7 +11334,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -11319,7 +11343,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 45, - "favorite_count": 897, + "favorite_count": 902, "favorited": false, "retweeted": false, "lang": "en" @@ -11440,37 +11464,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11481,7 +11502,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11493,14 +11514,15 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 122, + "retweet_count": 118, "favorite_count": 1057, "favorited": false, "retweeted": false, @@ -11535,37 +11557,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11576,7 +11595,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11588,7 +11607,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -11596,7 +11616,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 36, - "favorite_count": 745, + "favorite_count": 752, "favorited": false, "retweeted": false, "lang": "en" @@ -11629,37 +11649,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11670,7 +11687,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11682,15 +11699,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1363, - "favorite_count": 3338, + "retweet_count": 1337, + "favorite_count": 3337, "favorited": false, "retweeted": false, "lang": "en" @@ -11723,37 +11741,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11764,7 +11779,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11776,14 +11791,15 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 59, + "retweet_count": 60, "favorite_count": 973, "favorited": false, "retweeted": false, @@ -11817,37 +11833,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11858,7 +11871,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11870,7 +11883,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -11878,7 +11892,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 10, - "favorite_count": 579, + "favorite_count": 584, "favorited": false, "retweeted": false, "lang": "en" @@ -11911,37 +11925,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -11952,7 +11963,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -11964,15 +11975,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 37, - "favorite_count": 865, + "retweet_count": 38, + "favorite_count": 879, "favorited": false, "retweeted": false, "lang": "en" @@ -12005,37 +12017,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12046,7 +12055,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -12058,15 +12067,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 13, - "favorite_count": 543, + "retweet_count": 14, + "favorite_count": 546, "favorited": false, "retweeted": false, "lang": "en" @@ -12099,37 +12109,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12140,7 +12147,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -12152,7 +12159,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -12160,7 +12168,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 73, - "favorite_count": 885, + "favorite_count": 892, "favorited": false, "retweeted": false, "lang": "en" @@ -12193,37 +12201,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12234,7 +12239,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -12246,7 +12251,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -12254,7 +12260,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 9, - "favorite_count": 676, + "favorite_count": 677, "favorited": false, "retweeted": false, "lang": "en" @@ -12287,37 +12293,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12328,7 +12331,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -12340,7 +12343,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -12348,7 +12352,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 106, - "favorite_count": 1054, + "favorite_count": 1060, "favorited": false, "retweeted": false, "lang": "en" @@ -12381,37 +12385,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12422,7 +12423,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -12434,7 +12435,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -12442,7 +12444,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 52, - "favorite_count": 934, + "favorite_count": 935, "favorited": false, "retweeted": false, "lang": "en" @@ -12475,37 +12477,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12516,7 +12515,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -12528,15 +12527,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 81, - "favorite_count": 824, + "retweet_count": 83, + "favorite_count": 836, "favorited": false, "retweeted": false, "lang": "en" @@ -12569,37 +12569,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12610,7 +12607,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -12622,15 +12619,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 30, - "favorite_count": 701, + "retweet_count": 28, + "favorite_count": 708, "favorited": false, "retweeted": false, "lang": "en" @@ -12757,7 +12755,7 @@ "name": "JenniMorgan Lovable🏳️‍⚧️woman.", "screen_name": "BonzoixofMN", "location": "USA", - "description": "She/her 🏳️‍⚧️🏳️‍🌈 SocSecurity retirmnt is about $6.45/hr I run out of money around the https://t.co/Q8zQkGagf1! I need my medicine.😢donations really help.(kofi below)", + "description": "She/her 🏳️‍⚧️🏳️‍🌈 SocSecurity retirmnt is about $6.45/hr I run out of money around the 23rd. Help! I need my medicine.😢donations really help.(kofi below)", "url": "https://t.co/hHWT9sT1t2", "entities": { "url": { @@ -12774,30 +12772,20 @@ ] }, "description": { - "urls": [ - { - "url": "https://t.co/Q8zQkGagf1", - "expanded_url": "http://23rd.Help", - "display_url": "23rd.Help", - "indices": [ - 87, - 110 - ] - } - ] + "urls": [] } }, "protected": false, - "followers_count": 1142, - "friends_count": 1853, - "listed_count": 8, + "followers_count": 1234, + "friends_count": 2085, + "listed_count": 7, "created_at": "Fri May 27 10:47:25 +0000 2016", - "favourites_count": 48476, + "favourites_count": 52114, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 29102, + "statuses_count": 32525, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -12806,9 +12794,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1376401754615640067/XyC2_IWC_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376401754615640067/XyC2_IWC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/736146785530302464/1616994726", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429875918693076999/SHLR9goJ_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429875918693076999/SHLR9goJ_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/736146785530302464/1629759380", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -12820,7 +12808,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -13459,7 +13448,18 @@ "entities": { "hashtags": [], "symbols": [], - "user_mentions": [], + "user_mentions": [ + { + "screen_name": "emmy_zje", + "name": "Dr. Emmy Zje ✨🌘", + "id": 1401689403118981000, + "id_str": "1401689403118981122", + "indices": [ + 0, + 9 + ] + } + ], "urls": [] }, "source": "Twitter Web App", @@ -13471,16 +13471,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -13495,16 +13495,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -13527,7 +13527,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -14146,7 +14147,7 @@ "name": "JenniMorgan Lovable🏳️‍⚧️woman.", "screen_name": "BonzoixofMN", "location": "USA", - "description": "She/her 🏳️‍⚧️🏳️‍🌈 SocSecurity retirmnt is about $6.45/hr I run out of money around the https://t.co/Q8zQkGagf1! I need my medicine.😢donations really help.(kofi below)", + "description": "She/her 🏳️‍⚧️🏳️‍🌈 SocSecurity retirmnt is about $6.45/hr I run out of money around the 23rd. Help! I need my medicine.😢donations really help.(kofi below)", "url": "https://t.co/hHWT9sT1t2", "entities": { "url": { @@ -14163,30 +14164,20 @@ ] }, "description": { - "urls": [ - { - "url": "https://t.co/Q8zQkGagf1", - "expanded_url": "http://23rd.Help", - "display_url": "23rd.Help", - "indices": [ - 87, - 110 - ] - } - ] + "urls": [] } }, "protected": false, - "followers_count": 1142, - "friends_count": 1853, - "listed_count": 8, + "followers_count": 1234, + "friends_count": 2085, + "listed_count": 7, "created_at": "Fri May 27 10:47:25 +0000 2016", - "favourites_count": 48476, + "favourites_count": 52114, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 29102, + "statuses_count": 32525, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -14195,9 +14186,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1376401754615640067/XyC2_IWC_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376401754615640067/XyC2_IWC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/736146785530302464/1616994726", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429875918693076999/SHLR9goJ_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429875918693076999/SHLR9goJ_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/736146785530302464/1629759380", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -14209,7 +14200,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -14316,7 +14308,18 @@ "entities": { "hashtags": [], "symbols": [], - "user_mentions": [], + "user_mentions": [ + { + "screen_name": "emmy_zje", + "name": "Dr. Emmy Zje ✨🌘", + "id": 1401689403118981000, + "id_str": "1401689403118981122", + "indices": [ + 0, + 9 + ] + } + ], "urls": [] }, "source": "Twitter for iPhone", @@ -14358,16 +14361,16 @@ } }, "protected": false, - "followers_count": 9659, + "followers_count": 9982, "friends_count": 1494, - "listed_count": 119, + "listed_count": 116, "created_at": "Mon Apr 02 03:03:28 +0000 2012", - "favourites_count": 144289, + "favourites_count": 155938, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 228164, + "statuses_count": 237291, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -14376,8 +14379,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1352076330792312835/zlI6FTYl_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1352076330792312835/zlI6FTYl_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1427994183499931656/BO5UojOb_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1427994183499931656/BO5UojOb_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/543143031/1414087564", "profile_link_color": "FF0080", "profile_sidebar_border_color": "000000", @@ -14390,7 +14393,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -14512,7 +14516,7 @@ "name": "JenniMorgan Lovable🏳️‍⚧️woman.", "screen_name": "BonzoixofMN", "location": "USA", - "description": "She/her 🏳️‍⚧️🏳️‍🌈 SocSecurity retirmnt is about $6.45/hr I run out of money around the https://t.co/Q8zQkGagf1! I need my medicine.😢donations really help.(kofi below)", + "description": "She/her 🏳️‍⚧️🏳️‍🌈 SocSecurity retirmnt is about $6.45/hr I run out of money around the 23rd. Help! I need my medicine.😢donations really help.(kofi below)", "url": "https://t.co/hHWT9sT1t2", "entities": { "url": { @@ -14529,30 +14533,20 @@ ] }, "description": { - "urls": [ - { - "url": "https://t.co/Q8zQkGagf1", - "expanded_url": "http://23rd.Help", - "display_url": "23rd.Help", - "indices": [ - 87, - 110 - ] - } - ] + "urls": [] } }, "protected": false, - "followers_count": 1142, - "friends_count": 1853, - "listed_count": 8, + "followers_count": 1234, + "friends_count": 2085, + "listed_count": 7, "created_at": "Fri May 27 10:47:25 +0000 2016", - "favourites_count": 48476, + "favourites_count": 52114, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 29102, + "statuses_count": 32525, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -14561,9 +14555,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1376401754615640067/XyC2_IWC_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1376401754615640067/XyC2_IWC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/736146785530302464/1616994726", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429875918693076999/SHLR9goJ_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429875918693076999/SHLR9goJ_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/736146785530302464/1629759380", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -14575,7 +14569,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -14682,7 +14677,18 @@ "entities": { "hashtags": [], "symbols": [], - "user_mentions": [], + "user_mentions": [ + { + "screen_name": "emmy_zje", + "name": "Dr. Emmy Zje ✨🌘", + "id": 1401689403118981000, + "id_str": "1401689403118981122", + "indices": [ + 0, + 9 + ] + } + ], "urls": [] }, "source": "Twitter for iPhone", @@ -14697,7 +14703,7 @@ "name": "Rowan Church", "screen_name": "RowanChurch", "location": "Portland, OR", - "description": "Member of @CrystalFurs; trans; she/they; neuro-divergent; kindness is not weakness; compassion is invincible; Black Lives Matter; All Cops Are Bastards", + "description": "Member of @CrystalFurs; trans; she/they; neuro-divergent; polyam; kindness is not weakness; compassion is invincible; seek joy. BLM. ACAB.", "url": "https://t.co/CIBPzeLGe7", "entities": { "url": { @@ -14718,16 +14724,16 @@ } }, "protected": false, - "followers_count": 330, - "friends_count": 321, - "listed_count": 0, + "followers_count": 366, + "friends_count": 361, + "listed_count": 1, "created_at": "Thu Feb 20 22:46:12 +0000 2020", - "favourites_count": 34363, + "favourites_count": 40291, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 7452, + "statuses_count": 8339, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -14736,9 +14742,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1367670050111381507/vYP7d1hz_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1367670050111381507/vYP7d1hz_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1230624693805170689/1615188278", + "profile_image_url": "http://pbs.twimg.com/profile_images/1423120571349409793/QRwuFcDi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1423120571349409793/QRwuFcDi_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1230624693805170689/1618881201", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -14750,7 +14756,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -14986,15 +14993,15 @@ }, "protected": false, "followers_count": 11, - "friends_count": 104, + "friends_count": 105, "listed_count": 0, "created_at": "Tue Jul 24 01:52:24 +0000 2018", - "favourites_count": 1592, + "favourites_count": 1542, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 1149, + "statuses_count": 1156, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15017,7 +15024,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -15025,7 +15033,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 265, + "favorite_count": 260, "favorited": false, "retweeted": false, "lang": "en" @@ -15058,37 +15066,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15099,7 +15104,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -15111,7 +15116,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -15119,7 +15125,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 52, + "favorite_count": 59, "favorited": false, "retweeted": false, "lang": "en" @@ -15152,37 +15158,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15193,7 +15196,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -15205,15 +15208,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 13, - "favorite_count": 95, + "retweet_count": 16, + "favorite_count": 118, "favorited": false, "retweeted": false, "lang": "en" @@ -15246,37 +15250,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15287,7 +15288,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -15299,15 +15300,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 4, - "favorite_count": 65, + "retweet_count": 6, + "favorite_count": 76, "favorited": false, "retweeted": false, "lang": "en" @@ -15340,37 +15342,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15381,7 +15380,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -15393,15 +15392,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1, - "favorite_count": 73, + "retweet_count": 3, + "favorite_count": 89, "favorited": false, "retweeted": false, "lang": "en" @@ -15455,16 +15455,16 @@ } }, "protected": false, - "followers_count": 17440, - "friends_count": 1024, - "listed_count": 78, + "followers_count": 17894, + "friends_count": 1026, + "listed_count": 82, "created_at": "Wed May 07 10:04:53 +0000 2014", - "favourites_count": 13979, + "favourites_count": 14111, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 7164, + "statuses_count": 7343, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15473,8 +15473,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481797670/1613663201", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "C0DEED", @@ -15487,15 +15487,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 53669, - "favorite_count": 193204, + "retweet_count": 53631, + "favorite_count": 192374, "favorited": false, "retweeted": false, "lang": "en" @@ -15528,7 +15529,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -15536,16 +15537,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15554,8 +15555,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -15568,7 +15569,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -15609,37 +15611,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15650,7 +15649,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -15662,15 +15661,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 8, - "favorite_count": 66, + "retweet_count": 10, + "favorite_count": 79, "favorited": false, "retweeted": false, "lang": "en" @@ -15753,16 +15753,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15785,15 +15785,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 8, - "favorite_count": 70, + "retweet_count": 7, + "favorite_count": 68, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -15827,37 +15828,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -15868,7 +15866,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -15880,7 +15878,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -15888,7 +15887,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 6, - "favorite_count": 48, + "favorite_count": 58, "favorited": false, "retweeted": false, "lang": "en" @@ -15971,16 +15970,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16003,15 +16002,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 11, - "favorite_count": 80, + "retweet_count": 9, + "favorite_count": 77, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -16045,37 +16045,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16086,7 +16083,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -16098,15 +16095,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 95, + "retweet_count": 8, + "favorite_count": 114, "favorited": false, "retweeted": false, "lang": "en" @@ -16139,37 +16137,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16180,7 +16175,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -16192,7 +16187,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -16200,7 +16196,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 66, + "favorite_count": 76, "favorited": false, "retweeted": false, "lang": "en" @@ -16254,16 +16250,16 @@ } }, "protected": false, - "followers_count": 17440, - "friends_count": 1024, - "listed_count": 78, + "followers_count": 17894, + "friends_count": 1026, + "listed_count": 82, "created_at": "Wed May 07 10:04:53 +0000 2014", - "favourites_count": 13979, + "favourites_count": 14111, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 7164, + "statuses_count": 7343, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16272,8 +16268,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481797670/1613663201", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "C0DEED", @@ -16286,15 +16282,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1932, - "favorite_count": 11410, + "retweet_count": 1954, + "favorite_count": 11637, "favorited": false, "retweeted": false, "lang": "en" @@ -16327,7 +16324,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -16335,16 +16332,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16353,8 +16350,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -16367,7 +16364,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -16408,37 +16406,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16449,7 +16444,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -16461,7 +16456,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -16469,7 +16465,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 76, + "favorite_count": 86, "favorited": false, "retweeted": false, "lang": "en" @@ -16502,37 +16498,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16543,7 +16536,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -16555,15 +16548,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 19, - "favorite_count": 109, + "retweet_count": 21, + "favorite_count": 127, "favorited": false, "retweeted": false, "lang": "en" @@ -16606,37 +16600,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16647,7 +16638,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -16659,15 +16650,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 166, - "favorite_count": 1324, + "retweet_count": 185, + "favorite_count": 1439, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -16780,16 +16772,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16812,15 +16804,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 9, - "favorite_count": 72, + "retweet_count": 8, + "favorite_count": 70, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -16854,37 +16847,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16895,7 +16885,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -16907,7 +16897,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -16915,7 +16906,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 60, + "favorite_count": 71, "favorited": false, "retweeted": false, "lang": "en" @@ -16948,37 +16939,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -16989,7 +16977,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17001,15 +16989,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 66, + "retweet_count": 4, + "favorite_count": 78, "favorited": false, "retweeted": false, "lang": "en" @@ -17042,37 +17031,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17083,7 +17069,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17095,7 +17081,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -17103,7 +17090,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 60, + "favorite_count": 71, "favorited": false, "retweeted": false, "lang": "en" @@ -17136,37 +17123,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17177,7 +17161,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17189,7 +17173,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -17197,7 +17182,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 3, - "favorite_count": 56, + "favorite_count": 68, "favorited": false, "retweeted": false, "lang": "en" @@ -17230,37 +17215,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17271,7 +17253,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17283,15 +17265,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 85, + "retweet_count": 11, + "favorite_count": 104, "favorited": false, "retweeted": false, "lang": "en" @@ -17324,7 +17307,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -17332,16 +17315,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17350,8 +17333,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -17364,7 +17347,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -17405,37 +17389,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17446,7 +17427,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17458,7 +17439,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -17466,7 +17448,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 63, + "favorite_count": 74, "favorited": false, "retweeted": false, "lang": "en" @@ -17499,37 +17481,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17540,7 +17519,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17552,7 +17531,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -17560,7 +17540,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 55, + "favorite_count": 67, "favorited": false, "retweeted": false, "lang": "en" @@ -17593,37 +17573,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17634,7 +17611,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17646,15 +17623,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 73, + "retweet_count": 8, + "favorite_count": 84, "favorited": false, "retweeted": false, "lang": "en" @@ -17737,16 +17715,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17769,15 +17747,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 9, - "favorite_count": 77, + "retweet_count": 8, + "favorite_count": 74, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -17819,10 +17798,10 @@ "user": { "id": 1102455861459464200, "id_str": "1102455861459464195", - "name": "Riley S. Faelan", + "name": "Riley S. Faelan 🐢", "screen_name": "RileyFaelan", "location": "Nordrhein-Westfalen", - "description": "Geek. #GirlsLikeUs, she/her, lesbian. 🏳️‍🌈 🏳️‍⚧️ 🌌\nAspiring social justice magician. #TeamADHD.\n💊 #RightHormones 2018-12-13.\n✉ riley.faelan@gmail.com.", + "description": "Geek. #GirlsLikeUs, she/her, lesbian. 🏳️‍🌈 🏳️‍⚧️ 🌌🐢\nAspiring social justice magician. #TeamADHD.\n💊 #RightHormones 2018-12-13.\n✉ riley.faelan@gmail.com.", "url": null, "entities": { "description": { @@ -17830,16 +17809,16 @@ } }, "protected": false, - "followers_count": 1155, - "friends_count": 1216, + "followers_count": 1181, + "friends_count": 1377, "listed_count": 7, "created_at": "Mon Mar 04 06:28:54 +0000 2019", - "favourites_count": 99336, + "favourites_count": 107464, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 22614, + "statuses_count": 25620, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17861,7 +17840,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -17902,37 +17882,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -17943,7 +17920,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -17955,7 +17932,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -17963,7 +17941,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 56, + "favorite_count": 66, "favorited": false, "retweeted": false, "lang": "en" @@ -17996,37 +17974,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18037,7 +18012,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18049,15 +18024,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 65, + "retweet_count": 2, + "favorite_count": 73, "favorited": false, "retweeted": false, "lang": "en" @@ -18090,7 +18066,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -18098,16 +18074,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18116,8 +18092,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -18130,7 +18106,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -18171,37 +18148,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18212,7 +18186,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18224,15 +18198,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 61, - "favorite_count": 1675, + "retweet_count": 69, + "favorite_count": 1810, "favorited": false, "retweeted": false, "lang": "en" @@ -18265,7 +18240,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -18273,16 +18248,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18291,8 +18266,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -18305,7 +18280,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -18346,37 +18322,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18387,7 +18360,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18399,15 +18372,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 57, + "retweet_count": 5, + "favorite_count": 64, "favorited": false, "retweeted": false, "lang": "en" @@ -18440,37 +18414,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18481,7 +18452,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18493,15 +18464,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 45, - "favorite_count": 1364, + "retweet_count": 51, + "favorite_count": 1479, "favorited": false, "retweeted": false, "lang": "en" @@ -18534,7 +18506,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -18542,16 +18514,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18560,8 +18532,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -18574,7 +18546,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -18615,37 +18588,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18656,7 +18626,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18668,7 +18638,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -18676,7 +18647,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 53, + "favorite_count": 64, "favorited": false, "retweeted": false, "lang": "en" @@ -18709,37 +18680,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18750,7 +18718,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18762,7 +18730,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -18770,7 +18739,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 52, + "favorite_count": 62, "favorited": false, "retweeted": false, "lang": "en" @@ -18803,37 +18772,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18844,7 +18810,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18856,15 +18822,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 14, - "favorite_count": 95, + "retweet_count": 16, + "favorite_count": 110, "favorited": false, "retweeted": false, "lang": "en" @@ -18897,37 +18864,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -18938,7 +18902,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -18950,7 +18914,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -18958,7 +18923,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 3, - "favorite_count": 61, + "favorite_count": 69, "favorited": false, "retweeted": false, "lang": "en" @@ -18991,37 +18956,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19032,7 +18994,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19044,7 +19006,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -19052,7 +19015,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 58, + "favorite_count": 70, "favorited": false, "retweeted": false, "lang": "en" @@ -19085,37 +19048,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19126,7 +19086,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19138,15 +19098,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 4, - "favorite_count": 63, + "retweet_count": 5, + "favorite_count": 75, "favorited": false, "retweeted": false, "lang": "en" @@ -19179,37 +19140,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19220,7 +19178,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19232,7 +19190,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -19240,7 +19199,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 47, + "favorite_count": 54, "favorited": false, "retweeted": false, "lang": "en" @@ -19273,37 +19232,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19314,7 +19270,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19326,7 +19282,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -19334,7 +19291,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 50, + "favorite_count": 58, "favorited": false, "retweeted": false, "lang": "en" @@ -19367,37 +19324,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19408,7 +19362,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19420,7 +19374,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -19428,7 +19383,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 64, + "favorite_count": 75, "favorited": false, "retweeted": false, "lang": "en" @@ -19492,16 +19447,16 @@ } }, "protected": false, - "followers_count": 17440, - "friends_count": 1024, - "listed_count": 78, + "followers_count": 17894, + "friends_count": 1026, + "listed_count": 82, "created_at": "Wed May 07 10:04:53 +0000 2014", - "favourites_count": 13979, + "favourites_count": 14111, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 7164, + "statuses_count": 7343, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19510,8 +19465,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481797670/1613663201", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "C0DEED", @@ -19524,15 +19479,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 395, - "favorite_count": 1823, + "retweet_count": 411, + "favorite_count": 1916, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -19566,37 +19522,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19607,7 +19560,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19619,15 +19572,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1, - "favorite_count": 65, + "retweet_count": 2, + "favorite_count": 77, "favorited": false, "retweeted": false, "lang": "en" @@ -19660,37 +19614,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19701,7 +19652,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19713,15 +19664,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 57, + "retweet_count": 4, + "favorite_count": 69, "favorited": false, "retweeted": false, "lang": "en" @@ -19754,37 +19706,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19795,7 +19744,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19807,7 +19756,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -19815,7 +19765,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 44, + "favorite_count": 52, "favorited": false, "retweeted": false, "lang": "en" @@ -19848,37 +19798,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19889,7 +19836,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19901,7 +19848,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -19909,7 +19857,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 5, - "favorite_count": 69, + "favorite_count": 79, "favorited": false, "retweeted": false, "lang": "en" @@ -19942,37 +19890,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -19983,7 +19928,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -19995,7 +19940,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -20003,7 +19949,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 3, - "favorite_count": 49, + "favorite_count": 56, "favorited": false, "retweeted": false, "lang": "en" @@ -20036,7 +19982,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -20044,16 +19990,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20062,8 +20008,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -20076,7 +20022,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -20117,37 +20064,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20158,7 +20102,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -20170,7 +20114,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -20178,7 +20123,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 3, - "favorite_count": 50, + "favorite_count": 60, "favorited": false, "retweeted": false, "lang": "en" @@ -20211,37 +20156,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20252,7 +20194,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -20264,7 +20206,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -20272,7 +20215,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 24, - "favorite_count": 1073, + "favorite_count": 1161, "favorited": false, "retweeted": false, "lang": "en" @@ -20305,37 +20248,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20346,7 +20286,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -20358,7 +20298,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -20366,7 +20307,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 5, - "favorite_count": 61, + "favorite_count": 71, "favorited": false, "retweeted": false, "lang": "en" @@ -20399,37 +20340,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20440,7 +20378,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -20452,15 +20390,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 75, + "retweet_count": 3, + "favorite_count": 91, "favorited": false, "retweeted": false, "lang": "en" @@ -20543,16 +20482,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20575,15 +20514,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 11, - "favorite_count": 79, + "retweet_count": 10, + "favorite_count": 76, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -20617,37 +20557,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20658,7 +20595,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -20670,15 +20607,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 4, - "favorite_count": 69, + "retweet_count": 6, + "favorite_count": 86, "favorited": false, "retweeted": false, "lang": "en" @@ -20711,7 +20649,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -20719,16 +20657,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20737,8 +20675,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -20751,7 +20689,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -20792,7 +20731,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -20800,16 +20739,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20818,8 +20757,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -20832,7 +20771,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -20923,16 +20863,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -20955,15 +20895,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 11, - "favorite_count": 80, + "retweet_count": 9, + "favorite_count": 77, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -20997,7 +20938,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -21005,16 +20946,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21023,8 +20964,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -21037,7 +20978,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -21078,7 +21020,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -21086,16 +21028,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21104,8 +21046,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -21118,7 +21060,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -21159,7 +21102,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -21167,16 +21110,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21185,8 +21128,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -21199,15 +21142,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 10, + "retweet_count": 1, + "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en" @@ -21261,16 +21205,16 @@ } }, "protected": false, - "followers_count": 17440, - "friends_count": 1024, - "listed_count": 78, + "followers_count": 17894, + "friends_count": 1026, + "listed_count": 82, "created_at": "Wed May 07 10:04:53 +0000 2014", - "favourites_count": 13979, + "favourites_count": 14111, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 7164, + "statuses_count": 7343, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21279,8 +21223,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481797670/1613663201", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "C0DEED", @@ -21293,15 +21237,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1477, - "favorite_count": 11443, + "retweet_count": 1498, + "favorite_count": 11650, "favorited": false, "retweeted": false, "lang": "en" @@ -21334,7 +21279,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -21342,16 +21287,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21360,8 +21305,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -21374,7 +21319,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -21415,37 +21361,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21456,7 +21399,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -21468,7 +21411,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -21476,7 +21420,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 10, - "favorite_count": 62, + "favorite_count": 72, "favorited": false, "retweeted": false, "lang": "en" @@ -21509,37 +21453,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21550,7 +21491,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -21562,15 +21503,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 4, - "favorite_count": 73, + "retweet_count": 7, + "favorite_count": 84, "favorited": false, "retweeted": false, "lang": "en" @@ -21634,16 +21576,16 @@ } }, "protected": false, - "followers_count": 17440, - "friends_count": 1024, - "listed_count": 78, + "followers_count": 17894, + "friends_count": 1026, + "listed_count": 82, "created_at": "Wed May 07 10:04:53 +0000 2014", - "favourites_count": 13979, + "favourites_count": 14111, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 7164, + "statuses_count": 7343, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21652,8 +21594,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481797670/1613663201", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "C0DEED", @@ -21666,7 +21608,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -21817,16 +21760,16 @@ } }, "protected": false, - "followers_count": 17440, - "friends_count": 1024, - "listed_count": 78, + "followers_count": 17894, + "friends_count": 1026, + "listed_count": 82, "created_at": "Wed May 07 10:04:53 +0000 2014", - "favourites_count": 13979, + "favourites_count": 14111, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 7164, + "statuses_count": 7343, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21835,8 +21778,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481797670/1613663201", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "C0DEED", @@ -21849,22 +21792,23 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 126, - "favorite_count": 167, + "retweet_count": 124, + "favorite_count": 164, "favorited": false, "retweeted": false, "possibly_sensitive": false, "lang": "en" }, - "retweet_count": 269, - "favorite_count": 2714, + "retweet_count": 273, + "favorite_count": 2748, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -21898,37 +21842,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -21939,7 +21880,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -21951,7 +21892,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -21959,7 +21901,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 56, + "favorite_count": 64, "favorited": false, "retweeted": false, "lang": "en" @@ -21992,37 +21934,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22033,7 +21972,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -22045,15 +21984,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 90, + "retweet_count": 9, + "favorite_count": 109, "favorited": false, "retweeted": false, "lang": "en" @@ -22136,16 +22076,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22168,15 +22108,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 9, - "favorite_count": 72, + "retweet_count": 8, + "favorite_count": 69, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -22260,16 +22201,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22292,15 +22233,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 77, + "retweet_count": 9, + "favorite_count": 75, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -22404,16 +22346,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22436,15 +22378,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 151, - "favorite_count": 234, + "retweet_count": 145, + "favorite_count": 225, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -22478,37 +22421,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22519,7 +22459,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -22531,7 +22471,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -22539,7 +22480,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 3, - "favorite_count": 56, + "favorite_count": 62, "favorited": false, "retweeted": false, "lang": "en" @@ -22572,7 +22513,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -22580,16 +22521,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22598,8 +22539,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -22612,7 +22553,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -22653,37 +22595,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22694,7 +22633,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -22706,7 +22645,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -22714,7 +22654,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 59, + "favorite_count": 67, "favorited": false, "retweeted": false, "lang": "en" @@ -22747,37 +22687,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22788,7 +22725,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -22800,7 +22737,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -22808,7 +22746,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 53, + "favorite_count": 63, "favorited": false, "retweeted": false, "lang": "en" @@ -22841,37 +22779,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22882,7 +22817,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -22894,15 +22829,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 101, + "retweet_count": 14, + "favorite_count": 120, "favorited": false, "retweeted": false, "lang": "en" @@ -22923,7 +22859,7 @@ "user_mentions": [ { "screen_name": "RileyFaelan", - "name": "Riley S. Faelan", + "name": "Riley S. Faelan 🐢", "id": 1102455861459464200, "id_str": "1102455861459464195", "indices": [ @@ -22946,7 +22882,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -22954,16 +22890,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -22972,8 +22908,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -22986,7 +22922,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -23027,37 +22964,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23068,7 +23002,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -23080,15 +23014,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 34, - "favorite_count": 1538, + "retweet_count": 35, + "favorite_count": 1663, "favorited": false, "retweeted": false, "lang": "en" @@ -23121,37 +23056,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23162,7 +23094,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -23174,7 +23106,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -23182,7 +23115,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 63, + "favorite_count": 75, "favorited": false, "retweeted": false, "lang": "en" @@ -23215,37 +23148,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23256,7 +23186,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -23268,7 +23198,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -23276,7 +23207,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 47, + "favorite_count": 56, "favorited": false, "retweeted": false, "lang": "en" @@ -23309,37 +23240,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23350,7 +23278,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -23362,15 +23290,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 59, + "retweet_count": 4, + "favorite_count": 71, "favorited": false, "retweeted": false, "lang": "en" @@ -23403,7 +23332,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -23411,16 +23340,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23429,8 +23358,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -23443,7 +23372,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -23484,37 +23414,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23525,7 +23452,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -23537,7 +23464,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -23545,7 +23473,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 55, + "favorite_count": 64, "favorited": false, "retweeted": false, "lang": "en" @@ -23578,7 +23506,7 @@ "name": "Sourceress Addis", "screen_name": "itsaddis", "location": "Winnipeg, Manitoba", - "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her) (avi: @christian_amiel)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", + "description": "Educator, Crafter, and Code witch. Non-binary #trans woman (she/her)\n#ADHD #ActuallyAutistic #WomenInSTEM #GirlsLikeUs #WomenWhoCode", "url": null, "entities": { "description": { @@ -23586,16 +23514,16 @@ } }, "protected": false, - "followers_count": 2671, - "friends_count": 963, - "listed_count": 42, + "followers_count": 2739, + "friends_count": 956, + "listed_count": 40, "created_at": "Sat Sep 06 21:21:59 +0000 2014", - "favourites_count": 50364, + "favourites_count": 54018, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 45397, + "statuses_count": 49443, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23604,8 +23532,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1372257883124080648/ETE3IUF__normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1425122128102367236/cc6TENZi_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2794759430/1604175230", "profile_link_color": "500070", "profile_sidebar_border_color": "000000", @@ -23618,7 +23546,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -23706,16 +23635,16 @@ } }, "protected": false, - "followers_count": 10412, - "friends_count": 4147, - "listed_count": 47, + "followers_count": 12139, + "friends_count": 4161, + "listed_count": 58, "created_at": "Wed Feb 28 12:04:24 +0000 2018", - "favourites_count": 15607, + "favourites_count": 18431, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9063, + "statuses_count": 11595, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23738,15 +23667,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 29, - "favorite_count": 142, + "retweet_count": 27, + "favorite_count": 138, "favorited": false, "retweeted": false, "lang": "en" @@ -23779,37 +23709,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -23820,7 +23747,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -23832,7 +23759,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -23840,7 +23768,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 55, + "favorite_count": 65, "favorited": false, "retweeted": false, "lang": "en" @@ -23982,16 +23910,16 @@ } }, "protected": false, - "followers_count": 17440, - "friends_count": 1024, - "listed_count": 78, + "followers_count": 17894, + "friends_count": 1026, + "listed_count": 82, "created_at": "Wed May 07 10:04:53 +0000 2014", - "favourites_count": 13979, + "favourites_count": 14111, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 7164, + "statuses_count": 7343, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24000,8 +23928,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1309068030886936576/l6tkoaZi_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1416850249226784776/FNgwWzu0_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2481797670/1613663201", "profile_link_color": "F58EA8", "profile_sidebar_border_color": "C0DEED", @@ -24014,15 +23942,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 126, - "favorite_count": 167, + "retweet_count": 124, + "favorite_count": 164, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -24056,37 +23985,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24097,7 +24023,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24109,7 +24035,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24117,7 +24044,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 3, - "favorite_count": 77, + "favorite_count": 82, "favorited": false, "retweeted": false, "lang": "en" @@ -24150,37 +24077,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24191,7 +24115,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24203,15 +24127,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 28, - "favorite_count": 128, + "retweet_count": 27, + "favorite_count": 131, "favorited": true, "retweeted": false, "lang": "en" @@ -24244,37 +24169,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24285,7 +24207,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24297,7 +24219,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24305,7 +24228,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 3, - "favorite_count": 76, + "favorite_count": 83, "favorited": false, "retweeted": false, "lang": "en" @@ -24338,37 +24261,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24379,7 +24299,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24391,7 +24311,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24399,7 +24320,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 57, + "favorite_count": 59, "favorited": true, "retweeted": false, "lang": "en" @@ -24432,37 +24353,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24473,7 +24391,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24485,7 +24403,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24493,7 +24412,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 48, + "favorite_count": 51, "favorited": true, "retweeted": false, "lang": "en" @@ -24526,37 +24445,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24567,7 +24483,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24579,7 +24495,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24587,7 +24504,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 93, + "favorite_count": 98, "favorited": false, "retweeted": false, "lang": "en" @@ -24620,37 +24537,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24661,7 +24575,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24673,7 +24587,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24681,7 +24596,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 63, + "favorite_count": 69, "favorited": false, "retweeted": false, "lang": "en" @@ -24714,37 +24629,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24755,7 +24667,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24767,7 +24679,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24775,7 +24688,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 9, - "favorite_count": 69, + "favorite_count": 73, "favorited": false, "retweeted": true, "lang": "en" @@ -24808,37 +24721,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24849,7 +24759,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24861,7 +24771,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24869,7 +24780,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 59, + "favorite_count": 64, "favorited": true, "retweeted": true, "lang": "en" @@ -24902,37 +24813,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -24943,7 +24851,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -24955,7 +24863,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -24963,7 +24872,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 62, + "favorite_count": 67, "favorited": false, "retweeted": false, "lang": "en" @@ -24996,37 +24905,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -25037,7 +24943,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -25049,7 +24955,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -25057,7 +24964,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 48, + "favorite_count": 50, "favorited": false, "retweeted": false, "lang": "en" @@ -25090,37 +24997,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -25131,7 +25035,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -25143,7 +25047,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -25151,7 +25056,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 59, + "favorite_count": 66, "favorited": false, "retweeted": false, "lang": "en" @@ -25184,37 +25089,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -25225,7 +25127,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -25237,15 +25139,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 54, - "favorite_count": 206, + "retweet_count": 60, + "favorite_count": 215, "favorited": true, "retweeted": false, "lang": "en" @@ -25278,37 +25181,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -25319,7 +25219,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -25331,7 +25231,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -25339,7 +25240,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 63, + "favorite_count": 65, "favorited": false, "retweeted": false, "lang": "en" @@ -25372,37 +25273,34 @@ "name": "Nightling Bug 🗝️", "screen_name": "NightlingBug", "location": "", - "description": "a smaller, softer moon. 32, she/her or zey/zem\n\nbe cute, make words into games, and rehabilitate gender in N-dimensional space", - "url": "https://t.co/2U9OZCtash", + "description": "\"This wenche thikke and wel y-growen was\"\n\na smaller, softer moon. 32, she/her or zey/zem\n\nWickedness, the witchy tarot ttrpg:\nhttps://t.co/zfz8IbIleO", + "url": null, "entities": { - "url": { + "description": { "urls": [ { - "url": "https://t.co/2U9OZCtash", - "expanded_url": "http://nightling-bug.itch.io", - "display_url": "nightling-bug.itch.io", + "url": "https://t.co/zfz8IbIleO", + "expanded_url": "http://nightling-bug.itch.io/wickedness", + "display_url": "nightling-bug.itch.io/wickedness", "indices": [ - 0, - 23 + 127, + 150 ] } ] - }, - "description": { - "urls": [] } }, "protected": false, - "followers_count": 3704, - "friends_count": 665, - "listed_count": 17, + "followers_count": 4518, + "friends_count": 657, + "listed_count": 21, "created_at": "Wed Feb 12 00:04:54 +0000 2014", - "favourites_count": 84088, + "favourites_count": 98822, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 24099, + "statuses_count": 26874, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -25413,7 +25311,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299429174583721991/aBi1-ZRC_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1600928671", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/2339460961/1627219008", "profile_link_color": "ABB8C2", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -25425,7 +25323,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -25433,7 +25332,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 2, - "favorite_count": 60, + "favorite_count": 62, "favorited": true, "retweeted": true, "lang": "en" @@ -26041,16 +25940,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26073,15 +25972,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 20, - "favorite_count": 268, + "retweet_count": 22, + "favorite_count": 274, "favorited": false, "retweeted": false, "lang": "en" @@ -26141,16 +26041,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26173,7 +26073,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -26233,16 +26134,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26265,7 +26166,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -26273,7 +26175,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 7, - "favorite_count": 185, + "favorite_count": 186, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -26315,16 +26217,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26347,15 +26249,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 22, - "favorite_count": 259, + "retweet_count": 23, + "favorite_count": 262, "favorited": false, "retweeted": false, "lang": "en" @@ -26396,16 +26299,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26428,15 +26331,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 17, - "favorite_count": 268, + "retweet_count": 18, + "favorite_count": 273, "favorited": false, "retweeted": false, "lang": "en" @@ -26477,16 +26381,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26509,15 +26413,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 36, - "favorite_count": 373, + "retweet_count": 35, + "favorite_count": 386, "favorited": false, "retweeted": false, "lang": "en" @@ -26558,16 +26463,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26590,15 +26495,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 21, - "favorite_count": 366, + "retweet_count": 24, + "favorite_count": 381, "favorited": false, "retweeted": false, "lang": "en" @@ -26639,16 +26545,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26671,7 +26577,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -26679,7 +26586,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 5, - "favorite_count": 160, + "favorite_count": 162, "favorited": false, "retweeted": false, "lang": "en" @@ -26720,16 +26627,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26752,7 +26659,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -26760,7 +26668,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 14, - "favorite_count": 257, + "favorite_count": 263, "favorited": false, "retweeted": false, "lang": "en" @@ -26801,16 +26709,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26833,7 +26741,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -26841,7 +26750,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 22, - "favorite_count": 224, + "favorite_count": 229, "favorited": false, "retweeted": false, "lang": "en" @@ -26882,16 +26791,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26914,7 +26823,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -26922,7 +26832,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 12, - "favorite_count": 188, + "favorite_count": 191, "favorited": false, "retweeted": false, "lang": "en" @@ -26963,16 +26873,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -26995,15 +26905,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 26, - "favorite_count": 318, + "retweet_count": 28, + "favorite_count": 333, "favorited": false, "retweeted": false, "lang": "en" @@ -27044,16 +26955,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27076,7 +26987,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -27084,7 +26996,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 13, - "favorite_count": 179, + "favorite_count": 182, "favorited": false, "retweeted": false, "lang": "en" @@ -27125,16 +27037,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27157,15 +27069,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 20, - "favorite_count": 231, + "retweet_count": 22, + "favorite_count": 237, "favorited": false, "retweeted": false, "lang": "en" @@ -27206,16 +27119,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27238,15 +27151,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 13, - "favorite_count": 297, + "retweet_count": 14, + "favorite_count": 305, "favorited": false, "retweeted": false, "lang": "en" @@ -27287,16 +27201,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27319,15 +27233,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 270, + "retweet_count": 11, + "favorite_count": 281, "favorited": false, "retweeted": false, "lang": "en" @@ -27368,16 +27283,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27400,7 +27315,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -27408,7 +27324,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 9, - "favorite_count": 277, + "favorite_count": 287, "favorited": false, "retweeted": false, "lang": "en" @@ -27449,16 +27365,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27481,7 +27397,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -27489,7 +27406,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 24, - "favorite_count": 222, + "favorite_count": 225, "favorited": false, "retweeted": false, "lang": "en" @@ -27530,16 +27447,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27562,15 +27479,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 25, - "favorite_count": 373, + "retweet_count": 28, + "favorite_count": 383, "favorited": false, "retweeted": false, "lang": "en" @@ -27611,16 +27529,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27643,7 +27561,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -27651,7 +27570,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 5, - "favorite_count": 173, + "favorite_count": 174, "favorited": false, "retweeted": false, "lang": "en" @@ -27770,16 +27689,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27802,7 +27721,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -27810,7 +27730,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 7, - "favorite_count": 181, + "favorite_count": 185, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -27930,16 +27850,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -27962,15 +27882,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 11, - "favorite_count": 289, + "retweet_count": 10, + "favorite_count": 301, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -28022,16 +27943,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28054,7 +27975,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28062,7 +27984,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 6, - "favorite_count": 158, + "favorite_count": 159, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -28104,16 +28026,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28136,15 +28058,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 14, - "favorite_count": 267, + "retweet_count": 15, + "favorite_count": 275, "favorited": false, "retweeted": false, "lang": "en" @@ -28273,16 +28196,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28305,7 +28228,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28313,7 +28237,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 9, - "favorite_count": 177, + "favorite_count": 178, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -28355,16 +28279,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28387,7 +28311,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28395,7 +28320,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 16, - "favorite_count": 190, + "favorite_count": 192, "favorited": false, "retweeted": false, "lang": "en" @@ -28436,16 +28361,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28468,7 +28393,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28476,7 +28402,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 20, - "favorite_count": 268, + "favorite_count": 273, "favorited": false, "retweeted": false, "lang": "en" @@ -28595,16 +28521,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28627,7 +28553,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28635,7 +28562,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 9, - "favorite_count": 254, + "favorite_count": 261, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -28677,16 +28604,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28709,7 +28636,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28717,7 +28645,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 7, - "favorite_count": 178, + "favorite_count": 179, "favorited": false, "retweeted": false, "lang": "en" @@ -28768,16 +28696,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28800,7 +28728,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28808,7 +28737,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 17, - "favorite_count": 285, + "favorite_count": 293, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -28850,16 +28779,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28882,15 +28811,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 219, + "retweet_count": 11, + "favorite_count": 224, "favorited": false, "retweeted": false, "lang": "en" @@ -28931,16 +28861,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -28963,7 +28893,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -28971,7 +28902,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 23, - "favorite_count": 190, + "favorite_count": 193, "favorited": false, "retweeted": false, "lang": "en" @@ -29012,16 +28943,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29044,15 +28975,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 25, - "favorite_count": 366, + "retweet_count": 24, + "favorite_count": 386, "favorited": false, "retweeted": false, "lang": "en" @@ -29171,16 +29103,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29203,7 +29135,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -29211,7 +29144,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 11, - "favorite_count": 277, + "favorite_count": 288, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -29253,16 +29186,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29285,15 +29218,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 271, + "retweet_count": 11, + "favorite_count": 276, "favorited": false, "retweeted": false, "lang": "en" @@ -29334,16 +29268,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29366,7 +29300,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -29374,7 +29309,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 14, - "favorite_count": 303, + "favorite_count": 314, "favorited": false, "retweeted": false, "lang": "en" @@ -29493,16 +29428,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29525,15 +29460,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 17, - "favorite_count": 315, + "retweet_count": 19, + "favorite_count": 327, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -29575,16 +29511,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29607,15 +29543,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 28, - "favorite_count": 371, + "retweet_count": 31, + "favorite_count": 384, "favorited": false, "retweeted": false, "lang": "en" @@ -29656,16 +29593,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29688,15 +29625,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 17, - "favorite_count": 268, + "retweet_count": 18, + "favorite_count": 273, "favorited": false, "retweeted": false, "lang": "en" @@ -29737,16 +29675,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29769,15 +29707,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 31, - "favorite_count": 203, + "retweet_count": 30, + "favorite_count": 205, "favorited": false, "retweeted": false, "lang": "en" @@ -29818,16 +29757,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29850,7 +29789,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -29858,7 +29798,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 8, - "favorite_count": 181, + "favorite_count": 186, "favorited": false, "retweeted": false, "lang": "en" @@ -29899,16 +29839,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -29931,7 +29871,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -29939,7 +29880,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 9, - "favorite_count": 196, + "favorite_count": 198, "favorited": false, "retweeted": false, "lang": "en" @@ -29999,16 +29940,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30031,7 +29972,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -30081,16 +30023,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30113,15 +30055,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 13, - "favorite_count": 214, + "retweet_count": 15, + "favorite_count": 219, "favorited": false, "retweeted": false, "lang": "en" @@ -30172,16 +30115,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30204,7 +30147,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -30212,7 +30156,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 8, - "favorite_count": 177, + "favorite_count": 178, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -30254,16 +30198,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30286,15 +30230,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 33, - "favorite_count": 290, + "retweet_count": 37, + "favorite_count": 295, "favorited": false, "retweeted": false, "lang": "en" @@ -30335,16 +30280,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30367,7 +30312,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -30375,7 +30321,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 18, - "favorite_count": 327, + "favorite_count": 338, "favorited": false, "retweeted": false, "lang": "en" @@ -30426,16 +30372,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30458,15 +30404,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 8, - "favorite_count": 184, + "retweet_count": 9, + "favorite_count": 187, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -30508,16 +30455,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30540,15 +30487,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 30, - "favorite_count": 412, + "retweet_count": 31, + "favorite_count": 430, "favorited": false, "retweeted": false, "lang": "en" @@ -30589,16 +30537,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30621,7 +30569,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -30629,7 +30578,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 12, - "favorite_count": 206, + "favorite_count": 207, "favorited": false, "retweeted": false, "lang": "en" @@ -30670,16 +30619,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30702,7 +30651,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -30751,16 +30701,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30783,15 +30733,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 185, + "retweet_count": 11, + "favorite_count": 189, "favorited": false, "retweeted": false, "lang": "en" @@ -30832,16 +30783,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30864,15 +30815,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 26, - "favorite_count": 324, + "retweet_count": 27, + "favorite_count": 335, "favorited": false, "retweeted": false, "lang": "en" @@ -30913,16 +30865,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -30945,15 +30897,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 350, - "favorite_count": 1046, + "retweet_count": 349, + "favorite_count": 1089, "favorited": false, "retweeted": false, "lang": "en" @@ -30994,16 +30947,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31026,15 +30979,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 22, - "favorite_count": 322, + "retweet_count": 24, + "favorite_count": 332, "favorited": false, "retweeted": false, "lang": "en" @@ -31085,16 +31039,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31117,15 +31071,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 242, + "retweet_count": 8, + "favorite_count": 249, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -31167,16 +31122,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31199,15 +31154,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 23, - "favorite_count": 274, + "retweet_count": 22, + "favorite_count": 278, "favorited": false, "retweeted": false, "lang": "en" @@ -31248,16 +31204,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31280,15 +31236,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 32, - "favorite_count": 397, + "retweet_count": 35, + "favorite_count": 409, "favorited": false, "retweeted": false, "lang": "en" @@ -31329,16 +31286,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31361,7 +31318,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -31369,7 +31327,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 14, - "favorite_count": 197, + "favorite_count": 198, "favorited": false, "retweeted": false, "lang": "en" @@ -31410,16 +31368,16 @@ } }, "protected": false, - "followers_count": 3129, - "friends_count": 844, - "listed_count": 9, + "followers_count": 3329, + "friends_count": 879, + "listed_count": 8, "created_at": "Sat Jun 03 21:12:48 +0000 2017", - "favourites_count": 167718, + "favourites_count": 187057, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 112381, + "statuses_count": 125189, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31442,7 +31400,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -31480,16 +31439,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -31504,16 +31463,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31522,8 +31481,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -31536,7 +31495,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -31574,16 +31534,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -31598,16 +31558,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31616,8 +31576,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -31630,7 +31590,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -31668,16 +31629,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -31692,16 +31653,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31710,8 +31671,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -31724,7 +31685,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -31762,16 +31724,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -31786,16 +31748,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31804,8 +31766,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -31818,15 +31780,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 108, + "retweet_count": 4, + "favorite_count": 109, "favorited": false, "retweeted": false, "lang": "en" @@ -31856,16 +31819,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -31880,16 +31843,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31898,8 +31861,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -31912,7 +31875,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -31950,16 +31914,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -31974,16 +31938,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -31992,8 +31956,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32006,7 +31970,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32044,16 +32009,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32068,16 +32033,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32086,8 +32051,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32100,7 +32065,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32138,16 +32104,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32162,16 +32128,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32180,8 +32146,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32194,7 +32160,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32232,16 +32199,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32256,16 +32223,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32274,8 +32241,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32288,7 +32255,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32326,16 +32294,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32350,16 +32318,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32368,8 +32336,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32382,7 +32350,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32420,16 +32389,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32444,16 +32413,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32462,8 +32431,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32476,7 +32445,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32514,16 +32484,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32538,16 +32508,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32556,8 +32526,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32570,7 +32540,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32608,16 +32579,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32632,16 +32603,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32650,8 +32621,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32664,7 +32635,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32702,16 +32674,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32726,16 +32698,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32744,8 +32716,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32758,7 +32730,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32796,16 +32769,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32820,16 +32793,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32838,8 +32811,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32852,7 +32825,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32890,16 +32864,16 @@ "user": { "id": 3181676683, "id_str": "3181676683", - "name": "Delaney King 👉🏻👩🏻‍💻", + "name": "Delaney King ✍🏻👸🏻", "screen_name": "delaneykingrox", "location": "Melbourne, Victoria", "description": "Character/tech artist (Dragonage, Where The Wild Things Are, Unreal 04, Civ IV, Dungeons&Dragons Online, God Of War TVC, Stellaris HD) Writer. Intersex. She/Her", - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "entities": { "url": { "urls": [ { - "url": "https://t.co/2ZzmyfB7wV", + "url": "https://t.co/kMXrqDM2sc", "expanded_url": "http://www.delaneyking.com", "display_url": "delaneyking.com", "indices": [ @@ -32914,16 +32888,16 @@ } }, "protected": false, - "followers_count": 15240, - "friends_count": 2166, - "listed_count": 171, + "followers_count": 20140, + "friends_count": 2241, + "listed_count": 217, "created_at": "Fri May 01 11:29:22 +0000 2015", - "favourites_count": 115804, + "favourites_count": 122332, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 80586, + "statuses_count": 86404, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -32932,8 +32906,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme3/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1348270986001436673/cQqXwOHY_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1383246130759147522/nVAlAYo9_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3181676683/1598951836", "profile_link_color": "088253", "profile_sidebar_border_color": "D3D2CF", @@ -32946,7 +32920,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -32994,16 +32969,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -33018,16 +32993,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33050,7 +33025,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -33080,7 +33056,7 @@ "user_mentions": [ { "screen_name": "TwippingVanilla", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "id": 820322649456844800, "id_str": "820322649456844800", "indices": [ @@ -33090,7 +33066,7 @@ }, { "screen_name": "Doctor_Hugs", - "name": "Io Angela💜💛💚❤️", + "name": "dr.io", "id": 24094919, "id_str": "24094919", "indices": [ @@ -33134,16 +33110,16 @@ } }, "protected": false, - "followers_count": 460, - "friends_count": 260, + "followers_count": 452, + "friends_count": 259, "listed_count": 15, "created_at": "Fri Jul 29 22:34:27 +0000 2016", - "favourites_count": 81218, + "favourites_count": 81922, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 14454, + "statuses_count": 14570, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33165,7 +33141,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -33173,13 +33150,13 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 8, + "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en" }, "retweet_count": 0, - "favorite_count": 11, + "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -33201,7 +33178,7 @@ "user_mentions": [ { "screen_name": "TwippingVanilla", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "id": 820322649456844800, "id_str": "820322649456844800", "indices": [ @@ -33211,7 +33188,7 @@ }, { "screen_name": "Doctor_Hugs", - "name": "Io Angela💜💛💚❤️", + "name": "dr.io", "id": 24094919, "id_str": "24094919", "indices": [ @@ -33255,16 +33232,16 @@ } }, "protected": false, - "followers_count": 460, - "friends_count": 260, + "followers_count": 452, + "friends_count": 259, "listed_count": 15, "created_at": "Fri Jul 29 22:34:27 +0000 2016", - "favourites_count": 81218, + "favourites_count": 81922, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 14454, + "statuses_count": 14570, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33286,7 +33263,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -33294,7 +33272,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 8, + "favorite_count": 9, "favorited": false, "retweeted": false, "lang": "en" @@ -33315,7 +33293,7 @@ "user_mentions": [ { "screen_name": "TheEmmelineMay", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "id": 15218940, "id_str": "15218940", "indices": [ @@ -33347,15 +33325,15 @@ }, "protected": false, "followers_count": 47, - "friends_count": 141, + "friends_count": 139, "listed_count": 0, "created_at": "Fri Nov 11 08:25:32 +0000 2016", - "favourites_count": 6980, + "favourites_count": 6841, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 1650, + "statuses_count": 1640, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33377,7 +33355,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -33521,7 +33500,7 @@ "user_mentions": [ { "screen_name": "Haganista", - "name": "Tammy's new misguided attempt at Social Media", + "name": "Tammocalyps Now", "id": 2370435253, "id_str": "2370435253", "indices": [ @@ -33531,7 +33510,7 @@ }, { "screen_name": "TheEmmelineMay", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "id": 15218940, "id_str": "15218940", "indices": [ @@ -33562,16 +33541,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33593,7 +33572,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -33631,10 +33611,10 @@ "user": { "id": 13553682, "id_str": "13553682", - "name": "🌙 Ayumeril ⭐️ ~I ♡ I~", + "name": "🌙 Ayumeril ⭐️", "screen_name": "ayumeril", - "location": "DMV Area, USA", - "description": "Film & Domotics | INFP | Partnered | she/her |☀️♒️; 🌙♋️; 🔼♎️; ↔️♋️", + "location": "ETS-1913, NE Clover, Eutopia", + "description": "she/her | 5w6 INFP", "url": null, "entities": { "description": { @@ -33642,16 +33622,16 @@ } }, "protected": false, - "followers_count": 212, - "friends_count": 221, + "followers_count": 253, + "friends_count": 262, "listed_count": 3, "created_at": "Sat Feb 16 14:33:43 +0000 2008", - "favourites_count": 98842, + "favourites_count": 127423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11203, + "statuses_count": 13439, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33660,9 +33640,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1616811775", + "profile_image_url": "http://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1626277553", "profile_link_color": "BBAAEE", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -33674,7 +33654,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -33712,16 +33693,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -33736,16 +33717,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33754,8 +33735,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -33768,7 +33749,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -33776,7 +33758,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 8, - "favorite_count": 152, + "favorite_count": 151, "favorited": false, "retweeted": false, "lang": "en" @@ -33806,16 +33788,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -33830,16 +33812,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -33848,8 +33830,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -33862,15 +33844,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 15, - "favorite_count": 192, + "retweet_count": 14, + "favorite_count": 191, "favorited": false, "retweeted": false, "lang": "en" @@ -33901,7 +33884,7 @@ }, { "screen_name": "TheEmmelineMay", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "id": 15218940, "id_str": "15218940", "indices": [ @@ -34010,16 +33993,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34041,7 +34024,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -34049,7 +34033,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 4, - "favorite_count": 19, + "favorite_count": 20, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -34080,16 +34064,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -34104,16 +34088,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34122,8 +34106,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -34136,7 +34120,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -34144,7 +34129,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 9, - "favorite_count": 150, + "favorite_count": 149, "favorited": false, "retweeted": false, "lang": "en" @@ -34184,10 +34169,10 @@ "user": { "id": 13553682, "id_str": "13553682", - "name": "🌙 Ayumeril ⭐️ ~I ♡ I~", + "name": "🌙 Ayumeril ⭐️", "screen_name": "ayumeril", - "location": "DMV Area, USA", - "description": "Film & Domotics | INFP | Partnered | she/her |☀️♒️; 🌙♋️; 🔼♎️; ↔️♋️", + "location": "ETS-1913, NE Clover, Eutopia", + "description": "she/her | 5w6 INFP", "url": null, "entities": { "description": { @@ -34195,16 +34180,16 @@ } }, "protected": false, - "followers_count": 212, - "friends_count": 221, + "followers_count": 253, + "friends_count": 262, "listed_count": 3, "created_at": "Sat Feb 16 14:33:43 +0000 2008", - "favourites_count": 98842, + "favourites_count": 127423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11203, + "statuses_count": 13439, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34213,9 +34198,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1616811775", + "profile_image_url": "http://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1626277553", "profile_link_color": "BBAAEE", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -34227,7 +34212,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -34266,16 +34252,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -34290,16 +34276,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34308,8 +34294,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -34322,15 +34308,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 128, - "favorite_count": 669, + "retweet_count": 123, + "favorite_count": 662, "favorited": false, "retweeted": false, "lang": "en" @@ -34367,10 +34354,10 @@ "user": { "id": 13553682, "id_str": "13553682", - "name": "🌙 Ayumeril ⭐️ ~I ♡ I~", + "name": "🌙 Ayumeril ⭐️", "screen_name": "ayumeril", - "location": "DMV Area, USA", - "description": "Film & Domotics | INFP | Partnered | she/her |☀️♒️; 🌙♋️; 🔼♎️; ↔️♋️", + "location": "ETS-1913, NE Clover, Eutopia", + "description": "she/her | 5w6 INFP", "url": null, "entities": { "description": { @@ -34378,16 +34365,16 @@ } }, "protected": false, - "followers_count": 212, - "friends_count": 221, + "followers_count": 253, + "friends_count": 262, "listed_count": 3, "created_at": "Sat Feb 16 14:33:43 +0000 2008", - "favourites_count": 98842, + "favourites_count": 127423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11203, + "statuses_count": 13439, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34396,9 +34383,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1616811775", + "profile_image_url": "http://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1626277553", "profile_link_color": "BBAAEE", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -34410,7 +34397,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -34439,7 +34427,7 @@ "user_mentions": [ { "screen_name": "NMorganCreates", - "name": "NadineMorgan", + "name": "Cap’n NadineMorgan 🏳️‍🌈🏴‍☠️", "id": 181285160, "id_str": "181285160", "indices": [ @@ -34459,16 +34447,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -34483,16 +34471,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34501,8 +34489,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -34515,7 +34503,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -34523,7 +34512,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 4, + "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en" @@ -34553,16 +34542,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -34577,16 +34566,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34595,8 +34584,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -34609,15 +34598,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 128, - "favorite_count": 669, + "retweet_count": 123, + "favorite_count": 662, "favorited": false, "retweeted": false, "lang": "en" @@ -34638,7 +34628,7 @@ "user_mentions": [ { "screen_name": "TheEmmelineMay", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "id": 15218940, "id_str": "15218940", "indices": [ @@ -34679,16 +34669,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34710,7 +34700,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -34748,10 +34739,10 @@ "user": { "id": 13553682, "id_str": "13553682", - "name": "🌙 Ayumeril ⭐️ ~I ♡ I~", + "name": "🌙 Ayumeril ⭐️", "screen_name": "ayumeril", - "location": "DMV Area, USA", - "description": "Film & Domotics | INFP | Partnered | she/her |☀️♒️; 🌙♋️; 🔼♎️; ↔️♋️", + "location": "ETS-1913, NE Clover, Eutopia", + "description": "she/her | 5w6 INFP", "url": null, "entities": { "description": { @@ -34759,16 +34750,16 @@ } }, "protected": false, - "followers_count": 212, - "friends_count": 221, + "followers_count": 253, + "friends_count": 262, "listed_count": 3, "created_at": "Sat Feb 16 14:33:43 +0000 2008", - "favourites_count": 98842, + "favourites_count": 127423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 11203, + "statuses_count": 13439, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34777,9 +34768,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1299817600621391872/qOQMbSgW_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1616811775", + "profile_image_url": "http://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1420750219893870612/RVjoggSv_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/13553682/1626277553", "profile_link_color": "BBAAEE", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -34791,7 +34782,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -34829,16 +34821,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -34853,16 +34845,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34871,8 +34863,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -34885,15 +34877,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 25, - "favorite_count": 188, + "retweet_count": 24, + "favorite_count": 187, "favorited": false, "retweeted": false, "lang": "en" @@ -34923,16 +34916,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -34947,16 +34940,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -34965,8 +34958,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -34979,15 +34972,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 43, - "favorite_count": 229, + "retweet_count": 42, + "favorite_count": 228, "favorited": false, "retweeted": false, "lang": "en" @@ -35017,16 +35011,16 @@ "user": { "id": 15218940, "id_str": "15218940", - "name": "Help. It's again.", + "name": "K'ez'rek d'b'duz 🐢", "screen_name": "TheEmmelineMay", "location": "💛🤍💜🖤 🌈", - "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nWould you like a cup of tea?\nthey/them, no prisons/no borders, cats and dogs are both good", - "url": "https://t.co/7PtFH5TzkL", + "description": "Opinion Haver (now backed up by academia). \nI am fond of analogies.\nADHD & Chaos Goblin \nthey/them, no prisons/no borders, cats and dogs are both good", + "url": "https://t.co/OwdUmdLkRe", "entities": { "url": { "urls": [ { - "url": "https://t.co/7PtFH5TzkL", + "url": "https://t.co/OwdUmdLkRe", "expanded_url": "http://www.emmelinemay.com", "display_url": "emmelinemay.com", "indices": [ @@ -35041,16 +35035,16 @@ } }, "protected": false, - "followers_count": 4689, - "friends_count": 3513, - "listed_count": 69, + "followers_count": 4863, + "friends_count": 3753, + "listed_count": 71, "created_at": "Tue Jun 24 12:27:07 +0000 2008", - "favourites_count": 55858, + "favourites_count": 61423, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 43116, + "statuses_count": 45938, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35059,8 +35053,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme10/bg.gif", "profile_background_tile": true, - "profile_image_url": "http://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371473547617562629/K_7Jkp3T_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1386001931185840130/uwCMRaQ4_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/15218940/1426618064", "profile_link_color": "9266CC", "profile_sidebar_border_color": "000000", @@ -35073,7 +35067,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -35081,7 +35076,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 18, - "favorite_count": 233, + "favorite_count": 230, "favorited": false, "retweeted": false, "lang": "en" @@ -35122,10 +35117,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -35146,16 +35141,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35164,8 +35159,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -35178,15 +35173,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 310, - "favorite_count": 3860, + "retweet_count": 300, + "favorite_count": 3815, "favorited": false, "retweeted": false, "lang": "en" @@ -35227,10 +35223,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -35251,16 +35247,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35269,8 +35265,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -35283,15 +35279,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 627, - "favorite_count": 8943, + "retweet_count": 611, + "favorite_count": 8840, "favorited": false, "retweeted": false, "lang": "en" @@ -35332,10 +35329,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -35356,16 +35353,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35374,8 +35371,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -35388,15 +35385,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 305, - "favorite_count": 5758, + "retweet_count": 293, + "favorite_count": 5703, "favorited": false, "retweeted": false, "lang": "en" @@ -35437,10 +35435,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -35461,16 +35459,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35479,8 +35477,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -35493,15 +35491,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 221, - "favorite_count": 4557, + "retweet_count": 212, + "favorite_count": 4512, "favorited": false, "retweeted": false, "lang": "en" @@ -35542,10 +35541,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -35566,16 +35565,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35584,8 +35583,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -35598,15 +35597,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 267, - "favorite_count": 4641, + "retweet_count": 256, + "favorite_count": 4593, "favorited": false, "retweeted": false, "lang": "en" @@ -35670,16 +35670,16 @@ } }, "protected": false, - "followers_count": 9625, - "friends_count": 298, + "followers_count": 10140, + "friends_count": 303, "listed_count": 18, "created_at": "Thu Mar 26 16:09:36 +0000 2015", - "favourites_count": 232232, + "favourites_count": 213406, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 76799, + "statuses_count": 78129, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35688,8 +35688,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1370461972723073035/X9YSQ5yG_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1402713757923545096/rBJpQciz_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/3119033985/1532127278", "profile_link_color": "BA55D3", "profile_sidebar_border_color": "000000", @@ -35702,7 +35702,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -35752,16 +35753,16 @@ } }, "protected": false, - "followers_count": 1333, - "friends_count": 1252, + "followers_count": 1299, + "friends_count": 1214, "listed_count": 2, "created_at": "Fri Jan 26 12:17:54 +0000 2018", - "favourites_count": 148496, + "favourites_count": 165101, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 16615, + "statuses_count": 17004, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -35784,21 +35785,22 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 66, - "favorite_count": 409, + "retweet_count": 68, + "favorite_count": 406, "favorited": false, "retweeted": false, "lang": "en" }, - "retweet_count": 139, - "favorite_count": 454, + "retweet_count": 135, + "favorite_count": 442, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -35818,121 +35820,7 @@ "hashtags": [], "symbols": [], "user_mentions": [], - "urls": [], - "media": [ - { - "id": 1200891544011788300, - "id_str": "1200891544011788288", - "indices": [ - 282, - 305 - ], - "media_url": "http://pbs.twimg.com/media/EKpsfyaX0AAePik.jpg", - "media_url_https": "https://pbs.twimg.com/media/EKpsfyaX0AAePik.jpg", - "url": "https://t.co/K1IZzG2Uqd", - "display_url": "pic.twitter.com/K1IZzG2Uqd", - "expanded_url": "https://twitter.com/Emmy_Zje/status/1200891565478236161/photo/1", - "type": "photo", - "sizes": { - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 837, - "h": 1200, - "resize": "fit" - }, - "small": { - "w": 474, - "h": 680, - "resize": "fit" - }, - "large": { - "w": 1428, - "h": 2048, - "resize": "fit" - } - } - } - ] - }, - "extended_entities": { - "media": [ - { - "id": 1200891544011788300, - "id_str": "1200891544011788288", - "indices": [ - 282, - 305 - ], - "media_url": "http://pbs.twimg.com/media/EKpsfyaX0AAePik.jpg", - "media_url_https": "https://pbs.twimg.com/media/EKpsfyaX0AAePik.jpg", - "url": "https://t.co/K1IZzG2Uqd", - "display_url": "pic.twitter.com/K1IZzG2Uqd", - "expanded_url": "https://twitter.com/Emmy_Zje/status/1200891565478236161/photo/1", - "type": "photo", - "sizes": { - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "medium": { - "w": 837, - "h": 1200, - "resize": "fit" - }, - "small": { - "w": 474, - "h": 680, - "resize": "fit" - }, - "large": { - "w": 1428, - "h": 2048, - "resize": "fit" - } - } - }, - { - "id": 1200891544007512000, - "id_str": "1200891544007512064", - "indices": [ - 282, - 305 - ], - "media_url": "http://pbs.twimg.com/media/EKpsfyZWkAAFVlX.jpg", - "media_url_https": "https://pbs.twimg.com/media/EKpsfyZWkAAFVlX.jpg", - "url": "https://t.co/K1IZzG2Uqd", - "display_url": "pic.twitter.com/K1IZzG2Uqd", - "expanded_url": "https://twitter.com/Emmy_Zje/status/1200891565478236161/photo/1", - "type": "photo", - "sizes": { - "thumb": { - "w": 150, - "h": 150, - "resize": "crop" - }, - "small": { - "w": 226, - "h": 308, - "resize": "fit" - }, - "medium": { - "w": 226, - "h": 308, - "resize": "fit" - }, - "large": { - "w": 226, - "h": 308, - "resize": "fit" - } - } - } - ] + "urls": [] }, "source": "Twitter for iPhone", "in_reply_to_status_id": null, @@ -36163,16 +36051,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -36187,16 +36075,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -36219,7 +36107,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -36257,10 +36146,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -36281,16 +36170,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -36299,8 +36188,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -36313,7 +36202,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -36569,16 +36459,16 @@ } }, "protected": false, - "followers_count": 24445, - "friends_count": 691, + "followers_count": 24036, + "friends_count": 682, "listed_count": 60, "created_at": "Sat Jul 14 17:15:11 +0000 2018", - "favourites_count": 122000, + "favourites_count": 119283, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 65833, + "statuses_count": 65498, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -36601,7 +36491,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -36731,10 +36622,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -36755,16 +36646,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -36773,8 +36664,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -36787,15 +36678,16 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 141, - "favorite_count": 1014, + "retweet_count": 136, + "favorite_count": 1001, "favorited": false, "retweeted": false, "lang": "en" @@ -36825,10 +36717,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -36849,16 +36741,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -36867,8 +36759,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -36881,7 +36773,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -36919,10 +36812,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -36943,16 +36836,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -36961,8 +36854,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -36975,7 +36868,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -37016,7 +36910,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 12, - "favorite_count": 194, + "favorite_count": 192, "favorited": false, "retweeted": false, "lang": "en" @@ -37162,13 +37056,13 @@ "name": "🐟 Otto Lontra 🐟", "screen_name": "OttoLontra", "location": "Mukilteo, WA", - "description": "This was an art account, but Twitter is shit for art, so fuck it. Y'all want furry smut, you can go to my FA in the website link. 18+ only, He/him", - "url": "https://t.co/h7IofqTEUq", + "description": "Weird ass kinky art account, 18+ only, He/him. Be warned there will be hedonism in 70 flavors.", + "url": "https://t.co/JmvfUUhRRz", "entities": { "url": { "urls": [ { - "url": "https://t.co/h7IofqTEUq", + "url": "https://t.co/JmvfUUhRRz", "expanded_url": "http://www.furaffinity.net/user/ottotheavocadoslayer", "display_url": "furaffinity.net/user/ottotheav…", "indices": [ @@ -37183,16 +37077,16 @@ } }, "protected": false, - "followers_count": 359, - "friends_count": 658, - "listed_count": 1, + "followers_count": 311, + "friends_count": 653, + "listed_count": 2, "created_at": "Wed Mar 06 06:22:54 +0000 2019", - "favourites_count": 8003, + "favourites_count": 8857, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 7631, + "statuses_count": 8214, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -37214,7 +37108,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -37324,7 +37219,7 @@ "user_mentions": [ { "screen_name": "SassKnight", - "name": "hi micky", + "name": "hi micki", "id": 2230855064, "id_str": "2230855064", "indices": [ @@ -37346,8 +37241,8 @@ "urls": [ { "url": "https://t.co/fR4VLovc2J", - "expanded_url": "https://genderdysphoria.fyi/en/biochemical-dysphoria", - "display_url": "genderdysphoria.fyi/en/biochemica…", + "expanded_url": "https://genderdysphoria.fyi/gdb/biochemical-dysphoria", + "display_url": "genderdysphoria.fyi/gdb/biochemica…", "indices": [ 184, 207 @@ -37364,16 +37259,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -37388,16 +37283,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -37420,7 +37315,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -37646,7 +37542,7 @@ "user_mentions": [ { "screen_name": "SassKnight", - "name": "hi micky", + "name": "hi micki", "id": 2230855064, "id_str": "2230855064", "indices": [ @@ -37676,16 +37572,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -37700,16 +37596,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -37732,7 +37628,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -37781,10 +37678,10 @@ "user": { "id": 2230855064, "id_str": "2230855064", - "name": "hi micky", + "name": "hi micki", "screen_name": "SassKnight", "location": "Oakland, CA", - "description": "I never got over the hole Deep Space Nine left in my life. Queer // they/them 🌉 30", + "description": "I never got over the hole Deep Space Nine left in my life. Queer // they/them 🌉 30s", "url": null, "entities": { "description": { @@ -37792,16 +37689,16 @@ } }, "protected": false, - "followers_count": 460, - "friends_count": 3345, - "listed_count": 19, + "followers_count": 492, + "friends_count": 3392, + "listed_count": 18, "created_at": "Thu Dec 05 03:47:27 +0000 2013", - "favourites_count": 161129, + "favourites_count": 176997, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 17842, + "statuses_count": 19491, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -37824,7 +37721,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -37934,7 +37832,7 @@ "user_mentions": [ { "screen_name": "CateSpice", - "name": "🌶 Caitlin Spice 🌶", + "name": "🌶 Caitlin Sugar and Spice and everything Nice 🌶", "id": 4551798614, "id_str": "4551798614", "indices": [ @@ -37957,7 +37855,7 @@ "name": "KimKymKeem", "screen_name": "canamKim", "location": "St. Catharines", - "description": "🇺🇸&🇨🇦 Insignificant in every way. All Kims are cool. She/Her/Lizard person.", + "description": "🇺🇸&🇨🇦 Insignificant in every way. All Kims are cool. She/Her", "url": null, "entities": { "description": { @@ -37965,16 +37863,16 @@ } }, "protected": false, - "followers_count": 761, - "friends_count": 2371, - "listed_count": 1, + "followers_count": 789, + "friends_count": 2494, + "listed_count": 2, "created_at": "Sat Jun 18 02:50:29 +0000 2011", - "favourites_count": 27551, + "favourites_count": 29427, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 10342, + "statuses_count": 11342, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -37991,13 +37889,14 @@ "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, - "has_extended_profile": false, + "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -38005,7 +37904,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 14, + "favorite_count": 12, "favorited": false, "retweeted": false, "lang": "en" @@ -38127,10 +38026,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -38151,16 +38050,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -38169,8 +38068,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -38183,7 +38082,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -38299,10 +38199,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -38323,16 +38223,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -38341,8 +38241,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -38355,7 +38255,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -38363,7 +38264,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 23, - "favorite_count": 246, + "favorite_count": 245, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -38394,10 +38295,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -38418,16 +38319,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -38436,8 +38337,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -38450,7 +38351,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -38490,8 +38392,8 @@ }, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 187, + "retweet_count": 9, + "favorite_count": 185, "favorited": false, "retweeted": false, "lang": "en" @@ -38542,10 +38444,10 @@ "user": { "id": 1167872147336941600, "id_str": "1167872147336941568", - "name": "Quinn Pearse Brown 💙🌈", + "name": "Quinn Pearse Brown 🏳️‍⚧️🏳️‍🌈", "screen_name": "QuinnPBrown", "location": "Kellington, England", - "description": "Trans man (he/him)\nTrans rights activist.\nHates TERFs. \nFounder of Trans Man Talks\n\n\n#BLACKLIVESMATTER", + "description": "Trans man (he/him) Trans rights and mental health activist. Founder of Trans Man Talks. Founder of #InWithTheBins. #BLACKLIVESMATTER", "url": null, "entities": { "description": { @@ -38553,16 +38455,16 @@ } }, "protected": false, - "followers_count": 6848, - "friends_count": 7183, - "listed_count": 18, + "followers_count": 7794, + "friends_count": 8288, + "listed_count": 17, "created_at": "Sat Aug 31 18:50:05 +0000 2019", - "favourites_count": 125769, + "favourites_count": 163874, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 53703, + "statuses_count": 71418, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -38571,21 +38473,22 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1369282562116435972/zCPAoRwM_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1369282562116435972/zCPAoRwM_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1167872147336941568/1614189960", + "profile_image_url": "http://pbs.twimg.com/profile_images/1424729553465905153/gSHfcNmb_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1424729553465905153/gSHfcNmb_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1167872147336941568/1629819397", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, - "has_extended_profile": true, + "has_extended_profile": false, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -38614,7 +38517,7 @@ "user_mentions": [ { "screen_name": "CateSpice", - "name": "🌶 Caitlin Spice 🌶", + "name": "🌶 Caitlin Sugar and Spice and everything Nice 🌶", "id": 4551798614, "id_str": "4551798614", "indices": [ @@ -38637,7 +38540,7 @@ "name": "KimKymKeem", "screen_name": "canamKim", "location": "St. Catharines", - "description": "🇺🇸&🇨🇦 Insignificant in every way. All Kims are cool. She/Her/Lizard person.", + "description": "🇺🇸&🇨🇦 Insignificant in every way. All Kims are cool. She/Her", "url": null, "entities": { "description": { @@ -38645,16 +38548,16 @@ } }, "protected": false, - "followers_count": 761, - "friends_count": 2371, - "listed_count": 1, + "followers_count": 789, + "friends_count": 2494, + "listed_count": 2, "created_at": "Sat Jun 18 02:50:29 +0000 2011", - "favourites_count": 27551, + "favourites_count": 29427, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 10342, + "statuses_count": 11342, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -38671,13 +38574,14 @@ "profile_sidebar_fill_color": "DDEEF6", "profile_text_color": "333333", "profile_use_background_image": true, - "has_extended_profile": false, + "has_extended_profile": true, "default_profile": true, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -38831,16 +38735,16 @@ } }, "protected": false, - "followers_count": 221, - "friends_count": 422, + "followers_count": 246, + "friends_count": 465, "listed_count": 2, "created_at": "Wed Jul 30 15:57:53 +0000 2014", - "favourites_count": 11894, + "favourites_count": 13510, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 4491, + "statuses_count": 5462, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -38863,7 +38767,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -39013,16 +38918,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -39037,16 +38942,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39069,7 +38974,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -39098,7 +39004,7 @@ "user_mentions": [ { "screen_name": "SassKnight", - "name": "hi micky", + "name": "hi micki", "id": 2230855064, "id_str": "2230855064", "indices": [ @@ -39128,16 +39034,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -39152,16 +39058,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39184,7 +39090,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -39347,16 +39254,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -39371,16 +39278,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39403,7 +39310,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -39441,10 +39349,10 @@ "user": { "id": 2319062221, "id_str": "2319062221", - "name": "Magdalene Visaggio", + "name": "Magdalene Visaggio 🏳️‍🌈🏳️‍⚧️", "screen_name": "MagsVisaggs", - "location": "Easter 1916", - "description": "🏳️‍🌈 YA fiction for unpopular high school sophomore girls - repped by @comicsispeople - tarot - DMs open for sensitive/private matters ONLY", + "location": "Sonicdouche, New York", + "description": "YA fiction for unpopular high school girls - COLD BODIES Out DEC 2021 from Dark Horse repped by @comicsispeople - DMs open for sensitive/private matters ONLY", "url": "https://t.co/0IaIXpVHXI", "entities": { "url": { @@ -39465,16 +39373,16 @@ } }, "protected": false, - "followers_count": 40502, - "friends_count": 2032, - "listed_count": 406, + "followers_count": 40205, + "friends_count": 2054, + "listed_count": 405, "created_at": "Thu Jan 30 15:07:37 +0000 2014", - "favourites_count": 135995, + "favourites_count": 133930, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": true, - "statuses_count": 221673, + "statuses_count": 222826, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39483,8 +39391,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme15/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1354149892193726464/GDfkIE0e_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1428438605597380614/X04v-G39_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/2319062221/1589214690", "profile_link_color": "48D1CC", "profile_sidebar_border_color": "A8C7F7", @@ -39497,7 +39405,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -39627,7 +39536,7 @@ "name": "Catriona Faolain 🏳️‍⚧️🏴󠁧󠁢󠁳󠁣󠁴󠁿", "screen_name": "OneWeirdAngel", "location": "Rainy Fascist Island North", - "description": "It's a controversial opinion, but I'm starting to think that maybe trans people's problem with transphobes is all of that transphobia. ♀️ She/her, #ACAB", + "description": "Plus ça change, plus c'est la chose des mèmes. ♀️ She/her, #ACAB", "url": "https://t.co/byDGv3eqLI", "entities": { "url": { @@ -39648,16 +39557,16 @@ } }, "protected": false, - "followers_count": 800, - "friends_count": 223, + "followers_count": 838, + "friends_count": 219, "listed_count": 3, "created_at": "Wed Mar 14 22:57:53 +0000 2018", - "favourites_count": 10818, + "favourites_count": 10863, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 17852, + "statuses_count": 19917, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39680,15 +39589,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1, - "favorite_count": 42, + "retweet_count": 3, + "favorite_count": 50, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -39730,16 +39640,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39761,15 +39671,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 5, - "favorite_count": 137, + "retweet_count": 9, + "favorite_count": 150, "favorited": false, "retweeted": false, "lang": "en" @@ -39810,16 +39721,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39841,15 +39752,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 147, + "retweet_count": 5, + "favorite_count": 161, "favorited": false, "retweeted": false, "lang": "en" @@ -39890,16 +39802,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -39921,15 +39833,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 135, + "retweet_count": 8, + "favorite_count": 153, "favorited": false, "retweeted": false, "lang": "en" @@ -39970,16 +39883,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40001,15 +39914,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 166, + "retweet_count": 15, + "favorite_count": 184, "favorited": false, "retweeted": false, "lang": "en" @@ -40050,10 +39964,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -40061,16 +39975,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40079,9 +39993,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -40093,7 +40007,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -40101,7 +40016,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 31, + "favorite_count": 44, "favorited": false, "retweeted": false, "lang": "en" @@ -40142,16 +40057,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40173,15 +40088,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 139, + "retweet_count": 7, + "favorite_count": 153, "favorited": false, "retweeted": false, "lang": "en" @@ -40222,16 +40138,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40253,15 +40169,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 5, - "favorite_count": 159, + "retweet_count": 11, + "favorite_count": 175, "favorited": false, "retweeted": false, "lang": "en" @@ -40302,10 +40219,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -40313,16 +40230,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40331,9 +40248,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -40345,7 +40262,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -40353,7 +40271,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 21, + "favorite_count": 33, "favorited": false, "retweeted": false, "lang": "en" @@ -40394,16 +40312,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40425,15 +40343,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 142, + "retweet_count": 10, + "favorite_count": 154, "favorited": false, "retweeted": false, "lang": "en" @@ -40474,10 +40393,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -40485,16 +40404,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40503,9 +40422,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -40517,15 +40436,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 59, + "retweet_count": 9, + "favorite_count": 87, "favorited": false, "retweeted": false, "lang": "en" @@ -40566,10 +40486,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -40577,16 +40497,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40595,9 +40515,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -40609,7 +40529,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -40617,7 +40538,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 29, + "favorite_count": 45, "favorited": false, "retweeted": false, "lang": "en" @@ -40658,16 +40579,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40689,15 +40610,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 174, + "retweet_count": 11, + "favorite_count": 187, "favorited": false, "retweeted": false, "lang": "en" @@ -40738,16 +40660,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40769,15 +40691,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 167, + "retweet_count": 14, + "favorite_count": 182, "favorited": false, "retweeted": false, "lang": "en" @@ -40818,10 +40741,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -40829,16 +40752,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40847,9 +40770,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -40861,7 +40784,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -40869,7 +40793,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 38, + "favorite_count": 54, "favorited": false, "retweeted": false, "lang": "en" @@ -40910,16 +40834,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -40941,15 +40865,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 4, - "favorite_count": 144, + "retweet_count": 7, + "favorite_count": 158, "favorited": false, "retweeted": false, "lang": "en" @@ -40990,16 +40915,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41021,15 +40946,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 175, + "retweet_count": 11, + "favorite_count": 191, "favorited": false, "retweeted": false, "lang": "en" @@ -41070,10 +40996,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -41081,16 +41007,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41099,9 +41025,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -41113,7 +41039,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -41121,7 +41048,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 26, + "favorite_count": 46, "favorited": false, "retweeted": false, "lang": "en" @@ -41162,16 +41089,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41193,15 +41120,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 12, - "favorite_count": 202, + "retweet_count": 16, + "favorite_count": 218, "favorited": false, "retweeted": false, "lang": "en" @@ -41242,16 +41170,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41273,15 +41201,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 197, + "retweet_count": 13, + "favorite_count": 211, "favorited": false, "retweeted": false, "lang": "en" @@ -41322,16 +41251,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41353,15 +41282,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 9, - "favorite_count": 178, + "retweet_count": 14, + "favorite_count": 195, "favorited": false, "retweeted": false, "lang": "en" @@ -41402,16 +41332,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41433,15 +41363,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 153, + "retweet_count": 10, + "favorite_count": 170, "favorited": false, "retweeted": false, "lang": "en" @@ -41482,16 +41413,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41513,15 +41444,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 137, - "favorite_count": 469, + "retweet_count": 144, + "favorite_count": 502, "favorited": false, "retweeted": false, "lang": "en" @@ -41562,16 +41494,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41593,7 +41525,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -41601,7 +41534,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 18, + "favorite_count": 21, "favorited": false, "retweeted": false, "lang": "en" @@ -41642,16 +41575,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41673,15 +41606,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 19, - "favorite_count": 182, + "retweet_count": 24, + "favorite_count": 197, "favorited": false, "retweeted": false, "lang": "en" @@ -41722,16 +41656,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41753,15 +41687,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 144, + "retweet_count": 6, + "favorite_count": 155, "favorited": false, "retweeted": false, "lang": "en" @@ -41802,10 +41737,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -41813,16 +41748,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41831,9 +41766,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -41845,7 +41780,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -41853,7 +41789,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 26, + "favorite_count": 42, "favorited": false, "retweeted": false, "lang": "en" @@ -41894,16 +41830,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -41925,15 +41861,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 4, - "favorite_count": 151, + "retweet_count": 8, + "favorite_count": 165, "favorited": false, "retweeted": false, "lang": "en" @@ -41974,16 +41911,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42005,15 +41942,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 146, + "retweet_count": 7, + "favorite_count": 161, "favorited": false, "retweeted": false, "lang": "en" @@ -42054,16 +41992,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42085,15 +42023,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 168, + "retweet_count": 11, + "favorite_count": 186, "favorited": false, "retweeted": false, "lang": "en" @@ -42134,16 +42073,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42165,15 +42104,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 5, - "favorite_count": 146, + "retweet_count": 11, + "favorite_count": 161, "favorited": false, "retweeted": false, "lang": "en" @@ -42214,16 +42154,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42245,15 +42185,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 147, + "retweet_count": 9, + "favorite_count": 162, "favorited": false, "retweeted": false, "lang": "en" @@ -42294,16 +42235,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42325,15 +42266,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 156, + "retweet_count": 7, + "favorite_count": 170, "favorited": false, "retweeted": false, "lang": "en" @@ -42374,16 +42316,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42405,15 +42347,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 207, + "retweet_count": 9, + "favorite_count": 220, "favorited": false, "retweeted": false, "lang": "en" @@ -42454,10 +42397,10 @@ "user": { "id": 783396243984842800, "id_str": "783396243984842752", - "name": "emphabet's Christmas lights are still up", + "name": "Emphabet and Welcome to The Dark Hour", "screen_name": "CuddlePotato", - "location": "San Diego, CA", - "description": "Trans gay polyam leftist neuroqueer system who likes videogames, social justice, and adjectives ///\nshe/they /// Black Lives Matter /// Free Chelsea", + "location": "socal", + "description": "30 she/they leftist | plural autistic neuroqueer | Black Lives Matter | Frequently wrong, occasionally horny | I consulted for FatT once", "url": null, "entities": { "description": { @@ -42465,16 +42408,16 @@ } }, "protected": false, - "followers_count": 521, - "friends_count": 1083, - "listed_count": 3, + "followers_count": 1076, + "friends_count": 1413, + "listed_count": 5, "created_at": "Tue Oct 04 19:59:54 +0000 2016", - "favourites_count": 86104, + "favourites_count": 182015, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 32202, + "statuses_count": 60314, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42483,9 +42426,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1113502986477625344/vCkOU1jb_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1556989495", + "profile_image_url": "http://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1350572604482994176/4FgsNfqC_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/783396243984842752/1590822618", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -42497,7 +42440,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -42505,7 +42449,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 23, + "favorite_count": 38, "favorited": false, "retweeted": false, "lang": "en" @@ -42546,16 +42490,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42577,15 +42521,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 12, - "favorite_count": 167, + "retweet_count": 14, + "favorite_count": 183, "favorited": false, "retweeted": false, "lang": "en" @@ -42626,16 +42571,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42657,15 +42602,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 5, - "favorite_count": 128, + "retweet_count": 7, + "favorite_count": 140, "favorited": false, "retweeted": false, "lang": "en" @@ -42716,16 +42662,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -42740,16 +42686,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42772,7 +42718,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -42822,16 +42769,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42853,15 +42800,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 137, - "favorite_count": 469, + "retweet_count": 144, + "favorite_count": 502, "favorited": false, "retweeted": false, "lang": "en" @@ -42909,16 +42857,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -42933,16 +42881,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -42965,7 +42913,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43014,16 +42963,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -43038,16 +42987,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43070,7 +43019,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43119,16 +43069,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -43143,16 +43093,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43175,7 +43125,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43224,16 +43175,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -43248,16 +43199,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43280,7 +43231,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43329,16 +43281,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -43353,16 +43305,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43385,7 +43337,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43426,24 +43379,47 @@ "name": "Dana, Goblin Queen", "screen_name": "CrypticGoblin", "location": "", - "description": "Just a very tired woman. Plural. she/they Partners: @crazylittlebee1 @freyquency", - "url": null, + "description": "Just a very tired woman. Plural. she/they Partner: @freyquency\nhttps://t.co/UNsZzQXdCf\nVent acct: @CryptikaSystem", + "url": "https://t.co/eg5P3nq1bR", "entities": { + "url": { + "urls": [ + { + "url": "https://t.co/eg5P3nq1bR", + "expanded_url": "https://gofund.me/57aa3b01", + "display_url": "gofund.me/57aa3b01", + "indices": [ + 0, + 23 + ] + } + ] + }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/UNsZzQXdCf", + "expanded_url": "http://cash.app/Cryptika", + "display_url": "cash.app/Cryptika", + "indices": [ + 63, + 86 + ] + } + ] } }, "protected": false, - "followers_count": 1712, - "friends_count": 1908, - "listed_count": 1, + "followers_count": 1662, + "friends_count": 1944, + "listed_count": 2, "created_at": "Mon Jul 08 03:55:38 +0000 2013", - "favourites_count": 119381, + "favourites_count": 132343, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 27109, + "statuses_count": 31880, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43454,7 +43430,7 @@ "profile_background_tile": false, "profile_image_url": "http://pbs.twimg.com/profile_images/1371645875810832384/6gBhuwWr_normal.jpg", "profile_image_url_https": "https://pbs.twimg.com/profile_images/1371645875810832384/6gBhuwWr_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1576701751/1584426198", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1576701751/1622405225", "profile_link_color": "981CEB", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", @@ -43466,7 +43442,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43474,7 +43451,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 42, + "favorite_count": 41, "favorited": false, "retweeted": false, "lang": "en" @@ -43515,16 +43492,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -43539,16 +43516,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43571,7 +43548,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43620,16 +43598,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -43644,16 +43622,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43676,7 +43654,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43725,16 +43704,16 @@ "user": { "id": 820322649456844800, "id_str": "820322649456844800", - "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞", + "name": "𝓙𝓸𝓬𝓮𝓵𝔂𝓷 🏳️‍🌈 🏳️‍⚧️ ⚢💞🐢", "screen_name": "TwippingVanilla", "location": "San Diego, CA", "description": "Literally wrote a book on Gender Dysphoria. See also @CurvyAndTrans, @TwippedTech, @Twippedtronic. Avatar by @Kiwiboncafe", - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "entities": { "url": { "urls": [ { - "url": "https://t.co/wQ7PJKfWxp", + "url": "https://t.co/IhG3SZesDU", "expanded_url": "http://genderdysphoria.fyi", "display_url": "genderdysphoria.fyi", "indices": [ @@ -43749,16 +43728,16 @@ } }, "protected": false, - "followers_count": 1301, - "friends_count": 626, - "listed_count": 7, + "followers_count": 1415, + "friends_count": 288, + "listed_count": 9, "created_at": "Sat Jan 14 17:32:15 +0000 2017", - "favourites_count": 44925, + "favourites_count": 50645, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 28543, + "statuses_count": 30476, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43781,7 +43760,8 @@ "following": true, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43819,10 +43799,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -43839,20 +43819,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43861,9 +43851,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -43875,7 +43865,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43883,7 +43874,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 42, + "favorite_count": 40, "favorited": false, "retweeted": false, "lang": "en" @@ -43913,10 +43904,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -43933,20 +43924,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -43955,9 +43956,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -43969,7 +43970,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -43977,7 +43979,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 35, + "favorite_count": 34, "favorited": false, "retweeted": false, "lang": "en" @@ -44007,10 +44009,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44027,20 +44029,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44049,9 +44061,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44063,7 +44075,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44101,10 +44114,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44121,20 +44134,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44143,9 +44166,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44157,7 +44180,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44165,7 +44189,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 40, + "favorite_count": 39, "favorited": false, "retweeted": false, "lang": "en" @@ -44195,10 +44219,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44215,20 +44239,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44237,9 +44271,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44251,7 +44285,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44259,7 +44294,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 39, + "favorite_count": 38, "favorited": false, "retweeted": false, "lang": "en" @@ -44289,10 +44324,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44309,20 +44344,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44331,9 +44376,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44345,7 +44390,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44383,10 +44429,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44403,20 +44449,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44425,9 +44481,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44439,7 +44495,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44477,10 +44534,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44497,20 +44554,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44519,9 +44586,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44533,7 +44600,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44541,7 +44609,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 38, + "favorite_count": 37, "favorited": false, "retweeted": false, "lang": "en" @@ -44571,10 +44639,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44591,20 +44659,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44613,9 +44691,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44627,7 +44705,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44635,7 +44714,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 42, + "favorite_count": 41, "favorited": false, "retweeted": false, "lang": "en" @@ -44665,10 +44744,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44685,20 +44764,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44707,9 +44796,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44721,7 +44810,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44759,10 +44849,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44779,20 +44869,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44801,9 +44901,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44815,7 +44915,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44853,10 +44954,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44873,20 +44974,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44895,9 +45006,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -44909,7 +45020,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -44947,10 +45059,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -44967,20 +45079,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -44989,9 +45111,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45003,7 +45125,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45011,7 +45134,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 42, + "favorite_count": 41, "favorited": false, "retweeted": false, "lang": "en" @@ -45041,10 +45164,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45061,20 +45184,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45083,9 +45216,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45097,7 +45230,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45105,7 +45239,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 43, + "favorite_count": 42, "favorited": false, "retweeted": false, "lang": "en" @@ -45135,10 +45269,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45155,20 +45289,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45177,9 +45321,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45191,7 +45335,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45199,7 +45344,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 60, + "favorite_count": 58, "favorited": false, "retweeted": false, "lang": "en" @@ -45229,10 +45374,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45249,20 +45394,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45271,9 +45426,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45285,7 +45440,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45293,7 +45449,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 36, + "favorite_count": 35, "favorited": false, "retweeted": false, "lang": "en" @@ -45323,10 +45479,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45343,20 +45499,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45365,9 +45531,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45379,7 +45545,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45387,7 +45554,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 1, - "favorite_count": 36, + "favorite_count": 35, "favorited": false, "retweeted": false, "lang": "en" @@ -45417,10 +45584,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45437,20 +45604,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45459,9 +45636,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45473,7 +45650,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45511,10 +45689,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45531,20 +45709,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45553,9 +45741,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45567,7 +45755,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45605,10 +45794,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45625,20 +45814,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45647,9 +45846,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45661,7 +45860,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45699,10 +45899,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45719,20 +45919,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45741,9 +45951,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45755,7 +45965,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45793,10 +46004,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45813,20 +46024,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45835,9 +46056,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45849,7 +46070,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45887,10 +46109,10 @@ "user": { "id": 132378897, "id_str": "132378897", - "name": "Neovagina Evangelion (Rae O'Neil)", + "name": "Neovagina Evangelion", "screen_name": "RaeGun2k", - "location": "Halifax, NS (she/them) 🏳️‍⚧️", - "description": "Slurer of Chasers, Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. \nalt:@raegun3k", + "location": "Halifax, NS (she/them/elle) ", + "description": "Cosplayer, Lesbian MacGyver, Broken Tran On the Halifax Pier, Last of Barrett's Private Queers. Tip jar: https://t.co/4sTmQzPGre\nalt:@raegun3k", "url": "https://t.co/pcbOnk0hEl", "entities": { "url": { @@ -45907,20 +46129,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/4sTmQzPGre", + "expanded_url": "http://gofundme.com/raeface", + "display_url": "gofundme.com/raeface", + "indices": [ + 105, + 128 + ] + } + ] } }, "protected": false, - "followers_count": 3665, - "friends_count": 3119, - "listed_count": 43, + "followers_count": 3915, + "friends_count": 3338, + "listed_count": 45, "created_at": "Tue Apr 13 02:30:15 +0000 2010", - "favourites_count": 180022, + "favourites_count": 198401, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 132218, + "statuses_count": 145235, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -45929,9 +46161,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1360041110941360128/KpGaQO39_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1606442997", + "profile_image_url": "http://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1422279288590581762/xLVLrXdh_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/132378897/1627932459", "profile_link_color": "E81C4F", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "DDEEF6", @@ -45943,7 +46175,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -45983,14 +46216,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46005,16 +46238,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46023,8 +46256,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46037,15 +46270,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 16, - "favorite_count": 146, + "retweet_count": 18, + "favorite_count": 145, "favorited": false, "retweeted": false, "lang": "en" @@ -46077,14 +46311,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46099,16 +46333,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46117,8 +46351,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46131,15 +46365,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 70, + "retweet_count": 7, + "favorite_count": 73, "favorited": false, "retweeted": false, "lang": "en" @@ -46171,14 +46406,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46193,16 +46428,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46211,8 +46446,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46225,15 +46460,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 71, + "retweet_count": 3, + "favorite_count": 72, "favorited": false, "retweeted": false, "lang": "en" @@ -46343,14 +46579,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46365,16 +46601,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46383,8 +46619,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46397,15 +46633,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 14, - "favorite_count": 135, + "retweet_count": 15, + "favorite_count": 132, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -46438,14 +46675,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46460,16 +46697,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46478,8 +46715,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46492,15 +46729,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 13, - "favorite_count": 88, + "retweet_count": 16, + "favorite_count": 92, "favorited": false, "retweeted": false, "lang": "en" @@ -46610,14 +46848,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46632,16 +46870,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46650,8 +46888,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46664,15 +46902,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 67, + "retweet_count": 3, + "favorite_count": 66, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -46705,14 +46944,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46727,16 +46966,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46745,8 +46984,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46759,15 +46998,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 5, - "favorite_count": 72, + "retweet_count": 6, + "favorite_count": 73, "favorited": false, "retweeted": false, "lang": "en" @@ -46887,14 +47127,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -46909,16 +47149,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -46927,8 +47167,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -46941,15 +47181,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 77, + "retweet_count": 8, + "favorite_count": 80, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -46982,14 +47223,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47004,16 +47245,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47022,8 +47263,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47036,15 +47277,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 17, - "favorite_count": 94, + "retweet_count": 23, + "favorite_count": 102, "favorited": false, "retweeted": false, "lang": "en" @@ -47076,14 +47318,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47098,16 +47340,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47116,8 +47358,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47130,15 +47372,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 13, - "favorite_count": 78, + "retweet_count": 14, + "favorite_count": 80, "favorited": false, "retweeted": false, "lang": "en" @@ -47248,14 +47491,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47270,16 +47513,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47288,8 +47531,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47302,15 +47545,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 9, - "favorite_count": 79, + "retweet_count": 10, + "favorite_count": 80, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -47343,14 +47587,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47365,16 +47609,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47383,8 +47627,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47397,15 +47641,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 7, - "favorite_count": 135, + "retweet_count": 8, + "favorite_count": 140, "favorited": false, "retweeted": false, "lang": "en" @@ -47437,14 +47682,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47459,16 +47704,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47477,8 +47722,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47491,15 +47736,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 52, - "favorite_count": 239, + "retweet_count": 55, + "favorite_count": 242, "favorited": false, "retweeted": false, "lang": "en" @@ -47541,14 +47787,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47563,16 +47809,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47581,8 +47827,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47595,15 +47841,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 14, - "favorite_count": 153, + "retweet_count": 16, + "favorite_count": 152, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -47714,14 +47961,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47736,16 +47983,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47754,8 +48001,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47768,15 +48015,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 14, - "favorite_count": 141, + "retweet_count": 15, + "favorite_count": 139, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -47897,14 +48145,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -47919,16 +48167,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -47937,8 +48185,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -47951,15 +48199,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 69, + "retweet_count": 4, + "favorite_count": 70, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -48002,14 +48251,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -48024,16 +48273,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -48042,8 +48291,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -48056,7 +48305,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -48070,8 +48320,180 @@ "expanded": "https://twitter.com/two_n_minus_one/status/1351355676992290816?s=19", "display": "twitter.com/two_n_minus_on…" }, - "retweet_count": 8, - "favorite_count": 119, + "quoted_status": { + "created_at": "Tue Jan 19 02:27:55 +0000 2021", + "id": 1351355676992290800, + "id_str": "1351355676992290816", + "full_text": "@Chican3ry i know intellectually that this flavor of wording is probably more or less typical for the time, but i still can't help reading a malevolence here. \"what we really need is a sweet new way to do lobotomies\" https://t.co/k6XKea7qNl", + "truncated": false, + "display_text_range": [ + 11, + 216 + ], + "entities": { + "hashtags": [], + "symbols": [], + "user_mentions": [ + { + "screen_name": "Chican3ry", + "name": "Mallory Moore", + "id": 410151321, + "id_str": "410151321", + "indices": [ + 0, + 10 + ] + } + ], + "urls": [], + "media": [ + { + "id": 1351355050690441200, + "id_str": "1351355050690441216", + "indices": [ + 217, + 240 + ], + "media_url": "http://pbs.twimg.com/media/EsD6QkHVcAAEUIN.jpg", + "media_url_https": "https://pbs.twimg.com/media/EsD6QkHVcAAEUIN.jpg", + "url": "https://t.co/k6XKea7qNl", + "display_url": "pic.twitter.com/k6XKea7qNl", + "expanded_url": "https://twitter.com/two_n_minus_one/status/1351355676992290816/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 1200, + "h": 150, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 85, + "resize": "fit" + }, + "large": { + "w": 1773, + "h": 222, + "resize": "fit" + } + } + } + ] + }, + "extended_entities": { + "media": [ + { + "id": 1351355050690441200, + "id_str": "1351355050690441216", + "indices": [ + 217, + 240 + ], + "media_url": "http://pbs.twimg.com/media/EsD6QkHVcAAEUIN.jpg", + "media_url_https": "https://pbs.twimg.com/media/EsD6QkHVcAAEUIN.jpg", + "url": "https://t.co/k6XKea7qNl", + "display_url": "pic.twitter.com/k6XKea7qNl", + "expanded_url": "https://twitter.com/two_n_minus_one/status/1351355676992290816/photo/1", + "type": "photo", + "sizes": { + "thumb": { + "w": 150, + "h": 150, + "resize": "crop" + }, + "medium": { + "w": 1200, + "h": 150, + "resize": "fit" + }, + "small": { + "w": 680, + "h": 85, + "resize": "fit" + }, + "large": { + "w": 1773, + "h": 222, + "resize": "fit" + } + } + } + ] + }, + "source": "Twitter Web App", + "in_reply_to_status_id": 1351354176178188300, + "in_reply_to_status_id_str": "1351354176178188288", + "in_reply_to_user_id": 410151321, + "in_reply_to_user_id_str": "410151321", + "in_reply_to_screen_name": "Chican3ry", + "user": { + "id": 488142405, + "id_str": "488142405", + "name": "Melissa Dahn (odds)", + "screen_name": "two_n_minus_one", + "location": "Treaty 7 Lands (Calgary, AB)", + "description": "autistic transfeminist. OCD, ADHD, BPD haver. \nBA. Sociology, BSc. CompSci.\nshinies enthusiast. aspiring ⚪️ race traitor.\nshe/fae/her \n🧠♿️ 🏳️‍🌈🏳️‍⚧️☭", + "url": null, + "entities": { + "description": { + "urls": [] + } + }, + "protected": false, + "followers_count": 1814, + "friends_count": 1441, + "listed_count": 6, + "created_at": "Fri Feb 10 04:01:07 +0000 2012", + "favourites_count": 78930, + "utc_offset": null, + "time_zone": null, + "geo_enabled": false, + "verified": false, + "statuses_count": 11285, + "lang": null, + "contributors_enabled": false, + "is_translator": false, + "is_translation_enabled": false, + "profile_background_color": "000000", + "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", + "profile_background_tile": false, + "profile_image_url": "http://pbs.twimg.com/profile_images/1375296383360462848/kYeqpl2x_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1375296383360462848/kYeqpl2x_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/488142405/1611201192", + "profile_link_color": "DD2E44", + "profile_sidebar_border_color": "000000", + "profile_sidebar_fill_color": "000000", + "profile_text_color": "000000", + "profile_use_background_image": false, + "has_extended_profile": true, + "default_profile": false, + "default_profile_image": false, + "following": false, + "follow_request_sent": false, + "notifications": false, + "translator_type": "none", + "withheld_in_countries": [] + }, + "geo": null, + "coordinates": null, + "place": null, + "contributors": null, + "is_quote_status": false, + "retweet_count": 0, + "favorite_count": 12, + "favorited": false, + "retweeted": false, + "possibly_sensitive": false, + "lang": "en" + }, + "retweet_count": 10, + "favorite_count": 117, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -48104,14 +48526,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -48126,16 +48548,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -48144,8 +48566,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -48158,15 +48580,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 13, - "favorite_count": 81, + "retweet_count": 14, + "favorite_count": 83, "favorited": false, "retweeted": false, "lang": "en" @@ -48198,14 +48621,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -48220,16 +48643,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -48238,8 +48661,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -48252,15 +48675,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 99, + "retweet_count": 3, + "favorite_count": 102, "favorited": false, "retweeted": false, "lang": "en" @@ -48292,14 +48716,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -48314,16 +48738,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -48332,8 +48756,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -48346,15 +48770,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 15, - "favorite_count": 141, + "retweet_count": 18, + "favorite_count": 144, "favorited": false, "retweeted": false, "lang": "en" @@ -48464,14 +48889,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -48486,16 +48911,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -48504,8 +48929,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -48518,15 +48943,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 5, - "favorite_count": 82, + "retweet_count": 6, + "favorite_count": 81, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -48637,14 +49063,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -48659,16 +49085,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -48677,8 +49103,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -48691,15 +49117,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 5, - "favorite_count": 102, + "retweet_count": 6, + "favorite_count": 103, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -48810,14 +49237,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -48832,16 +49259,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -48850,8 +49277,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -48864,15 +49291,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 12, - "favorite_count": 119, + "retweet_count": 13, + "favorite_count": 114, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -48983,14 +49411,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49005,16 +49433,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49023,8 +49451,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49037,15 +49465,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 10, - "favorite_count": 157, + "retweet_count": 11, + "favorite_count": 154, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -49078,14 +49507,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49100,16 +49529,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49118,8 +49547,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49132,15 +49561,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 65, + "retweet_count": 3, + "favorite_count": 64, "favorited": false, "retweeted": false, "lang": "en" @@ -49250,14 +49680,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49272,16 +49702,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49290,8 +49720,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49304,15 +49734,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 35, - "favorite_count": 225, + "retweet_count": 39, + "favorite_count": 220, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -49423,14 +49854,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49445,16 +49876,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49463,8 +49894,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49477,14 +49908,15 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 36, + "retweet_count": 37, "favorite_count": 178, "favorited": false, "retweeted": false, @@ -49596,14 +50028,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49618,16 +50050,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49636,8 +50068,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49650,15 +50082,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 2, - "favorite_count": 71, + "retweet_count": 3, + "favorite_count": 73, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -49691,14 +50124,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49713,16 +50146,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49731,8 +50164,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49745,15 +50178,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 84, + "retweet_count": 4, + "favorite_count": 87, "favorited": false, "retweeted": false, "lang": "en" @@ -49785,14 +50219,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49807,16 +50241,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49825,8 +50259,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49839,15 +50273,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 24, - "favorite_count": 169, + "retweet_count": 26, + "favorite_count": 170, "favorited": false, "retweeted": false, "lang": "en" @@ -49879,14 +50314,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -49901,16 +50336,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -49919,8 +50354,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -49933,15 +50368,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, - "favorite_count": 89, + "retweet_count": 5, + "favorite_count": 92, "favorited": false, "retweeted": false, "lang": "en" @@ -50051,14 +50487,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -50073,16 +50509,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -50091,8 +50527,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -50105,14 +50541,15 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 9, + "retweet_count": 10, "favorite_count": 109, "favorited": false, "retweeted": false, @@ -50224,14 +50661,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -50246,16 +50683,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -50264,8 +50701,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -50278,15 +50715,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 240, - "favorite_count": 609, + "retweet_count": 243, + "favorite_count": 601, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -50397,14 +50835,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -50419,16 +50857,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -50437,8 +50875,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -50451,14 +50889,15 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 3, + "retweet_count": 4, "favorite_count": 66, "favorited": false, "retweeted": false, @@ -50492,14 +50931,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -50514,16 +50953,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -50532,8 +50971,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -50546,15 +50985,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1, - "favorite_count": 92, + "retweet_count": 2, + "favorite_count": 93, "favorited": false, "retweeted": false, "lang": "en" @@ -50664,14 +51104,14 @@ "id_str": "410151321", "name": "Mallory Moore", "screen_name": "Chican3ry", - "location": "MCR", - "description": "No Borders, No Cops, No Binaries.\n\nAbolition.", - "url": "https://t.co/AQoBvpsMYO", + "location": "Mcr", + "description": "Researcher on organised harm directed at the trans community in the UK.\n\nAn injury to one is an injury to all.\n\nYou probably need more feminism.\n\nⒶ🌐", + "url": "https://t.co/OWq3gRU2xA", "entities": { "url": { "urls": [ { - "url": "https://t.co/AQoBvpsMYO", + "url": "https://t.co/OWq3gRU2xA", "expanded_url": "https://medium.com/@Chican3ry/ground-rules-for-trans-transantagonistic-discourse-286ffbc94c14", "display_url": "medium.com/@Chican3ry/gro…", "indices": [ @@ -50686,16 +51126,16 @@ } }, "protected": false, - "followers_count": 4974, - "friends_count": 1837, - "listed_count": 39, + "followers_count": 6833, + "friends_count": 2113, + "listed_count": 48, "created_at": "Fri Nov 11 18:18:36 +0000 2011", - "favourites_count": 193800, + "favourites_count": 215752, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 139881, + "statuses_count": 159412, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -50704,8 +51144,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme18/bg.gif", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1336822365385338884/mpbYIwwK_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1390379478627536900/OYI2did1_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/410151321/1603932047", "profile_link_color": "981CEB", "profile_sidebar_border_color": "FFFFFF", @@ -50718,15 +51158,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 6, - "favorite_count": 74, + "retweet_count": 8, + "favorite_count": 78, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -50748,7 +51189,7 @@ "user_mentions": [ { "screen_name": "Chican3ry", - "name": "Mallory Moore (3 A-levels, licensed radio ham)", + "name": "Mallory Moore", "id": 410151321, "id_str": "410151321", "indices": [ @@ -50846,40 +51287,27 @@ "user": { "id": 488142405, "id_str": "488142405", - "name": "odds", + "name": "Melissa Dahn (odds)", "screen_name": "two_n_minus_one", "location": "Treaty 7 Lands (Calgary, AB)", - "description": "30. autistic intersectional commie transbian. on land of the Blackfoot Confederacy. i used to play bowser. banner: @theaaronschmit\n\nBlack lives matter.\n\nshe/her", - "url": "https://t.co/sCbBx99g3o", + "description": "autistic transfeminist. OCD, ADHD, BPD haver. \nBA. Sociology, BSc. CompSci.\nshinies enthusiast. aspiring ⚪️ race traitor.\nshe/fae/her \n🧠♿️ 🏳️‍🌈🏳️‍⚧️☭", + "url": null, "entities": { - "url": { - "urls": [ - { - "url": "https://t.co/sCbBx99g3o", - "expanded_url": "https://melissadahn.substack.com/", - "display_url": "melissadahn.substack.com", - "indices": [ - 0, - 23 - ] - } - ] - }, "description": { "urls": [] } }, "protected": false, - "followers_count": 1030, - "friends_count": 1489, - "listed_count": 3, + "followers_count": 1814, + "friends_count": 1441, + "listed_count": 6, "created_at": "Fri Feb 10 04:01:07 +0000 2012", - "favourites_count": 29160, + "favourites_count": 78930, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 9858, + "statuses_count": 11285, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -50888,21 +51316,22 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1308523945860034560/bdwlyJVz_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1308523945860034560/bdwlyJVz_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/488142405/1610518790", + "profile_image_url": "http://pbs.twimg.com/profile_images/1375296383360462848/kYeqpl2x_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1375296383360462848/kYeqpl2x_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/488142405/1611201192", "profile_link_color": "DD2E44", "profile_sidebar_border_color": "000000", "profile_sidebar_fill_color": "000000", "profile_text_color": "000000", "profile_use_background_image": false, - "has_extended_profile": false, + "has_extended_profile": true, "default_profile": false, "default_profile_image": false, "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -50910,7 +51339,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 8, + "favorite_count": 12, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -50932,7 +51361,7 @@ "user_mentions": [ { "screen_name": "salenby", - "name": "Salem", + "name": "Salem | Free Palestine", "id": 795115841868230700, "id_str": "795115841868230656", "indices": [ @@ -50942,7 +51371,7 @@ }, { "screen_name": "chaoticgaythey", - "name": "The gayest ey around טל", + "name": "Max Has Nightmare Eyes", "id": 1148435566012379100, "id_str": "1148435566012379136", "indices": [ @@ -50962,40 +51391,27 @@ "user": { "id": 1177428263943266300, "id_str": "1177428263943266305", - "name": "Adam Fortune", + "name": "Adam, the ever curious mf'er", "screen_name": "AFortune69", - "location": "North Carolina", - "description": "🌈 🏳️‍⚧️ Sometimes a storyteller, mostly a reader. Opinionated cockapert with a deep love of hockey, muscle cars, and saucy conversation. Veteran ⚓ DM's open", - "url": "https://t.co/isQ13tLYb7", + "location": "Mostly stuck in my head. ", + "description": "Salty, sometimes sweet, sometimes just a PITA. Veteran⚓, husband, dad, and sometimes writer. Queer AF, feminist, horrible gardener.", + "url": null, "entities": { - "url": { - "urls": [ - { - "url": "https://t.co/isQ13tLYb7", - "expanded_url": "https://www.gofundme.com/f/help-make-adam-feel-alive?utm_medium=copy_link&utm_source=customer&utm_ca", - "display_url": "gofundme.com/f/help-make-ad…", - "indices": [ - 0, - 23 - ] - } - ] - }, "description": { "urls": [] } }, "protected": false, - "followers_count": 772, - "friends_count": 463, - "listed_count": 7, + "followers_count": 845, + "friends_count": 564, + "listed_count": 4, "created_at": "Fri Sep 27 03:43:00 +0000 2019", - "favourites_count": 27696, + "favourites_count": 40146, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 21765, + "statuses_count": 28406, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -51004,9 +51420,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1375484090871390210/2iMkMljH_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1375484090871390210/2iMkMljH_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1177428263943266305/1612208136", + "profile_image_url": "http://pbs.twimg.com/profile_images/1417615832608280584/eJgq8wpm_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1417615832608280584/eJgq8wpm_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1177428263943266305/1626820927", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -51018,7 +51434,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -51045,19 +51462,9 @@ "hashtags": [], "symbols": [], "user_mentions": [ - { - "screen_name": "beee_dl", - "name": "Dai", - "id": 1097336461429338100, - "id_str": "1097336461429338119", - "indices": [ - 0, - 8 - ] - }, { "screen_name": "salenby", - "name": "Salem", + "name": "Salem | Free Palestine", "id": 795115841868230700, "id_str": "795115841868230656", "indices": [ @@ -51073,14 +51480,14 @@ "in_reply_to_status_id_str": "1374044780754178053", "in_reply_to_user_id": 1097336461429338100, "in_reply_to_user_id_str": "1097336461429338119", - "in_reply_to_screen_name": "beee_dl", + "in_reply_to_screen_name": "ShockofBlue", "user": { "id": 884465705588064300, "id_str": "884465705588064260", - "name": "Elijah ★ (He/Him 🏳️‍⚧️ Bug/Bugself)", + "name": "Elijah ★ (🏳️‍⚧️ Bug/Bugself🏳️‍⚧️)", "screen_name": "crypticenbug", "location": "", - "description": "17 • Read pinned before you follow • 🍄🔪🦎🐌🐛🪐🏳️‍⚧️ 🏳️‍🌈 • Gendervague Trans Man • autistic and hypermobile • he/him and bug/bugself • white • singlet", + "description": "17 • Read pinned before you follow • 🍄🔪🦎🐌🐛🪐🏳️‍⚧️ 🏳️‍🌈 • Gendervague Trans Man • autistic and hypermobile • bug/bugself • white • singlet", "url": "https://t.co/Zxp04TDhq3", "entities": { "url": { @@ -51101,16 +51508,16 @@ } }, "protected": false, - "followers_count": 69, - "friends_count": 138, - "listed_count": 2, + "followers_count": 90, + "friends_count": 140, + "listed_count": 1, "created_at": "Mon Jul 10 17:33:51 +0000 2017", - "favourites_count": 10994, + "favourites_count": 11330, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 4225, + "statuses_count": 4539, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -51133,7 +51540,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -51162,7 +51570,7 @@ "user_mentions": [ { "screen_name": "salenby", - "name": "Salem", + "name": "Salem | Free Palestine", "id": 795115841868230700, "id_str": "795115841868230656", "indices": [ @@ -51172,7 +51580,7 @@ }, { "screen_name": "chaoticgaythey", - "name": "The gayest ey around טל", + "name": "Max Has Nightmare Eyes", "id": 1148435566012379100, "id_str": "1148435566012379136", "indices": [ @@ -51192,40 +51600,27 @@ "user": { "id": 1177428263943266300, "id_str": "1177428263943266305", - "name": "Adam Fortune", + "name": "Adam, the ever curious mf'er", "screen_name": "AFortune69", - "location": "North Carolina", - "description": "🌈 🏳️‍⚧️ Sometimes a storyteller, mostly a reader. Opinionated cockapert with a deep love of hockey, muscle cars, and saucy conversation. Veteran ⚓ DM's open", - "url": "https://t.co/isQ13tLYb7", + "location": "Mostly stuck in my head. ", + "description": "Salty, sometimes sweet, sometimes just a PITA. Veteran⚓, husband, dad, and sometimes writer. Queer AF, feminist, horrible gardener.", + "url": null, "entities": { - "url": { - "urls": [ - { - "url": "https://t.co/isQ13tLYb7", - "expanded_url": "https://www.gofundme.com/f/help-make-adam-feel-alive?utm_medium=copy_link&utm_source=customer&utm_ca", - "display_url": "gofundme.com/f/help-make-ad…", - "indices": [ - 0, - 23 - ] - } - ] - }, "description": { "urls": [] } }, "protected": false, - "followers_count": 772, - "friends_count": 463, - "listed_count": 7, + "followers_count": 845, + "friends_count": 564, + "listed_count": 4, "created_at": "Fri Sep 27 03:43:00 +0000 2019", - "favourites_count": 27696, + "favourites_count": 40146, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 21765, + "statuses_count": 28406, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -51234,9 +51629,9 @@ "profile_background_image_url": null, "profile_background_image_url_https": null, "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1375484090871390210/2iMkMljH_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1375484090871390210/2iMkMljH_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/1177428263943266305/1612208136", + "profile_image_url": "http://pbs.twimg.com/profile_images/1417615832608280584/eJgq8wpm_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1417615832608280584/eJgq8wpm_normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/1177428263943266305/1626820927", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -51248,7 +51643,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -51256,7 +51652,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 69, + "favorite_count": 66, "favorited": false, "retweeted": false, "lang": "en" @@ -51277,7 +51673,7 @@ "user_mentions": [ { "screen_name": "salenby", - "name": "Salem", + "name": "Salem | Free Palestine", "id": 795115841868230700, "id_str": "795115841868230656", "indices": [ @@ -51300,7 +51696,7 @@ "name": "Blotchkat", "screen_name": "blotchkat", "location": "", - "description": "Bigender Genderfluid They/Them\nGendered Terms are for friends only\nT4T I only talk about Trans stuff and being Neurodivergent", + "description": "Bigender Genderfluid They/Them TME T4T", "url": null, "entities": { "description": { @@ -51308,16 +51704,16 @@ } }, "protected": false, - "followers_count": 981, - "friends_count": 245, - "listed_count": 4, + "followers_count": 1093, + "friends_count": 263, + "listed_count": 5, "created_at": "Tue Jul 02 22:21:22 +0000 2013", - "favourites_count": 39156, + "favourites_count": 46484, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 16783, + "statuses_count": 21710, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -51326,8 +51722,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1355355139058630658/EyIKmigj_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1355355139058630658/EyIKmigj_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429460592817999877/KqNKVHyW_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429460592817999877/KqNKVHyW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564214166/1616763638", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", @@ -51340,7 +51736,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -51348,7 +51745,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 91, + "favorite_count": 88, "favorited": false, "retweeted": false, "lang": "en" @@ -51369,7 +51766,7 @@ "user_mentions": [ { "screen_name": "salenby", - "name": "Salem", + "name": "Salem | Free Palestine", "id": 795115841868230700, "id_str": "795115841868230656", "indices": [ @@ -51392,7 +51789,7 @@ "name": "Blotchkat", "screen_name": "blotchkat", "location": "", - "description": "Bigender Genderfluid They/Them\nGendered Terms are for friends only\nT4T I only talk about Trans stuff and being Neurodivergent", + "description": "Bigender Genderfluid They/Them TME T4T", "url": null, "entities": { "description": { @@ -51400,16 +51797,16 @@ } }, "protected": false, - "followers_count": 981, - "friends_count": 245, - "listed_count": 4, + "followers_count": 1093, + "friends_count": 263, + "listed_count": 5, "created_at": "Tue Jul 02 22:21:22 +0000 2013", - "favourites_count": 39156, + "favourites_count": 46484, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 16783, + "statuses_count": 21710, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -51418,8 +51815,8 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/1355355139058630658/EyIKmigj_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/1355355139058630658/EyIKmigj_normal.jpg", + "profile_image_url": "http://pbs.twimg.com/profile_images/1429460592817999877/KqNKVHyW_normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1429460592817999877/KqNKVHyW_normal.jpg", "profile_banner_url": "https://pbs.twimg.com/profile_banners/1564214166/1616763638", "profile_link_color": "1DA1F2", "profile_sidebar_border_color": "C0DEED", @@ -51432,7 +51829,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -51440,7 +51838,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 71, + "favorite_count": 70, "favorited": false, "retweeted": false, "lang": "en" @@ -51566,7 +51964,7 @@ "user_mentions": [ { "screen_name": "salenby", - "name": "Salem", + "name": "Salem | Free Palestine", "id": 795115841868230700, "id_str": "795115841868230656", "indices": [ @@ -51597,16 +51995,16 @@ } }, "protected": false, - "followers_count": 77, - "friends_count": 460, + "followers_count": 81, + "friends_count": 453, "listed_count": 0, "created_at": "Sat Jan 21 20:54:40 +0000 2017", - "favourites_count": 8970, + "favourites_count": 11350, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 8151, + "statuses_count": 10098, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -51629,7 +52027,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -51938,16 +52337,16 @@ } }, "protected": false, - "followers_count": 1756, - "friends_count": 1481, - "listed_count": 5, + "followers_count": 2024, + "friends_count": 1678, + "listed_count": 13, "created_at": "Sat Sep 19 07:51:06 +0000 2015", - "favourites_count": 169209, + "favourites_count": 216479, "utc_offset": null, "time_zone": null, "geo_enabled": false, "verified": false, - "statuses_count": 62653, + "statuses_count": 71559, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -51969,15 +52368,16 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, "place": null, "contributors": null, "is_quote_status": false, - "retweet_count": 1, - "favorite_count": 40, + "retweet_count": 2, + "favorite_count": 55, "favorited": false, "retweeted": false, "possibly_sensitive": false, @@ -52032,13 +52432,13 @@ "name": "Alex Farebrother-Naylor ✨commissions open✨", "screen_name": "naylorillo", "location": "London", - "description": "Alex Farebrother-Naylor, alias Alex Naylor. Illustrator, film and media scholar, twin wrangler, middle-aged queer, she/hers, full of coffee.", - "url": "https://t.co/k5sGQO96cD", + "description": "Illustrator, mapmaker, twin wrangler, middle-aged queer, she/hers, full of coffee. Maps in The Queer Bible, out now: https://t.co/5hdNT2l8PL", + "url": "https://t.co/AEVDpnI8MX", "entities": { "url": { "urls": [ { - "url": "https://t.co/k5sGQO96cD", + "url": "https://t.co/AEVDpnI8MX", "expanded_url": "http://alexfarebrothernaylor.com", "display_url": "alexfarebrothernaylor.com", "indices": [ @@ -52049,20 +52449,30 @@ ] }, "description": { - "urls": [] + "urls": [ + { + "url": "https://t.co/5hdNT2l8PL", + "expanded_url": "http://smarturl.it/TheQueerBible", + "display_url": "smarturl.it/TheQueerBible", + "indices": [ + 117, + 140 + ] + } + ] } }, "protected": false, - "followers_count": 258, - "friends_count": 617, + "followers_count": 296, + "friends_count": 693, "listed_count": 7, "created_at": "Wed Aug 10 13:11:59 +0000 2011", - "favourites_count": 22181, + "favourites_count": 28096, "utc_offset": null, "time_zone": null, "geo_enabled": true, "verified": false, - "statuses_count": 3088, + "statuses_count": 3549, "lang": null, "contributors_enabled": false, "is_translator": false, @@ -52071,9 +52481,9 @@ "profile_background_image_url": "http://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_image_url_https": "https://abs.twimg.com/images/themes/theme1/bg.png", "profile_background_tile": false, - "profile_image_url": "http://pbs.twimg.com/profile_images/688111563312517120/W2LXCT2X_normal.jpg", - "profile_image_url_https": "https://pbs.twimg.com/profile_images/688111563312517120/W2LXCT2X_normal.jpg", - "profile_banner_url": "https://pbs.twimg.com/profile_banners/352320103/1452893304", + "profile_image_url": "http://pbs.twimg.com/profile_images/1407638307031420933/p_7XtfV__normal.jpg", + "profile_image_url_https": "https://pbs.twimg.com/profile_images/1407638307031420933/p_7XtfV__normal.jpg", + "profile_banner_url": "https://pbs.twimg.com/profile_banners/352320103/1624442200", "profile_link_color": "19CF86", "profile_sidebar_border_color": "C0DEED", "profile_sidebar_fill_color": "DDEEF6", @@ -52085,7 +52495,8 @@ "following": false, "follow_request_sent": false, "notifications": false, - "translator_type": "none" + "translator_type": "none", + "withheld_in_countries": [] }, "geo": null, "coordinates": null, @@ -52093,7 +52504,7 @@ "contributors": null, "is_quote_status": false, "retweet_count": 0, - "favorite_count": 1, + "favorite_count": 3, "favorited": false, "retweeted": false, "lang": "en" diff --git a/twitter-entities/1025590255733366784/Djugv7jWwAAGVVM.jpg b/twitter-entities/1025590255733366784/Djugv7jWwAAGVVM.jpg new file mode 100644 index 0000000..bebeef8 Binary files /dev/null and b/twitter-entities/1025590255733366784/Djugv7jWwAAGVVM.jpg differ diff --git a/twitter-entities/1025590255733366784/Djugv7jXcAA8scb.jpg b/twitter-entities/1025590255733366784/Djugv7jXcAA8scb.jpg new file mode 100644 index 0000000..d8ffd04 Binary files /dev/null and b/twitter-entities/1025590255733366784/Djugv7jXcAA8scb.jpg differ diff --git a/twitter-entities/1025590255733366784/Djugv7lW0AAq52Z.jpg b/twitter-entities/1025590255733366784/Djugv7lW0AAq52Z.jpg new file mode 100644 index 0000000..3771ee4 Binary files /dev/null and b/twitter-entities/1025590255733366784/Djugv7lW0AAq52Z.jpg differ diff --git a/twitter-entities/1046808859074080768/DocC-j8XgAgXutl.jpg b/twitter-entities/1046808859074080768/DocC-j8XgAgXutl.jpg new file mode 100644 index 0000000..b0a64ad Binary files /dev/null and b/twitter-entities/1046808859074080768/DocC-j8XgAgXutl.jpg differ diff --git a/twitter-entities/1092180584653381632/Dyg0IXMXQAAgrig.jpg b/twitter-entities/1092180584653381632/Dyg0IXMXQAAgrig.jpg new file mode 100644 index 0000000..0504c94 Binary files /dev/null and b/twitter-entities/1092180584653381632/Dyg0IXMXQAAgrig.jpg differ diff --git a/twitter-entities/1094677550486310917/DzETBhQUYAAWJSc.jpg b/twitter-entities/1094677550486310917/DzETBhQUYAAWJSc.jpg new file mode 100644 index 0000000..5744771 Binary files /dev/null and b/twitter-entities/1094677550486310917/DzETBhQUYAAWJSc.jpg differ diff --git a/twitter-entities/1094678128335568896/DzETp3jU0AA1F26.jpg b/twitter-entities/1094678128335568896/DzETp3jU0AA1F26.jpg new file mode 100644 index 0000000..a0de852 Binary files /dev/null and b/twitter-entities/1094678128335568896/DzETp3jU0AA1F26.jpg differ diff --git a/twitter-entities/1094683008919957504/DzEYN-7VYAAgq1Y.jpg b/twitter-entities/1094683008919957504/DzEYN-7VYAAgq1Y.jpg new file mode 100644 index 0000000..685c277 Binary files /dev/null and b/twitter-entities/1094683008919957504/DzEYN-7VYAAgq1Y.jpg differ diff --git a/twitter-entities/1094687092871880705/DzEbX1AUwAA157v.jpg b/twitter-entities/1094687092871880705/DzEbX1AUwAA157v.jpg new file mode 100644 index 0000000..aac0e9b Binary files /dev/null and b/twitter-entities/1094687092871880705/DzEbX1AUwAA157v.jpg differ diff --git a/twitter-entities/1094717735974490112/DzE38mUUcAAAAWN.jpg b/twitter-entities/1094717735974490112/DzE38mUUcAAAAWN.jpg new file mode 100644 index 0000000..ea6028b Binary files /dev/null and b/twitter-entities/1094717735974490112/DzE38mUUcAAAAWN.jpg differ diff --git a/twitter-entities/1094730604501848064/DzFDbTwV4AAFFFh.jpg b/twitter-entities/1094730604501848064/DzFDbTwV4AAFFFh.jpg new file mode 100644 index 0000000..d46a5b1 Binary files /dev/null and b/twitter-entities/1094730604501848064/DzFDbTwV4AAFFFh.jpg differ diff --git a/twitter-entities/1162051481656266760/ECBvqZnW4Agg00A.png b/twitter-entities/1162051481656266760/ECBvqZnW4Agg00A.png new file mode 100644 index 0000000..b5e530b Binary files /dev/null and b/twitter-entities/1162051481656266760/ECBvqZnW4Agg00A.png differ diff --git a/twitter-entities/1214536380501524481/ENrmY-hU8AET_25.jpg b/twitter-entities/1214536380501524481/ENrmY-hU8AET_25.jpg new file mode 100644 index 0000000..b20638a Binary files /dev/null and b/twitter-entities/1214536380501524481/ENrmY-hU8AET_25.jpg differ diff --git a/twitter-entities/1228717614630940672/EQ1IKINWkAAllKR.jpg b/twitter-entities/1228717614630940672/EQ1IKINWkAAllKR.jpg new file mode 100644 index 0000000..00a1edb Binary files /dev/null and b/twitter-entities/1228717614630940672/EQ1IKINWkAAllKR.jpg differ diff --git a/twitter-entities/1232817112139341824/rY9vCIuJrqOn2kiH.jpg b/twitter-entities/1232817112139341824/rY9vCIuJrqOn2kiH.jpg new file mode 100644 index 0000000..22f6983 Binary files /dev/null and b/twitter-entities/1232817112139341824/rY9vCIuJrqOn2kiH.jpg differ diff --git a/twitter-entities/1235235759721979906/ESRuPAHWoAA0WVi.png b/twitter-entities/1235235759721979906/ESRuPAHWoAA0WVi.png new file mode 100644 index 0000000..563d7b7 Binary files /dev/null and b/twitter-entities/1235235759721979906/ESRuPAHWoAA0WVi.png differ diff --git a/twitter-entities/1235771137164009474/ESZXRt_X0AAbHrS.png b/twitter-entities/1235771137164009474/ESZXRt_X0AAbHrS.png new file mode 100644 index 0000000..4e74abd Binary files /dev/null and b/twitter-entities/1235771137164009474/ESZXRt_X0AAbHrS.png differ diff --git a/twitter-entities/1286504315960438784/EdqUVvHUMAE-0jk.png b/twitter-entities/1286504315960438784/EdqUVvHUMAE-0jk.png new file mode 100644 index 0000000..9c8dcf7 Binary files /dev/null and b/twitter-entities/1286504315960438784/EdqUVvHUMAE-0jk.png differ diff --git a/twitter-entities/1351347418332278785/EsDzUBtXIAANJUQ.jpg b/twitter-entities/1351347418332278785/EsDzUBtXIAANJUQ.jpg new file mode 100644 index 0000000..f709fb3 Binary files /dev/null and b/twitter-entities/1351347418332278785/EsDzUBtXIAANJUQ.jpg differ diff --git a/twitter-entities/1351349705071087616/EsD1ZOBXAAM3N4L.jpg b/twitter-entities/1351349705071087616/EsD1ZOBXAAM3N4L.jpg new file mode 100644 index 0000000..f777818 Binary files /dev/null and b/twitter-entities/1351349705071087616/EsD1ZOBXAAM3N4L.jpg differ diff --git a/twitter-entities/1351352097179107330/EsD3kb1XUAU0Awa.jpg b/twitter-entities/1351352097179107330/EsD3kb1XUAU0Awa.jpg new file mode 100644 index 0000000..d75e1ab Binary files /dev/null and b/twitter-entities/1351352097179107330/EsD3kb1XUAU0Awa.jpg differ diff --git a/twitter-entities/1351354176178188288/EsD5dbsXAAE09up.jpg b/twitter-entities/1351354176178188288/EsD5dbsXAAE09up.jpg new file mode 100644 index 0000000..0c4b846 Binary files /dev/null and b/twitter-entities/1351354176178188288/EsD5dbsXAAE09up.jpg differ diff --git a/twitter-entities/1351355625779961858/EsD6x0UXAAYTGpw.jpg b/twitter-entities/1351355625779961858/EsD6x0UXAAYTGpw.jpg new file mode 100644 index 0000000..e83a34b Binary files /dev/null and b/twitter-entities/1351355625779961858/EsD6x0UXAAYTGpw.jpg differ diff --git a/twitter-entities/1351355676992290816/EsD6QkHVcAAEUIN.jpg b/twitter-entities/1351355676992290816/EsD6QkHVcAAEUIN.jpg new file mode 100644 index 0000000..1138709 Binary files /dev/null and b/twitter-entities/1351355676992290816/EsD6QkHVcAAEUIN.jpg differ diff --git a/twitter-entities/1351358737513123844/EsD9m5JXAAMxDRR.jpg b/twitter-entities/1351358737513123844/EsD9m5JXAAMxDRR.jpg new file mode 100644 index 0000000..26de214 Binary files /dev/null and b/twitter-entities/1351358737513123844/EsD9m5JXAAMxDRR.jpg differ diff --git a/twitter-entities/1351361678257041410/EsEASKzXEAUqrPV.jpg b/twitter-entities/1351361678257041410/EsEASKzXEAUqrPV.jpg new file mode 100644 index 0000000..ec1405b Binary files /dev/null and b/twitter-entities/1351361678257041410/EsEASKzXEAUqrPV.jpg differ diff --git a/twitter-entities/1351362749008326656/EsEBQhDXAAECUBf.jpg b/twitter-entities/1351362749008326656/EsEBQhDXAAECUBf.jpg new file mode 100644 index 0000000..8c3f7a3 Binary files /dev/null and b/twitter-entities/1351362749008326656/EsEBQhDXAAECUBf.jpg differ diff --git a/twitter-entities/1351370831226679299/EsEIm6jXUAInGWh.jpg b/twitter-entities/1351370831226679299/EsEIm6jXUAInGWh.jpg new file mode 100644 index 0000000..cb3ed1c Binary files /dev/null and b/twitter-entities/1351370831226679299/EsEIm6jXUAInGWh.jpg differ diff --git a/twitter-entities/1351371644145721344/EsEJWRdXMAAOtzb.jpg b/twitter-entities/1351371644145721344/EsEJWRdXMAAOtzb.jpg new file mode 100644 index 0000000..19418da Binary files /dev/null and b/twitter-entities/1351371644145721344/EsEJWRdXMAAOtzb.jpg differ diff --git a/twitter-entities/1351372433828294668/EsEKEMrXIAAqI9p.jpg b/twitter-entities/1351372433828294668/EsEKEMrXIAAqI9p.jpg new file mode 100644 index 0000000..414fc64 Binary files /dev/null and b/twitter-entities/1351372433828294668/EsEKEMrXIAAqI9p.jpg differ diff --git a/twitter-entities/1351372918522077184/EsEKgdIXYAES7Dm.jpg b/twitter-entities/1351372918522077184/EsEKgdIXYAES7Dm.jpg new file mode 100644 index 0000000..1bccceb Binary files /dev/null and b/twitter-entities/1351372918522077184/EsEKgdIXYAES7Dm.jpg differ diff --git a/twitter-entities/1351373290946891777/EsEK2KHXEAMJxST.jpg b/twitter-entities/1351373290946891777/EsEK2KHXEAMJxST.jpg new file mode 100644 index 0000000..192175f Binary files /dev/null and b/twitter-entities/1351373290946891777/EsEK2KHXEAMJxST.jpg differ diff --git a/twitter-entities/1351373607344209922/EsELIjSXUAA23-6.jpg b/twitter-entities/1351373607344209922/EsELIjSXUAA23-6.jpg new file mode 100644 index 0000000..0f04a9b Binary files /dev/null and b/twitter-entities/1351373607344209922/EsELIjSXUAA23-6.jpg differ diff --git a/twitter-entities/1351374347613696001/EsELzoIXUAA4BnY.jpg b/twitter-entities/1351374347613696001/EsELzoIXUAA4BnY.jpg new file mode 100644 index 0000000..644264f Binary files /dev/null and b/twitter-entities/1351374347613696001/EsELzoIXUAA4BnY.jpg differ diff --git a/twitter-entities/1351375108233957377/EsEMf3_XIAELzru.jpg b/twitter-entities/1351375108233957377/EsEMf3_XIAELzru.jpg new file mode 100644 index 0000000..c0d1f8d Binary files /dev/null and b/twitter-entities/1351375108233957377/EsEMf3_XIAELzru.jpg differ diff --git a/twitter-entities/1351385708779499522/EsEWI5SW8AMgd6r.jpg b/twitter-entities/1351385708779499522/EsEWI5SW8AMgd6r.jpg new file mode 100644 index 0000000..caab761 Binary files /dev/null and b/twitter-entities/1351385708779499522/EsEWI5SW8AMgd6r.jpg differ