diff --git a/.gitignore b/.gitignore index f1754b75..de309827 100644 --- a/.gitignore +++ b/.gitignore @@ -11,4 +11,5 @@ web/_js/minified.js allCharacters.txt combined.js *.DS_Store -.vscode/ \ No newline at end of file +.vscode/ +_img/place/ \ No newline at end of file diff --git a/tools/redditcrawl.py b/tools/redditcrawl.py index 1f7b2f9b..7ab6e398 100755 --- a/tools/redditcrawl.py +++ b/tools/redditcrawl.py @@ -11,12 +11,14 @@ credentials = open('credentials', 'r') client_id = credentials.readline().strip(' \t\n\r') client_secret = credentials.readline().strip(' \t\n\r') +user = credentials.readline().strip(' \t\n\r') +pw = credentials.readline().strip(' \t\n\r') -reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent='atlas_bot') - -failcount = 0 -successcount = 0 -totalcount = 0 +reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent='atlas_bot',username=user,password=pw) +has_write_access = not reddit.read_only +if not has_write_access: + print("Warning: No write access. Post flairs will not be updated") + sleep(5) jsonfile = open("../web/atlas.json", "r", encoding='utf-8') existing = json.load(jsonfile) @@ -26,8 +28,17 @@ for item in existing: existing_ids.append(item['id']) +def set_flair(submission, flair): + if has_write_access and submission.link_flair_text != flair: + flair_choices = submission.flair.choices() + flair = next(x for x in flair_choices if x["flair_text_editable"] and flair == x["flair_text"]) + submission.flair.select(flair["flair_template_id"]) + total_all_flairs = 0 duplicate_count = 0 +failcount = 0 +successcount = 0 +totalcount = 0 outfile.write("[\n") for submission in reddit.subreddit('placeAtlas2').new(limit=2000): """ @@ -41,7 +52,8 @@ 7. Append to file called "credentials" 8. Copy Secret 9. Append on newline to "credentials" file - 10. Run Script + 10. If you want flair write access append 2 newlines with username and password (Must be a mod, don't do this if you don't know what you're doing) + 11. Run Script Running Script 1. Input the next ID to use @@ -52,9 +64,10 @@ """ total_all_flairs += 1 if (submission.id in existing_ids): + set_flair(submission, "Processed Entry") print("Found first duplicate!") duplicate_count += 1 - if (duplicate_count > 10): + if (duplicate_count > 0): break else: continue @@ -82,9 +95,11 @@ try: outfile.write(json.dumps(json.loads(text))+" ,\n") successcount += 1 + set_flair(submission, "Processed Entry") except json.JSONDecodeError: failfile.write(text+",\n") failcount += 1 + set_flair(submission, "Rejected Entry") print("written "+submission.id+" submitted "+str(round(time.time()-submission.created_utc))+" seconds ago") totalcount += 1 diff --git a/tools/redditflairset.py b/tools/redditflairset.py new file mode 100644 index 00000000..ea913356 --- /dev/null +++ b/tools/redditflairset.py @@ -0,0 +1,102 @@ +# Script to retroactively fix flairs +# Only touches things flaired "New entry" that either fail JSON parsing or are already in the atlas +# Otherwise, it leaves them untouched + +import praw +import json +import time +import re +import os + +credentials = open('credentials', 'r') +client_id = credentials.readline().strip(' \t\n\r') +client_secret = credentials.readline().strip(' \t\n\r') +user = credentials.readline().strip(' \t\n\r') +pw = credentials.readline().strip(' \t\n\r') + +reddit = praw.Reddit(client_id=client_id, client_secret=client_secret, user_agent='atlas_bot',username=user,password=pw) +has_write_access = not reddit.read_only +if not has_write_access: + print("No write access, exiting without doing anything") + quit() + +jsonfile = open("../web/atlas.json", "r", encoding='utf-8') +existing = json.load(jsonfile) + +existing_ids = [] + +for item in existing: + existing_ids.append(item['id']) + +def set_flair(submission, flair): + if has_write_access and submission.link_flair_text != flair: + print(submission.link_flair_text) + print(submission.id) + print(flair) + flair_choices = submission.flair.choices() + flair = next(x for x in flair_choices if x["flair_text_editable"] and flair == x["flair_text"]) + submission.flair.select(flair["flair_template_id"]) + return 1 + return 0 + +total_all_flairs = 0 +rejected_count = 0 +processed_count = 0 +#for submission in reddit.subreddit('placeAtlas2').new(limit=1000): +#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="top"): +#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="comments"): +#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="hot"): +#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="new"): +#for submission in reddit.subreddit('placeAtlas2').search('flair:"New Entry"',limit=1000,syntax='lucene', sort="relevance"): + """ + Auth setup + 1. Head to https://www.reddit.com/prefs/apps + 2. Click "create another app" + 3. Give it a name and description + 4. Select "script" + 5. Redirect to http://localhost:8080 + 6. Copy ID (under Personal Use Script) + 7. Append to file called "credentials" + 8. Copy Secret + 9. Append on newline to "credentials" file + 10-. Append 2 newlines with username and password if you want flair write access + 11. Run Script + + Running Script + 1. Input the next ID to use + 2. Manually resolve errors in manual_atlas.json + 3. Copy temp_atlas.json entries into web/_js/atlas.js + 4. Pull Request + + """ + total_all_flairs += 1 + if (submission.id in existing_ids): + processed_count += set_flair(submission, "Processed Entry") + continue + if(submission.link_flair_text == "New Entry"): + text = submission.selftext + #Old backslash filter: + #text = text.replace("\\", "") + #New one: One \\ escapes a backslash in python's parser + # Two escape it again in the regex parser, so \\\\ is \ + # Then anything but " or n is replaced with the first capture group (anything but " or n) + # Test in repl: re.sub("\\\\([^\"n])", "\\1", "\\t < removed slash, t stays and > stays \\n \\\"") + text = re.sub("\\\\([^\"n])", "\\1", text) + try: + text = text.replace("\"id\": 0,", "\"id\": 0,\n\t\t\"submitted_by\": \""+submission.author.name+"\",") + except AttributeError: + text = text.replace("\"id\": 0,", "\"id\": 0,\n\t\t\"submitted_by\": \""+"unknown"+"\",") + + lines = text.split("\n") + + for i, line in enumerate(lines): + if("\"id\": 0" in line): + lines[i] = line.replace("\"id\": 0", "\"id\": "+"\""+str(submission.id)+"\"") + text = "\n".join(lines) + try: + json.dumps(json.loads(text)) + # Do not set processed, we're only updating old entries in atlas or invalid submission flairs and not processing + except json.JSONDecodeError: + rejected_count += set_flair(submission, "Rejected Entry") + +print(f"\n\nTotal all flairs:{total_all_flairs}\nUpdated as rejected: {rejected_count}/{total_all_flairs}\nUpdated as processed: {processed_count}/{total_all_flairs}\n") diff --git a/web/_css/style.css b/web/_css/style.css index 5e4b73fb..e01c57cf 100644 --- a/web/_css/style.css +++ b/web/_css/style.css @@ -648,16 +648,101 @@ #exportOverlay { display: none; } -#zoomControls { +#bottomBar { position: absolute; - bottom: 10px; - left: 370px; - width: 90px; - display: flex; + bottom: 10px; + left: 10px; + right: 10px; + display: flex; + gap: 10px; + z-index: 100; } -.listHidden #zoomControls { - left: 10px; +div:not(.listHidden) > #bottomBar { + left: 370px !important; +} + +@media (max-width: 1120px) { + div:not(.listHidden) > #bottomBar { + flex-wrap: wrap; + } + + .listHidden #author { + flex: 1 !important; + } +} + +@media (max-width: 800px) { + #bottomBar { + flex-wrap: wrap; + } + + #timeControls { + min-width: calc(100vw - 390px) !important; + } + + #author { + flex: 1; + min-width: 100% !important; + } +} + +#timeControls { + flex: 1; + background-color: #555; + border: 1px #000 solid; + font-size: 12px; + text-align: center; + min-width: 300px; +} + +#timeControls input { + height: 100%; + background: #555; + -webkit-appearance: none; + appearance: none; + width: 100%; +} + +.slider::-webkit-slider-thumb { + -webkit-appearance: none; + appearance: none; + width: 10px; + height: 25px; + background: #d3d3d3; + cursor: pointer; + } + + .slider::-moz-range-thumb { + appearance: none; + width: 10px; + height: 25px; + background: #d3d3d3; + cursor: pointer; + } + +#author { + background-color: #555; + border: 1px #000 solid; + padding: 3px; + font-size: 12px; + z-index: 1100; + min-width: 320px; + text-align: center; + display: flex; + align-items: center; + justify-content: center; +} + +#author p { + margin: 0; + line-height: inherit; +} + +#zoomControls { + width: 90px; + display: flex; + align-self: flex-end; } #zoomControls button { @@ -715,8 +800,8 @@ @media (max-width: 500px) { width: 100%; } - div:not(.listHidden) > #zoomControls { - display: none; + div:not(.listHidden) > #bottomBar { + display: none !important; } div:not(.listHidden) > button#hideListButton { @@ -736,18 +821,6 @@ @media (max-width: 500px) { } } -@media (max-width: 750px) { - div:not(.listHidden) > #author { - display: none; - } -} - -@media (max-width: 400px) { - #author { - display: none; - } -} - @media (max-width: 350px) { #entriesListContainer > nav > a#drawLink { display: none; @@ -947,18 +1020,6 @@ #entriesList .object { text-align: left; } -#author { - position: absolute; - bottom: 10px; - right: 10px; - background-color: #555; - border: 1px #000 solid; - padding: 3px; - font-size: 12px; - z-index: 1100; - text-align: center; -} - #aboutContainer { position: absolute; top: 50px; @@ -1096,4 +1157,4 @@ h2#abouth2 { #bitcoinNotice { color: #AAA; margin-top: 7px; -} \ No newline at end of file +} diff --git a/web/_img/place-indexed-2-3.png b/web/_img/place-indexed-2-3.png deleted file mode 100644 index 41667a7b..00000000 Binary files a/web/_img/place-indexed-2-3.png and /dev/null differ diff --git a/web/_img/place-indexed-3.png b/web/_img/place-indexed-3.png deleted file mode 100644 index 33623fff..00000000 Binary files a/web/_img/place-indexed-3.png and /dev/null differ diff --git a/web/_img/place-indexed-4.png b/web/_img/place-indexed-4.png deleted file mode 100644 index c0a431f7..00000000 Binary files a/web/_img/place-indexed-4.png and /dev/null differ diff --git a/web/_img/place-indexed-5.png b/web/_img/place-indexed-5.png deleted file mode 100644 index 203b0bb5..00000000 Binary files a/web/_img/place-indexed-5.png and /dev/null differ diff --git a/web/_img/place-indexed-seemingly-good.png b/web/_img/place-indexed-seemingly-good.png deleted file mode 100644 index f70aa017..00000000 Binary files a/web/_img/place-indexed-seemingly-good.png and /dev/null differ diff --git a/web/_img/place-indexed.png b/web/_img/place-indexed.png deleted file mode 100644 index c11ff2e2..00000000 Binary files a/web/_img/place-indexed.png and /dev/null differ diff --git a/web/_img/place-indexed.png.old b/web/_img/place-indexed.png.old deleted file mode 100644 index b1511268..00000000 Binary files a/web/_img/place-indexed.png.old and /dev/null differ diff --git a/web/_img/place.png b/web/_img/place.png deleted file mode 100644 index c1731eae..00000000 Binary files a/web/_img/place.png and /dev/null differ diff --git a/web/_img/place/1648822500.png b/web/_img/place/1648822500.png new file mode 100644 index 00000000..e043bbc1 Binary files /dev/null and b/web/_img/place/1648822500.png differ diff --git a/web/_img/place/1648847036.png b/web/_img/place/1648847036.png new file mode 100644 index 00000000..f8eefd4b Binary files /dev/null and b/web/_img/place/1648847036.png differ diff --git a/web/_img/place/1648870452.png b/web/_img/place/1648870452.png new file mode 100644 index 00000000..4f83f6ca Binary files /dev/null and b/web/_img/place/1648870452.png differ diff --git a/web/_img/place/1648893666.png b/web/_img/place/1648893666.png new file mode 100644 index 00000000..465be2e7 Binary files /dev/null and b/web/_img/place/1648893666.png differ diff --git a/web/_img/place/1648917500.png b/web/_img/place/1648917500.png new file mode 100644 index 00000000..ec452fd7 Binary files /dev/null and b/web/_img/place/1648917500.png differ diff --git a/web/_img/place/1648942113.png b/web/_img/place/1648942113.png new file mode 100644 index 00000000..cced2f4c Binary files /dev/null and b/web/_img/place/1648942113.png differ diff --git a/web/_img/place/1648956234.png b/web/_img/place/1648956234.png new file mode 100644 index 00000000..4a93e7d0 Binary files /dev/null and b/web/_img/place/1648956234.png differ diff --git a/web/_img/place/1648968061.png b/web/_img/place/1648968061.png new file mode 100644 index 00000000..31352393 Binary files /dev/null and b/web/_img/place/1648968061.png differ diff --git a/web/_img/place/1648979987.png b/web/_img/place/1648979987.png new file mode 100644 index 00000000..12d855e5 Binary files /dev/null and b/web/_img/place/1648979987.png differ diff --git a/web/_img/place/1648992274.png b/web/_img/place/1648992274.png new file mode 100644 index 00000000..ff533748 Binary files /dev/null and b/web/_img/place/1648992274.png differ diff --git a/web/_img/place/1649012915.png b/web/_img/place/1649012915.png new file mode 100644 index 00000000..26a9396c Binary files /dev/null and b/web/_img/place/1649012915.png differ diff --git a/web/_img/place/1649037182.png b/web/_img/place/1649037182.png new file mode 100644 index 00000000..9fe0582d Binary files /dev/null and b/web/_img/place/1649037182.png differ diff --git a/web/_img/place/1649060793.png b/web/_img/place/1649060793.png new file mode 100644 index 00000000..1df805cf Binary files /dev/null and b/web/_img/place/1649060793.png differ diff --git a/web/_img/place/1649084741.png b/web/_img/place/1649084741.png new file mode 100644 index 00000000..78f4251a Binary files /dev/null and b/web/_img/place/1649084741.png differ diff --git a/web/_img/place-indexed-final-place.png b/web/_img/place/final.png similarity index 100% rename from web/_img/place-indexed-final-place.png rename to web/_img/place/final.png diff --git a/web/_js/main.js b/web/_js/main.js index 15c4f628..f899c849 100644 --- a/web/_js/main.js +++ b/web/_js/main.js @@ -92,6 +92,8 @@ async function init(){ // a must be equal to b return 0; }); + //TEMP FOR TIME TRAVEL + atlasBackup = atlas; //console.log(document.documentElement.clientWidth, document.documentElement.clientHeight); diff --git a/web/_js/time.js b/web/_js/time.js new file mode 100644 index 00000000..81a40295 --- /dev/null +++ b/web/_js/time.js @@ -0,0 +1,112 @@ +const timeConfig = [ + { + timestamp: 1648822500, + url: "/_img/place/1648822500.png", + image: null + }, + { + timestamp: 1648847036, + url: "/_img/place/1648847036.png", + image: null + }, + { + timestamp: 1648870452, + url: "/_img/place/1648870452.png", + image: null + }, + { + timestamp: 1648893666, + url: "/_img/place/1648893666.png", + image: null + }, + { + timestamp: 1648917500, + url: "/_img/place/1648917500.png", + image: null + }, + { + timestamp: 1648942113, + url: "/_img/place/1648942113.png", + image: null + }, + { + timestamp: 1648956234, + url: "/_img/place/1648956234.png", + image: null + }, + { + timestamp: 1648968061, + url: "/_img/place/1648968061.png", + image: null + }, + { + timestamp: 1648979987, + url: "/_img/place/1648979987.png", + image: null + }, + + { + timestamp: 1648992274, + url: "/_img/place/1648992274.png", + image: null + }, + { + timestamp: 1649012915, + url: "/_img/place/1649012915.png", + image: null + }, + { + timestamp: 1649037182, + url: "/_img/place/1649037182.png", + image: null + }, + { + timestamp: 1649060793, + url: "/_img/place/1649060793.png", + image: null + }, + { + timestamp: 1649084741, + url: "/_img/place/1649084741.png", + image: null + }, + { + timestamp: 1649113199, + url: "/_img/place/final.png", + image: null, + showAtlas: true, + }, +]; + +let slider = document.getElementById("timeControlsSlider"); +let image = document.getElementById("image"); + +let timeCallback = (a) => {}; +let atlasBackup = []; + +// SETUP +slider.max = timeConfig.length; +slider.value = timeConfig.length; +updateTime(timeConfig.length) + +slider.oninput = (event) => { + updateTime(parseInt(event.target.value)) +}; + +async function updateTime(index) { + let configObject = timeConfig[index-1]; + if (!configObject.image) { + console.log("fetching"); + let fetchResult = await fetch(configObject.url); + let imageBlob = await fetchResult.blob(); + configObject.image = URL.createObjectURL(imageBlob); + } + image.src = configObject.image; + // TEMP ATLAS ONLY ON LAST TIMESTAMP + if (configObject.showAtlas) { + atlas = atlasBackup + } else { + atlas = [] + } + timeCallback(atlas) +} \ No newline at end of file diff --git a/web/_js/view.js b/web/_js/view.js index a3e7980e..8857e668 100644 --- a/web/_js/view.js +++ b/web/_js/view.js @@ -155,6 +155,11 @@ function initView(){ buildObjectsList(null, null); + timeCallback = (tempAtlas) => { + renderBackground(tempAtlas); + render(); + } + // parse linked atlas entry id from link hash /*if (window.location.hash.substring(3)){ zoom = 4; @@ -345,7 +350,9 @@ function initView(){ } if(changed){ - hovered = newHovered; + hovered = newHovered.sort(function(a, b){ + return calcPolygonArea(a.path) - calcPolygonArea(b.path); + }); objectsContainer.innerHTML = ""; @@ -386,6 +393,7 @@ function initView(){ return ( value.name.toLowerCase().indexOf(filter) !== -1 || value.description.toLowerCase().indexOf(filter) !== -1 + || value.subreddit && value.subreddit.toLowerCase().indexOf(filter) !== -1 ); }); document.getElementById("atlasSize").innerHTML = "Found "+sortedAtlas.length+" entries."; diff --git a/web/atlas.json b/web/atlas.json index 2bcd41cb..20641ee0 100644 --- a/web/atlas.json +++ b/web/atlas.json @@ -391,7 +391,6 @@ {"id": "twpeu7", "submitted_by": "memer864", "name": "The flag train", "description": "A train with all the flags of dutch province\u2019s", "website": "", "subreddit": "/r/PlaceNL", "center": [1240.5, 7.5], "path": [[1370.5, 13.5], [1368.5, 1.5], [1108.5, 2.5], [1107.5, 13.5]]}, {"id": "twpesa", "submitted_by": "feebl", "name": "Piet Mondriaan", "description": "Pieter Cornelis Mondriaan (7 March 1872 \u2013 1 February 1944), was a Dutch painter and art theoretician who is regarded as one of the greatest artists of the 20th century. He is known for being one of the pioneers of 20th-century abstract art, as he changed his artistic direction from figurative painting to an increasingly abstract style, until he reached a point where his artistic vocabulary was reduced to simple geometric elements.", "website": "", "subreddit": "/r/PlaceNL", "center": [1434.5, 17.5], "path": [[1420.5, 3.5], [1448.5, 3.5], [1448.5, 30.5], [1420.5, 30.5]]}, {"id": "twpelt", "submitted_by": "sad_lagoon", "name": "Fuck NFTs", "description": "enough said", "website": "", "subreddit": "/r/fuckNFTs", "center": [420.5, 1345.5], "path": [[400.5, 1339.5], [441.5, 1339.5], [441.5, 1350.5], [399.5, 1350.5], [399.5, 1339.5]]}, -{"id": "twpelq", "submitted_by": "SinisterMJ", "name": "The little Prince", "description": "A book by Antoine de Saint-Exup\u00e9ry", "website": "https://en.wikipedia.org/wiki/The_Little_Prince", "subreddit": "", "center": [155.5, 362.5], "path": [[144.5, 343.5], [141.5, 346.5], [142.5, 354.5], [139.5, 358.5], [136.5, 365.5], [136.5, 374.5], [139.5, 378.5], [145.5, 385.5], [146.5, 385.5], [146.5, 383.5], [145.5, 383.5], [145.5, 380.5], [147.5, 380.5], [147.5, 376.5], [148.5, 376.5], [148.5, 374.5], [149.5, 374.5], [149.5, 366.5], [150.5, 366.5], [150.5, 357.5], [157.5, 357.5], [157.5, 362.5], [151.5, 374.5], [152.5, 374.5], [152.5, 376.5], [153.5, 376.5], [153.5, 380.5], [155.5, 380.5], [155.5, 382.5], [154.5, 382.5], [154.5, 383.5], [153.5, 383.5], [153.5, 386.5], [160.5, 386.5], [163.5, 385.5], [170.5, 377.5], [172.5, 373.5], [172.5, 366.5], [171.5, 361.5], [168.5, 357.5], [166.5, 356.5], [170.5, 353.5], [170.5, 349.5], [168.5, 349.5], [166.5, 353.5], [163.5, 353.5], [163.5, 352.5], [164.5, 351.5], [163.5, 349.5], [161.5, 351.5], [158.5, 348.5], [158.5, 346.5], [159.5, 343.5], [161.5, 345.5], [164.5, 345.5], [165.5, 343.5], [162.5, 341.5], [163.5, 340.5], [164.5, 340.5], [164.5, 339.5], [165.5, 339.5], [167.5, 342.5], [170.5, 340.5], [170.5, 338.5], [166.5, 336.5], [163.5, 336.5], [160.5, 338.5], [157.5, 338.5], [158.5, 337.5], [158.5, 333.5], [157.5, 332.5], [155.5, 332.5], [154.5, 331.5], [153.5, 331.5], [151.5, 333.5], [151.5, 335.5], [152.5, 337.5], [153.5, 339.5], [152.5, 339.5], [152.5, 340.5], [151.5, 341.5], [151.5, 349.5], [150.5, 349.5], [150.5, 351.5], [148.5, 351.5], [148.5, 345.5], [146.5, 343.5]]}, {"id": "twpee3", "submitted_by": "themistik", "name": "Ancienne France", "description": "First french flag and art made by the french reddit community", "website": "https://www.reddit.com/r/placefrance/", "subreddit": "/r/placefrance", "center": [151.5, 414.5], "path": [[132.5, 387.5], [126.5, 387.5], [126.5, 495.5], [174.5, 496.5], [174.5, 389.5], [174.5, 330.5], [134.5, 329.5], [126.5, 329.5], [125.5, 346.5], [133.5, 344.5]]}, {"id": "twpee2", "submitted_by": "EmberBaban", "name": "The Tortoise Trainer", "description": "The Tortoise Trainer is a painting by Osman Hamdi Bey, with a first version created in 1906 and a second in 1907. Hamdi's painting of an anachronistic historical character attempting to train tortoises is usually interpreted as a satire on the slow and ineffective attempts at reforming the Ottoman Empire.", "website": "", "subreddit": "", "center": [1133.5, 187.5], "path": [[1071.5, 248.5], [1072.5, 121.5], [1162.5, 121.5], [1163.5, 132.5], [1195.5, 129.5], [1195.5, 251.5]]}, {"id": "twpeak", "submitted_by": "th3_fish_", "name": "watchdominion.org", "description": "Link to a documentary about the animal exploitation industry. Created by animal rights activists.", "website": "", "subreddit": "/r/vegan_place", "center": [1969.5, 902.5], "path": [[1939.5, 887.5], [1939.5, 916.5], [1999.5, 916.5], [1999.5, 887.5]]}, @@ -603,7 +602,6 @@ {"id": "twnevu", "submitted_by": "_8o_", "name": "Tomiii 11", "description": "tribute to tomiii 11, a child who passed away due to brain cancer in 2021 whose last wish was to become a big youtuber, as of 04/04/2022 tomiii 11 youtube channel has 10.5 million subscribers.", "website": "https://www.youtube.com/c/tomiii11_oficial", "subreddit": "", "center": [1272.5, 1921.5], "path": [[1299.5, 1953.5], [1243.5, 1953.5], [1244.5, 1897.5], [1249.5, 1894.5], [1249.5, 1890.5], [1248.5, 1890.5], [1248.5, 1888.5], [1300.5, 1888.5], [1300.5, 1953.5]]}, {"id": "twnep0", "submitted_by": "sayaduck", "name": "Wynncraft Logo", "description": "A small version of the logo for Wynncraft, a Minecraft MMORPG server.", "website": "https://wynncraft.com/", "subreddit": "/r/wynncraft", "center": [705.5, 779.5], "path": [[703.5, 775.5], [707.5, 775.5], [707.5, 776.5], [708.5, 776.5], [708.5, 777.5], [709.5, 777.5], [709.5, 778.5], [708.5, 778.5], [708.5, 783.5], [707.5, 783.5], [707.5, 784.5], [703.5, 784.5], [703.5, 783.5], [702.5, 783.5], [702.5, 782.5], [701.5, 782.5], [701.5, 777.5], [702.5, 777.5], [702.5, 776.5], [703.5, 776.5], [703.5, 775.5]]}, {"id": "twne4z", "submitted_by": "MrDaveCole98", "name": "Red vs. Blue", "description": "An American web series produced by Rooster Teeth. The show is based on the Halo franchise.", "website": "https://roosterteeth.com/channel/red-vs-blue-universe", "subreddit": "/r/RedvsBlue", "center": [461.5, 698.5], "path": [[448.5, 682.5], [472.5, 682.5], [472.5, 713.5], [449.5, 713.5], [449.5, 682.5]]}, -{"id": "twndms", "submitted_by": "userat", "name": "Indian Flag", "description": "Indian flag with the India gate, Lotus and The Himalayas", "website": "", "subreddit": "", "center": [170.5, 1199.5], "path": [[0.5, 1225.5], [0.5, 1173.5], [343.5, 1175.5], [343.5, 1225.5], [2.5, 1225.5], [2.5, 1225.5], [0.5, 1225.5], [0.5, 1225.5]]}, {"id": "twndhk", "submitted_by": "TheCracker27", "name": "Rio Logo", "description": "The logo for the 2011 animated movie about spix's macaws", "website": "https://rio.fandom.com/wiki/Rio_Wiki", "subreddit": "/r/RioMovie", "center": [1338.5, 1757.5], "path": [[1332.5, 1754.5], [1344.5, 1754.5], [1344.5, 1759.5], [1332.5, 1759.5]]}, {"id": "twndhc", "submitted_by": "penguin14425", "name": "r/protogen", "description": "a sub reddit for protogens, incudes, memes art", "website": "", "subreddit": "/r/protogen", "center": [304.5, 1914.5], "path": [[291.5, 1903.5], [317.5, 1903.5], [316.5, 1926.5], [292.5, 1926.5]]}, {"id": "twndd2", "submitted_by": "TacoMadeOfCoco", "name": "Deeeep.io - Eat fish, become the shark", "description": "4 colorful clownfish made by r/deeeepio. Deeeep.io is a multiplayer online browser game. You start as small aquatic animals, and evolve to become the apex predator.", "website": "https://deeeep.io/", "subreddit": "/r/deeeepio", "center": [490.5, 1644.5], "path": [[479.5, 1650.5], [479.5, 1637.5], [500.5, 1637.5], [500.5, 1650.5], [500.5, 1650.5]]}, @@ -1650,7 +1648,6 @@ {"id": "twryox", "submitted_by": "dum_cat", "name": "Ralsei", "description": "This is the character Ralsei from deltarune.", "website": "", "subreddit": "/r/deltarune", "center": [1759.5, 229.5], "path": [[1747.5, 207.5], [1747.5, 249.5], [1754.5, 249.5], [1754.5, 253.5], [1768.5, 253.5], [1768.5, 250.5], [1768.5, 249.5], [1771.5, 249.5], [1771.5, 207.5], [1747.5, 207.5]]}, {"id": "twryjo", "submitted_by": "BlupMcBubbles", "name": "JCVD", "description": "The famous Begian actors Jean-Claude Van Damme, who played in numerous action movies, in his favourite pose : the wide gap. Also a little reference to the Flemish and Walloon public transport : de Lein and le TEC.", "website": "", "subreddit": "", "center": [1309.5, 1304.5], "path": [[1286.5, 1288.5], [1332.5, 1288.5], [1332.5, 1320.5], [1286.5, 1318.5]]}, {"id": "twry93", "submitted_by": "HobbylosUwU", "name": "Kinder Surprise Egg (\u00dcei)", "description": "Kinder Surprise is a milk chocolate consisting of a chocolate egg surrounding a yellow plastic capsule with a small toy inside. Manufactured by the Italian company Ferrero since 1974, it was co-created by Michele Ferrero and William Salice, and is one of several candies sold under the Kinder brand. Kinder Surprise was originally created with children in mind, replicating an Italian Easter family tradition in which adults give children large chocolate eggs with toys inside. However, Kinder Surprise toys have become collectible for adults as well. Since 1974, 30 billion Kinder Surprise eggs have been sold worldwide.", "website": "", "subreddit": "/r/placede", "center": [1526.5, 850.5], "path": [[1527.5, 833.5], [1524.5, 833.5], [1520.5, 835.5], [1517.5, 840.5], [1513.5, 849.5], [1512.5, 856.5], [1514.5, 861.5], [1522.5, 867.5], [1530.5, 866.5], [1535.5, 860.5], [1538.5, 853.5], [1538.5, 843.5], [1535.5, 838.5], [1532.5, 834.5], [1528.5, 832.5], [1523.5, 832.5]]}, -{"id": "twry25", "submitted_by": "bart7782", "name": "KLM plane", "description": "Typical Dutch airplane", "website": "https://en.wikipedia.org/wiki/KLM", "subreddit": "/r/placenl", "center": [1630.5, 16.5], "path": [[1632.5, 13.5], [1632.5, 12.5], [1634.5, 12.5], [1634.5, 11.5], [1636.5, 11.5], [1636.5, 10.5], [1639.5, 10.5], [1639.5, 9.5], [1642.5, 9.5], [1642.5, 8.5], [1645.5, 8.5], [1645.5, 7.5], [1648.5, 7.5], [1648.5, 6.5], [1654.5, 6.5], [1654.5, 7.5], [1656.5, 7.5], [1656.5, 8.5], [1657.5, 8.5], [1657.5, 12.5], [1656.5, 12.5], [1656.5, 13.5], [1655.5, 13.5], [1655.5, 14.5], [1654.5, 14.5], [1654.5, 15.5], [1653.5, 15.5], [1657.5, 15.5], [1657.5, 16.5], [1658.5, 16.5], [1658.5, 19.5], [1649.5, 19.5], [1649.5, 24.5], [1633.5, 24.5], [1633.5, 25.5], [1626.5, 25.5], [1626.5, 26.5], [1619.5, 26.5], [1619.5, 25.5], [1613.5, 25.5], [1613.5, 24.5], [1607.5, 21.5], [1602.5, 16.5], [1609.5, 6.5]]}, {"id": "twrxsz", "submitted_by": "beanrollup", "name": "Hive Minigames", "description": "The Hive is a Minecraft: Bedrock Edition featured server, in existence since 2018. Its Java edition server existed from 2013-2021. /r/place image made with help from volunteer and non-volunteer staff, as well as lovely members of the community!", "website": "https://playhive.com/", "subreddit": "/r/hivemc", "center": [482.5, 1553.5], "path": [[470.5, 1552.5], [479.5, 1552.5], [479.5, 1542.5], [485.5, 1542.5], [486.5, 1541.5], [487.5, 1540.5], [490.5, 1540.5], [490.5, 1561.5], [470.5, 1561.5]]}, {"id": "twrxre", "submitted_by": "ThatOneCodeDev", "name": "Tadano Hitohito & Osana Najimi", "description": "Main and Supporting character from manga/anime series Komi-san wa, Comyushou desu.", "website": "https://komisan.fandom.com/wiki/Komi-san_wa_Komyushou_Desu_Wiki", "subreddit": "/r/Komi_San_Place", "center": [816.5, 1487.5], "path": [[782.5, 1499.5], [784.5, 1496.5], [787.5, 1495.5], [796.5, 1494.5], [800.5, 1493.5], [803.5, 1495.5], [806.5, 1495.5], [808.5, 1492.5], [819.5, 1493.5], [821.5, 1496.5], [823.5, 1496.5], [825.5, 1494.5], [838.5, 1493.5], [839.5, 1496.5], [841.5, 1498.5], [844.5, 1498.5], [845.5, 1496.5], [845.5, 1493.5], [842.5, 1490.5], [844.5, 1476.5], [833.5, 1475.5], [821.5, 1478.5], [820.5, 1480.5], [809.5, 1480.5], [809.5, 1483.5], [782.5, 1483.5], [782.5, 1498.5]]}, {"id": "twrxa8", "submitted_by": "1__Raven__1", "name": "Utsuho Reiuji", "description": "A hell raven who lives beneath the ground of Gensokyo and is one of Satori Komeiji's pets. Her job is to maintain the flames of hell through the manipulation of nuclear fusion.", "website": "https://en.touhouwiki.net/wiki/Utsuho_Reiuji", "subreddit": "/r/touhou", "center": [1638.5, 1534.5], "path": [[1621.5, 1517.5], [1621.5, 1550.5], [1654.5, 1550.5], [1654.5, 1517.5]]}, @@ -2044,7 +2041,6 @@ {"id": "twsrbm", "submitted_by": "Virryi", "name": "feddy", "description": "A popular meme within the Five Nights at Freddy's fandom. Represents Freddy, the titular character, in a poorly drawn work. Above him is a clock reading 6 AM, another reference to the FNaF series where the night ends at 6 am.", "website": "", "subreddit": "/r/fivenightsatfreddys", "center": [1853.5, 335.5], "path": [[1839.5, 299.5], [1839.5, 370.5], [1853.5, 370.5], [1853.5, 371.5], [1866.5, 371.5], [1866.5, 299.5], [1865.5, 299.5]]}, {"id": "twsqyn", "submitted_by": "TBGEntertainment", "name": "No Need Orga", "description": "A german E-Sport Team called No Need Orga. Project was initalized by the Twitch streamer Agurin", "website": "https://twitch.tv/agurin", "subreddit": "", "center": [650.5, 1985.5], "path": [[622.5, 1974.5], [622.5, 1996.5], [679.5, 1995.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5], [679.5, 1974.5]]}, {"id": "twsqpp", "submitted_by": "MartyStarkiller", "name": "Madeline (aka Vadeline)", "description": "Madeline is the protagonist of the 2018 videogame Celeste, developed by Maddy Makes Games, later turned into Extremely OK Games. In the official discord server of said game, this specific drawing was called \u201cVadeline\u201d (Madeline close to the Void) and it was unknown who began work on this, since the server had already worked on drawing Madeline before.", "website": "http://www.celestegame.com/", "subreddit": "/r/celestegame", "center": [894.5, 1433.5], "path": [[889.5, 1425.5], [900.5, 1425.5], [900.5, 1438.5], [899.5, 1438.5], [899.5, 1440.5], [899.5, 1441.5], [889.5, 1441.5]]}, -{"id": "twsqh5", "submitted_by": "Minion_P", "name": "Abu logo", "description": "Abu is an adult diaper brand.", "website": "", "subreddit": "", "center": [46.5, 1006.5], "path": [[35.5, 999.5], [35.5, 1013.5], [56.5, 1013.5], [56.5, 999.5]]}, {"id": "twsqgr", "submitted_by": "Alderiuz", "name": "feddy", "description": "A popular meme amongst the 'Five Night's at Freddy's' community, a horror game depicting Chuck-E-Cheese esque animatronics that try to hunt you down.", "website": "", "subreddit": "/r/fivenightsatfreddys", "center": [1853.5, 335.5], "path": [[1839.5, 370.5], [1839.5, 299.5], [1866.5, 299.5], [1866.5, 371.5], [1852.5, 371.5], [1852.5, 370.5]]}, {"id": "twsq63", "submitted_by": "Querez", "name": "HalfOfAKebab memorial", "description": "A memorial for Lewis 'HalfOfAKebab' who passed away in November 2021. The artwork is of the face of his Minecraft skin. Lewis was a founder of Omniarchive (founded Sep 2017), a team effort project to find and archive every Minecraft version in existence. Made by the community of Omniarchive's Discord server.", "website": "https://omniarchive.org/", "subreddit": "/r/Omniarchive", "center": [957.5, 488.5], "path": [[952.5,481.5], [961.5,481.5], [961.5,494.5], [952.5,494.5]]}, {"id": "twspz7", "submitted_by": "Accomplished_Arm_227", "name": "JPEGMAFIA playstation logo", "description": "icon use by rapper JPEGMAFIA", "website": "https://www.youtube.com/c/JPEGMAFIA", "subreddit": "/r/jpegmafia", "center": [1889.5, 776.5], "path": [[1874.5, 760.5], [1904.5, 760.5], [1903.5, 792.5], [1874.5, 792.5], [1874.5, 781.5]]}, @@ -2098,7 +2094,6 @@ {"id": "twsjdf", "submitted_by": "Item-carpinus", "name": "Hurdy Gurdy", "description": "The hurdy gurdy is a string instrument that originated in the Middle Ages. The sound is produced by a rosined wheel rubbing against the strings; the wheel is controlled by a crank. The hurdy gurdy has 3 types of strings: chanters \u2013 the melody strings that are shortened mechanically via keys to change the pitch, drones - strings that produce a continuous bass tone, and trompettes \u2013 higher-pitched drone strings that are also used for rhythmic accentuation. Hurdy gurdies usually have two octaves and are fully chromatic. If you want to learn more about the instrument, join us on our Subreddit or the Hurdy Gurdy Community on Facebook.", "website": "https://www.facebook.com/groups/2038441566425103/", "subreddit": "/r/HurdyGurdy", "center": [601.5, 1557.5], "path": [[592.5, 1545.5], [613.5, 1545.5], [612.5, 1552.5], [604.5, 1551.5], [607.5, 1567.5], [603.5, 1574.5], [597.5, 1574.5], [596.5, 1571.5], [594.5, 1568.5], [596.5, 1560.5], [598.5, 1551.5], [592.5, 1551.5]]}, {"id": "twsix6", "submitted_by": "batter-sempai", "name": "Deltarune Logo", "description": "Formally was the logo of a video game called Deltarune, created by indie game creator Toby Fox.", "website": "", "subreddit": "/r/Deltarune", "center": [608.5, 1985.5], "path": [[596.5, 1974.5], [619.5, 1974.5], [620.5, 1996.5], [595.5, 1996.5]]}, {"id": "twsilc", "submitted_by": "Foufou10", "name": "Xana's Eye", "description": "Symbol of Xana's eye, antagonist of the french cartoon Code Lyoko", "website": "", "subreddit": "", "center": [1194.5, 877.5], "path": [[1190.5, 870.5], [1198.5, 870.5], [1198.5, 883.5], [1190.5, 883.5]]}, -{"id": "twsigw", "submitted_by": "HazardousUser", "name": "KLM airplane", "description": "Koninklijke Luchtvaart Maatschappij (KLM) is a Dutch Airtransport Company", "website": "https://nl.wikipedia.org/wiki/Koninklijke_Luchtvaart_Maatschappij", "subreddit": "", "center": [1632.5, 16.5], "path": [[1661.5, 27.5], [1661.5, 4.5], [1603.5, 4.5], [1603.5, 28.5]]}, {"id": "twsiei", "submitted_by": "sabyrcus", "name": "M3 Logo", "description": "An unfinished logo of the Mandate of Modern Mapping, a cartography-based Discord server.", "website": "", "subreddit": "", "center": [1795.5, 973.5], "path": [[1792.5, 970.5], [1792.5, 970.5], [1792.5, 975.5], [1798.5, 975.5], [1798.5, 970.5]]}, {"id": "twsiam", "submitted_by": "peerkartoshkin", "name": "Goo", "description": "Goo from the Inanimate Insanity Invitational web series", "website": "", "subreddit": "/r/inanimateinsanity", "center": [1551.5, 41.5], "path": [[1543.5, 35.5], [1543.5, 47.5], [1559.5, 47.5], [1559.5, 35.5], [1543.5, 35.5]]}, {"id": "twsi1h", "submitted_by": "torresromain", "name": "supertf (streamer)", "description": "Two time Overwatch League Champion, World Cup Champion, Stage 2 Champion, May Melee Tournament Champion, Countdown Cup Champion, Role Star, All Star, MVP Runner-Up, and the best Overwatch streamer.", "website": "https://www.twitch.tv/supertf", "subreddit": "/r/Supertf", "center": [1463.5, 1369.5], "path": [[1437.5, 1338.5], [1488.5, 1338.5], [1488.5, 1400.5], [1437.5, 1400.5], [1437.5, 1338.5]]}, @@ -2356,7 +2351,6 @@ {"id": "twwgio", "submitted_by": "WarpoRoasting", "name": "Bulgarian Amogus", "description": "Among Us crewmate in the colors of Bulgaria holding a Bulgarian flag", "website": "", "subreddit": "/r/bulgaria", "center": [1584.5, 1392.5], "path": [[1591.5, 1397.5], [1576.5, 1397.5], [1576.5, 1386.5], [1591.5, 1386.5], [1591.5, 1397.5]]}, {"id": "twwghp", "submitted_by": "JesusGAwasOnCD", "name": "/r/Qu\u00e9bec", "description": "Art created by /r/Qu\u00e9bec", "website": "", "subreddit": "/r/quebec", "center": [1001.5, 998.5], "path": [[963.5, 949.5], [1044.5, 933.5], [1045.5, 997.5], [1045.5, 997.5], [902.5, 1015.5], [902.5, 924.5], [1132.5, 925.5], [1132.5, 962.5], [1087.5, 962.5], [1083.5, 965.5], [1082.5, 1113.5], [1034.5, 1114.5], [1022.5, 1102.5], [1017.5, 1076.5], [902.5, 1072.5], [903.5, 1016.5], [903.5, 1016.5]]}, {"id": "twwggj", "submitted_by": "afrangry", "name": "Tank Man", "description": "Tank Man (also known as the Unknown Protester or Unknown Rebel) is the nickname of an unidentified Chinese man who stood in front of a column of tanks leaving Tiananmen Square in Beijing on June 5, 1989, the day after the Chinese government's violent crackdown on the Tiananmen protests.Internationally, it is considered one of the most iconic images of all time. Inside China, the image and the accompanying events are subject to censorship.", "website": "", "subreddit": "", "center": [883.5, 148.5], "path": [[874.5, 130.5], [874.5, 165.5], [892.5, 165.5], [892.5, 130.5], [874.5, 130.5]]}, -{"id": "twwgfo", "submitted_by": "loucarinol5124", "name": "Kenny", "description": "a south park character. He died all the time along the south park series and this time he died because of white void", "website": "", "subreddit": "", "center": [497.5, 1517.5], "path": [[519.5, 1505.5], [512.5, 1510.5], [511.5, 1519.5], [514.5, 1526.5], [522.5, 1527.5], [510.5, 1540.5], [491.5, 1541.5], [479.5, 1530.5], [477.5, 1522.5], [477.5, 1511.5], [478.5, 1503.5], [487.5, 1498.5], [490.5, 1495.5], [500.5, 1494.5], [508.5, 1494.5], [515.5, 1500.5]]}, {"id": "twwg8a", "submitted_by": "gwestside", "name": "10 years of Wakfu", "description": "The French MMORPG Wakfu is celebrating its 10 years in 2022.", "website": "https://www.wakfu.com/en/mmorpg/news/announcements/1437621-let-celebrate-our-10th-anniversary", "subreddit": "/r/wakfu", "center": [1194.5, 1966.5], "path": [[1189.5, 1962.5], [1199.5, 1962.5], [1199.5, 1969.5], [1189.5, 1969.5]]}, {"id": "twwg7y", "submitted_by": "Placeussy", "name": "Neptune & Dogoo", "description": "Chibi pixel art of Neptune and the Dogoo enemy from the Hyperdimension Neptunia franchise.", "website": "", "subreddit": "/r/gamindustri", "center": [1633.5, 556.5], "path": [[1622.5, 576.5], [1637.5, 576.5], [1637.5, 550.5], [1651.5, 550.5], [1651.5, 541.5], [1648.5, 541.5], [1644.5, 537.5], [1636.5, 543.5], [1623.5, 543.5], [1623.5, 548.5], [1621.5, 548.5], [1622.5, 557.5], [1623.5, 558.5], [1622.5, 559.5], [1622.5, 576.5]]}, {"id": "twwg66", "submitted_by": "SchiferlED", "name": "Qynoa", "description": "A vtuber and VRchat mute streamer. Moonmoon's mute.", "website": "https://www.twitch.tv/qynoa", "subreddit": "", "center": [1641.5, 1926.5], "path": [[1644.5, 1925.5], [1647.5, 1933.5], [1635.5, 1933.5], [1635.5, 1919.5], [1647.5, 1920.5], [1647.5, 1933.5]]}, @@ -2447,7 +2441,6 @@ {"id": "tww65v", "submitted_by": "calvinballing", "name": "Effective Altruism", "description": "Effective Altruism is a social movement and philosophy focused on maximizing the good you can do in your career, projects, and other life decisions.", "website": "https://www.effectivealtruism.org/", "subreddit": "/r/EffectiveAltruism", "center": [956.5, 1770.5], "path": [[977.5, 1777.5], [937.5, 1777.5], [937.5, 1761.5], [944.5, 1761.5], [947.5, 1764.5], [977.5, 1764.5], [977.5, 1777.5], [977.5, 1777.5], [977.5, 1777.5]]}, {"id": "tww65f", "submitted_by": "mrbootybreath", "name": "Flag of Iceland", "description": "The flag of Iceland, including drawings of a snowflake, a puffin and the largest church in Iceland, Hallgr\u00edmskirkja.", "website": "https://en.wikipedia.org/wiki/Iceland", "subreddit": "/r/Iceland", "center": [500.5, 119.5], "path": [[476.5, 102.5], [525.5, 103.5], [525.5, 136.5], [476.5, 136.5], [476.5, 102.5]]}, {"id": "tww659", "submitted_by": "B0rbor4d", "name": "Mahlunas Jet Flame", "description": "...inspired from her lately droped merch and protected by /r/placeDE in recognition for her support during the Event.ncheck her out and leave a follow:ntwitch.tv/mahluna", "website": "https://mahluna.store/", "subreddit": "/r/mahluna", "center": [1499.5, 1182.5], "path": [[1489.5, 1172.5], [1508.5, 1172.5], [1508.5, 1191.5], [1489.5, 1191.5], [1489.5, 1172.5]]}, -{"id": "tww62z", "submitted_by": "daKoabi", "name": "Kenny", "description": "Kenny from the popular show South Park. Apparently the antivoid killed him.", "website": "", "subreddit": "", "center": [498.5, 1518.5], "path": [[494.5, 1494.5], [494.5, 1495.5], [489.5, 1495.5], [488.5, 1496.5], [488.5, 1497.5], [484.5, 1497.5], [484.5, 1500.5], [481.5, 1500.5], [481.5, 1501.5], [477.5, 1505.5], [477.5, 1510.5], [476.5, 1511.5], [476.5, 1524.5], [477.5, 1524.5], [477.5, 1526.5], [478.5, 1526.5], [478.5, 1530.5], [487.5, 1539.5], [489.5, 1539.5], [491.5, 1541.5], [491.5, 1542.5], [510.5, 1542.5], [510.5, 1541.5], [516.5, 1536.5], [517.5, 1536.5], [518.5, 1535.5], [520.5, 1533.5], [522.5, 1531.5], [522.5, 1525.5], [519.5, 1525.5], [518.5, 1524.5], [513.5, 1524.5], [513.5, 1520.5], [511.5, 1518.5], [511.5, 1516.5], [512.5, 1515.5], [513.5, 1514.5], [513.5, 1510.5], [514.5, 1509.5], [515.5, 1509.5], [516.5, 1508.5], [517.5, 1507.5], [518.5, 1507.5], [518.5, 1508.5], [517.5, 1509.5], [517.5, 1510.5], [517.5, 1511.5], [520.5, 1511.5], [522.5, 1510.5], [521.5, 1509.5], [521.5, 1506.5], [520.5, 1506.5], [519.5, 1505.5], [519.5, 1504.5], [517.5, 1502.5], [517.5, 1501.5], [516.5, 1501.5], [516.5, 1500.5], [514.5, 1498.5], [513.5, 1497.5], [512.5, 1497.5], [511.5, 1496.5], [510.5, 1496.5], [509.5, 1495.5], [508.5, 1494.5]]}, {"id": "tww5yg", "submitted_by": "HashBR", "name": "Irm\u00e3o do Jorel (Jorel's Brother)", "description": "Irm\u00e3o do Jorel is a Brazilian animated cartoon series.", "website": "https://www.cartoonnetwork.com.br/show/irmao-do-jorel", "subreddit": "/r/Brasil", "center": [1417.5, 1769.5], "path": [[1409.5, 1758.5], [1409.5, 1779.5], [1425.5, 1779.5], [1425.5, 1758.5], [1409.5, 1758.5], [1409.5, 1758.5], [1409.5, 1758.5]]}, {"id": "tww5y8", "submitted_by": "cefaluu", "name": "Dune", "description": "Dune is a science fiction book written by Frank Herbert. This logo is inspired by Denis Villeneuve's 2021 movie adaptation. Our Fremen warriors fought to protect it from becoming DUNG. We have made strong alliances with our neighbors such as Metal Gear Solid, The Magnus Archives and Juice Wrld. We have also partnered with the Science Fiction Fantasy Alliance.n", "website": "", "subreddit": "/r/Dune", "center": [1982.5, 169.5], "path": [[1965.5, 163.5], [1965.5, 174.5], [1999.5, 174.5], [1999.5, 163.5]]}, {"id": "tww5wv", "submitted_by": "GoJoeyGo123", "name": "Fedora", "description": "Fedora is a Linux distribution developed by the Fedora Project which is sponsored primarily by Red Hat", "website": "https://getfedora.org/", "subreddit": "/r/Fedora", "center": [37.5, 685.5], "path": [[33.5, 689.5], [33.5, 683.5], [34.5, 683.5], [34.5, 682.5], [35.5, 681.5], [39.5, 681.5], [41.5, 683.5], [41.5, 687.5], [40.5, 688.5], [39.5, 689.5]]}, @@ -2591,7 +2584,6 @@ {"id": "twvswl", "submitted_by": "TumoricER", "name": "r/politicalcompassmemes", "description": "Subreddit dedicated to making memes about stereotypes related to the Political Compass quadrants. Formed a short-lived alliance with r/utahjazz and was attacked by an Argentinian streamer. Had the Weezer logo on a quadrant for a short time, but due to controversy with their top posts the fansub for the band decided to remove themselves from it.", "website": "https://www.politicalcompass.org", "subreddit": "/r/PoliticalCompassMemes", "center": [392.5, 628.5], "path": [[363.5, 613.5], [379.5, 613.5], [379.5, 609.5], [420.5, 609.5], [421.5, 645.5], [361.5, 646.5], [362.5, 613.5]]}, {"id": "twvswh", "submitted_by": "CostinTea", "name": "Good Mythical Morning logo #2", "description": "The logo of the daily YouTube show by Rhett and Link, Good Mythical Morning.", "website": "https://youtube.com/rhettandlink2", "subreddit": "/r/GoodMythicalMorning", "center": [1273.5, 1187.5], "path": [[1261.5, 1173.5], [1261.5, 1201.5], [1284.5, 1201.5], [1284.5, 1173.5]]}, {"id": "twvsv1", "submitted_by": "Akyn_CZE", "name": "Shovel Knight", "description": "A side-scrolling platform game with an 8-bit graphical style. Knight's primal tool is his trustworthy shovel.", "website": "", "subreddit": "/r/ShovelKnight", "center": [682.5, 308.5], "path": [[676.5, 319.5], [675.5, 319.5], [675.5, 318.5], [676.5, 317.5], [673.5, 315.5], [671.5, 314.5], [669.5, 314.5], [668.5, 314.5], [668.5, 315.5], [667.5, 315.5], [667.5, 316.5], [666.5, 316.5], [666.5, 312.5], [667.5, 312.5], [667.5, 313.5], [668.5, 313.5], [669.5, 313.5], [669.5, 310.5], [671.5, 310.5], [671.5, 307.5], [672.5, 306.5], [676.5, 306.5], [676.5, 302.5], [675.5, 302.5], [675.5, 301.5], [673.5, 301.5], [673.5, 301.5], [672.5, 301.5], [672.5, 299.5], [671.5, 300.5], [671.5, 298.5], [670.5, 298.5], [670.5, 296.5], [674.5, 296.5], [674.5, 297.5], [675.5, 297.5], [675.5, 298.5], [685.5, 298.5], [686.5, 298.5], [686.5, 299.5], [687.5, 299.5], [688.5, 299.5], [688.5, 297.5], [689.5, 297.5], [689.5, 296.5], [690.5, 296.5], [690.5, 294.5], [690.5, 294.5], [689.5, 293.5], [689.5, 292.5], [688.5, 292.5], [688.5, 291.5], [689.5, 291.5], [690.5, 291.5], [690.5, 292.5], [691.5, 292.5], [691.5, 293.5], [692.5, 293.5], [692.5, 294.5], [692.5, 298.5], [691.5, 298.5], [691.5, 299.5], [690.5, 299.5], [689.5, 299.5], [688.5, 300.5], [687.5, 300.5], [686.5, 300.5], [686.5, 306.5], [687.5, 306.5], [689.5, 306.5], [690.5, 307.5], [690.5, 308.5], [690.5, 308.5], [691.5, 309.5], [692.5, 310.5], [693.5, 310.5], [695.5, 310.5], [695.5, 311.5], [696.5, 311.5], [697.5, 311.5], [697.5, 312.5], [697.5, 312.5], [698.5, 312.5], [698.5, 313.5], [699.5, 313.5], [699.5, 314.5], [698.5, 314.5], [698.5, 315.5], [697.5, 315.5], [697.5, 316.5], [696.5, 315.5], [695.5, 316.5], [695.5, 316.5], [693.5, 316.5], [690.5, 316.5], [688.5, 315.5], [686.5, 315.5], [687.5, 316.5], [687.5, 318.5], [687.5, 319.5], [685.5, 319.5], [684.5, 318.5], [684.5, 317.5], [681.5, 317.5], [681.5, 316.5], [680.5, 316.5], [678.5, 316.5], [679.5, 317.5], [678.5, 317.5], [678.5, 318.5], [677.5, 319.5]]}, -{"id": "twvstc", "submitted_by": "TrulyGolden", "name": "Kenny", "description": "Kenny McCormick from the popular American cartoon 'South Park.'", "website": "", "subreddit": "/r/southpark", "center": [500.5, 1518.5], "path": [[479.5, 1503.5], [492.5, 1495.5], [510.5, 1496.5], [522.5, 1509.5], [522.5, 1530.5], [508.5, 1540.5], [492.5, 1542.5], [478.5, 1529.5], [477.5, 1523.5]]}, {"id": "twvsg3", "submitted_by": "Visible_Ad_4840", "name": "Miku Hatsune - Levan polkka", "description": "It is Miku Hatsune a famous vocaloid who spin a leeknThe Leekspin meme was created from a scene in the anime Bleach where the character Orihime seems to turn a leek.", "website": "", "subreddit": "", "center": [1812.5, 742.5], "path": [[1790.5, 725.5], [1790.5, 763.5], [1838.5, 726.5], [1836.5, 754.5], [1834.5, 752.5], [1832.5, 751.5], [1831.5, 752.5], [1830.5, 753.5], [1829.5, 753.5], [1828.5, 753.5], [1828.5, 754.5], [1827.5, 754.5], [1826.5, 754.5], [1826.5, 755.5], [1825.5, 755.5], [1824.5, 755.5], [1823.5, 754.5], [1822.5, 755.5], [1821.5, 755.5], [1819.5, 755.5], [1819.5, 756.5], [1819.5, 758.5], [1818.5, 757.5], [1817.5, 757.5], [1817.5, 758.5], [1817.5, 759.5], [1813.5, 763.5], [1790.5, 763.5], [1790.5, 725.5], [1839.5, 725.5], [1790.5, 763.5]]}, {"id": "twvsfe", "submitted_by": "jpepo", "name": "Wilbur Soot", "description": "Will Gold, known professionally as Wilbur Soot, is a British internet personality, Twitch streamer and musician.", "website": "https://www.twitch.tv/wilbursoot", "subreddit": "/r/wilbursoot", "center": [1834.5, 1483.5], "path": [[1822.5, 1471.5], [1822.5, 1495.5], [1846.5, 1495.5], [1846.5, 1471.5], [1822.5, 1471.5]]}, {"id": "twvs6r", "submitted_by": "BlackBrown123", "name": "Aiba", "description": "The icon from the video game 'AI the Somnium Files'", "website": "", "subreddit": "/r/aithesomniumfiles", "center": [1252.5, 664.5], "path": [[1260.5, 673.5], [1260.5, 660.5], [1260.5, 655.5], [1243.5, 655.5], [1243.5, 672.5]]}, @@ -2816,7 +2808,6 @@ {"id": "twv3yc", "submitted_by": "thelolo_007", "name": "Infinity Train Door", "description": "Infinity Train is a Cartoon Network anthology series which takes place inside an infinite train, this is the door that separates all the cars and a characteristic element of the show.", "website": "", "subreddit": "/r/InfinityTrain", "center": [477.5, 1053.5], "path": [[474.5, 1058.5], [480.5, 1058.5], [480.5, 1047.5], [475.5, 1047.5], [475.5, 1048.5], [474.5, 1048.5]]}, {"id": "twv3y5", "submitted_by": "jeff_rose-in-sock", "name": "The World Ends With You", "description": "Red Skull Pin from the 2007 Square Enix RPG game The World Ends With You. Originally was the Player Pin, but was replaced after the original was destroyed in a raid.", "website": "https://square-enix-games.com/", "subreddit": "/r/twewy", "center": [1331.5, 535.5], "path": [[1330.5, 528.5], [1332.5, 528.5], [1334.5, 529.5], [1336.5, 531.5], [1337.5, 533.5], [1338.5, 536.5], [1337.5, 538.5], [1336.5, 539.5], [1333.5, 542.5], [1330.5, 542.5], [1328.5, 541.5], [1327.5, 540.5], [1326.5, 539.5], [1325.5, 538.5], [1324.5, 534.5], [1325.5, 532.5]]}, {"id": "twv3wq", "submitted_by": "minecrafter2301", "name": "Flag of Nicaragua", "description": "", "website": "", "subreddit": "", "center": [1119.5, 1393.5], "path": [[1083.5, 1371.5], [1083.5, 1414.5], [1155.5, 1414.5], [1155.5, 1371.5], [1083.5, 1371.5]]}, -{"id": "twv3sk", "submitted_by": "sealmealdeal", "name": "Kenny Mccormick", "description": "hes a kid from South Park! he has died in almost every episode from season 1 to season 5, he has died 126 times in the whole show.", "website": "", "subreddit": "/r/southpark", "center": [500.5, 1518.5], "path": [[495.5, 1494.5], [495.5, 1494.5], [495.5, 1494.5], [495.5, 1494.5], [489.5, 1495.5], [487.5, 1497.5], [484.5, 1497.5], [484.5, 1499.5], [481.5, 1501.5], [478.5, 1505.5], [477.5, 1526.5], [485.5, 1534.5], [492.5, 1542.5], [509.5, 1542.5], [521.5, 1531.5], [522.5, 1510.5], [517.5, 1502.5], [510.5, 1497.5], [508.5, 1495.5]]}, {"id": "twv3pa", "submitted_by": "mejeres", "name": "Tool", "description": "The logo of the metal band Tool for their latest album Fear Inoculum", "website": "", "subreddit": "/r/ToolBand", "center": [253.5, 995.5], "path": [[221.5, 990.5], [284.5, 990.5], [284.5, 1000.5], [221.5, 1000.5]]}, {"id": "twv3ns", "submitted_by": "Jansel_", "name": "r/osuplace's Windows XP taskbar button", "description": "In collaboration with r/PlaceStart and r/osuplace, this button was created as r/osuplace was one of the major factions.", "website": "https://osu.ppy.sh/", "subreddit": "/r/PlaceStart, /r/osuplace, ", "center": [246.5, 1985.5], "path": [[200.5, 1973.5], [292.5, 1974.5], [292.5, 1997.5], [200.5, 1997.5]]}, {"id": "twv3kd", "submitted_by": "mrjustaboss", "name": "NinoFace", "description": "A zoomed-in shot of Nino's face from Fire Emblem Heroes. Nino was a playable character in Fire Emblem: The Blazing Blade. Also a FrankerFaceZ emote.", "website": "https://fireemblem.fandom.com/wiki/Nino", "subreddit": "/r/FireEmblemHeroes", "center": [16.5, 1021.5], "path": [[8.5, 1013.5], [8.5, 1028.5], [23.5, 1028.5], [23.5, 1013.5], [16.5, 1013.5]]}, @@ -3428,7 +3419,6 @@ {"id": "tx31hk", "submitted_by": "Azmaas", "name": "Peruvian flags", "description": "Andynsane (a popular peruvian streamer) decided to put his logo into r/Place, this angered many peruvian comunities, who decided to raid his logo with peruvian flags since they felt like the only person who could have made Peru have a better representation on r/Place was putting himself above his own country", "website": "", "subreddit": "", "center": [1830.5, 1082.5], "path": [[1790.5, 1044.5], [1870.5, 1044.5], [1869.5, 1120.5], [1790.5, 1121.5]]}, {"id": "tx31ek", "submitted_by": "GGquartz", "name": "Azure Rathalos", "description": "Remnants of an attempt at creating the Azure Rathalos from the Monster Hunter series inside the blue corner. Even while the communities were allied, the art failed because of unaware people placing blue pixels.", "website": "", "subreddit": "/r/MonsterHunter", "center": [1996.5, 1871.5], "path": [[1999.5, 1868.5], [1992.5, 1868.5], [1992.5, 1874.5], [1999.5, 1874.5], [1999.5, 1868.5]]}, {"id": "tx30sx", "submitted_by": "KamTros47", "name": "Team Quadrant logo", "description": "Logo for Team Quadrant, a gaming and lifestyle brand founded by McLaren Formula 1 driver Lando Norris.", "website": "https://quadrant.gg", "subreddit": "/r/formula1", "center": [489.5, 1793.5], "path": [[481.5, 1789.5], [483.5, 1789.5], [483.5, 1787.5], [495.5, 1787.5], [496.5, 1788.5], [496.5, 1795.5], [497.5, 1795.5], [498.5, 1796.5], [498.5, 1797.5], [497.5, 1799.5], [483.5, 1799.5], [483.5, 1797.5], [481.5, 1797.5]]}, -{"id": "tx30oi", "submitted_by": "el_REEDDit", "name": "andynzein", "description": "zein el streamer mas grande del peru y tambien con la frente mas grande XD", "website": "https://booyah.live/studio/59911252", "subreddit": "", "center": [1830.5, 1082.5], "path": [[1791.5, 1045.5], [1868.5, 1044.5], [1869.5, 1120.5], [1790.5, 1120.5], [1791.5, 1120.5]]}, {"id": "tx30if", "submitted_by": "DPanther_", "name": "Eye of Horus", "description": "A symbol in ancient Egyptian religion that represents well-being, healing, and protection.", "website": "https://en.wikipedia.org/wiki/Eye_of_Horus", "subreddit": "/r/Egypt", "center": [40.5, 158.5], "path": [[29.5, 158.5], [33.5, 155.5], [37.5, 151.5], [44.5, 151.5], [50.5, 157.5], [47.5, 157.5], [44.5, 160.5], [46.5, 161.5], [46.5, 164.5], [42.5, 167.5], [42.5, 162.5], [40.5, 162.5], [36.5, 168.5], [31.5, 168.5], [30.5, 165.5], [33.5, 164.5], [34.5, 167.5], [38.5, 164.5], [38.5, 160.5], [36.5, 159.5]]}, {"id": "tx30eg", "submitted_by": "Edern76", "name": "Switch Homebrew Launcher Logo", "description": "Logo of the Homebrew Launcher, a software allowing to run unofficial applications on the Nintendo Switch", "website": "", "subreddit": "", "center": [1215.5, 902.5], "path": [[1210.5, 897.5], [1210.5, 906.5], [1210.5, 907.5], [1220.5, 907.5], [1220.5, 897.5], [1210.5, 897.5], [1210.5, 907.5]]}, {"id": "tx3006", "submitted_by": "pl45000", "name": "Soul Knight", "description": "Jeu nomm\u00e9 soul knight o\u00f9 l'on retrouve des monstres a abbatre dans un donjon comme celui pr\u00e9sent sur la photo d\u00e9ssin\u00e9", "website": "https://play.google.com/store/apps/details?id=com.ChillyRoom.DungeonShooter&hl=fr&gl=US", "subreddit": "", "center": [1710.5, 1985.5], "path": [[1701.5, 1978.5], [1720.5, 1978.5], [1720.5, 1992.5], [1700.5, 1993.5]]}, @@ -3490,7 +3480,6 @@ {"id": "tx2rek", "submitted_by": "NajmiCreative-719", "name": "Petronas Twin Towers", "description": "Malaysia's well known landmark and by record, the tallest twin towers in the world", "website": "https://en.wikipedia.org/wiki/Petronas_Towers", "subreddit": "/r/malaysia", "center": [358.5, 982.5], "path": [[351.5, 991.5], [351.5, 979.5], [352.5, 979.5], [352.5, 974.5], [353.5, 974.5], [353.5, 971.5], [354.5, 967.5], [354.5, 970.5], [354.5, 971.5], [355.5, 971.5], [355.5, 974.5], [356.5, 974.5], [356.5, 979.5], [357.5, 979.5], [357.5, 981.5], [360.5, 981.5], [360.5, 979.5], [361.5, 979.5], [361.5, 974.5], [362.5, 974.5], [362.5, 971.5], [363.5, 971.5], [363.5, 967.5], [363.5, 971.5], [364.5, 971.5], [364.5, 974.5], [365.5, 974.5], [365.5, 978.5], [366.5, 978.5], [366.5, 991.5], [360.5, 991.5], [360.5, 982.5], [357.5, 982.5], [357.5, 991.5]]}, {"id": "tx2r8f", "submitted_by": "Leetransform25", "name": "2.2 When?", "description": "A reference to the ongoing 5+ year wait for Geometry Dash's 2.2 update. Juniper, Funnygame, and Aeonair's icons are featured in the top right corner.", "website": "", "subreddit": "/r/geometrydashplace", "center": [1519.5, 1574.5], "path": [[1504.5, 1567.5], [1503.5, 1567.5], [1532.5, 1567.5], [1533.5, 1584.5], [1502.5, 1583.5], [1502.5, 1567.5], [1533.5, 1567.5], [1533.5, 1583.5]]}, {"id": "tx2r63", "submitted_by": "Loyso_", "name": "Coko's logo", "description": "French streamer cokoooooo's logo", "website": "https://www.twitch.tv/cokoooooo", "subreddit": "", "center": [1637.5, 44.5], "path": [[1633.5, 42.5], [1639.5, 42.5], [1639.5, 47.5], [1638.5, 47.5], [1633.5, 42.5]]}, -{"id": "tx2qw6", "submitted_by": "AssassinsMeme", "name": "Organization of Free Nations", "description": "A faction of the Hearts of Iron IV Mod TNO (The New Order). An alliance led by the united states fighting for influence against the other factions of the setting.", "website": "", "subreddit": "/r/TNOmod", "center": [842.5, 169.5], "path": [[826.5, 165.5], [846.5, 165.5], [846.5, 156.5], [826.5, 156.5], [826.5, 139.5], [835.5, 155.5], [826.5, 157.5]]}, {"id": "tx2qqp", "submitted_by": "halcyondays-", "name": "Maracan\u00e3 stadium", "description": "Maracan\u00e3 stadium is a football stadium in Rio de Janeiro, Brazil. The image was created with assistance from r/fuckcars and features the flags of Brazil and Argentina. Other flags from South American countries were added organically and were kept in the final design.", "website": "https://www.estadiodomaracana.com.br", "subreddit": "/r/brasil", "center": [1126.5, 598.5], "path": [[1131.5, 579.5], [1138.5, 581.5], [1144.5, 589.5], [1144.5, 598.5], [1141.5, 601.5], [1136.5, 604.5], [1135.5, 605.5], [1137.5, 606.5], [1137.5, 619.5], [1115.5, 619.5], [1115.5, 605.5], [1110.5, 600.5], [1107.5, 597.5], [1108.5, 586.5], [1114.5, 581.5], [1123.5, 579.5]]}, {"id": "tx2qk7", "submitted_by": "SitpiRajendran", "name": "FC Barcelone", "description": "Barcelone Football Club", "website": "", "subreddit": "", "center": [1465.5, 1682.5], "path": [[1439.5, 1659.5], [1490.5, 1660.5], [1491.5, 1705.5], [1439.5, 1704.5], [1439.5, 1660.5]]}, {"id": "tx2qbu", "submitted_by": "Appropriate-Shake-93", "name": "Ariana Grande", "description": "The ariantors pay tribute to their favorite popstar", "website": "", "subreddit": "/r/ariheads", "center": [1989.5, 281.5], "path": [[1993.5, 281.5], [1985.5, 280.5], [1983.5, 277.5], [1980.5, 277.5], [1999.5, 286.5], [1998.5, 277.5], [1979.5, 277.5], [1981.5, 286.5], [1999.5, 286.5]]}, @@ -3531,8 +3520,6 @@ {"id": "tx2kkz", "submitted_by": "bisc0tte_", "name": "JoeHillsTSD", "description": "Joe Hills is an American YouTuber known for his Minecraft videos, though he can also be found reciting poetry in the place of mid-roll ads. These Minecraft videos are primarily on the Hermitcraft server, having joined midway through Season 1 and continuing to play up until the present, Hermitcraft Season 7. Joe also writes music, mainly self-referential or Minecraft-themed parodies, that his brother, Sean Hills, performs.", "website": "https://youtube.fandom.com/wiki/JoeHillsTSD", "subreddit": "/r/hermitcraft", "center": [865.5, 595.5], "path": [[861.5, 592.5], [868.5, 592.5], [868.5, 598.5], [861.5, 598.5], [861.5, 592.5]]}, {"id": "tx2kb3", "submitted_by": "Adrilander2003", "name": "Cyberia", "description": "Cafe & Club that appears in 90's anime Serial Experiments Lain", "website": "https://www.reddit.com/r/Lain/", "subreddit": "/r/Lain", "center": [1501.5, 103.5], "path": [[1481.5, 102.5], [1481.5, 105.5], [1489.5, 111.5], [1496.5, 111.5], [1498.5, 112.5], [1505.5, 112.5], [1505.5, 111.5], [1510.5, 111.5], [1510.5, 110.5], [1514.5, 110.5], [1514.5, 109.5], [1518.5, 109.5], [1518.5, 108.5], [1519.5, 108.5], [1519.5, 107.5], [1520.5, 107.5], [1520.5, 106.5], [1521.5, 106.5], [1521.5, 104.5], [1522.5, 104.5], [1522.5, 103.5], [1521.5, 102.5], [1520.5, 102.5], [1520.5, 99.5], [1520.5, 98.5], [1519.5, 98.5], [1519.5, 97.5], [1513.5, 97.5], [1513.5, 99.5], [1513.5, 98.5], [1509.5, 98.5], [1509.5, 96.5], [1493.5, 95.5], [1491.5, 95.5], [1488.5, 96.5], [1487.5, 96.5], [1486.5, 97.5], [1484.5, 97.5], [1481.5, 101.5]]}, {"id": "tx2k77", "submitted_by": "1nsae", "name": "foolishWallshark", "description": "one of the emotes for twitch streamer Foolish_Gamers.", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "", "center": [1981.5, 751.5], "path": [[1963.5, 732.5], [1999.5, 732.5], [1999.5, 769.5], [1963.5, 769.5]]}, -{"id": "tx2k44", "submitted_by": "The_Nieno", "name": "OFN Torch", "description": "Symbol of the American led faction; The Organisation of Free Nations from the Heath of Iron 4 mod The New Order", "website": "", "subreddit": "/r/TNOmod", "center": [839.5, 167.5], "path": [[825.5, 156.5], [825.5, 165.5], [846.5, 166.5], [846.5, 157.5], [826.5, 156.5], [826.5, 141.5], [835.5, 156.5], [826.5, 141.5], [835.5, 156.5]]}, -{"id": "tx2jw4", "submitted_by": "hagamablabla", "name": "Organization of Free Nations", "description": "A defensive alliance similar to NATO from the alternate history mod The New Order: Last Days of Europe", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=2438003901", "subreddit": "/r/TNOmod", "center": [834.5, 157.5], "path": [[826.5, 140.5], [826.5, 165.5], [846.5, 165.5], [845.5, 156.5], [835.5, 156.5], [832.5, 147.5]]}, {"id": "tx2jlg", "submitted_by": "-_-mello", "name": "Normo", "description": "A 8x8 monochromatic god created by a team of 5 users.", "website": "", "subreddit": "", "center": [994.5, 563.5], "path": [[990.5, 566.5], [990.5, 559.5], [997.5, 559.5], [997.5, 566.5]]}, {"id": "tx2jik", "submitted_by": "staindk", "name": "Greater than One Discord server", "description": "A small friends and university student group Discord. Started in Cape Town, South Africa.", "website": "", "subreddit": "", "center": [1733.5, 584.5], "path": [[1728.5, 579.5], [1737.5, 579.5], [1737.5, 588.5], [1728.5, 588.5]]}, {"id": "tx2j8s", "submitted_by": "PageIA", "name": "Streamer collaboration", "description": "A collaboration between several streamers and friends, adding symbols for their specific communities. Streamers include Foolish_Gamers, TinaKitten, KarlJacobs, Punz, Sapnap, Nihachu, Michael McChill, 5uppp, Tubbo, sylveey, corpse husband, Aipha and more", "website": "https://www.twitch.tv/foolish_gamers", "subreddit": "/r/FoolishGamers", "center": [1215.5, 1024.5], "path": [[1160.5, 927.5], [1283.5, 926.5], [1281.5, 1000.5], [1283.5, 1112.5], [1133.5, 1110.5], [1128.5, 1040.5], [1160.5, 1040.5]]}, @@ -3731,14 +3718,12 @@ {"id": "tx1ogh", "submitted_by": "Anaud-E-Moose", "name": "OOOO Fish Emote", "description": "A BetterTTV (Better TwitchTV) emote of an excited fish. Added by Destiny's community.", "website": "https://betterttv.com/emotes/5e5300e6751afe7d553e4351", "subreddit": "/r/destiny", "center": [463.5, 61.5], "path": [[468.5, 52.5], [461.5, 52.5], [453.5, 60.5], [453.5, 65.5], [458.5, 69.5], [464.5, 69.5], [472.5, 65.5], [470.5, 54.5]]}, {"id": "tx1og0", "submitted_by": "xJoshuaHx", "name": "Turtle", "description": "Just a small turtle made by some friends. His name is Bud.", "website": "https://en.wikipedia.org/wiki/Turtle", "subreddit": "", "center": [884.5, 1514.5], "path": [[880.5, 1511.5], [888.5, 1511.5], [888.5, 1517.5], [880.5, 1517.5], [880.5, 1511.5]]}, {"id": "tx1oax", "submitted_by": "Substantial_Bet_166", "name": "Alpha-chan", "description": "A unit from Animdustry: the anime gacha bullet hell rhythm game Mindustry event", "website": "https://github.com/Anuken/animdustry", "subreddit": "/r/Mindustry", "center": [762.5, 784.5], "path": [[753.5, 780.5], [753.5, 774.5], [758.5, 769.5], [766.5, 770.5], [770.5, 772.5], [771.5, 771.5], [771.5, 784.5], [769.5, 786.5], [770.5, 788.5], [770.5, 791.5], [770.5, 796.5], [766.5, 797.5], [766.5, 801.5], [759.5, 801.5], [759.5, 797.5], [757.5, 797.5], [757.5, 796.5], [755.5, 796.5], [755.5, 793.5], [758.5, 793.5], [756.5, 790.5], [756.5, 785.5], [753.5, 783.5], [753.5, 774.5]]}, -{"id": "tx1o8q", "submitted_by": "MilkMasterMan", "name": "Vuk", "description": "Character from the Hungarian animated film with the same name, based on the novel Vuk by Istv\u00e1n Fekete.", "website": "", "subreddit": "", "center": [1362.5, 263.5], "path": [[1351.5, 247.5], [1346.5, 249.5], [1343.5, 256.5], [1343.5, 267.5], [1352.5, 275.5], [1353.5, 279.5], [1373.5, 279.5], [1371.5, 275.5], [1376.5, 273.5], [1382.5, 263.5], [1381.5, 251.5], [1378.5, 251.5], [1373.5, 256.5], [1370.5, 252.5], [1359.5, 251.5], [1357.5, 252.5], [1357.5, 251.5], [1355.5, 251.5], [1354.5, 247.5]]}, {"id": "tx1o4r", "submitted_by": "g432kjzhg52176tdasuj", "name": "LowkoTV Badge", "description": "A small version of the 2 year Twitch Subscriber Badge of content creator LowkoTV.", "website": "https://www.twitch.tv/lowkotv", "subreddit": "/r/LowkoTV", "center": [889.5, 1822.5], "path": [[882.5, 1817.5], [895.5, 1817.5], [895.5, 1818.5], [897.5, 1818.5], [897.5, 1822.5], [896.5, 1822.5], [896.5, 1823.5], [895.5, 1823.5], [895.5, 1824.5], [894.5, 1824.5], [894.5, 1825.5], [893.5, 1825.5], [893.5, 1826.5], [892.5, 1826.5], [892.5, 1827.5], [891.5, 1827.5], [891.5, 1828.5], [890.5, 1828.5], [890.5, 1829.5], [889.5, 1829.5], [888.5, 1829.5], [888.5, 1828.5], [887.5, 1828.5], [887.5, 1827.5], [886.5, 1827.5], [886.5, 1826.5], [885.5, 1826.5], [885.5, 1825.5], [884.5, 1825.5], [884.5, 1824.5], [883.5, 1824.5], [883.5, 1823.5], [882.5, 1823.5], [882.5, 1822.5], [881.5, 1822.5], [881.5, 1818.5], [882.5, 1818.5], [882.5, 1817.5]]}, {"id": "tx1o37", "submitted_by": "HelloMegat_000", "name": "SrGuillester (Gd Icon)", "description": "A famous Geometry dash Youtuber/StreamernnThis is a representation of his icon in GD.", "website": "https://www.youtube.com/c/SrGuillester", "subreddit": "", "center": [1164.5, 1391.5], "path": [[1164.5, 1367.5], [1179.5, 1368.5], [1173.5, 1373.5], [1168.5, 1387.5], [1168.5, 1397.5], [1170.5, 1408.5], [1184.5, 1416.5], [1173.5, 1415.5], [1173.5, 1413.5], [1159.5, 1414.5], [1159.5, 1410.5], [1155.5, 1410.5], [1156.5, 1372.5], [1164.5, 1372.5]]}, {"id": "tx1nyb", "submitted_by": "Walnut-Simulacrum", "name": "Slovakian Flag", "description": "The flag of the nation of Slovakia, decorated with artwork celebrating the nation's architecture, geography, and culture.", "website": "", "subreddit": "/r/Slovakia", "center": [403.5, 879.5], "path": [[360.5, 872.5], [446.5, 872.5], [447.5, 873.5], [447.5, 887.5], [364.5, 887.5], [363.5, 886.5], [361.5, 884.5], [359.5, 885.5], [359.5, 872.5]]}, {"id": "tx1nvg", "submitted_by": "Sreeper", "name": "The Little Mermaid", "description": "The Little Mermaid (Danish: Den lille Havfrue) is a very famous statue in Copenhagen, based on the adventure of the same name by Danish author Hans Christian Andersen. The small and unimposing statue is a Copenhagen icon and has been a major tourist attraction since its unveiling in 1913", "website": "https://en.wikipedia.org/wiki/The_Little_Mermaid_(statue)", "subreddit": "/r/Denmark", "center": [322.5, 143.5], "path": [[306.5, 154.5], [306.5, 143.5], [314.5, 137.5], [322.5, 118.5], [330.5, 130.5], [329.5, 138.5], [341.5, 151.5], [329.5, 157.5]]}, {"id": "tx1nok", "submitted_by": "GuardianThatDoesStuf", "name": "okpr troll face", "description": "Romainian version of r/okbuddyretard collaborated with r/pMegu from the start of the expansion to keep both artworks alive, and was one of the last romanian places taken by the white void.", "website": "", "subreddit": "/r/okpr", "center": [1690.5, 195.5], "path": [[1683.5, 189.5], [1683.5, 200.5], [1697.5, 200.5], [1697.5, 189.5], [1690.5, 189.5]]}, {"id": "tx1nno", "submitted_by": "Eclipsed_Luna", "name": "Femboy miniflag", "description": "A mini femboy pride flag.nA bigger version has also been built around 245, 940 (southwest).nFemboy, also known as tomgirl, rosboy, janegirl, or calicogirl, is a term for gender non-conforming mingender and miaspec individuals who present femininely in some way. This often refers to clothing and external appearance, but can also sometimes refer to the way one acts, the way one communicates, what interests or hobbies on has, etc. This term has more to do with gender presentation than gender identity, but some femboys may be fingender.", "website": "https://lgbta.miraheze.org/wiki/Femboy", "subreddit": "/r/placepride", "center": [453.5, 593.5], "path": [[448.5, 589.5], [457.5, 589.5], [457.5, 597.5], [448.5, 597.5], [448.5, 589.5]]}, -{"id": "tx1nlq", "submitted_by": "Rift-Ranger", "name": "OFN Logo (TNO)", "description": "The logo of the Organization of Free Nations from the Hearts of Iron 4 mod The New Order: Last Days of Europe. Had a collab with r/globaltribe.", "website": "", "subreddit": "/r/TNOmod", "center": [835.5, 156.5], "path": [[826.5, 140.5], [826.5, 165.5], [847.5, 166.5], [847.5, 156.5]]}, {"id": "tx1nj9", "submitted_by": "Darkoco", "name": "Grand Typhou", "description": "Sprite de Typhou, projet men\u00e9 par des grokons et leurs quintuples comptes", "website": "", "subreddit": "", "center": [1909.5, 1161.5], "path": [[1905.5, 1156.5], [1905.5, 1166.5], [1913.5, 1166.5], [1913.5, 1156.5]]}, {"id": "tx1na0", "submitted_by": "Teixugo11", "name": "OMOCAT logo", "description": "Logo of the artist and game developer OMOCAT, who created OMORI which derived off of a webcomic that ran 2011-2012.", "website": "https://www.omocat-shop.com/pages/about", "subreddit": "/r/OMORI", "center": [1837.5, 1536.5], "path": [ [ 1825.5, 1548.5 ], [ 1825.5, 1529.5 ], [ 1826.5, 1528.5 ], [ 1826.5, 1522.5 ], [ 1827.5, 1521.5 ], [ 1828.5, 1520.5 ], [ 1829.5, 1521.5 ], [ 1832.5, 1524.5 ], [ 1844.5, 1524.5 ], [ 1848.5, 1520.5 ], [ 1850.5, 1522.5 ], [ 1850.5, 1528.5 ], [ 1851.5, 1529.5 ], [ 1851.5, 1548.5 ], [ 1850.5, 1549.5 ], [ 1850.5, 1551.5 ], [ 1849.5, 1552.5 ], [ 1848.5, 1553.5 ], [ 1847.5, 1553.5 ], [ 1845.5, 1551.5 ], [ 1845.5, 1550.5 ], [ 1844.5, 1550.5 ], [ 1843.5, 1551.5 ], [ 1842.5, 1550.5 ], [ 1831.5, 1550.5 ], [ 1831.5, 1551.5 ], [ 1830.5, 1552.5 ], [ 1829.5, 1553.5 ], [1828.5, 1553.5 ], [ 1826.5, 1551.5 ], [ 1826.5, 1549.5 ], [ 1825.5, 1548.5 ] ]}, {"id": "tx1n8v", "submitted_by": "mamillius", "name": "UVU, Utah Valley University", "description": "A Large Public University located in Orem, Utah", "website": "https://www.uvu.edu/", "subreddit": "/r/UVU", "center": [1948.5, 873.5], "path": [[1942.5, 870.5], [1942.5, 876.5], [1954.5, 876.5], [1954.5, 870.5], [1942.5, 870.5]]}, @@ -4102,7 +4087,6 @@ {"id": "tx6o18", "submitted_by": "lopern", "name": "Foxhole.EXE", "description": "This is the Symbol of Foxhole. This is the 3rd Art they have on the board.", "website": "", "subreddit": "", "center": [1385.5, 1984.5], "path": [[1372.5, 1973.5], [1372.5, 1995.5], [1398.5, 1995.5], [1398.5, 1973.5], [1398.5, 1973.5], [1396.5, 1973.5]]}, {"id": "tx6nxi", "submitted_by": "TheEssemCraft", "name": "EndeavourOS", "description": "Arch-based Linux distribution; a terminal-centric distro with a vibrant and friendly community at its core", "website": "https://endeavouros.com", "subreddit": "/r/tuxplace", "center": [59.5, 705.5], "path": [[60.5, 702.5], [56.5, 706.5], [57.5, 707.5], [61.5, 707.5], [62.5, 706.5], [62.5, 704.5], [60.5, 702.5]]}, {"id": "tx6ntr", "submitted_by": "Rurush999", "name": "Code Geass", "description": "The symbol that appears in the eye of characters in the anime Code Geass when using their Geass abilities", "website": "", "subreddit": "/r/codegeass", "center": [1230.5, 1886.5], "path": [[1228.5, 1880.5], [1234.5, 1880.5], [1237.5, 1888.5], [1235.5, 1892.5], [1226.5, 1892.5], [1224.5, 1885.5], [1224.5, 1884.5]]}, -{"id": "tx6nen", "submitted_by": "dannnnasp", "name": "Logo de streamer Riversgg", "description": "Logo de la streamer mexicana revelaci\u00f3n Rivers. nGamer de cl\u00f3set (ya no tanto).", "website": "https://twitch.tv/rivers_gg", "subreddit": "", "center": [1797.5, 60.5], "path": [[1786.5, 52.5], [1807.5, 52.5], [1808.5, 67.5], [1786.5, 68.5]]}, {"id": "tx6nbz", "submitted_by": "akvmq", "name": "Vaporeon Beach", "description": "What a nice day at the beach! Vappy has a nice place to relax, with her Pi\u00f1a Colada on a bright day! \u2600\ufe0f\ud83c\udf79 Did you know that in terms of human compatibility, Vaporeon is the best swimming partner at the beach? Made by the lovely people at the Pokemon in the Pokemon r/place Discord!", "website": "https://discord.gg/HEfADXQKs7", "subreddit": "", "center": [1986.5, 1286.5], "path": [[1999.5, 1273.5], [1999.5, 1300.5], [1973.5, 1300.5], [1973.5, 1272.5]]}, {"id": "tx6n5p", "submitted_by": "HauntingTone4210", "name": "team ducklings", "description": "minecraft skins from spanish streamers Perxitaa, VioletaG, Momonkunn and Carola.ncreated by their communities", "website": "", "subreddit": "", "center": [1989.5, 1393.5], "path": [[1980.5, 1402.5], [1999.5, 1402.5], [1999.5, 1384.5], [1979.5, 1384.5], [1979.5, 1402.5]]}, {"id": "tx6myu", "submitted_by": "_Asterios", "name": "2b4u", "description": "In memory of r/2 Balkan 4 u subreddit that was removed", "website": "https://subredditstats.com/r/2balkan4you", "subreddit": "", "center": [1927.5, 328.5], "path": [[1918.5, 322.5], [1918.5, 334.5], [1936.5, 334.5], [1936.5, 322.5], [1918.5, 322.5]]}, @@ -4195,7 +4179,6 @@ {"id": "tx69fc", "submitted_by": "nolwmlou", "name": "Sapphic Violet Flower", "description": "Violet flower is a traditional symbol of Sapphic love (FF)", "website": "https://flag.library.lgbt/flags/sapphic/", "subreddit": "", "center": [761.5, 453.5], "path": [[754.5, 449.5], [768.5, 449.5], [768.5, 456.5], [754.5, 456.5]]}, {"id": "tx69cr", "submitted_by": "EvMund", "name": "Hong Kong Bauhinia", "description": "Star Wars became a subject of 2019 Hong Kong protest memes after the govt arrested people for having laser pointers, claiming them to be deadly weapons.", "website": "", "subreddit": "/r/hongkong", "center": [816.5, 1693.5], "path": [[820.5, 1671.5], [810.5, 1675.5], [808.5, 1684.5], [796.5, 1681.5], [795.5, 1690.5], [799.5, 1695.5], [803.5, 1698.5], [805.5, 1700.5], [800.5, 1709.5], [802.5, 1710.5], [811.5, 1711.5], [817.5, 1707.5], [820.5, 1708.5], [825.5, 1712.5], [828.5, 1712.5], [832.5, 1705.5], [831.5, 1700.5], [829.5, 1695.5], [833.5, 1693.5], [839.5, 1691.5], [835.5, 1685.5], [824.5, 1682.5], [821.5, 1682.5], [820.5, 1676.5]]}, {"id": "tx69c9", "submitted_by": "lalagartijaplayera", "name": "Aroyitt", "description": "Aroyitt is one of the most famous spanish streamers. The image shows Aroyitt's pig named Jamon, two among us characters that represent Aroyitt and Alexby.n t", "website": "", "subreddit": "/r/Aroyitt", "center": [1986.5, 1416.5], "path": [[1975.5, 1402.5], [1975.5, 1429.5], [1998.5, 1429.5], [1998.5, 1403.5]]}, -{"id": "tx69bx", "submitted_by": "CholitoVillegas", "name": "Rivers_gg", "description": "Mexican Twitch streamer icon named Rivers.", "website": "https://www.twitch.tv/rivers_gg", "subreddit": "", "center": [1796.5, 59.5], "path": [[1806.5, 67.5], [1806.5, 50.5], [1785.5, 50.5], [1785.5, 67.5], [1790.5, 67.5], [1806.5, 67.5]]}, {"id": "tx69a4", "submitted_by": "lennielennlenn", "name": "Volkacio", "description": "Representation of two characters from gta roleplay known as Volkov (vodka bottle) and Horacio (blue butterfly). The 17 calendar is a date to commemorate their reunion back in 2021 july 17th.", "website": "", "subreddit": "", "center": [1886.5, 746.5], "path": [[1874.5, 725.5], [1874.5, 760.5], [1904.5, 760.5], [1904.5, 745.5], [1882.5, 744.5], [1882.5, 732.5], [1891.5, 732.5], [1891.5, 725.5], [1874.5, 725.5], [1874.5, 760.5]]}, {"id": "tx6985", "submitted_by": "link_dead", "name": "F-22 air superiority fighter", "description": "The F-22 Air Superiority Fighter jet. The most advanced 5th generation fighter aircraft ever constructed.", "website": "https://en.wikipedia.org/wiki/Lockheed_Martin_F-22_Raptor", "subreddit": "/r/AmericanFlagInPlace", "center": [1815.5, 1823.5], "path": [[1826.5, 1834.5], [1826.5, 1837.5], [1822.5, 1835.5], [1817.5, 1839.5], [1806.5, 1825.5], [1796.5, 1821.5], [1781.5, 1813.5], [1779.5, 1809.5], [1790.5, 1809.5], [1798.5, 1813.5], [1805.5, 1807.5], [1814.5, 1815.5], [1819.5, 1811.5], [1822.5, 1823.5], [1827.5, 1823.5], [1859.5, 1837.5], [1859.5, 1838.5]]}, {"id": "tx693p", "submitted_by": "sketchyswirl", "name": "Dream Face", "description": "The face of minecrafter Dream's Minecraft skin, with one erroneous white pixeln", "website": "https://www.youtube.com/user/DreamTraps", "subreddit": "/r/DreamWasTaken", "center": [187.5, 949.5], "path": [[183.5, 945.5], [190.5, 945.5], [190.5, 952.5], [183.5, 952.5]]}, @@ -4226,7 +4209,6 @@ {"id": "tx66o6", "submitted_by": "LeftEyeHole", "name": "Game Pal", "description": "A Gameboy featuring a non-binary flag heart over a trans flag on its screen.", "website": "", "subreddit": "/r/transplace", "center": [646.5, 444.5], "path": [[641.5, 451.5], [642.5, 451.5], [638.5, 455.5], [642.5, 458.5], [654.5, 450.5], [654.5, 433.5], [638.5, 433.5], [637.5, 450.5]]}, {"id": "tx66fb", "submitted_by": "AlexUnderscore", "name": "Footballers Against Terrorism", "description": "I never eat, I always FAT", "website": "", "subreddit": "", "center": [397.5, 950.5], "path": [[391.5, 946.5], [391.5, 954.5], [402.5, 954.5], [402.5, 946.5], [392.5, 946.5]]}, {"id": "tx66c6", "submitted_by": "Scharnvirk", "name": "Ular", "description": "Character from etherane's Mr.Rainer's Solve-it Service", "website": "https://etherane.itch.io/", "subreddit": "", "center": [828.5, 1798.5], "path": [[823.5, 1788.5], [833.5, 1788.5], [833.5, 1807.5], [823.5, 1807.5], [823.5, 1788.5]]}, -{"id": "tx6692", "submitted_by": "Aserratoo", "name": "Rivers", "description": "The Best Regia Streamer on that moment Long live the Pollitos de colores And TQM All worldnSaludos Aserratoo <3", "website": "https://www.twitch.tv/rivers_gg", "subreddit": "/r/rivers_gg", "center": [1796.5, 59.5], "path": [[1784.5, 50.5], [1807.5, 50.5], [1807.5, 67.5], [1784.5, 67.5], [1784.5, 50.5]]}, {"id": "tx667z", "submitted_by": "Cyclopse215", "name": "Violet Evergarden", "description": "A chibi version of the anime character Violet Evergarden, a letter and her emerald brooch.", "website": "", "subreddit": "/r/VioletEvergarden", "center": [583.5, 1512.5], "path": [[574.5, 1502.5], [591.5, 1502.5], [591.5, 1521.5], [574.5, 1521.5]]}, {"id": "tx665n", "submitted_by": "HorsePie1", "name": "The blue man", "description": "The mascot for the blue man community, led by the Youtuber Mattchu", "website": "https://youtube.com/mattchu", "subreddit": "/r/Mattchu", "center": [450.5, 1366.5], "path": [[446.5, 1361.5], [455.5, 1361.5], [456.5, 1362.5], [456.5, 1365.5], [455.5, 1366.5], [454.5, 1367.5], [453.5, 1372.5], [448.5, 1372.5], [448.5, 1369.5], [447.5, 1368.5], [445.5, 1368.5], [444.5, 1367.5], [444.5, 1363.5], [445.5, 1362.5], [446.5, 1361.5], [446.5, 1361.5]]}, {"id": "tx6618", "submitted_by": "naseweis520", "name": "Lang & Schwarz", "description": "Lang & Schwarz, a company which provides financial services that is often mentioned in /r/mauerstrassenwetten .", "website": "", "subreddit": "", "center": [991.5, 1147.5], "path": [[987.5, 1143.5], [995.5, 1143.5], [996.5, 1144.5], [996.5, 1150.5], [997.5, 1151.5], [997.5, 1152.5], [994.5, 1152.5], [993.5, 1151.5], [987.5, 1151.5], [986.5, 1150.5], [986.5, 1144.5]]}, @@ -4456,7 +4438,6 @@ {"id": "tx53hp", "submitted_by": "Ratman258258", "name": "AzpazTv", "description": "A French minecraft youtuber with 200k subscribers renown for being the owner of nulcraft.fr", "website": "https://www.youtube.com/c/AzpazTv", "subreddit": "", "center": [326.5, 1919.5], "path": [[321.5, 1914.5], [330.5, 1914.5], [330.5, 1923.5], [321.5, 1923.5]]}, {"id": "tx52p4", "submitted_by": "Infrastation", "name": "The Cascadia Alliance", "description": "Cornerstoned by the Cascadia group, this area was also home to the Grinfolk, Chippy Gaming, Tierzoo, Northern Lion, the Faces Crew, and the Voidpunks. On the night of the 3rd, the streamer XQC replaced the entire corner with an image of the Joker, which was then annexed by Iran. After the smoke cleared, each member of the alliance split apart, but most helped each other rebuild: Northern Lion moved down slightly to make room for Iran, the Grinfolk fought in the BARI\u015e peace sign to rebuild, and the Cascadians would place a new, bigger Doug flag with the help of PayMoneyWubby and his fanbase.", "website": "https://discord.gg/wHcy9C9TCJ", "subreddit": "/r/Cascadia", "center": [25.5, 323.5], "path": [[0.5, 338.5], [0.5, 310.5], [63.5, 310.5], [63.5, 317.5], [52.5, 317.5], [52.5, 325.5], [50.5, 327.5], [36.5, 327.5], [36.5, 338.5], [32.5, 341.5], [21.5, 341.5], [18.5, 338.5]]}, {"id": "tx52im", "submitted_by": "UHavinAGiggleTherM8", "name": "Lavvu", "description": "A Lavvu is a temporary dwelling used by the S\u00e1mi people that enables them to follow their reindeer herds.", "website": "https://en.wikipedia.org/wiki/Lavvu", "subreddit": "/r/place_nordicunion", "center": [514.5, 84.5], "path": [[507.5, 93.5], [521.5, 93.5], [521.5, 75.5], [507.5, 75.5], [507.5, 93.5]]}, -{"id": "tx524k", "submitted_by": "Orangebluefruits", "name": "Toph and Zuko", "description": "Two shiba dogs belonging to streamer Buddha. Made by his discord community.", "website": "https://buddha.gg/", "subreddit": "", "center": [1435.5, 630.5], "path": [[1382.5, 613.5], [1485.5, 612.5], [1487.5, 650.5], [1383.5, 646.5]]}, {"id": "tx522s", "submitted_by": "yinwa333", "name": "One More Multiverse", "description": "One More Multiverse is an online virtual tabletop to play, share, and stream your next tabletop roleplaying game. With a massive and ever-growing pixel art library collection, in OMM create a level that changes as quickly as your story.", "website": "https://multiverse.com/", "subreddit": "/r/OneMoreMultiverse", "center": [899.5, 1134.5], "path": [[902.5, 1133.5], [902.5, 1131.5], [899.5, 1129.5], [895.5, 1133.5], [895.5, 1136.5], [899.5, 1138.5], [903.5, 1135.5], [904.5, 1133.5], [902.5, 1132.5], [901.5, 1130.5]]}, {"id": "tx51h9", "submitted_by": "mitchrogoff", "name": "Boston BUTT", "description": "The word butt spelled out by the Boston University logo as well as two tufts logos. Organized by the Boston Higher Education r/place 2022 Discord server", "website": "", "subreddit": "", "center": [329.5, 1529.5], "path": [[300.5, 1520.5], [358.5, 1520.5], [358.5, 1537.5], [300.5, 1537.5]]}, {"id": "tx516j", "submitted_by": "kurai808", "name": "Accounting Subreddit", "description": "The formula is Assets = Liabilities + Equity, which is known as the Accounting Equation.", "website": "", "subreddit": "/r/accounting", "center": [1596.5, 1636.5], "path": [[1581.5, 1629.5], [1581.5, 1642.5], [1611.5, 1642.5], [1611.5, 1629.5]]}, @@ -4619,7 +4600,6 @@ {"id": "tx3wnu", "submitted_by": "unsidhe", "name": "Flags of the Canadian provinces", "description": "Left side, top to bottom: Northwest Territories, Yukon, Alberta, British ColumbianSecond-from-left: Nunavut, Saskatchewan, Manitobanmiddle-right: Prince Edward Island, the Metis nation, OntarionRight: New Brunswick, Newfoundland, Nova Scotia, Quebec", "website": "", "subreddit": "", "center": [211.5, 470.5], "path": [[230.5, 462.5], [229.5, 463.5], [243.5, 463.5], [243.5, 471.5], [228.5, 471.5], [228.5, 463.5], [175.5, 451.5], [244.5, 451.5], [243.5, 493.5], [175.5, 492.5], [176.5, 451.5], [243.5, 452.5]]}, {"id": "tx3wks", "submitted_by": "Suspicious_Dinner323", "name": "Ireland", "description": "Ireland flag with the famous Clover and the Celtic harp", "website": "", "subreddit": "", "center": [1503.5, 799.5], "path": [[1487.5, 765.5], [1486.5, 827.5], [1523.5, 827.5], [1523.5, 781.5], [1507.5, 781.5], [1507.5, 765.5]]}, {"id": "tx3wjx", "submitted_by": "1983FNaF1987", "name": "Hidden Amogus in Void Mother", "description": "An Amogus that has slipped into the grasp of the Void Mother.", "website": "", "subreddit": "", "center": [970.5, 1382.5], "path": [[967.5, 1377.5], [973.5, 1377.5], [973.5, 1387.5], [966.5, 1386.5]]}, -{"id": "tx3wg3", "submitted_by": "W1Lito", "name": "ANDY ZEIN (FRENTE ARMY)", "description": "Frenton peruano tremendamente enamorado de star yuki, la frente army lucho hasta el final para que no sea destruido por el nacionalismo peruano.", "website": "", "subreddit": "", "center": [1829.5, 1084.5], "path": [[1793.5, 1047.5], [1791.5, 1120.5], [1868.5, 1118.5], [1869.5, 1043.5], [1794.5, 1045.5], [1791.5, 1120.5], [1768.5, 1046.5], [1796.5, 1045.5], [1769.5, 1099.5], [1790.5, 1100.5], [1768.5, 1046.5], [1770.5, 1099.5], [1790.5, 1100.5]]}, {"id": "tx3wbj", "submitted_by": "P_MOVIE", "name": "Weezer", "description": "Weezer is an American rock band. The picture above is from their famously first 1994 self-titled album, better known as 'Blue Album'. The under picture is their logo and the color depicts of each of their self-titled albums: blue ('94), green ('01), red ('08), white ('16), teal, and black ('19)", "website": "https://weezer.com/", "subreddit": "/r/weezer", "center": [1428.5, 137.5], "path": [[1420.5, 125.5], [1420.5, 148.5], [1436.5, 148.5], [1436.5, 126.5]]}, {"id": "tx3wab", "submitted_by": "Falxo7326", "name": "Seattle Sports", "description": "After failing to defend its original location the r/mariners subreddit built at the bottom of the canvas. User u/YOYAidan successfully allied the r/NewZealand in hopes of staying where they were, sadly a streamer soon attacked the Mariners and New Zealand. After the canvas expanded they built close to each other. After another streamer destroyed the trident it was moved above New Zealand where it stayed until the end. After a discord server was created to better defend the trident more Seattle logos were made to the left of it. In the end Seahawk, Sounders, and a Kraken logo were also made with the help of r/SeattleKraken r/Seahawks and r/SoundersFC", "website": "https://discord.gg/seattlesportsreddit", "subreddit": "/r/Mariners", "center": [1583.5, 672.5], "path": [[1576.5, 728.5], [1557.5, 728.5], [1554.5, 725.5], [1555.5, 724.5], [1555.5, 714.5], [1558.5, 711.5], [1563.5, 711.5], [1563.5, 612.5], [1567.5, 612.5], [1567.5, 638.5], [1577.5, 638.5], [1577.5, 659.5], [1600.5, 659.5], [1600.5, 636.5], [1618.5, 636.5], [1618.5, 675.5], [1580.5, 675.5], [1580.5, 689.5], [1576.5, 689.5]]}, {"id": "tx3w9v", "submitted_by": "Slylle", "name": "Jinx with blue flare and Karmine Corp.", "description": "This character is Jinx from Arcane, a Netflix series produced by League of Legends and Fortiche Studio (a French studio who also worked on K/DA Pop/Stars).\nKarmine Corp, a French team launched by Kameto, has a famous emote of a supporter with a blue flare. So, when Arcane came out with this Jinx's scene, they associated Jinx with this blue flare and the emote. That is why a Karmine Corp logo is in the blue smoke.", "website": "https://twitter.com/netflixfr/status/1460580879810674693?lang=en", "subreddit": "/r/placefrance", "center": [41.5, 1571.5], "path": [[59.5, 1691.5], [4.5, 1660.5], [26.5, 1474.5], [91.5, 1469.5], [87.5, 1507.5], [57.5, 1522.5], [53.5, 1549.5]]}, @@ -4668,7 +4648,6 @@ {"id": "tx3no0", "submitted_by": "Bunnies2000", "name": "OniGiri", "description": "Representation of the VTuber on Twitch that goes by OniGiriEN", "website": "https://www.twitch.tv/onigirien", "subreddit": "", "center": [789.5, 1082.5], "path": [[781.5, 1074.5], [796.5, 1074.5], [796.5, 1089.5], [781.5, 1089.5], [781.5, 1075.5]]}, {"id": "tx3nlo", "submitted_by": "TheDM18", "name": "4px Windows logo", "description": "", "website": "", "subreddit": "", "center": [837.5, 1832.5], "path": [[836.5, 1831.5], [836.5, 1832.5], [837.5, 1832.5], [837.5, 1831.5]]}, {"id": "tx3nl9", "submitted_by": "Dry-Acanthopterygii9", "name": "FC BARCELONA", "description": "Bar\u00e7a's shield, just below Auronplay. He is a strong FC Barcelona supporter. The shield is not perfect beacuse it was made in the last moment, but S\u00daBANSE A LA XAVINETA PERROSSS", "website": "https://www.fcbarcelona.com/en/", "subreddit": "/r/barca", "center": [1465.5, 1682.5], "path": [[1440.5, 1659.5], [1440.5, 1704.5], [1491.5, 1704.5], [1491.5, 1659.5], [1467.5, 1660.5], [1490.5, 1659.5], [1470.5, 1659.5]]}, -{"id": "tx3n7i", "submitted_by": "dasbp", "name": "Mizkif riding his bunny, Dedo, into battle", "description": "Created by Mizkif's community depicting himself riding atop the back of his bunny, Dedo. Although using the famous Napoleon image, this represent's Mizkif", "website": "https://www.twitch.tv/mizkif", "subreddit": "/r/Mizkif", "center": [1384.5, 1426.5], "path": [[1332.5, 1354.5], [1436.5, 1354.5], [1436.5, 1498.5], [1332.5, 1498.5]]}, {"id": "tx3n1a", "submitted_by": "bunnybri_", "name": "Crumb Cuptoast", "description": "Minecraft head of the streamer CupToast, also known as Crumb. She is known for her animations and art.", "website": "", "subreddit": "", "center": [1718.5, 360.5], "path": [[1714.5, 356.5], [1721.5, 356.5], [1721.5, 363.5], [1714.5, 363.5]]}, {"id": "tx3mh4", "submitted_by": "Prior_Gate_9909", "name": "My Beautiful Dark Twisted Fantasy", "description": "My Beautiful Dark Twisted Fantasy is an album from Kanye West. The album released in 2010 and was received pretty well.n", "website": "https://open.spotify.com/album/20r762YmB5HeofjMCiPMLv", "subreddit": "/r/Kanye", "center": [1789.5, 1010.5], "path": [[1798.5, 1019.5], [1798.5, 1000.5], [1779.5, 1000.5], [1779.5, 1019.5]]}, {"id": "tx3m50", "submitted_by": "Mole2003", "name": "Figure Skate", "description": "A representation of a figure skate on ice, the design was initially a small skate but was updated after an invasion to the more accurate design seen", "website": "", "subreddit": "/r/figureskating", "center": [276.5, 975.5], "path": [[269.5, 967.5], [269.5, 984.5], [284.5, 983.5], [284.5, 967.5], [269.5, 967.5]]}, @@ -5225,7 +5204,6 @@ {"id": "tx7gaz", "submitted_by": "Trepach", "name": "Grogu", "description": "Also known as Baby Yoda, from the hit Star Wars TV show, The Mandalorian", "website": "https://starwars.fandom.com/wiki/Grogu", "subreddit": "", "center": [752.5, 1660.5], "path": [[748.5, 1661.5], [748.5, 1658.5], [744.5, 1653.5], [763.5, 1653.5], [759.5, 1658.5], [758.5, 1659.5], [761.5, 1662.5], [761.5, 1664.5], [760.5, 1664.5], [761.5, 1667.5], [761.5, 1669.5], [748.5, 1669.5], [747.5, 1663.5], [727.5, 1641.5]]}, {"id": "tx7g6k", "submitted_by": "Ijust_want_tobehappy", "name": "Dominican Platain", "description": "Dominican Platain who represent the love Dominicans have towards platains", "website": "", "subreddit": "/r/dominican", "center": [52.5, 82.5], "path": [[51.5, 80.5], [52.5, 82.5], [52.5, 83.5], [53.5, 84.5], [54.5, 86.5], [54.5, 83.5], [55.5, 80.5], [53.5, 80.5], [52.5, 78.5], [53.5, 78.5], [53.5, 77.5], [53.5, 75.5], [54.5, 76.5], [52.5, 75.5], [49.5, 79.5], [53.5, 76.5], [52.5, 76.5], [49.5, 81.5], [49.5, 82.5], [49.5, 84.5], [51.5, 84.5], [51.5, 85.5], [50.5, 86.5], [51.5, 87.5], [52.5, 88.5], [53.5, 87.5], [55.5, 88.5], [55.5, 88.5], [54.5, 89.5], [55.5, 89.5], [58.5, 86.5], [63.5, 85.5], [59.5, 88.5]]}, {"id": "tx7fw2", "submitted_by": "coco20c", "name": "Blurryface by Twenty One Pilots", "description": "Blurryface is the fourth studio album by American musical duo Twenty One Pilots. It was released on May 17, 2015.", "website": "", "subreddit": "/r/twentyonepilots", "center": [398.5, 1588.5], "path": [[393.5, 1583.5], [393.5, 1593.5], [403.5, 1593.5], [403.5, 1583.5], [393.5, 1583.5]]}, -{"id": "tx7fv5", "submitted_by": "Abchduwroefikwefiks", "name": "RuPaul's Drag Race", "description": "A representation of hit TV show RuPaul's Drag Race.", "website": "", "subreddit": "/r/spoileddragrace", "center": [1219.5, 416.5], "path": [[1191.5, 402.5], [1192.5, 433.5], [1222.5, 433.5], [1222.5, 430.5], [1246.5, 430.5], [1246.5, 398.5], [1222.5, 398.5], [1222.5, 402.5], [1191.5, 403.5]]}, {"id": "tx7fiy", "submitted_by": "shinysurge", "name": "SimpleFlips", "description": "Pixel art of the drippy star used as SimpleFlips' logo and channel icon, courtesy of the SimpleFlips Discord server.", "website": "https://www.youtube.com/user/SimpleFlips", "subreddit": "/r/SimpleFlips", "center": [1150.5, 375.5], "path": [[1142.5, 370.5], [1147.5, 365.5], [1153.5, 366.5], [1160.5, 374.5], [1156.5, 384.5], [1143.5, 384.5]]}, {"id": "tx7fh1", "submitted_by": "LeftEyeHole", "name": "Risk of Rain/Trans Ally Heart", "description": "A heart signifying the alliance between Risk of Rain, and the trans flag.", "website": "", "subreddit": "/r/riskofrain, and, /r/transplace", "center": [586.5, 429.5], "path": [[582.5, 427.5], [582.5, 429.5], [585.5, 433.5], [586.5, 433.5], [589.5, 430.5], [590.5, 427.5], [588.5, 426.5], [587.5, 426.5], [586.5, 427.5], [585.5, 427.5], [584.5, 426.5], [583.5, 426.5]]}, {"id": "tx7f1i", "submitted_by": "yizack", "name": "Flag of R\u00e9union Island", "description": "R\u00e9union Island, a French overseas department/region in the Indian Ocean.", "website": "", "subreddit": "/r/reunionisland", "center": [1138.5, 252.5], "path": [[1138.5, 256.5], [1137.5, 255.5], [1134.5, 252.5], [1134.5, 250.5], [1135.5, 250.5], [1136.5, 249.5], [1137.5, 249.5], [1138.5, 250.5], [1139.5, 249.5], [1141.5, 249.5], [1141.5, 250.5], [1142.5, 251.5], [1142.5, 252.5], [1139.5, 255.5], [1138.5, 256.5]]}, @@ -5234,7 +5212,6 @@ {"id": "tx7e1f", "submitted_by": "Wackamot123", "name": "Geometry dash demon", "description": "A demon face from the game geometry dash, used to represent the hardest levels", "website": "", "subreddit": "", "center": [1020.5, 376.5], "path": [[1012.5, 384.5], [1012.5, 384.5], [1014.5, 383.5], [1014.5, 383.5], [1015.5, 384.5], [1016.5, 383.5], [1017.5, 383.5], [1019.5, 384.5], [1019.5, 384.5], [1019.5, 384.5], [1028.5, 384.5], [1028.5, 366.5], [1011.5, 366.5], [1011.5, 383.5], [1011.5, 364.5], [1028.5, 364.5], [1012.5, 365.5], [1028.5, 365.5], [1012.5, 366.5]]}, {"id": "tx7dzr", "submitted_by": "IanE55", "name": "Murray Walker tribute", "description": "Murray Walker was an iconic British motorsport commentator who was mostly active from 1976 to 2001. He passed away in early 2021.", "website": "", "subreddit": "/r/formula1", "center": [455.5, 766.5], "path": [[448.5, 762.5], [461.5, 762.5], [461.5, 769.5], [448.5, 769.5]]}, {"id": "tx7dop", "submitted_by": "FullMoon1108", "name": "Vargskelethor", "description": "Vargskelethor is a twitch streamer on the Vinesauce team. His mascot Fren is a small man wearing lime green with a Swedish flag hat, and originates from an indie game called QT. Joel is known for his lovable childlike sense of humor.", "website": "https://www.fecalfunny.com", "subreddit": "/r/Vinesauce", "center": [100.5, 1117.5], "path": [[95.5, 1121.5], [95.5, 1120.5], [94.5, 1119.5], [95.5, 1118.5], [95.5, 1115.5], [96.5, 1115.5], [97.5, 1114.5], [97.5, 1111.5], [102.5, 1111.5], [102.5, 1114.5], [105.5, 1117.5], [106.5, 1116.5], [107.5, 1116.5], [107.5, 1117.5], [106.5, 1118.5], [106.5, 1119.5], [105.5, 1119.5], [104.5, 1120.5], [104.5, 1121.5], [95.5, 1121.5]]}, -{"id": "tx7dlo", "submitted_by": "Sergioferubron", "name": "Mizkif riding Dedo", "description": "Painting of the stramer Mizkif riding his pet rabbit Dedo resembling famous painting Napoleon Crossing the Alps", "website": "https://www.twitch.tv/mizkif", "subreddit": "/r/mizkif", "center": [1384.5, 1426.5], "path": [[1436.5, 1355.5], [1332.5, 1355.5], [1333.5, 1498.5], [1435.5, 1496.5]]}, {"id": "tx7den", "submitted_by": "vpumeyyv", "name": "Zachtronics head & SpaceChem logo", "description": "Zachtronics is an American indie game company, founded by Zach Barth, which makes several kinds of programming puzzle games which have spawned a genre of their own.\nThe head is the old company logo that is still used by the community Discord server. Above it is the logo of one of the games, SpaceChem.", "website": "https://www.zachtronics.com/", "subreddit": "/r/spacechem", "center": [532.5, 1612.5], "path": [[538.5, 1599.5], [538.5, 1624.5], [525.5, 1624.5], [525.5, 1607.5], [526.5, 1607.5], [527.5, 1605.5], [527.5, 1599.5]]}, {"id": "tx7d4r", "submitted_by": "JJ64938", "name": "Lucifer", "description": "Lucifer from the Japanese Ghbili film Howl's Moving Castle, directed by \nHayao Miyazaki", "website": "", "subreddit": "/r/HowlsMovingCastle", "center": [1777.5, 696.5], "path": [[1770.5, 687.5], [1770.5, 705.5], [1784.5, 705.5], [1784.5, 687.5], [1770.5, 687.5]]}, {"id": "tx7d09", "submitted_by": "coco20c", "name": "A minion", "description": "Minions are fictional yellow creatures that appear in Illumination's Despicable Me franchise.", "website": "", "subreddit": "", "center": [644.5, 1725.5], "path": [[641.5, 1719.5], [641.5, 1731.5], [647.5, 1731.5], [647.5, 1719.5], [641.5, 1719.5]]}, @@ -5309,7 +5286,6 @@ {"id": "txc63w", "submitted_by": "ShardddddddDon", "name": "Failure Bottle", "description": "I am serious. You cannot use this.", "website": "", "subreddit": "/r/inscryption", "center": [160.5, 293.5], "path": [[156.5, 299.5], [158.5, 301.5], [162.5, 297.5], [165.5, 300.5], [164.5, 290.5], [160.5, 284.5], [157.5, 291.5]]}, {"id": "txc5f3", "submitted_by": "Piboom", "name": "Starman", "description": "The starman powerup from the Super Mario video game series.", "website": "", "subreddit": "", "center": [881.5, 1864.5], "path": [[872.5, 1858.5], [890.5, 1858.5], [890.5, 1870.5], [872.5, 1870.5], [872.5, 1870.5], [872.5, 1865.5], [872.5, 1861.5]]}, {"id": "txc5dw", "submitted_by": "iam_a_waterjug", "name": "Milwaukee Flag", "description": "The people's flag of Milwaukee. Intially located near the ZZZ logo, it was conquered by the taskbar. After making an agreement with Greece, the flag migrated to it's current location. In order to defend it's borders it formed a quintuple alliance of mutual defense with Kurdistan, Brand New Animal, Greece, and Mr. Robot. With these 5 factions fighting as one, they repelled multiple raid attempts, making it all the way to the great Anti Void.", "website": "https://discord.gg/mke", "subreddit": "/r/milwaukee", "center": [1390.5, 1956.5], "path": [[1383.5, 1950.5], [1383.5, 1962.5], [1396.5, 1962.5], [1396.5, 1950.5], [1396.5, 1950.5]]}, -{"id": "txc54p", "submitted_by": "bunsonh", "name": "Phish - Donut pattern", "description": "The red-on-blue donut pattern refers to the color and pattern worn by drummer Jon Fishman from the American rock band Phish. The pattern itself has become a symbol that represents the band and its fanbase.", "website": "https://phish.com", "subreddit": "/r/phish", "center": [65.5, 911.5], "path": [[0.5, 873.5], [0.5, 882.5], [27.5, 882.5], [27.5, 874.5], [42.5, 889.5], [42.5, 892.5], [28.5, 904.5], [27.5, 898.5], [0.5, 898.5], [0.5, 944.5], [94.5, 941.5], [100.5, 929.5], [129.5, 929.5], [135.5, 931.5], [135.5, 898.5], [57.5, 898.5], [57.5, 905.5], [43.5, 892.5], [43.5, 888.5], [56.5, 875.5], [57.5, 882.5], [153.5, 882.5], [153.5, 873.5]]}, {"id": "txc4qw", "submitted_by": "MTjong", "name": "Sykkuno's green scarf", "description": "A green scarf associated with Twitch streamer Sykkuno", "website": "https://twitch.tv/sykkuno", "subreddit": "/r/sykkuno", "center": [1871.5, 1627.5], "path": [[1869.5, 1619.5], [1872.5, 1619.5], [1872.5, 1635.5], [1869.5, 1635.5]]}, {"id": "txc482", "submitted_by": "space-kaiserin", "name": "Flag of Russia", "description": "", "website": "", "subreddit": "/r/placerussia", "center": [845.5, 1783.5], "path": [[841.5, 1781.5], [849.5, 1781.5], [849.5, 1785.5], [841.5, 1785.5]]}, {"id": "txc402", "submitted_by": "Netherman132", "name": "Colorado University Logo", "description": "The University of Colorado's logo, C.U. is short for Colorado University. It is a college in the U.S. state of Colorado", "website": "https://www.colorado.edu/", "subreddit": "", "center": [16.5, 726.5], "path": [[12.5, 723.5], [19.5, 723.5], [19.5, 729.5], [12.5, 729.5]]}, @@ -5483,7 +5459,6 @@ {"id": "txarp5", "submitted_by": "heckcookieyeah", "name": "SHINee", "description": "Hailed as \"The Princes of K-pop\", SHINee is a South-Korean boy band formed by SM Entertainment in 2008. The group is composed of the members Onew, Jonghyun, Key, Minho, and Taemin. Their fans are called \"shawols\", a portmanteau for \"SHINee World\", named after their debut album.", "website": "https://www.instagram.com/shinee/", "subreddit": "/r/shinee", "center": [1518.5, 956.5], "path": [[1510.5, 949.5], [1525.5, 949.5], [1525.5, 963.5], [1511.5, 963.5], [1510.5, 962.5], [1510.5, 949.5]]}, {"id": "txarc0", "submitted_by": "tomxosb", "name": "Calcifer", "description": "A fire demon from the the Studio Ghibli movie Howl's Moving Castle.", "website": "", "subreddit": "/r/ghibli", "center": [1777.5, 696.5], "path": [[1771.5, 688.5], [1771.5, 704.5], [1783.5, 704.5], [1783.5, 688.5], [1771.5, 688.5]]}, {"id": "txarbw", "submitted_by": "turmacar", "name": "Hello Internet Episode Number", "description": "Number of upcoming episode of Hello Internet Podcast as of April 1 2022.", "website": "https://www.hellointernet.fm/", "subreddit": "/r/HelloInternet", "center": [70.5, 828.5], "path": [[58.5, 826.5], [81.5, 826.5], [81.5, 830.5], [58.5, 830.5]]}, -{"id": "txarbp", "submitted_by": "RavagerHughesy", "name": "RuPaul's Drag Race", "description": "A section dedicated to the reality TV show RuPaul's Drag Race, where drag queens compete to be America's Next Drag Superstar. Includes pixel art of six queens from season 14 (currently airing), and a tribute to season 8 competitor Chi Chi DeVayne, who tragically passed in 2020.", "website": "https://www.vh1.com/shows/rupauls-drag-race", "subreddit": "/r/rupaulsdragrace", "center": [1219.5, 416.5], "path": [[1192.5, 402.5], [1192.5, 433.5], [1222.5, 433.5], [1222.5, 430.5], [1246.5, 430.5], [1246.5, 398.5], [1222.5, 398.5], [1222.5, 402.5], [1192.5, 402.5]]}, {"id": "txarai", "submitted_by": "A-Reclusive-Whale", "name": "Celeste Pufferfish", "description": "A pufferfish creature the player can bounce off of in the indie platformer Celeste.", "website": "", "subreddit": "/r/celeste", "center": [1228.5, 1182.5], "path": [[1225.5, 1173.5], [1231.5, 1173.5], [1231.5, 1174.5], [1232.5, 1174.5], [1233.5, 1175.5], [1234.5, 1176.5], [1235.5, 1177.5], [1236.5, 1178.5], [1237.5, 1179.5], [1237.5, 1180.5], [1238.5, 1181.5], [1238.5, 1182.5], [1238.5, 1183.5], [1237.5, 1184.5], [1237.5, 1185.5], [1236.5, 1186.5], [1235.5, 1187.5], [1234.5, 1188.5], [1233.5, 1189.5], [1232.5, 1189.5], [1231.5, 1190.5], [1230.5, 1190.5], [1229.5, 1190.5], [1228.5, 1190.5], [1227.5, 1190.5], [1226.5, 1190.5], [1225.5, 1189.5], [1224.5, 1189.5], [1223.5, 1188.5], [1222.5, 1187.5], [1221.5, 1186.5], [1220.5, 1186.5], [1220.5, 1185.5], [1219.5, 1185.5], [1218.5, 1186.5], [1217.5, 1185.5], [1217.5, 1184.5], [1217.5, 1183.5], [1217.5, 1182.5], [1217.5, 1181.5], [1217.5, 1180.5], [1218.5, 1179.5], [1219.5, 1180.5], [1220.5, 1179.5], [1220.5, 1178.5], [1221.5, 1177.5], [1222.5, 1176.5], [1223.5, 1175.5], [1225.5, 1174.5]]}, {"id": "txar8q", "submitted_by": "Undead_Hunter03", "name": "BELIEVE sign from Ted Lasso", "description": "A motivational wall hanging from Ted Lasso AppleTV series. Hanging it was one of the first things when Ted arrived Richmond. It's also the key to the 'Lasso Way'", "website": "", "subreddit": "/r/TedLasso", "center": [1014.5, 449.5], "path": [[1002.5, 445.5], [1026.5, 445.5], [1026.5, 453.5], [1002.5, 453.5]]}, {"id": "txar5v", "submitted_by": "ProfessionalFish8505", "name": "Mini Waldo", "description": "A small Waldo hidden on the r/fuckcars highway, based on the Where's Waldo books.", "website": "", "subreddit": "", "center": [1126.5, 862.5], "path": [[1125.5, 869.5], [1126.5, 869.5], [1126.5, 867.5], [1126.5, 869.5], [1127.5, 869.5], [1128.5, 869.5], [1128.5, 866.5], [1129.5, 866.5], [1129.5, 862.5], [1129.5, 861.5], [1128.5, 861.5], [1128.5, 860.5], [1127.5, 860.5], [1128.5, 860.5], [1128.5, 857.5], [1128.5, 856.5], [1127.5, 856.5], [1127.5, 854.5], [1127.5, 853.5], [1126.5, 853.5], [1125.5, 853.5], [1125.5, 856.5], [1124.5, 856.5], [1124.5, 859.5], [1124.5, 860.5], [1125.5, 860.5], [1125.5, 860.5], [1124.5, 860.5], [1124.5, 861.5], [1123.5, 862.5], [1123.5, 866.5], [1124.5, 866.5], [1124.5, 869.5], [1128.5, 869.5]]}, @@ -5531,7 +5506,6 @@ {"id": "txaicd", "submitted_by": "Hollis131", "name": "Murder drones", "description": "The logo for the famous web series murder drones", "website": "", "subreddit": "/r/murderdrones", "center": [242.5, 1096.5], "path": [[239.5, 1089.5], [242.5, 1089.5], [236.5, 1090.5], [233.5, 1094.5], [235.5, 1097.5], [237.5, 1101.5], [252.5, 1101.5], [252.5, 1097.5], [246.5, 1097.5], [245.5, 1091.5]]}, {"id": "txai7g", "submitted_by": "RatelRaichu", "name": "Pok\u00e9mon Workshop", "description": "A Discord community for artists who create drawings, songs or stories related to the Pok\u00e9mon franchise. The server hosts regular art, music and writing contests and collabs and has hundreds of members. A complete history of the progress of this logo on r/place can be found on https://pokemon-workshop.fandom.com/wiki/r/place_participation", "website": "https://discord.gg/PkmnWorkshop", "subreddit": "", "center": [1090.5, 493.5], "path": [[1078.5, 489.5], [1101.5, 489.5], [1101.5, 497.5], [1078.5, 497.5]]}, {"id": "txai0a", "submitted_by": "FancySkunk", "name": "Asexual Pride Bunny", "description": "A white rabbit waving the asexual pride flag", "website": "", "subreddit": "/r/TransPlace", "center": [737.5, 471.5], "path": [[749.5, 475.5], [730.5, 475.5], [727.5, 471.5], [728.5, 470.5], [728.5, 469.5], [736.5, 469.5], [736.5, 466.5], [737.5, 465.5], [743.5, 465.5], [744.5, 466.5], [744.5, 473.5], [747.5, 474.5], [748.5, 475.5]]}, -{"id": "txahc2", "submitted_by": "pancakedelasea", "name": "RuPaul's Drag Race", "description": "Contributed to by members of r/SpoiledDragRace and r/rupaulsdragrace. Features include a memorial to the late Chi Chi DeVayne, and the promotional looks of cast members of Season 14 of RuPaul's Drag Race.", "website": "https://www.reddit.com/r/SpoiledDragRace/", "subreddit": "/r/rupaulsdragrace", "center": [1219.5, 416.5], "path": [[1192.5, 402.5], [1222.5, 402.5], [1222.5, 398.5], [1246.5, 398.5], [1246.5, 430.5], [1222.5, 430.5], [1222.5, 433.5], [1192.5, 433.5], [1192.5, 402.5]]}, {"id": "txahba", "submitted_by": "sumhoo", "name": "Squeer", "description": "A little mascot of a anxious zebra. \nPrimarily used by PlainsZebra on Twitch. \n\nConstructed by Zeeb and Friends.", "website": "", "subreddit": "", "center": [1299.5, 386.5], "path": [[1293.5, 383.5], [1305.5, 383.5], [1305.5, 389.5], [1293.5, 389.5], [1293.5, 383.5]]}, {"id": "txah8i", "submitted_by": "Arcorann", "name": "ChroNoiR", "description": "A popular duo from the Virtual YouTuber group NIJISANJI, consisting of Kanae (top) and Kuzuha (bottom)", "website": "https://www.youtube.com/channel/UCz6vnIbgiqFT9xUcD6Bp65Q", "subreddit": "/r/Nijisanji", "center": [1531.5, 1076.5], "path": [[1525.5, 1065.5], [1525.5, 1087.5], [1537.5, 1088.5], [1537.5, 1065.5]]}, {"id": "txagbr", "submitted_by": "squidrobotfriend", "name": "r/MrRobot/Rassicas alliance part 2", "description": "The second art piece by r/MrRobot, the fsociety mask, was also one of the major locations of the r/MrRobot/Rassicas alliance, including Costa Rica, r/PathofExile, and Esperanto. Nearby is also one of Esperanto's allies, r/Cubers, who Mr. Robot assisted during the third day.", "website": "", "subreddit": "/r/MrRobot, /r/Ticos, /r/costarica, /r/PathofExile, /r/Esperanto, /r/Cubers", "center": [1433.5, 454.5], "path": [[1246.5, 426.5], [1246.5, 445.5], [1364.5, 446.5], [1364.5, 457.5], [1368.5, 457.5], [1369.5, 456.5], [1371.5, 456.5], [1372.5, 457.5], [1373.5, 457.5], [1374.5, 456.5], [1376.5, 456.5], [1377.5, 457.5], [1377.5, 462.5], [1379.5, 462.5], [1380.5, 463.5], [1380.5, 466.5], [1379.5, 467.5], [1377.5, 467.5], [1376.5, 468.5], [1374.5, 468.5], [1373.5, 469.5], [1372.5, 470.5], [1372.5, 471.5], [1373.5, 472.5], [1374.5, 473.5], [1432.5, 473.5], [1384.5, 473.5], [1384.5, 491.5], [1374.5, 491.5], [1374.5, 480.5], [1348.5, 480.5], [1347.5, 485.5], [1347.5, 489.5], [1349.5, 489.5], [1349.5, 496.5], [1349.5, 496.5], [1340.5, 496.5], [1340.5, 498.5], [1349.5, 498.5], [1355.5, 503.5], [1412.5, 503.5], [1412.5, 509.5], [1425.5, 509.5], [1424.5, 492.5], [1432.5, 492.5], [1433.5, 501.5], [1509.5, 501.5], [1509.5, 486.5], [1485.5, 486.5], [1485.5, 446.5], [1621.5, 446.5], [1621.5, 427.5], [1246.5, 426.5]]}, @@ -5722,7 +5696,6 @@ {"id": "txdncv", "submitted_by": "Terrible_Draw_1248", "name": "Among us", "description": "2 among us looking each other", "website": "", "subreddit": "", "center": [1114.5, 1222.5], "path": [[1109.5, 1225.5], [1119.5, 1225.5], [1119.5, 1219.5], [1109.5, 1219.5]]}, {"id": "txdnct", "submitted_by": "WitherStar123", "name": "Matthew Bolan", "description": "Important figure in the Minecraft speedrunning community. Discovered how to find strongholds by looking at nether fossils; and diamonds by looking at clay/gravel patches", "website": "https://www.youtube.com/channel/UCB4XuRBJZBOpnoJSWekMohw", "subreddit": "", "center": [1495.5, 1468.5], "path": [[1491.5, 1464.5], [1498.5, 1464.5], [1498.5, 1471.5], [1491.5, 1471.5]]}, {"id": "txdn9a", "submitted_by": "Rubbymubby124", "name": "Manchester United", "description": "Manchester United is a popular soccer club in the Premier league. It is one of the most popular clubs in the world having fans worldwide. The club was founded in 1878 and its current stadium is Old Trafford.", "website": "https://www.manutd.com/", "subreddit": "/r/RedDevils", "center": [1640.5, 665.5], "path": [[1663.5, 636.5], [1662.5, 637.5], [1617.5, 638.5], [1616.5, 692.5], [1664.5, 691.5]]}, -{"id": "txdmze", "submitted_by": "conspiracie", "name": "RuPaul's Drag Race", "description": "Made primarily by Spoiled Drag Race users. References several \"tea-spills\", i.e. spoilers that came out about the current season of Drag Race (14). PLSR= Deja Skye's lip sync for her pleasure. CHOC= chocolate bar elimination twist. PORK = PorkChop elimination lounge (from S13). On the right are pixel arts of the top 5 S14 contestants plus Maddy Morphosis, another S14 contestant and active Redditor who helped make this art. Top is a tribute to ChiChi DeVayne, a S8 contestant who sadly passed away in 2020.", "website": "", "subreddit": "/r/SpoiledDragRace", "center": [1219.5, 417.5], "path": [[1246.5, 398.5], [1246.5, 434.5], [1191.5, 434.5], [1191.5, 402.5], [1222.5, 402.5], [1222.5, 398.5], [1246.5, 398.5]]}, {"id": "txdmue", "submitted_by": "Terrible_Draw_1248", "name": "Peru flag", "description": "", "website": "", "subreddit": "", "center": [1124.5, 1345.5], "path": [[1116.5, 1350.5], [1132.5, 1350.5], [1132.5, 1339.5], [1116.5, 1339.5]]}, {"id": "txdmsv", "submitted_by": "Terrible_Draw_1248", "name": "Mexico flag", "description": "", "website": "", "subreddit": "", "center": [1124.5, 1355.5], "path": [[1116.5, 1360.5], [1132.5, 1360.5], [1132.5, 1350.5], [1116.5, 1350.5]]}, {"id": "txeahn", "submitted_by": "Braeburner", "name": "Bald eagle", "description": "The bald eagle (Haliaeetus leucocephalus) is the national bird and symbol of the U.S. An icon of power and freedom, this bird inhabits the forests of North America and eats mostly fish. Until the 1990s, bald eagles were endangered due to hunting and pesticides; the population recovered when regulations were implemented.", "website": "https://en.wikipedia.org/wiki/Bald_eagle", "subreddit": "/r/AmericanFlagInPlace", "center": [1877.5, 1784.5], "path": [[1879.5, 1796.5], [1907.5, 1801.5], [1912.5, 1791.5], [1901.5, 1791.5], [1892.5, 1785.5], [1900.5, 1781.5], [1888.5, 1776.5], [1881.5, 1778.5], [1870.5, 1768.5], [1866.5, 1753.5], [1858.5, 1759.5], [1855.5, 1775.5], [1868.5, 1789.5], [1858.5, 1795.5], [1864.5, 1805.5], [1877.5, 1798.5]]}, @@ -5807,7 +5780,6 @@ {"id": "txevvl", "submitted_by": "MakingLyricVideos", "name": "The Boyz Logo", "description": "The Boyz (abbreviated as TBZ) is a K-Pop boyband that debuted in 2017. The group consists of 11 members: Sangyeon, Juyeon, Younghoon, Hyunjae, Juhaknyeon, Sunwoo, New, Q, Jacob, Kevin, and Eric.", "website": "https://www.youtube.com/channel/UCkJ1rbOrsyPfBuHNfnLPm-Q", "subreddit": "/r/the_boyz", "center": [1579.5, 200.5], "path": [[1570.5, 196.5], [1588.5, 196.5], [1588.5, 204.5], [1570.5, 204.5], [1570.5, 196.5]]}, {"id": "txevoi", "submitted_by": "feitancantortureme", "name": "GOT7", "description": "A peaceful tiny pixel art made for GOT7: a South Korean boy band formed and active since 2014 composed of Jay B, Mark, Jackson, Jinyoung, Youngjae, BamBam, and Yugyeom. Four of the members are Koreans with the other three being Thai, Chinese, and American respectively. \n", "website": "https://youtu.be/tAe0yUEzAaI", "subreddit": "/r/GOT7", "center": [1588.5, 271.5], "path": [[1597.5, 267.5], [1597.5, 268.5], [1597.5, 269.5], [1597.5, 270.5], [1597.5, 271.5], [1597.5, 272.5], [1597.5, 273.5], [1597.5, 274.5], [1596.5, 274.5], [1595.5, 274.5], [1594.5, 274.5], [1593.5, 274.5], [1592.5, 274.5], [1591.5, 274.5], [1590.5, 274.5], [1589.5, 274.5], [1588.5, 274.5], [1587.5, 274.5], [1586.5, 274.5], [1585.5, 274.5], [1584.5, 274.5], [1583.5, 274.5], [1582.5, 274.5], [1581.5, 274.5], [1580.5, 274.5], [1579.5, 274.5], [1579.5, 273.5], [1579.5, 272.5], [1579.5, 271.5], [1579.5, 270.5], [1579.5, 269.5], [1579.5, 268.5], [1579.5, 267.5], [1580.5, 267.5], [1582.5, 267.5]]}, {"id": "txeuva", "submitted_by": "yoblaunder", "name": "Mini Marsey", "description": "A miniature version of the rdrama mascot Marsey the cat. A larger version can be found in the bottom left just east of the Hollow Knight with ID tww1z8", "website": "https://rdrama.net", "subreddit": "", "center": [96.5, 632.5], "path": [[90.5, 627.5], [91.5, 627.5], [92.5, 626.5], [93.5, 625.5], [94.5, 624.5], [95.5, 623.5], [96.5, 622.5], [97.5, 623.5], [98.5, 624.5], [98.5, 625.5], [99.5, 626.5], [100.5, 626.5], [101.5, 625.5], [102.5, 624.5], [103.5, 623.5], [104.5, 622.5], [105.5, 623.5], [106.5, 624.5], [106.5, 631.5], [107.5, 632.5], [107.5, 635.5], [106.5, 636.5], [105.5, 637.5], [104.5, 638.5], [103.5, 638.5], [102.5, 639.5], [92.5, 639.5], [91.5, 638.5], [90.5, 638.5], [89.5, 637.5], [86.5, 637.5], [85.5, 636.5], [84.5, 636.5], [83.5, 635.5], [82.5, 634.5], [82.5, 633.5], [81.5, 632.5], [81.5, 630.5], [82.5, 629.5], [83.5, 629.5], [84.5, 630.5], [85.5, 631.5], [85.5, 632.5], [86.5, 633.5], [87.5, 633.5], [87.5, 630.5], [88.5, 629.5], [89.5, 628.5], [90.5, 627.5]]}, -{"id": "txffu8", "submitted_by": "zZ2255", "name": "Andynsane - Andynzein - Zein - ZEJN", "description": "Fue un youtuber dedicado a subir v\u00eddeos de blogs y comedia, actualmente se dedica al streaming en BOOYA!. Naci\u00f3 en Tarma, Junin, Per\u00fa, pero actualmente reside en Estados Unidos.\nSecciones:\n-Challenges\n-Las 15 fotos fails de la vida\n-50 se\u00f1ales de que eres...\n-Omegle\n-Bromas telef\u00f3nicas\n-Retos\n-Preguntas incomodas\n-Esto solo pasa en Peru\n-Esto solo pasa en internet\n-Exponiendo infieles en Peru\n-M\u00fasica Andynsane\n-Alto al crimen\n-Parodias\n-Reacciones videos random\n-Gameplays\n-Radio fierro 69.9 fm\nPersonajes:\n-Juanito el jorobado\n-Paloma Poh Poh\n-La Elvira Montenegro\n-Maaami-Mono saca copias\n-Barney\nCanciones:\n-P\u00e1same tu pin-L\u00e1vatela con shampo (2012)\n-Mi nombre es Andynsane (22/03/2015)\n-Quiero subirme a tu guayabo mami (28/06/2015)\n-Reggaet\u00f3n cristiano (05/08/2015)\n-Cuando voy al ba\u00f1o (14/06/2015)\n-Si te gusta (27/08/2017)\nFrases:\n-Soy fresa, pero no para tu mermelada.\n-Eres un pendejo s\u00ed.\n-Mira y calla que no tendr\u00e1s ni papaya.\n-Los mas machos son los mas cabros.\n-Y sin m\u00e1s cotorreo, empecemos con el sandungueo.", "website": "https://booyah.live/channels/59911252?source=11", "subreddit": "", "center": [1829.5, 1083.5], "path": [[1792.5, 1046.5], [1792.5, 1121.5], [1866.5, 1118.5], [1867.5, 1047.5], [1793.5, 1045.5], [1792.5, 1045.5]]}, {"id": "txffm2", "submitted_by": "jinyan69", "name": "Chile", "description": "A smaller flag of Chile below the main flag.", "website": "", "subreddit": "/r/chile", "center": [262.5, 533.5], "path": [[252.5, 529.5], [272.5, 529.5], [272.5, 537.5], [251.5, 537.5], [251.5, 529.5]]}, {"id": "txffdr", "submitted_by": "CrazyPenks", "name": "Turkey flag", "description": "A tiny flag of turkey orgaized most likely by the turkey subreddit and by turkish contributers", "website": "", "subreddit": "/r/turkey", "center": [1023.5, 1842.5], "path": [[1021.5, 1841.5], [1021.5, 1841.5], [1029.5, 1844.5], [1019.5, 1839.5], [1020.5, 1841.5], [1020.5, 1841.5], [1019.5, 1845.5], [1028.5, 1844.5], [1026.5, 1839.5], [1019.5, 1839.5], [1019.5, 1845.5], [1029.5, 1845.5], [1029.5, 1843.5], [1027.5, 1843.5], [1027.5, 1839.5], [1019.5, 1839.5]]}, {"id": "txfek0", "submitted_by": "CompactedPrism", "name": "Kaiser Kattail", "description": "Pixel art of Kaiser Kattail, villain and central character in the popular Stellaris mod Gigastructural Engineering and More", "website": "https://steamcommunity.com/sharedfiles/filedetails/?id=1121692237", "subreddit": "/r/stellaris", "center": [1465.5, 987.5], "path": [[1452.5, 975.5], [1478.5, 975.5], [1478.5, 998.5], [1452.5, 998.5]]}, @@ -5949,7 +5921,6 @@ {"id": "txfv5e", "submitted_by": "Iusethisoneforporn58", "name": "Purple and Blue Hearts", "description": "A small tribute to a baby brother, who passed away due to mental health complications. Rest in peace, brother.", "website": "", "subreddit": "", "center": [694.5, 1320.5], "path": [[687.5, 1316.5], [700.5, 1316.5], [700.5, 1323.5], [687.5, 1323.5], [687.5, 1316.5]]}, {"id": "txfuyq", "submitted_by": "Leon08x", "name": "Inuyasha", "description": "The titular protagonist of the manga series InuYasha, a hany\u014d, son of a y\u014dkai and a human. ", "website": "https://inuyasha.fandom.com/wiki/Inuyasha", "subreddit": "/r/inuyasha", "center": [1557.5, 991.5], "path": [[1541.5, 999.5], [1571.5, 999.5], [1571.5, 979.5], [1550.5, 979.5], [1541.5, 999.5]]}, {"id": "txfuy9", "submitted_by": "SurrogateMonkey", "name": "Mondstadt Windmill and Windwheel Asters", "description": "Mondstadt (Moon City in German) is one of the seven regions in Teyvat, a fictional continent in the game Genshin Impact. Mondstadt takes inspiration from North European culture, primarily German.\n\nOne of Mondstadt's well known structures are the six-spoked windmills, which are inspired by medieval European windmills. \n\nThe Windwheel Asters are orange flowers found in the wild in various areas of Mondstadt. The characters Bennett, Sucrose, and the Travelers use this local specialty as an ascension(level-up) material in the game.\n\nThe windmill and the windwheel asters are created by r/placeNL as a token of alliance with r/GenshinPlace.\n\n", "website": "https://genshin-impact.fandom.com/wiki/Mondstadt", "subreddit": "/r/PlaceNL, /r/Genshin_Impact, /r/GenshinPlace", "center": [1133.5, 30.5], "path": [[1156.5, 35.5], [1149.5, 35.5], [1144.5, 38.5], [1133.5, 38.5], [1131.5, 40.5], [1118.5, 40.5], [1115.5, 36.5], [1110.5, 35.5], [1108.5, 35.5], [1109.5, 27.5], [1132.5, 28.5], [1132.5, 19.5], [1137.5, 14.5], [1140.5, 13.5], [1145.5, 17.5], [1147.5, 21.5], [1146.5, 27.5], [1152.5, 29.5], [1155.5, 31.5]]}, -{"id": "txfu5w", "submitted_by": "zZ2255", "name": "Andynsane - Andynzein - Zein - ZEJN", "description": "Fue un youtuber dedicado a subir v\u00eddeos de blogs y comedia, actualmente se dedica al streaming en BOOYA!. Naci\u00f3 en Tarma, Junin, Per\u00fa, pero actualmente reside en Estados Unidos.\nSecciones:\n-Challenges\n-Las 15 fotos fails de la vida\n-50 se\u00f1ales de que eres...\n-Omegle\n-Bromas telef\u00f3nicas\n-Retos\n-Preguntas incomodas\n-Esto solo pasa en Peru\n-Esto solo pasa en internet\n-Exponiendo infieles en Peru\n-M\u00fasica Andynsane\n-Alto al crimen\n-Parodias\n-Reacciones videos random\n-Gameplays\n-Radio fierro 69.9 fm\nPersonajes:\n-Juanito el jorobado\n-Paloma Poh Poh\n-La Elvira Montenegro\n-Maaami-Mono saca copias\n-Barney\nCanciones:\n-P\u00e1same tu pin-L\u00e1vatela con shampo (2012)\n-Mi nombre es Andynsane (22/03/2015)\n-Quiero subirme a tu guayabo mami (28/06/2015)\n-Reggaet\u00f3n cristiano (05/08/2015)\n-Cuando voy al ba\u00f1o (14/06/2015)\n-Si te gusta (27/08/2017)\nFrases:\n-Soy fresa, pero no para tu mermelada.\n-Eres un pendejo s\u00ed.\n-Mira y calla que no tendr\u00e1s ni papaya.\n-Los mas machos son los mas cabros.\n-Y sin m\u00e1s cotorreo, empecemos con el sandungueo.", "website": "https://booyah.live/channels/59911252?source=11", "subreddit": "", "center": [1829.5, 1083.5], "path": [[1792.5, 1046.5], [1792.5, 1121.5], [1866.5, 1118.5], [1867.5, 1047.5], [1793.5, 1045.5], [1792.5, 1045.5]]}, {"id": "txftxz", "submitted_by": "Plagiatus", "name": "Minecraft Realms", "description": "The server subscription service by Mojang for their game Minecraft. It features a creator program that allows players to submit their own maps to the subreddit to be featured ingame. Various communities have emerged through this program.", "website": "https://www.minecraft.net/en-us/realms/content-creator", "subreddit": "/r/realms", "center": [338.5, 1589.5], "path": [[323.5, 1579.5], [323.5, 1594.5], [325.5, 1596.5], [325.5, 1600.5], [346.5, 1600.5], [352.5, 1600.5], [352.5, 1579.5]]}, {"id": "txfti3", "submitted_by": "mikkolukas", "name": "Silja Line", "description": "A cruiseferry from the Finnish brand Silja Line. This pixelart mostly resembles the sibling ships Symfony/Serenade, both known for their impressive pedestrian street down the middle of the ship.", "website": "https://en.tallink.com/silja-serenade-siljaline-cruise-ship", "subreddit": "/r/Suomi", "center": [731.5, 121.5], "path": [[702.5, 103.5], [691.5, 114.5], [688.5, 114.5], [686.5, 116.5], [686.5, 117.5], [685.5, 118.5], [685.5, 125.5], [686.5, 126.5], [686.5, 128.5], [688.5, 130.5], [688.5, 131.5], [689.5, 132.5], [689.5, 135.5], [693.5, 138.5], [768.5, 138.5], [772.5, 134.5], [772.5, 132.5], [773.5, 131.5], [773.5, 124.5], [770.5, 124.5], [770.5, 120.5], [769.5, 120.5], [768.5, 119.5], [768.5, 117.5], [773.5, 117.5], [775.5, 115.5], [774.5, 114.5], [773.5, 114.5], [772.5, 113.5], [771.5, 113.5], [770.5, 112.5], [769.5, 112.5], [769.5, 110.5], [771.5, 110.5], [772.5, 109.5], [772.5, 108.5], [773.5, 107.5], [773.5, 106.5], [770.5, 103.5], [768.5, 103.5], [768.5, 101.5], [766.5, 101.5], [765.5, 100.5], [763.5, 100.5], [762.5, 101.5], [760.5, 101.5], [758.5, 103.5], [757.5, 103.5], [755.5, 105.5], [752.5, 105.5], [750.5, 103.5], [749.5, 103.5], [747.5, 101.5], [746.5, 101.5], [745.5, 100.5], [743.5, 100.5], [742.5, 101.5], [740.5, 101.5], [738.5, 103.5], [737.5, 103.5], [735.5, 105.5], [732.5, 105.5], [730.5, 103.5], [729.5, 103.5], [727.5, 101.5], [726.5, 101.5], [725.5, 100.5], [723.5, 100.5], [722.5, 101.5], [720.5, 101.5], [717.5, 104.5], [716.5, 104.5], [715.5, 105.5], [714.5, 106.5], [715.5, 108.5], [717.5, 110.5], [717.5, 111.5], [716.5, 112.5], [715.5, 112.5], [713.5, 110.5], [712.5, 110.5], [710.5, 108.5], [710.5, 107.5], [705.5, 102.5]]}, {"id": "txfth4", "submitted_by": "BMXTrops", "name": "Usada Pekora", "description": "Hololive JP 4th member Usada Pekora, doing war crimes on reddit Place.", "website": "", "subreddit": "/r/holive", "center": [1371.5, 994.5], "path": [[1363.5, 999.5], [1363.5, 991.5], [1366.5, 989.5], [1376.5, 990.5], [1378.5, 992.5], [1379.5, 993.5], [1379.5, 997.5], [1379.5, 998.5]]}, @@ -6057,7 +6028,6 @@ {"id": "txdala", "submitted_by": "Dead_Wooolf_Slayer", "name": "\u00c1ngel de la independencia", "description": "Restaurada despu\u00e9s de la segunda invasi\u00f3n de Polonia. Es uno de los monumentos mas emblem\u00e1ticos de M\u00e9xico, alusivo al centenario de la Independencia Mexicana. Actualmente es un mausoleo para los h\u00e9roes mas importantes de dicha guerra. En la parte superior se observa una Victoria Alada.", "website": "https://es.wikipedia.org/wiki/Monumento_a_la_Independencia", "subreddit": "/r/Mexico", "center": [880.5, 210.5], "path": [[874.5, 199.5], [884.5, 200.5], [886.5, 203.5], [882.5, 202.5], [880.5, 204.5], [882.5, 209.5], [881.5, 222.5], [878.5, 225.5], [878.5, 209.5], [877.5, 209.5], [877.5, 207.5], [879.5, 206.5], [878.5, 205.5], [878.5, 202.5], [877.5, 202.5], [876.5, 201.5], [875.5, 200.5], [874.5, 199.5]]}, {"id": "txd9gh", "submitted_by": "magzillas", "name": "One Piece Mugiwara Pirates Logo", "description": "One Piece is a long-running manga and anime series. This element depicts the logo of the main characters' pirate crew, named after the protagonist's trademark straw hat.\n\nThe blue pixels on the left eye are likely remnants of efforts to make the skull resemble Sans, a character from the video game Undertale with a similarly glowing eye.", "website": "", "subreddit": "/r/onepiece", "center": [353.5, 570.5], "path": [[330.5, 528.5], [329.5, 612.5], [377.5, 612.5], [377.5, 529.5]]}, {"id": "txd8wt", "submitted_by": "greese1", "name": "CENTRAL_ALLIANCE", "description": "Central Alliance is an alliance of [r/place](https://www.reddit.com/r/place/) 2022 consisting of many communities, dedicated to defending and collaborating together. Starting as the SouthXSouthEastern alliance (pre-expansion) with Destiny 2, Critical Role, & Barca, Central Alliance continued to expand its reach, eventually hitting over 50 different communities at the end. Through the Alliance, builds were defended from streamers and raids, expansions were planned cooperatively, and friendships of drastically different fandoms were made. Central Alliance continues to thrive on in its Discord and Subreddit, serving as a memento for its place in internet history, as well as a future landing point if [r/place](https://www.reddit.com/r/place/) ever returns.", "website": "", "subreddit": "[/r/place_CentralAlliance](/r/place_CentralAlliance", "center": [447.5, 994.5], "path": [[448.5, 890.5], [512.5, 890.5], [512.5, 900.5], [548.5, 900.5], [552.5, 900.5], [553.5, 899.5], [554.5, 899.5], [555.5, 898.5], [556.5, 899.5], [557.5, 899.5], [562.5, 899.5], [562.5, 900.5], [562.5, 866.5], [629.5, 866.5], [629.5, 888.5], [655.5, 888.5], [655.5, 909.5], [622.5, 909.5], [622.5, 943.5], [624.5, 943.5], [624.5, 974.5], [624.5, 1012.5], [598.5, 1012.5], [598.5, 1061.5], [624.5, 1061.5], [624.5, 1072.5], [623.5, 1073.5], [622.5, 1075.5], [621.5, 1076.5], [621.5, 1079.5], [622.5, 1080.5], [623.5, 1082.5], [623.5, 1083.5], [624.5, 1083.5], [624.5, 1105.5], [570.5, 1105.5], [570.5, 1111.5], [564.5, 1111.5], [564.5, 1123.5], [552.5, 1123.5], [552.5, 1126.5], [550.5, 1126.5], [550.5, 1130.5], [509.5, 1131.5], [509.5, 1130.5], [498.5, 1130.5], [498.5, 1133.5], [493.5, 1133.5], [493.5, 1128.5], [445.5, 1128.5], [445.5, 1122.5], [322.5, 1122.5], [322.5, 1068.5], [363.5, 1068.5], [363.5, 1039.5], [368.5, 1039.5], [368.5, 1007.5], [336.5, 1007.5], [336.5, 1009.5], [324.5, 1009.5], [323.5, 1009.5], [323.5, 1042.5], [285.5, 1042.5], [285.5, 984.5], [268.5, 984.5], [268.5, 986.5], [263.5, 986.5], [263.5, 984.5], [260.5, 984.5], [260.5, 987.5], [255.5, 987.5], [255.5, 984.5], [253.5, 984.5], [253.5, 986.5], [248.5, 986.5], [248.5, 982.5], [247.5, 981.5], [246.5, 980.5], [245.5, 979.5], [245.5, 964.5], [195.5, 964.5], [195.5, 926.5], [216.5, 926.5], [216.5, 888.5], [355.5, 888.5], [356.5, 889.5], [357.5, 890.5], [358.5, 891.5], [359.5, 892.5], [359.5, 910.5], [361.5, 910.5], [361.5, 907.5], [366.5, 907.5], [366.5, 910.5], [372.5, 910.5], [372.5, 907.5], [377.5, 907.5], [377.5, 910.5], [383.5, 910.5], [383.5, 907.5], [388.5, 907.5], [388.5, 910.5], [394.5, 910.5], [394.5, 907.5], [399.5, 907.5], [399.5, 910.5], [432.5, 910.5], [432.5, 973.5], [432.5, 1118.5], [448.5, 1118.5], [449.5, 984.5], [432.5, 984.5], [432.5, 973.5], [449.5, 973.5], [448.5, 890.5]]}, -{"id": "txd6uh", "submitted_by": "mumbling_marauder", "name": "RuPaul's Drag Race", "description": "A tribute to reality competition show RuPaul's Drag Race, organized by a community dedicated to collecting spoilers about the show's upcoming seasons. On the left there are three boxes referring to specialized placements on the show, and on the right there are six boxes depicting cast members from season 14. Above them is <3 CHI CHI, remembering legendary drag performer Chi Chi DeVayne, who tragically passed away in 2020. We miss you Chi Chi.", "website": "", "subreddit": "/r/spoileddragrace", "center": [1219.5, 416.5], "path": [[1222.5, 398.5], [1222.5, 398.5], [1246.5, 398.5], [1245.5, 430.5], [1245.5, 430.5], [1222.5, 430.5], [1222.5, 430.5], [1222.5, 433.5], [1222.5, 433.5], [1197.5, 433.5], [1197.5, 433.5], [1191.5, 433.5], [1191.5, 433.5], [1192.5, 402.5], [1192.5, 402.5], [1205.5, 402.5], [1205.5, 402.5], [1222.5, 402.5], [1222.5, 402.5], [1222.5, 398.5], [1222.5, 398.5], [1223.5, 398.5], [1223.5, 398.5]]}, {"id": "txd5x5", "submitted_by": "FrogDefender", "name": "Frog", "description": "Is a frog", "website": "", "subreddit": "", "center": [1108.5, 541.5], "path": [[1105.5, 541.5], [1108.5, 538.5], [1109.5, 539.5], [1110.5, 538.5], [1110.5, 539.5], [1111.5, 540.5], [1110.5, 541.5], [1110.5, 542.5], [1109.5, 543.5], [1106.5, 543.5], [1105.5, 542.5], [1105.5, 541.5]]}, {"id": "txd4mc", "submitted_by": "Xephorix512", "name": "Online Sequencer", "description": "The mascot and logo of the music-making website Online Sequencer", "website": "https://onlinesequencer.net", "subreddit": "/r/onlinesequencer", "center": [1693.5, 1514.5], "path": [[1688.5, 1495.5], [1699.5, 1495.5], [1699.5, 1533.5], [1687.5, 1533.5]]}, {"id": "txd47f", "submitted_by": "SteakSauce54", "name": "Attacks From the Turkish", "description": "Throughout the final day Doomguy, Isabelle, Thomas the Tank Engine, among other tiny art pieces suffered griefs from Turkish and Pepe bots. With the help of other communities they were able to fight them off. However Thomas was forced to change to a small number 1 . Only a few pixels remain of the original drawing. ", "website": "", "subreddit": "/r/animalcrossing", "center": [621.5, 1361.5], "path": [[590.5, 1339.5], [590.5, 1339.5], [654.5, 1339.5], [655.5, 1375.5], [646.5, 1375.5], [646.5, 1383.5], [588.5, 1382.5], [588.5, 1375.5]]}, @@ -6279,7 +6249,6 @@ {"id": "txkd33", "submitted_by": "Kreixe", "name": "osu!mania", "description": "osu!mania is a game mode which consists of a piano-like style of clicking notes to the beat, similar to the Beatmania IIDX series. The number of keys ranges from 1 to 9 (2 to 18 with the use of dual stages), with 4 keys and 7 keys being more popular among players", "website": "https://osu.ppy.sh", "subreddit": "/r/osuplace", "center": [749.5, 757.5], "path": [[739.5, 750.5], [757.5, 750.5], [755.5, 765.5], [741.5, 764.5], [741.5, 750.5], [739.5, 749.5]]}, {"id": "txkcy2", "submitted_by": "Binsento", "name": "Cura\u00e7ao", "description": "The flag and shape of Cura\u00e7ao. A Caribbean island part of the kingdom of the Netherlands.", "website": "https://www.curacao.com/", "subreddit": "/r/curacao", "center": [851.5, 13.5], "path": [[839.5, 1.5], [839.5, 1.5], [841.5, 4.5], [842.5, 2.5], [845.5, 4.5], [846.5, 9.5], [848.5, 10.5], [849.5, 12.5], [851.5, 13.5], [854.5, 14.5], [858.5, 15.5], [860.5, 17.5], [860.5, 18.5], [862.5, 19.5], [863.5, 20.5], [864.5, 21.5], [865.5, 22.5], [861.5, 23.5], [857.5, 19.5], [855.5, 19.5], [851.5, 17.5], [847.5, 13.5], [845.5, 13.5], [842.5, 10.5], [839.5, 7.5], [841.5, 2.5]]}, {"id": "txkcvf", "submitted_by": "ewokun", "name": "Rawbata", "description": "a restaurant in stockholm, sweden with staff from those 4 countries.", "website": "https://rawbata.se/", "subreddit": "", "center": [1046.5, 1688.5], "path": [[1034.5, 1682.5], [1058.5, 1682.5], [1058.5, 1694.5], [1038.5, 1694.5], [1034.5, 1690.5], [1034.5, 1682.5], [1033.5, 1687.5]]}, -{"id": "txkcou", "submitted_by": "miciy5", "name": "India", "description": "India, officially the Republic of India, is a country in South Asia. It is the seventh-largest country by area, the second-most populous country, and the most populous democracy in the world. ", "website": "https://india.gov.in/ ", "subreddit": "/r/india/, ", "center": [169.5, 1199.5], "path": [[0.5, 1172.5], [0.5, 1225.5], [299.5, 1226.5], [299.5, 1225.5], [307.5, 1216.5], [308.5, 1215.5], [310.5, 1216.5], [310.5, 1220.5], [312.5, 1220.5], [312.5, 1224.5], [341.5, 1224.5], [341.5, 1207.5], [340.5, 1206.5], [341.5, 1173.5]]}, {"id": "txkckr", "submitted_by": "evaroussel", "name": "Kcaz Inc.", "description": "French group of small streamers and discord server with a unique bot and website that work together. Come check us out (it's all in french though) ! \nhttps://www.twitch.tv/kcazles\nhttps://www.twitch.tv/gowgowlaki\nhttps://www.twitch.tv/chokabl", "website": "https://kcazinc.com/", "subreddit": "", "center": [1000.5, 1681.5], "path": [[996.5, 1677.5], [1002.5, 1677.5], [1002.5, 1683.5], [1006.5, 1683.5], [1006.5, 1685.5], [996.5, 1685.5]]}, {"id": "txkbne", "submitted_by": "Demonitized-picture", "name": "Callahans Passage", "description": "", "website": "", "subreddit": "", "center": [729.5, 568.5], "path": [[726.5, 564.5], [731.5, 564.5], [731.5, 565.5], [732.5, 565.5], [732.5, 567.5], [733.5, 567.5], [733.5, 569.5], [732.5, 569.5], [732.5, 571.5], [731.5, 571.5], [731.5, 572.5], [726.5, 572.5], [726.5, 571.5], [725.5, 571.5], [725.5, 569.5], [724.5, 569.5], [724.5, 567.5], [725.5, 567.5], [725.5, 565.5], [726.5, 565.5]]}, {"id": "txkbmt", "submitted_by": "nasho_me", "name": "Condor", "description": "Bolivian national bird", "website": "", "subreddit": "/r/BOLIVIA", "center": [1474.5, 1221.5], "path": [[1470.5, 1232.5], [1474.5, 1228.5], [1469.5, 1225.5], [1469.5, 1223.5], [1467.5, 1221.5], [1464.5, 1218.5], [1461.5, 1218.5], [1461.5, 1216.5], [1464.5, 1212.5], [1465.5, 1209.5], [1466.5, 1208.5], [1471.5, 1208.5], [1473.5, 1210.5], [1473.5, 1213.5], [1474.5, 1215.5], [1477.5, 1216.5], [1479.5, 1217.5], [1479.5, 1218.5], [1484.5, 1223.5], [1486.5, 1226.5], [1487.5, 1227.5], [1489.5, 1228.5], [1493.5, 1230.5], [1479.5, 1231.5], [1477.5, 1232.5], [1474.5, 1232.5], [1473.5, 1232.5]]}, @@ -6814,7 +6783,6 @@ {"id": "txuuvt", "submitted_by": "K1t_Cat", "name": "Remnants of the old Greek flag", "description": "", "website": "", "subreddit": "", "center": [358.5, 165.5], "path": [[348.5, 161.5], [367.5, 161.5], [367.5, 168.5], [348.5, 168.5], [348.5, 161.5]]}, {"id": "txuuo2", "submitted_by": "yotsubashi19", "name": "Pomu Rainpuff", "description": "A member of LazuLight, the first wave of VTubers from NIJISANJI's English branch. She's Pomu!", "website": "https://www.youtube.com/channel/UCP4nMSTdwU1KqYWu3UH5DHQ", "subreddit": "/r/Nijisanji", "center": [1892.5, 739.5], "path": [[1893.5, 743.5], [1886.5, 743.5], [1885.5, 741.5], [1888.5, 738.5], [1887.5, 735.5], [1890.5, 734.5], [1892.5, 738.5], [1894.5, 735.5], [1894.5, 734.5], [1896.5, 734.5], [1897.5, 735.5], [1895.5, 737.5], [1900.5, 741.5], [1899.5, 743.5]]}, {"id": "txuudl", "submitted_by": "Difficult_Basil2254", "name": "canary island flag", "description": "The Canary Islands are an archipelago located in the Atlantic Ocean that forms a Spanish autonomous community in Northwest Africa, with the status of historical nationality. It is also one of the outermost regions of the European Union.", "website": "https://es.wikipedia.org/wiki/Canarias", "subreddit": "", "center": [1070.5, 1376.5], "path": [[1066.5, 1368.5], [1065.5, 1386.5], [1076.5, 1368.5], [1075.5, 1369.5], [1065.5, 1368.5], [1065.5, 1387.5], [1076.5, 1386.5], [1076.5, 1368.5], [1076.5, 1368.5], [1070.5, 1368.5]]}, -{"id": "txutus", "submitted_by": "ShawermaBox", "name": "Vandalism", "description": "Previously, this space was occupied by an Israeli flag, but changed to a Palestinian flag, then back to an Israeli flag, and then finally to a Palestinian flag. Pro-Israel & pro-Palestine leaders came to an agreement to not attack one another afterwards. Yet, one blue dot remains - which was placed in a portion of the Palestinian flag which is all white (which is also all white on an Israeli flag), in an effort to vandalize it. ", "website": "", "subreddit": "", "center": [56.5, 661.5], "path": [[55.5, 660.5], [57.5, 660.5], [57.5, 662.5], [55.5, 662.5], [55.5, 660.5], [55.5, 660.5]]}, {"id": "txusul", "submitted_by": "AccordingClassroom30", "name": "Slovenian Flag", "description": "A shorter version was placed in the early stages of Place and was expanded to it's final lenght towards the end of the first day. Altho tryes to expand the white part of the flag were halted multiple times by Germany, an agrerement was proposed and accepted to have Bernd das Brot's beer foam spill into the white part of the flag. It was briefly invaded by the Cool S pattern after the second expansion, but quickly reconstructed and additional pixel art was added to the flag.", "website": "", "subreddit": "/r/slovenia", "center": [288.5, 879.5], "path": [[216.5, 868.5], [216.5, 888.5], [353.5, 888.5], [353.5, 886.5], [354.5, 885.5], [355.5, 884.5], [356.5, 883.5], [357.5, 883.5], [358.5, 884.5], [358.5, 868.5], [297.5, 868.5], [297.5, 874.5], [296.5, 875.5], [295.5, 875.5], [294.5, 876.5], [293.5, 877.5], [291.5, 879.5], [289.5, 879.5], [288.5, 880.5], [287.5, 880.5], [286.5, 881.5], [282.5, 881.5], [281.5, 882.5], [280.5, 882.5], [279.5, 883.5], [278.5, 883.5], [277.5, 884.5], [273.5, 884.5], [272.5, 883.5], [271.5, 883.5], [270.5, 882.5], [269.5, 882.5], [268.5, 881.5], [264.5, 881.5], [263.5, 880.5], [262.5, 880.5], [261.5, 879.5], [259.5, 879.5], [258.5, 878.5], [255.5, 875.5], [255.5, 875.5], [254.5, 875.5], [253.5, 874.5], [253.5, 865.5], [238.5, 865.5], [237.5, 866.5], [237.5, 867.5], [236.5, 868.5], [236.5, 869.5], [235.5, 870.5], [229.5, 870.5], [228.5, 869.5], [227.5, 869.5], [226.5, 868.5], [225.5, 867.5], [218.5, 867.5], [218.5, 868.5], [216.5, 868.5]]}, {"id": "txusjm", "submitted_by": "baga1706", "name": "TTC", "description": "The most powerful school in the world\nSCI