Merge remote-tracking branch 'up/master' into cleanup

This commit is contained in:
unknown 2022-04-07 23:17:02 -03:00
commit 19bc9c99f8
32 changed files with 560 additions and 91 deletions

3
.gitignore vendored
View file

@ -11,4 +11,5 @@ web/_js/minified.js
allCharacters.txt
combined.js
*.DS_Store
.vscode/
.vscode/
_img/place/

View file

@ -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

102
tools/redditflairset.py Normal file
View file

@ -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")

View file

@ -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;
}
}

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 457 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 513 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 441 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 563 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 523 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 506 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.2 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.3 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 2.8 MiB

View file

Before

Width:  |  Height:  |  Size: 953 KiB

After

Width:  |  Height:  |  Size: 953 KiB

View file

@ -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);

112
web/_js/time.js Normal file
View file

@ -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)
}

View file

@ -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.";

View file

@ -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<TTC\nMorgyd\u017c", "website": "", "subreddit": "", "center": [878.5, 1738.5], "path": [[868.5, 1735.5], [887.5, 1735.5], [887.5, 1741.5], [868.5, 1741.5]]},
{"id": "txursh", "submitted_by": "Bloemist", "name": "Color Wheel", "description": "Tiny color wheel by u/Bloemist", "website": "", "subreddit": "", "center": [1169.5, 476.5], "path": [[1166.5, 473.5], [1172.5, 473.5], [1172.5, 479.5], [1166.5, 479.5]]},
@ -7199,7 +7167,6 @@
{"id": "ty1t2v", "submitted_by": "MrStickVR", "name": "The Eel", "description": "An eel created by a group of friends that miraculously survived to the end despite numerous attacks.\n\nThe eel has gone through multiple iterations following these attacks, but managed to survive in part due to being coincidentally and conveniently placed between a few streamers and communities that took the eel under their wing and helped to defend it. \n\nWe all hate the eel, yet somehow, it remains...\n", "website": "", "subreddit": "", "center": [1519.5, 1762.5], "path": [[1517.5, 1762.5], [1517.5, 1761.5], [1515.5, 1758.5], [1513.5, 1757.5], [1525.5, 1757.5], [1525.5, 1766.5], [1513.5, 1766.5], [1513.5, 1757.5]]},
{"id": "ty1rcq", "submitted_by": "Artissi", "name": "Sapnap", "description": "Nicholas \"Nick,\" better known online as Sapnap, is a member of the Dream Team. He is a Minecraft gaming YouTuber who makes videos about plugins he and his friends have coded. He has been uploading on YouTube as of 2019.", "website": "[https://www.youtube.com/sapnap](https://www.youtube.com/sapnap)", "subreddit": "/r/Sapnap/", "center": [187.5, 931.5], "path": [[182.5, 935.5], [182.5, 926.5], [191.5, 926.5], [191.5, 935.5], [183.5, 935.5]]},
{"id": "ty1p7a", "submitted_by": "Kiribaku-", "name": "GFRIEND in Hangul (\u3147\u3148\u314a\u3131)", "description": "Shortened version of the name of the former Korean girl group GFRIEND (\uc5ec\uc790\uce5c\uad6c) in Hangul, stylized with their official colors.", "website": "https://web.archive.org/web/20210610205222/https://www.sourcemusic.com/ko/girf_profile.php", "subreddit": "/r/GFRIEND", "center": [1575.5, 1637.5], "path": [[1571.5, 1629.5], [1571.5, 1645.5], [1579.5, 1645.5], [1579.5, 1629.5]]},
{"id": "ty1omb", "submitted_by": "542525", "name": "Former ABU Husky", "description": "A mascot for diaper fetish products. This area was later deemed controversial due to the association with 'cub art', hence it, as well as other refences to adult baby content, was removed or subject to greifing.", "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": "ty1oan", "submitted_by": "run125", "name": "USA Heart Shaped Flag", "description": "A small heart shaped flag of the United States of America to show support for the people of Ukraine.\n\nPlease click the link below to donate to the Ukrainian Red Cross.", "website": "https://donate.redcrossredcrescent.org/ua/donate/~my-donation?_cv=1", "subreddit": "r/AmericanFlaginPlace", "center": [300.5, 208.5], "path": [[300.5, 211.5], [299.5, 210.5], [298.5, 209.5], [297.5, 208.5], [297.5, 207.5], [298.5, 206.5], [299.5, 206.5], [300.5, 207.5], [301.5, 206.5], [302.5, 206.5], [303.5, 207.5], [303.5, 208.5], [302.5, 209.5], [301.5, 210.5], [300.5, 211.5], [300.5, 211.5]]},
{"id": "ty1nvw", "submitted_by": "rhaked", "name": "OMEGA Robotics", "description": "#1 VEX Robotics team in NY. Future world champions.", "website": "omegarobotics.org", "subreddit": "r/place", "center": [1195.5, 1700.5], "path": [[1190.5, 1697.5], [1190.5, 1701.5], [1202.5, 1701.5], [1202.5, 1697.5], [1190.5, 1697.5], [1182.5, 1709.5], [1183.5, 1709.5]]},
{"id": "ty1nne", "submitted_by": "Ninja332", "name": "Shark Jaw", "description": "The logo of lefty political twitch streamer and content creator Shark3oZero", "website": "twitch.tv/Shark3ozero", "subreddit": "/r/Shark3ozero", "center": [1952.5, 1001.5], "path": [[1941.5, 992.5], [1963.5, 992.5], [1963.5, 1010.5], [1941.5, 1010.5], [1941.5, 992.5]]},
@ -7471,6 +7438,199 @@
{"id": "ty5mtw", "submitted_by": "AnonymousRandPerson", "name": "United States-Argentina hearts", "description": "Hearts depicting the flags of the United States and Argentina.", "website": "", "subreddit": "/r/AmericanFlagInPlace, /r/argentina", "center": [1774.5, 1844.5], "path": [[1771.5, 1819.5], [1769.5, 1821.5], [1769.5, 1867.5], [1773.5, 1870.5], [1775.5, 1870.5], [1779.5, 1866.5], [1779.5, 1821.5], [1777.5, 1819.5]]},
{"id": "ty5la5", "submitted_by": "nelabyrinth", "name": "LordKebun Logo", "description": "Logo of the GTARP streamer LordKebun who plays the character Mr. K, leader of Chang Gang, in GTARP server NoPixel.", "website": "", "subreddit": "r/Chang_Gang", "center": [418.5, 1057.5], "path": [[406.5, 1045.5], [429.5, 1045.5], [429.5, 1069.5], [406.5, 1069.5], [406.5, 1045.5]]},
{"id": "ty5l8q", "submitted_by": "HonestPollution623", "name": "Grass Minecraft", "description": "Grass is a non-solid plant block that has wheat seeds as a drop. Its color is biome-dependent, and matches the color of grass blocks. Tall grass [a] is a two-block high variety of grass. Ferns are variants of grass found only in certain biomes and have the same characteristics as grass.", "website": "", "subreddit": "/r/Minecraft", "center": [445.5, 1490.5], "path": [[442.5, 1487.5], [448.5, 1487.5], [448.5, 1492.5], [442.5, 1493.5], [442.5, 1487.5]]},
{"id": "ty5hb7", "submitted_by": "HonestPollution623", "name": "Pokeball", "description": "This type of Pok\u00e9 Ball is the weakest and the only type that is typically available at the beginning of the Pok\u00e9mon games. It has a catch rate modifier of \u00d71 in the catch formula.", "website": "", "subreddit": "/r/pokemon", "center": [0.5, 0.5], "path": []}
{"id": "ty5hb7", "submitted_by": "HonestPollution623", "name": "Pokeball", "description": "This type of Pok\u00e9 Ball is the weakest and the only type that is typically available at the beginning of the Pok\u00e9mon games. It has a catch rate modifier of \u00d71 in the catch formula.", "website": "", "subreddit": "/r/pokemon", "center": [0.5, 0.5], "path": []},
{"id": "tykxd8", "submitted_by": "JacobsDevelop", "name": "Portal 2: Desolation", "description": "Omega is a logo of Portal 2 called Desolation. First logo that was made on r/place was covered up so we agreed to make it on Monkeytype logo. After we got permission from them we made it and kept it to the end.", "website": "https://www.emberspark.games/desolation", "subreddit": "", "center": [647.5, 1327.5], "path": [[644.5, 1324.5], [644.5, 1329.5], [649.5, 1329.5], [649.5, 1324.5]]},
{"id": "tykwut", "submitted_by": "Chiweenies2", "name": "r/FSSH subreddit logo", "description": "A redirect subreddit for r/PlaceFishCult as FSSH was easier to make fit in a small space.", "website": "", "subreddit": "r/FSSH", "center": [451.5, 907.5], "path": [[449.5, 901.5], [452.5, 901.5], [452.5, 913.5], [449.5, 913.5]]},
{"id": "tykv4f", "submitted_by": "Chiweenies2", "name": "Lithuania Fish", "description": "A fish based on the flag of Lithuania.", "website": "", "subreddit": "r/PlaceFishCult", "center": [470.5, 898.5], "path": [[468.5, 897.5], [471.5, 897.5], [471.5, 899.5], [468.5, 899.5]]},
{"id": "tykup9", "submitted_by": "buzdolabimotoru", "name": "Tiny Maldives Flag", "description": "A very tiny Maldives flag at near of Bar\u0131\u015f Man\u00e7o", "website": "", "subreddit": "", "center": [749.5, 1896.5], "path": [[747.5, 1892.5], [751.5, 1892.5], [751.5, 1899.5], [747.5, 1899.5]]},
{"id": "tykuec", "submitted_by": "Chiweenies2", "name": "Hooty Fish", "description": "A fish based on the Owl House character Hooty.", "website": "", "subreddit": "r/PlaceFishCult", "center": [0.5, 0.5], "path": []},
{"id": "tyku9q", "submitted_by": "Captain_H0tdog", "name": "Joey from Fortnite", "description": "Joey is a legendary outfit from chapter 2 season 7 of Fortnite: Battle Royale.", "website": "", "subreddit": "", "center": [28.5, 1089.5], "path": [[24.5, 1084.5], [24.5, 1093.5], [31.5, 1093.5], [31.5, 1084.5], [24.5, 1084.5]]},
{"id": "tykt2i", "submitted_by": "Etta3413", "name": "Southern Lattice Meloetta Memorial", "description": "A small memorial to the Meloetta sprite that had been located at the bottom of the Southern Lattice, which was destroyed by an overnight attack which took over much of the Southern Lattice.", "website": "", "subreddit": "", "center": [1521.5, 1514.5], "path": [[1517.5, 1510.5], [1521.5, 1510.5], [1521.5, 1511.5], [1525.5, 1511.5], [1525.5, 1514.5], [1524.5, 1514.5], [1524.5, 1517.5], [1520.5, 1517.5], [1520.5, 1516.5], [1516.5, 1516.5], [1516.5, 1513.5], [1517.5, 1513.5]]},
{"id": "tykrsh", "submitted_by": "Chiweenies2", "name": "Two Fish Kissing", "description": "Two fish who are kissing and in love with each other.", "website": "", "subreddit": "r/PlaceFishCult", "center": [286.5, 1639.5], "path": [[282.5, 1638.5], [289.5, 1638.5], [289.5, 1640.5], [282.5, 1640.5]]},
{"id": "tykqmy", "submitted_by": "Chiweenies2", "name": "Treasure Chest", "description": "I wonder what's inside?", "website": "", "subreddit": "r/PlaceFishCult", "center": [288.5, 1649.5], "path": [[287.5, 1648.5], [289.5, 1648.5], [289.5, 1649.5], [287.5, 1649.5]]},
{"id": "tykqht", "submitted_by": "Infinite-Dog-816", "name": "incomplete flag of Azerbaijan", "description": "white crescent and an eight-pointed star are missing in flag", "website": "https://en.wikipedia.org/wiki/Flag_of_Azerbaijan", "subreddit": "https://www.reddit.com/r/azerbaijan", "center": [1426.5, 1649.5], "path": [[1416.5, 1644.5], [1436.5, 1644.5], [1436.5, 1653.5], [1415.5, 1653.5]]},
{"id": "tykpmk", "submitted_by": "buzdolabimotoru", "name": "Persian Gulf", "description": "A sea at southern Iran. Seen in Iran map on Iran flag. USA likes here :)", "website": "", "subreddit": "", "center": [89.5, 303.5], "path": [[79.5, 297.5], [78.5, 297.5], [78.5, 299.5], [79.5, 299.5], [79.5, 302.5], [80.5, 302.5], [80.5, 304.5], [81.5, 305.5], [81.5, 306.5], [87.5, 306.5], [87.5, 305.5], [92.5, 305.5], [92.5, 306.5], [101.5, 306.5], [101.5, 305.5], [103.5, 303.5], [103.5, 302.5], [101.5, 302.5], [101.5, 303.5], [94.5, 303.5], [94.5, 302.5], [91.5, 302.5], [91.5, 301.5], [89.5, 301.5], [89.5, 302.5], [83.5, 302.5], [83.5, 301.5], [82.5, 300.5], [81.5, 300.5], [80.5, 299.5], [79.5, 298.5]]},
{"id": "tykpec", "submitted_by": "Etta3413", "name": "North Lattice Meloetta Memorial", "description": "A small memorial to the Meloetta sprite that used to be located just to the south, which was destroyed by Twitch streamer Asmongold having his viewers build a massive potfriend art on top of it not long before the second expansion of the canvas. ", "website": "", "subreddit": "", "center": [1058.5, 438.5], "path": [[1058.5, 434.5], [1054.5, 434.5], [1054.5, 437.5], [1053.5, 437.5], [1053.5, 440.5], [1057.5, 440.5], [1057.5, 441.5], [1061.5, 441.5], [1061.5, 438.5], [1062.5, 438.5], [1062.5, 435.5], [1058.5, 435.5]]},
{"id": "tykorp", "submitted_by": "glongv3", "name": "Leoncold", "description": "a famous peruvian streamer more knowing lke the frozen of frozen :v ", "website": "https://trovo.live/leoncraft", "subreddit": "", "center": [1601.5, 1653.5], "path": [[1597.5, 1649.5], [1597.5, 1657.5], [1605.5, 1657.5], [1605.5, 1649.5]]},
{"id": "tykoij", "submitted_by": "MatosPC", "name": "Team Del Sensei's Logo", "description": "Group of friends that was created several years ago, some of the remain and active members are: RekIaR (creator), IsaiVC, iTzElectro_O, MatosPC\nLogo made by MatosPC", "website": "", "subreddit": "", "center": [0.5, 0.5], "path": []},
{"id": "tyknu6", "submitted_by": "buzdolabimotoru", "name": "Lake Peipsi", "description": "Lake Peipsi is located south of the Gulf of Finland on the border between the Republic of Estonia and Russian Federation, being the largest international lake in Europe.", "website": "", "subreddit": "", "center": [1950.5, 115.5], "path": [[1952.5, 109.5], [1949.5, 109.5], [1947.5, 111.5], [1947.5, 112.5], [1948.5, 113.5], [1948.5, 115.5], [1949.5, 116.5], [1949.5, 118.5], [1950.5, 118.5], [1950.5, 121.5], [1951.5, 121.5], [1951.5, 123.5], [1952.5, 123.5]]},
{"id": "tykl9x", "submitted_by": "Chiweenies2", "name": "Big Fish", "description": "A highly detailed and massive fish.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1433.5, 921.5], "path": [[1428.5, 921.5], [1432.5, 917.5], [1437.5, 918.5], [1437.5, 923.5], [1432.5, 924.5]]},
{"id": "tykkap", "submitted_by": "Chiweenies2", "name": "BIG CRAB", "description": "A crab is happens to be of humongous size.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1445.5, 956.5], "path": [[1441.5, 952.5], [1445.5, 955.5], [1449.5, 952.5], [1447.5, 958.5], [1443.5, 958.5]]},
{"id": "tykk71", "submitted_by": "NachoDipFan", "name": "Finn the Human", "description": "A mini version of a cartoon character Finn the Human from Adventure Time", "website": "", "subreddit": "/r/adventuretime", "center": [182.5, 69.5], "path": [[179.5, 65.5], [179.5, 72.5], [185.5, 72.5], [185.5, 65.5], [185.5, 65.5], [179.5, 65.5], [179.5, 65.5]]},
{"id": "tykj4c", "submitted_by": "Chiweenies2", "name": "No fin", "description": "A fish who unfortunately lost a fin.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1442.5, 919.5], "path": [[1441.5, 918.5], [1444.5, 918.5], [1442.5, 920.5], [1441.5, 919.5]]},
{"id": "tykicd", "submitted_by": "Who_Diamond", "name": "Snoo Easter Egg", "description": "On the original r/place, there was depicted two Snoo (Reddit's mascot) and a dog looking off the edge of the map while on a sled. Though not shown in the atlas, it can still be seen here on the time-lapse (https://www.reddit.com/r/place/?cx=3&cy=0&px=6&ts=1649112460185).", "website": "", "subreddit": "", "center": [2.5, 1.5], "path": [[0.5, -1.5], [0.5, 0.5], [4.5, 0.5], [4.5, 2.5], [0.5, 2.5]]},
{"id": "tyki1z", "submitted_by": "Chiweenies2", "name": "Kissing Fish", "description": "Two fish who are in love. The pink fish is named Princess and the green fish is named Prince.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1442.5, 923.5], "path": [[1438.5, 922.5], [1445.5, 922.5], [1445.5, 924.5], [1438.5, 924.5]]},
{"id": "tykhuc", "submitted_by": "Rubi-neverstops", "name": "Spanish Mini Flag ", "description": "Another territory of spain on place made by the spaniards. rUbI", "website": "", "subreddit": "/r/esplace", "center": [1992.5, 1319.5], "path": [[1985.5, 1318.5], [2000.5, 1318.5], [1999.5, 1320.5], [1985.5, 1320.5], [1985.5, 1318.5], [1999.5, 1320.5], [1999.5, 1320.5]]},
{"id": "tykgnk", "submitted_by": "Chiweenies2", "name": "Cornelius", "description": "A red happy dancing crab named Cornelius.", "website": "", "subreddit": "r/PlaceFishCult", "center": [1436.5, 932.5], "path": [[1434.5, 934.5], [1433.5, 931.5], [1434.5, 930.5], [1438.5, 931.5], [1438.5, 934.5]]},
{"id": "tykfkb", "submitted_by": "Chiweenies2", "name": "Mr. Puff", "description": "A front-facing pufferfish named Mr. Puff.", "website": "", "subreddit": "r/PlaceFishCult", "center": [0.5, 0.5], "path": []},
{"id": "tykdr5", "submitted_by": "Chiweenies2", "name": "Mari", "description": "A multi-colored fish named Mari.", "website": "", "subreddit": "r/PlaceFishCult", "center": [301.5, 1627.5], "path": [[299.5, 1626.5], [302.5, 1626.5], [302.5, 1628.5], [299.5, 1628.5]]},
{"id": "tykdob", "submitted_by": "Chiweenies2", "name": "Lime", "description": "A lime fish named Lime.", "website": "", "subreddit": "r/PlaceFishCult", "center": [307.5, 1626.5], "path": [[305.5, 1625.5], [308.5, 1625.5], [308.5, 1627.5], [305.5, 1627.5]]},
{"id": "tykbzd", "submitted_by": "Chiweenies2", "name": "Hugh", "description": "A purple fish named Hugh.", "website": "", "subreddit": "r/PlaceFishCult", "center": [296.5, 1632.5], "path": [[294.5, 1631.5], [297.5, 1631.5], [297.5, 1633.5], [294.5, 1633.5]]},
{"id": "tykahb", "submitted_by": "Chiweenies2", "name": "Doh", "description": "A teal fish with a purple stripe named Doh.", "website": "", "subreddit": "r/PlaceFishCult", "center": [291.5, 1631.5], "path": [[289.5, 1630.5], [292.5, 1630.5], [292.5, 1632.5], [289.5, 1632.5]]},
{"id": "tyk9je", "submitted_by": "Chiweenies2", "name": "Deutscher Fisch", "description": "A German fish from the city of Rostock.", "website": "", "subreddit": "r/PlaceFishCult", "center": [291.5, 1626.5], "path": [[289.5, 1625.5], [292.5, 1625.5], [292.5, 1627.5], [289.5, 1627.5]]},
{"id": "tyk740", "submitted_by": "Chiweenies2", "name": "Chip", "description": "A teal gradient fish named Chip.", "website": "", "subreddit": "r/PlaceFishCult", "center": [285.5, 1627.5], "path": [[283.5, 1628.5], [283.5, 1626.5], [286.5, 1626.5], [286.5, 1628.5]]},
{"id": "tyk6ov", "submitted_by": "Andyangel98", "name": "First Romanian Flag", "description": "First Romanian Flag. It was replaced with Polish Flag in the end. The flag contained the Romanian coat of arms, a Dacia car, and other element specific to Romanian countrie.", "website": "", "subreddit": "", "center": [734.5, 179.5], "path": [[636.5, 138.5], [828.5, 139.5], [826.5, 199.5], [785.5, 197.5], [784.5, 240.5], [713.5, 237.5], [711.5, 217.5], [688.5, 198.5], [636.5, 199.5]]},
{"id": "tyk659", "submitted_by": "Chiweenies2", "name": "Squiggles", "description": "Squiggles is a neon tetra.", "website": "", "subreddit": "r/PlaceFishCult", "center": [285.5, 1631.5], "path": [[283.5, 1630.5], [286.5, 1630.5], [286.5, 1632.5], [283.5, 1632.5]]},
{"id": "tyk0w3", "submitted_by": "Chiweenies2", "name": "Nero", "description": "A fish named Nero based off of the pansexual pride flag.", "website": "", "subreddit": "r/PlaceFishCult", "center": [288.5, 1642.5], "path": [[286.5, 1641.5], [289.5, 1641.5], [289.5, 1643.5], [286.5, 1643.5]]},
{"id": "tyjzpf", "submitted_by": "Chiweenies2", "name": "Frog", "description": "A nice little green frog.", "website": "", "subreddit": "r/PlaceFishCult", "center": [284.5, 1647.5], "path": [[282.5, 1644.5], [286.5, 1644.5], [286.5, 1649.5], [282.5, 1649.5]]},
{"id": "tyjyx0", "submitted_by": "AllGussiedUp", "name": "Villa Maria Halll", "description": "The initials and colors of Villa Maria Hall: home of Drum Squad, SNATR, and the Auction at Oregon's University of Portland. Villa Viri Superbi.", "website": "www.up.edu", "subreddit": "", "center": [1720.5, 377.5], "path": [[1717.5, 372.5], [1718.5, 382.5], [1722.5, 382.5], [1722.5, 372.5], [1717.5, 372.5]]},
{"id": "tyjyk7", "submitted_by": "buzdolabimotoru", "name": "Hiiumaa", "description": "Second largest island in Estonia", "website": "", "subreddit": "", "center": [1912.5, 109.5], "path": [[1911.5, 112.5], [1909.5, 110.5], [1908.5, 109.5], [1912.5, 106.5], [1915.5, 109.5]]},
{"id": "tyjyk2", "submitted_by": "Torbots1197", "name": "TorBots Team 1197", "description": "A robotics team in the First Robotics Competition (FRC) program based in Torrance, California. Directly adjacent to it are other FRC teams from different high schools around the world.", "website": "https://torbots.wixsite.com/mysite", "subreddit": "/r/TorBots1197", "center": [1139.5, 1636.5], "path": [[1133.5, 1632.5], [1145.5, 1632.5], [1145.5, 1639.5], [1133.5, 1639.5], [1133.5, 1632.5]]},
{"id": "tyjyjm", "submitted_by": "Chiweenies2", "name": "Trans Fish", "description": "A fish designed of off the transgender pride flag.", "website": "", "subreddit": "r/PlaceFishCult", "center": [296.5, 1628.5], "path": [[293.5, 1628.5], [297.5, 1626.5], [297.5, 1630.5]]},
{"id": "tyjyfk", "submitted_by": "exer121", "name": "Catalan - toki pona heart", "description": "A heart made by the toki pona and catalan community for his friendship", "website": "", "subreddit": "r/tokipona, r/catalunya", "center": [740.5, 346.5], "path": [[737.5, 345.5], [738.5, 348.5], [740.5, 349.5], [741.5, 349.5], [742.5, 347.5], [743.5, 345.5], [741.5, 344.5], [740.5, 345.5], [738.5, 344.5]]},
{"id": "tyjwx6", "submitted_by": "buzdolabimotoru", "name": "Saaremaa", "description": "Largest island of Estonia", "website": "", "subreddit": "", "center": [1910.5, 118.5], "path": [[1906.5, 123.5], [1907.5, 124.5], [1908.5, 124.5], [1909.5, 123.5], [1909.5, 121.5], [1910.5, 121.5], [1910.5, 120.5], [1914.5, 120.5], [1915.5, 119.5], [1916.5, 118.5], [1916.5, 115.5], [1917.5, 115.5], [1917.5, 114.5], [1916.5, 114.5], [1915.5, 116.5], [1914.5, 115.5], [1913.5, 114.5], [1912.5, 114.5], [1911.5, 115.5], [1909.5, 115.5], [1908.5, 116.5], [1905.5, 116.5], [1906.5, 117.5], [1906.5, 118.5], [1905.5, 118.5], [1905.5, 120.5], [1907.5, 122.5]]},
{"id": "tyjwck", "submitted_by": "lolrofl_", "name": "LOL", "description": "LOL, or lol, is an initialism for laughing out loud and a popular element of Internet slang.", "website": "", "subreddit": "", "center": [1075.5, 1672.5], "path": [[1070.5, 1669.5], [1080.5, 1669.5], [1080.5, 1675.5], [1070.5, 1675.5]]},
{"id": "tyjvki", "submitted_by": "buzdolabimotoru", "name": "Talinn - Riga line", "description": "A golden line that shows Talinn and Riga, capitals of Estonia and Latvia", "website": "", "subreddit": "", "center": [1934.5, 120.5], "path": [[1930.5, 105.5], [1930.5, 109.5], [1934.5, 114.5], [1934.5, 117.5], [1935.5, 117.5], [1935.5, 119.5], [1934.5, 123.5], [1934.5, 126.5], [1927.5, 134.5], [1928.5, 135.5], [1929.5, 135.5], [1932.5, 133.5], [1935.5, 130.5], [1937.5, 126.5], [1937.5, 121.5], [1938.5, 115.5], [1933.5, 105.5]]},
{"id": "tyju45", "submitted_by": "buzdolabimotoru", "name": "Riga - Vilnus line", "description": "A golden line that connects Riga and Vilnus, capitals of Latvia and Lithuania", "website": "", "subreddit": "", "center": [1925.5, 153.5], "path": [[1923.5, 139.5], [1922.5, 140.5], [1922.5, 151.5], [1927.5, 163.5], [1929.5, 163.5], [1929.5, 161.5], [1928.5, 159.5], [1924.5, 150.5]]},
{"id": "tyjrvn", "submitted_by": "trbinsc", "name": "Rocket Lab Electron Rocket", "description": "Rocket Lab's Electron small-satellite launch vehicle, drawn roughly to scale with the nearby SpaceX Starship.", "website": "", "subreddit": "/r/RocketLab/", "center": [826.5, 674.5], "path": [[825.5, 668.5], [827.5, 668.5], [827.5, 679.5], [825.5, 679.5], [825.5, 679.5], [825.5, 679.5]]},
{"id": "tyjrt9", "submitted_by": "buzdolabimotoru", "name": "Baltic Sea", "description": "The sea between Baltics, Scandinavia and Northern Europe. Its third smallest sea after Aegean Sea and Marmara Sea. And it is the only sea in the \"place\"", "website": "", "subreddit": "", "center": [1904.5, 130.5], "path": [[1912.5, 166.5], [1913.5, 171.5], [1896.5, 172.5], [1896.5, 167.5], [1895.5, 166.5], [1895.5, 162.5], [1896.5, 161.5], [1896.5, 158.5], [1895.5, 157.5], [1895.5, 153.5], [1894.5, 153.5], [1893.5, 153.5], [1893.5, 150.5], [1898.5, 151.5], [1897.5, 144.5], [1892.5, 143.5], [1888.5, 142.5], [1887.5, 115.5], [1891.5, 115.5], [1901.5, 114.5], [1901.5, 104.5], [1918.5, 103.5], [1918.5, 110.5], [1919.5, 111.5], [1920.5, 113.5], [1919.5, 113.5], [1919.5, 118.5], [1920.5, 118.5], [1921.5, 120.5], [1923.5, 121.5], [1924.5, 119.5], [1926.5, 119.5], [1927.5, 121.5], [1925.5, 121.5], [1925.5, 133.5], [1920.5, 138.5], [1917.5, 136.5], [1917.5, 133.5], [1912.5, 126.5], [1904.5, 129.5], [1902.5, 138.5], [1899.5, 141.5], [1900.5, 151.5], [1899.5, 156.5], [1900.5, 159.5], [1899.5, 163.5], [1902.5, 162.5], [1904.5, 163.5], [1904.5, 164.5], [1905.5, 165.5]]},
{"id": "tyjn0w", "submitted_by": "buzdolabimotoru", "name": "Star of Vilnus", "description": "A shiny golden star that shows Vilnus, capital and the largest city of Lithuania", "website": "", "subreddit": "", "center": [1931.5, 165.5], "path": [[1930.5, 161.5], [1929.5, 162.5], [1929.5, 163.5], [1927.5, 163.5], [1926.5, 164.5], [1928.5, 166.5], [1927.5, 167.5], [1927.5, 168.5], [1928.5, 169.5], [1929.5, 169.5], [1930.5, 168.5], [1931.5, 168.5], [1932.5, 169.5], [1933.5, 169.5], [1934.5, 168.5], [1934.5, 167.5], [1933.5, 166.5], [1935.5, 164.5], [1934.5, 163.5], [1932.5, 163.5], [1932.5, 162.5], [1931.5, 161.5]]},
{"id": "tyjkqj", "submitted_by": "buzdolabimotoru", "name": "Big Ben", "description": "The \"Big Ben\", its name of just clock and not the Tower. And it is worlds secong biggest four faced clock. It is located in the Westminster Palace.", "website": "", "subreddit": "", "center": [695.5, 526.5], "path": [[692.5, 523.5], [692.5, 529.5], [698.5, 529.5], [698.5, 523.5]]},
{"id": "tyjhfq", "submitted_by": "Datal24", "name": "ConterPoto", "description": "An emote from the mexican youtuber/streamer Conterstine, member of elitecraft", "website": "https://www.twitch.tv/conterstine", "subreddit": "", "center": [1784.5, 1405.5], "path": [[1766.5, 1387.5], [1802.5, 1387.5], [1802.5, 1423.5], [1766.5, 1423.5], [1766.5, 1387.5]]},
{"id": "tyjh8s", "submitted_by": "LuiguSefirosu", "name": "Pewdiepie Waves", "description": "After losing a spot, a few people on the Pewdiepie Discord banded together to try a last ditch attempt at creating a small piece dedicated to Felix Arvid Ulf Kjellberg.", "website": "", "subreddit": "https://www.reddit.com/r/PewdiepieSubmissions/", "center": [0.5, 0.5], "path": []},
{"id": "tyjfuu", "submitted_by": "sethandthecrew", "name": "Yandhi, Kanye West", "description": "Originally going to be released in 2018 after West's made ye and Kids See Ghosts with Kid Cudi in Jackson Hole Wyoming as well as mainline produce 3 other albums. However after a rant on Saturday Night live, it was delayed, then delayed even more. It would eventfully turn into Jesus is King a year later with a few songs from Yandhi being reused with different vocals. Such as Selah, which was named Charkas during Yandhi, and Use This Gospel, which was named Law of Attraction during Yandhi made the final cut. Hurricane was originally set to release on Yandhi, made it on West's 2021 studio album, Donda, which the song would win a grammy. Many songs were cut from the final album, such as New Body with Nicki Minaj, and I Kill For Fun with YNW Kelly, who would ironcally be charged for murder months after the song was recorded. ( ", "website": "", "subreddit": "/r/westsubever", "center": [30.5, 814.5], "path": [[13.5, 799.5], [47.5, 799.5], [47.5, 830.5], [14.5, 830.5]]},
{"id": "tyjfmv", "submitted_by": "buzdolabimotoru", "name": "Star of Talinn", "description": "A gold star shows the Talinn, the capital city of Estonia", "website": "", "subreddit": "", "center": [1932.5, 102.5], "path": [[1927.5, 100.5], [1928.5, 101.5], [1929.5, 102.5], [1928.5, 103.5], [1928.5, 104.5], [1929.5, 105.5], [1930.5, 105.5], [1931.5, 104.5], [1932.5, 104.5], [1933.5, 105.5], [1934.5, 105.5], [1935.5, 104.5], [1935.5, 103.5], [1934.5, 102.5], [1936.5, 100.5], [1936.5, 99.5], [1928.5, 99.5]]},
{"id": "tyjfe7", "submitted_by": "dcawska", "name": "Idee HG", "description": "logo of lyc\u00e9e ferney by yann, noah, mathis, karel and demian", "website": "", "subreddit": "", "center": [856.5, 1633.5], "path": [[854.5, 1631.5], [854.5, 1635.5], [858.5, 1635.5], [858.5, 1631.5]]},
{"id": "tyjeke", "submitted_by": "buzdolabimotoru", "name": "Star of Riga", "description": "A star that shows Riga, the capital of Latvia", "website": "", "subreddit": "", "center": [1923.5, 136.5], "path": [[1923.5, 132.5], [1922.5, 133.5], [1921.5, 134.5], [1920.5, 134.5], [1919.5, 135.5], [1921.5, 137.5], [1920.5, 138.5], [1920.5, 139.5], [1921.5, 140.5], [1922.5, 140.5], [1923.5, 139.5], [1924.5, 139.5], [1925.5, 140.5], [1926.5, 140.5], [1927.5, 139.5], [1927.5, 138.5], [1926.5, 137.5], [1927.5, 136.5], [1928.5, 135.5], [1927.5, 134.5], [1925.5, 134.5], [1925.5, 133.5], [1924.5, 132.5]]},
{"id": "tyjddt", "submitted_by": "Mundane_Rice_8106", "name": "Pikachu", "description": "A small but fierce pikachu, it was suprised by the incoming white void", "website": "", "subreddit": "", "center": [1363.5, 121.5], "path": [[1359.5, 118.5], [1367.5, 118.5], [1367.5, 125.5], [1361.5, 125.5], [1360.5, 124.5], [1360.5, 122.5], [1359.5, 122.5], [1359.5, 122.5], [1359.5, 121.5], [1359.5, 120.5], [1359.5, 119.5], [1360.5, 118.5], [1365.5, 118.5]]},
{"id": "tyjd7a", "submitted_by": "buzdolabimotoru", "name": "Map of Lithuania", "description": "Map of Lithuania with Latvia and Belarus. It has a star that shows Vilnus, capital of Lithuania.", "website": "", "subreddit": "", "center": [1922.5, 160.5], "path": [[1944.5, 156.5], [1944.5, 159.5], [1943.5, 159.5], [1943.5, 161.5], [1942.5, 161.5], [1943.5, 161.5], [1944.5, 162.5], [1944.5, 164.5], [1941.5, 164.5], [1941.5, 165.5], [1940.5, 165.5], [1940.5, 165.5], [1940.5, 166.5], [1938.5, 166.5], [1938.5, 167.5], [1939.5, 168.5], [1938.5, 167.5], [1937.5, 167.5], [1937.5, 171.5], [1936.5, 171.5], [1931.5, 175.5], [1930.5, 176.5], [1929.5, 176.5], [1928.5, 177.5], [1927.5, 178.5], [1926.5, 177.5], [1923.5, 177.5], [1923.5, 176.5], [1922.5, 176.5], [1921.5, 175.5], [1920.5, 174.5], [1919.5, 174.5], [1919.5, 173.5], [1918.5, 173.5], [1918.5, 172.5], [1915.5, 169.5], [1912.5, 169.5], [1912.5, 166.5], [1910.5, 166.5], [1910.5, 165.5], [1905.5, 165.5], [1905.5, 164.5], [1904.5, 164.5], [1904.5, 163.5], [1902.5, 163.5], [1902.5, 162.5], [1900.5, 162.5], [1899.5, 163.5], [1899.5, 159.5], [1900.5, 158.5], [1899.5, 157.5], [1899.5, 151.5], [1900.5, 151.5], [1901.5, 150.5], [1901.5, 149.5], [1903.5, 147.5], [1906.5, 147.5], [1907.5, 146.5], [1910.5, 146.5], [1910.5, 147.5], [1912.5, 147.5], [1912.5, 146.5], [1913.5, 146.5], [1913.5, 147.5], [1914.5, 147.5], [1914.5, 148.5], [1915.5, 148.5], [1915.5, 147.5], [1922.5, 147.5], [1922.5, 148.5], [1925.5, 148.5], [1926.5, 148.5], [1927.5, 146.5], [1929.5, 146.5], [1929.5, 145.5], [1930.5, 145.5], [1930.5, 148.5], [1931.5, 148.5], [1931.5, 149.5], [1934.5, 149.5], [1934.5, 150.5]]},
{"id": "tyjbpx", "submitted_by": "_Totorotrip_", "name": "Singapore mini flag", "description": "A flag as cute as Singapore, lah!", "website": "https://en.wikipedia.org/wiki/Singapore", "subreddit": "r/singapore", "center": [1121.5, 1600.5], "path": [[1120.5, 1599.5], [1122.5, 1599.5], [1122.5, 1600.5], [1120.5, 1600.5]]},
{"id": "tyjam8", "submitted_by": "buzdolabimotoru", "name": "Map of Latvia", "description": "Latvian map with other baltic countries. It has a star that shows Riga, capital of Latvia.", "website": "", "subreddit": "", "center": [1929.5, 139.5], "path": [[1949.5, 129.5], [1952.5, 133.5], [1953.5, 133.5], [1953.5, 141.5], [1954.5, 141.5], [1954.5, 151.5], [1953.5, 151.5], [1953.5, 152.5], [1950.5, 155.5], [1945.5, 155.5], [1945.5, 156.5], [1942.5, 156.5], [1942.5, 155.5], [1941.5, 155.5], [1941.5, 154.5], [1938.5, 152.5], [1937.5, 152.5], [1937.5, 151.5], [1935.5, 151.5], [1934.5, 150.5], [1931.5, 150.5], [1931.5, 148.5], [1930.5, 148.5], [1930.5, 145.5], [1929.5, 145.5], [1925.5, 148.5], [1921.5, 148.5], [1921.5, 147.5], [1915.5, 147.5], [1915.5, 148.5], [1914.5, 148.5], [1914.5, 147.5], [1910.5, 147.5], [1910.5, 146.5], [1906.5, 146.5], [1906.5, 147.5], [1903.5, 147.5], [1902.5, 149.5], [1901.5, 149.5], [1901.5, 151.5], [1900.5, 151.5], [1899.5, 151.5], [1899.5, 140.5], [1901.5, 140.5], [1900.5, 139.5], [1901.5, 139.5], [1901.5, 138.5], [1902.5, 138.5], [1902.5, 137.5], [1903.5, 137.5], [1903.5, 131.5], [1904.5, 131.5], [1904.5, 129.5], [1905.5, 129.5], [1905.5, 128.5], [1909.5, 128.5], [1909.5, 127.5], [1910.5, 127.5], [1910.5, 126.5], [1912.5, 126.5], [1917.5, 125.5], [1918.5, 124.5], [1919.5, 125.5], [1918.5, 126.5], [1912.5, 126.5], [1912.5, 128.5], [1912.5, 129.5], [1913.5, 129.5], [1913.5, 130.5], [1914.5, 130.5], [1914.5, 131.5], [1915.5, 131.5], [1915.5, 132.5], [1916.5, 132.5], [1916.5, 133.5], [1917.5, 133.5], [1917.5, 137.5], [1918.5, 136.5], [1918.5, 137.5], [1919.5, 137.5], [1919.5, 138.5], [1920.5, 138.5], [1920.5, 139.5], [1921.5, 138.5], [1921.5, 137.5], [1923.5, 137.5], [1923.5, 136.5], [1925.5, 136.5], [1925.5, 134.5], [1925.5, 125.5], [1926.5, 124.5], [1928.5, 123.5], [1930.5, 122.5], [1933.5, 121.5], [1934.5, 122.5], [1936.5, 124.5], [1943.5, 131.5], [1945.5, 130.5], [1946.5, 129.5]]},
{"id": "tyj9m0", "submitted_by": "_Totorotrip_", "name": "Cordoba flag (Arg) ", "description": "Flag of the best prooovince and future capital of Chetoslovakia.", "website": "https://es.wikipedia.org/wiki/Fernet_con_coca", "subreddit": "r/argentina", "center": [1121.5, 1597.5], "path": [[1120.5, 1598.5], [1120.5, 1596.5], [1122.5, 1596.5], [1122.5, 1598.5]]},
{"id": "tyj81g", "submitted_by": "encryptedunicorn", "name": "Cannabis leaf 420", "description": "A cannabis leaf with the number 420 on it created by the r/trees reddit community\n\n420 stands for the weed holiday celebrated on the 20th of April.\n\nr/trees is a cannabis community on reddit. They switched their subreddit name with r/marijuanaenthusiasts", "website": "", "subreddit": "r/trees", "center": [735.5, 414.5], "path": [[719.5, 428.5], [719.5, 399.5], [751.5, 399.5], [751.5, 428.5]]},
{"id": "tyj7e8", "submitted_by": "buzdolabimotoru", "name": "Map of Estonia", "description": "A map shows Estonian map with a star on Talinn, capital of Estonia.", "website": "", "subreddit": "", "center": [1934.5, 113.5], "path": [[1928.5, 99.5], [1952.5, 99.5], [1952.5, 101.5], [1953.5, 101.5], [1953.5, 106.5], [1952.5, 106.5], [1952.5, 109.5], [1948.5, 109.5], [1948.5, 110.5], [1947.5, 110.5], [1947.5, 113.5], [1948.5, 113.5], [1948.5, 116.5], [1949.5, 116.5], [1949.5, 118.5], [1950.5, 118.5], [1950.5, 121.5], [1951.5, 121.5], [1951.5, 126.5], [1950.5, 126.5], [1950.5, 128.5], [1949.5, 128.5], [1949.5, 130.5], [1947.5, 130.5], [1947.5, 129.5], [1945.5, 129.5], [1945.5, 130.5], [1944.5, 130.5], [1944.5, 131.5], [1943.5, 131.5], [1943.5, 130.5], [1942.5, 130.5], [1942.5, 129.5], [1941.5, 129.5], [1941.5, 128.5], [1940.5, 128.5], [1940.5, 127.5], [1939.5, 127.5], [1939.5, 126.5], [1939.5, 125.5], [1938.5, 126.5], [1938.5, 125.5], [1937.5, 125.5], [1937.5, 124.5], [1936.5, 124.5], [1936.5, 123.5], [1935.5, 122.5], [1933.5, 122.5], [1933.5, 121.5], [1932.5, 121.5], [1932.5, 122.5], [1930.5, 122.5], [1930.5, 123.5], [1927.5, 123.5], [1927.5, 124.5], [1926.5, 124.5], [1926.5, 125.5], [1925.5, 125.5], [1925.5, 121.5], [1926.5, 121.5], [1926.5, 119.5], [1923.5, 119.5], [1923.5, 120.5], [1921.5, 120.5], [1921.5, 119.5], [1921.5, 118.5], [1920.5, 118.5], [1920.5, 116.5], [1919.5, 116.5], [1919.5, 115.5], [1917.5, 115.5], [1916.5, 115.5], [1916.5, 118.5], [1915.5, 118.5], [1915.5, 119.5], [1914.5, 119.5], [1914.5, 120.5], [1910.5, 120.5], [1910.5, 121.5], [1909.5, 121.5], [1909.5, 123.5], [1908.5, 123.5], [1908.5, 124.5], [1907.5, 124.5], [1907.5, 123.5], [1906.5, 123.5], [1907.5, 122.5], [1907.5, 121.5], [1906.5, 121.5], [1906.5, 120.5], [1905.5, 120.5], [1905.5, 118.5], [1906.5, 118.5], [1906.5, 117.5], [1905.5, 116.5], [1908.5, 116.5], [1909.5, 115.5], [1911.5, 115.5], [1912.5, 114.5], [1911.5, 112.5], [1911.5, 111.5], [1911.5, 110.5], [1910.5, 110.5], [1910.5, 109.5], [1908.5, 109.5], [1910.5, 109.5], [1910.5, 108.5], [1911.5, 108.5], [1911.5, 107.5], [1912.5, 107.5], [1912.5, 106.5], [1914.5, 108.5], [1914.5, 109.5], [1915.5, 109.5], [1914.5, 110.5], [1915.5, 110.5], [1915.5, 109.5], [1915.5, 111.5], [1915.5, 111.5], [1918.5, 110.5], [1918.5, 104.5], [1920.5, 104.5], [1922.5, 102.5], [1922.5, 102.5], [1923.5, 102.5], [1923.5, 103.5], [1925.5, 103.5], [1925.5, 102.5], [1926.5, 102.5], [1927.5, 101.5], [1928.5, 99.5]]},
{"id": "tyixc7", "submitted_by": "AccordingClassroom30", "name": "Schleswig-Holstein", "description": "Coat of arms of the German state Schleswig-Holstein.", "website": "", "subreddit": "", "center": [1198.5, 1128.5], "path": [[1193.5, 1123.5], [1193.5, 1130.5], [1196.5, 1133.5], [1200.5, 1133.5], [1203.5, 1130.5], [1203.5, 1123.5]]},
{"id": "tyiwcb", "submitted_by": "AccordingClassroom30", "name": "Bremen", "description": "Coat of arms of the German state Bremen.", "website": "", "subreddit": "", "center": [1388.5, 1133.5], "path": [[1382.5, 1128.5], [1384.5, 1130.5], [1383.5, 1131.5], [1383.5, 1138.5], [1385.5, 1140.5], [1390.5, 1140.5], [1392.5, 1138.5], [1392.5, 1131.5], [1391.5, 1130.5], [1393.5, 1128.5], [1391.5, 1128.5], [1389.5, 1126.5], [1388.5, 1127.5], [1387.5, 1127.5], [1386.5, 1126.5], [1384.5, 1128.5], [1383.5, 1128.5]]},
{"id": "tyiv6x", "submitted_by": "AccordingClassroom30", "name": "Hesse", "description": "Coat of arms of the German state Hesse.", "website": "", "subreddit": "", "center": [1375.5, 1131.5], "path": [[1369.5, 1126.5], [1369.5, 1127.5], [1370.5, 1128.5], [1370.5, 1134.5], [1373.5, 1137.5], [1376.5, 1137.5], [1379.5, 1134.5], [1379.5, 1128.5], [1380.5, 1127.5], [1380.5, 1126.5], [1379.5, 1126.5], [1378.5, 1127.5], [1377.5, 1126.5], [1376.5, 1127.5], [1375.5, 1126.5], [1374.5, 1126.5], [1373.5, 1127.5], [1372.5, 1126.5], [1371.5, 1127.5], [1370.5, 1126.5]]},
{"id": "tyiuz9", "submitted_by": "buzdolabimotoru", "name": "Teaspoon", "description": "Teaspoon is a small spoon for mix the sugar in tea. It holds about 2ml. The size of a teaspoon can actually range from 2.5 to 7.3 ml, it is equal to 1/3 tablespoon.", "website": "", "subreddit": "", "center": [1047.5, 149.5], "path": [[1044.5, 151.5], [1043.5, 152.5], [1043.5, 153.5], [1041.5, 153.5], [1041.5, 154.5], [1039.5, 154.5], [1039.5, 155.5], [1038.5, 155.5], [1038.5, 160.5], [1043.5, 160.5], [1043.5, 159.5], [1044.5, 159.5], [1044.5, 158.5], [1045.5, 158.5], [1045.5, 157.5], [1046.5, 157.5], [1046.5, 156.5], [1047.5, 156.5], [1047.5, 151.5], [1048.5, 151.5], [1048.5, 149.5], [1048.5, 148.5], [1049.5, 148.5], [1049.5, 147.5], [1050.5, 147.5], [1050.5, 146.5], [1051.5, 146.5], [1051.5, 145.5], [1051.5, 144.5], [1053.5, 144.5], [1053.5, 141.5], [1054.5, 141.5], [1054.5, 140.5], [1055.5, 140.5], [1055.5, 139.5], [1056.5, 139.5], [1056.5, 137.5], [1057.5, 137.5], [1057.5, 135.5], [1058.5, 135.5], [1058.5, 134.5], [1059.5, 134.5], [1058.5, 134.5], [1058.5, 133.5], [1058.5, 132.5], [1059.5, 132.5], [1059.5, 130.5], [1061.5, 130.5], [1061.5, 129.5], [1060.5, 129.5], [1060.5, 128.5], [1058.5, 130.5], [1058.5, 131.5], [1057.5, 131.5], [1057.5, 134.5], [1056.5, 134.5], [1056.5, 135.5], [1055.5, 135.5], [1055.5, 137.5], [1054.5, 137.5], [1054.5, 138.5], [1053.5, 138.5], [1053.5, 140.5], [1052.5, 140.5], [1052.5, 141.5], [1051.5, 141.5], [1051.5, 142.5], [1046.5, 148.5], [1046.5, 149.5], [1046.5, 150.5], [1045.5, 150.5]]},
{"id": "tyiue1", "submitted_by": "AccordingClassroom30", "name": "Berlin", "description": "Coat of arms of the German state Berlin.", "website": "", "subreddit": "", "center": [1361.5, 1131.5], "path": [[1356.5, 1126.5], [1356.5, 1127.5], [1357.5, 1128.5], [1357.5, 1135.5], [1359.5, 1137.5], [1363.5, 1137.5], [1365.5, 1135.5], [1365.5, 1128.5], [1366.5, 1127.5], [1366.5, 1126.5], [1365.5, 1126.5], [1364.5, 1127.5], [1363.5, 1126.5], [1362.5, 1127.5], [1361.5, 1126.5], [1360.5, 1127.5], [1359.5, 1126.5], [1358.5, 1127.5], [1357.5, 1126.5], [1356.5, 1126.5]]},
{"id": "tyiudp", "submitted_by": "Stepdaddy1", "name": "Expansion of the flag of Denmark", "description": "An expansion of the flag of denmark into r/FNAF's territory\n\n", "website": "", "subreddit": "/r/Denmark", "center": [648.5, 290.5], "path": [[639.5, 286.5], [657.5, 286.5], [657.5, 293.5], [639.5, 293.5], [639.5, 287.5]]},
{"id": "tyitjj", "submitted_by": "AccordingClassroom30", "name": "Bavaria", "description": "Coat of arms of the German state Bavaria.", "website": "", "subreddit": "", "center": [1350.5, 1131.5], "path": [[1346.5, 1126.5], [1346.5, 1134.5], [1348.5, 1136.5], [1352.5, 1136.5], [1354.5, 1134.5], [1354.5, 1126.5], [1353.5, 1126.5], [1352.5, 1127.5], [1351.5, 1126.5], [1350.5, 1127.5], [1349.5, 1126.5], [1348.5, 1127.5], [1347.5, 1126.5], [1346.5, 1126.5]]},
{"id": "tyisna", "submitted_by": "AccordingClassroom30", "name": "Rhineland-Palatinate", "description": "Coat of arms of the German state Rhineland-Palatinate.", "website": "", "subreddit": "", "center": [1339.5, 1131.5], "path": [[1334.5, 1126.5], [1334.5, 1127.5], [1335.5, 1128.5], [1335.5, 1134.5], [1338.5, 1137.5], [1340.5, 1137.5], [1343.5, 1134.5], [1343.5, 1128.5], [1344.5, 1127.5], [1344.5, 1126.5], [1343.5, 1126.5], [1342.5, 1127.5], [1341.5, 1126.5], [1340.5, 1127.5], [1339.5, 1126.5], [1338.5, 1127.5], [1337.5, 1126.5], [1336.5, 1127.5], [1335.5, 1126.5]]},
{"id": "tyire3", "submitted_by": "AccordingClassroom30", "name": "Lower Saxony", "description": "Coat of arms of the German state Lower Saxony", "website": "", "subreddit": "", "center": [1266.5, 1128.5], "path": [[1261.5, 1123.5], [1261.5, 1131.5], [1262.5, 1132.5], [1262.5, 1133.5], [1263.5, 1134.5], [1268.5, 1134.5], [1269.5, 1133.5], [1269.5, 1132.5], [1270.5, 1131.5], [1270.5, 1123.5]]},
{"id": "tyipsz", "submitted_by": "AccordingClassroom30", "name": "Hamburg", "description": "Coat of arms of the German state Hamburg.", "website": "", "subreddit": "", "center": [1254.5, 1127.5], "path": [[1250.5, 1123.5], [1250.5, 1130.5], [1253.5, 1133.5], [1255.5, 1133.5], [1258.5, 1130.5], [1258.5, 1123.5]]},
{"id": "tyiowu", "submitted_by": "AccordingClassroom30", "name": "Baden-W\u00fcrttemberg", "description": "Coat of arms of the German state Baden-W\u00fcrttemberg.", "website": "", "subreddit": "", "center": [1244.5, 1128.5], "path": [[1239.5, 1123.5], [1239.5, 1129.5], [1240.5, 1130.5], [1240.5, 1131.5], [1241.5, 1132.5], [1241.5, 1133.5], [1242.5, 1134.5], [1245.5, 1134.5], [1246.5, 1133.5], [1246.5, 1132.5], [1247.5, 1131.5], [1247.5, 1130.5], [1248.5, 1129.5], [1248.5, 1123.5], [1246.5, 1125.5], [1244.5, 1123.5], [1243.5, 1123.5], [1241.5, 1125.5], [1239.5, 1123.5]]},
{"id": "tyio0x", "submitted_by": "Stepdaddy1", "name": "Kaj cake", "description": "A danish cake known as Kaj cake due to its resemblance of popular kid show character Kaj who is also on the canvas.", "website": "https://da.wikipedia.org/wiki/Kajkage", "subreddit": "/r/Denmark", "center": [375.5, 153.5], "path": [[371.5, 151.5], [376.5, 149.5], [379.5, 155.5], [371.5, 155.5], [371.5, 151.5], [371.5, 152.5], [371.5, 152.5]]},
{"id": "tyintc", "submitted_by": "AccordingClassroom30", "name": "Mecklenburg-Vorpommern", "description": "Coat of arms of the German state Mecklenburg-Vorpommern.", "website": "", "subreddit": "", "center": [1233.5, 1128.5], "path": [[1228.5, 1123.5], [1228.5, 1131.5], [1229.5, 1132.5], [1229.5, 1133.5], [1230.5, 1134.5], [1235.5, 1134.5], [1236.5, 1133.5], [1236.5, 1132.5], [1237.5, 1131.5], [1237.5, 1123.5]]},
{"id": "tyinfq", "submitted_by": "RUB_23", "name": "Unfinished Francesinha", "description": "Francesinah is a typical sandwish in Portugal that originated in Porto town.", "website": "", "subreddit": "r/portugal", "center": [1481.5, 1834.5], "path": [[1479.5, 1829.5], [1476.5, 1830.5], [1474.5, 1838.5], [1476.5, 1839.5], [1479.5, 1840.5], [1489.5, 1835.5], [1483.5, 1828.5], [1481.5, 1828.5]]},
{"id": "tyinbg", "submitted_by": "QuarterTarget", "name": "Formerly Swiss Italian and Ukrainian Flag", "description": "This area originally held a flag of Canton Zug, Switzerland, in an last minute plan by the swiss place group to scatter canton flags around the map. Most were deleted instantly with the only two being actually made, a zurich flag invaded by the mexicans, and this one. The flag stayed up for about 5 hours, despite only being made by one person. A Ukrainian flag was added soon after. Around two hours before the end of r/place. The flag of Zug was replaced by an Italian flag", "website": "", "subreddit": "several", "center": [1364.5, 759.5], "path": [[1362.5, 753.5], [1365.5, 753.5], [1365.5, 765.5], [1362.5, 765.5], [1363.5, 765.5]]},
{"id": "tyimjg", "submitted_by": "AccordingClassroom30", "name": "North Rhine-Westphalia", "description": "Coat of arms of the German state North Rhine-Westphalia", "website": "", "subreddit": "", "center": [1210.5, 1128.5], "path": [[1205.5, 1123.5], [1205.5, 1131.5], [1206.5, 1132.5], [1206.5, 1133.5], [1207.5, 1134.5], [1212.5, 1134.5], [1213.5, 1133.5], [1213.5, 1132.5], [1214.5, 1131.5], [1214.5, 1123.5]]},
{"id": "tyil6x", "submitted_by": "horssentc", "name": "Sun", "description": "The sun, the sun is that big yellow thing in the sky, you can see it from anywhere in the world, including Brazil.", "website": "https://en.wikipedia.org/wiki/Sun", "subreddit": "r/sun", "center": [1265.5, 576.5], "path": [[1269.5, 584.5], [1262.5, 584.5], [1258.5, 579.5], [1258.5, 573.5], [1261.5, 569.5], [1268.5, 569.5], [1271.5, 571.5], [1271.5, 574.5], [1270.5, 575.5], [1270.5, 583.5], [1270.5, 584.5]]},
{"id": "tyijo6", "submitted_by": "davinkradav", "name": "Arkadia", "description": "Arkadia is a series created in 2021 for Spanish and Latin American streamers based on the videogame Ark, which they had to make tribes to survive with dinosaurs and game bosses.\nIt was founded mostly by the Spanish streamer NexxuzHD.\nThe logo was created by the community of the twitch streamer Mayichi, who was the driving force behind creating this series.\nIts name is created with the first three letters of the game itself (ARK: Survival Evolved), and by Arcadia, an imaginary country created in the Renaissance. In April 2022 the series continues with the name of Arkadia 2.\n", "website": "", "subreddit": "", "center": [1858.5, 1198.5], "path": [[1835.5, 1179.5], [1836.5, 1217.5], [1880.5, 1216.5], [1880.5, 1180.5]]},
{"id": "tyiizn", "submitted_by": "QuarterTarget", "name": "Swiss Area", "description": "This area contained the following:\nLogo of the SBB CFF, a picture of Pingu saying Noot Noot, a jamaican flag, an algerian flag and a lesbian pride flag. The Cereberus/Buddha area invaded using bots. The whole area was rendered pink in less than 20 SECONDS", "website": "", "subreddit": "r/SwissNeutralityZone", "center": [1347.5, 733.5], "path": [[1329.5, 754.5], [1366.5, 753.5], [1365.5, 712.5], [1329.5, 711.5], [1330.5, 711.5], [1329.5, 711.5]]},
{"id": "tyiiz9", "submitted_by": "AccordingClassroom30", "name": "Thuringia", "description": "Coat of arms of the German state Thuringia", "website": "", "subreddit": "", "center": [1186.5, 1128.5], "path": [[1181.5, 1123.5], [1181.5, 1131.5], [1182.5, 1132.5], [1183.5, 1132.5], [1184.5, 1133.5], [1185.5, 1133.5], [1186.5, 1134.5], [1187.5, 1133.5], [1188.5, 1133.5], [1189.5, 1132.5], [1190.5, 1132.5], [1191.5, 1131.5], [1191.5, 1123.5]]},
{"id": "tyiinc", "submitted_by": "Spenchjo", "name": "ASL \"I love you\" \ud83e\udd1f\ud83c\udffe", "description": "A sign for \"I love you\" in American Sign Language (ASL). A combination of the letters I, L and Y in the American manual alphabet.\n\nMade to represent r/asl and r/deaf, with cooperation of r/tokipona and r/PixelDungeon, as requested by a deaf member of r/tokipona.", "website": "", "subreddit": "r/asl, r/deaf", "center": [1732.5, 236.5], "path": [[1728.5, 234.5], [1728.5, 238.5], [1731.5, 241.5], [1733.5, 241.5], [1737.5, 237.5], [1737.5, 236.5], [1735.5, 234.5], [1735.5, 233.5], [1733.5, 231.5], [1731.5, 233.5], [1730.5, 232.5]]},
{"id": "tyii05", "submitted_by": "buzdolabimotoru", "name": "Tiny Ukraine flag", "description": "Yes, it is very small with 6 pixels.", "website": "", "subreddit": "", "center": [100.5, 813.5], "path": [[99.5, 812.5], [99.5, 813.5], [101.5, 813.5], [101.5, 812.5]]},
{"id": "tyih1b", "submitted_by": "AccordingClassroom30", "name": "Saarland", "description": "Coat of arms of the German state Saarland", "website": "", "subreddit": "", "center": [1174.5, 1127.5], "path": [[1169.5, 1123.5], [1169.5, 1129.5], [1171.5, 1132.5], [1172.5, 1132.5], [1173.5, 1133.5], [1175.5, 1133.5], [1176.5, 1132.5], [1177.5, 1132.5], [1178.5, 1131.5], [1178.5, 1130.5], [1179.5, 1129.5], [1179.5, 1123.5]]},
{"id": "tyifw1", "submitted_by": "AccordingClassroom30", "name": "Saxony-Anhalt", "description": "Coat of arms of the German state Saxony-Anhalt.", "website": "", "subreddit": "", "center": [1162.5, 1128.5], "path": [[1157.5, 1123.5], [1167.5, 1123.5], [1167.5, 1130.5], [1164.5, 1133.5], [1160.5, 1133.5], [1157.5, 1130.5]]},
{"id": "tyifat", "submitted_by": "buzdolabimotoru", "name": "Bridge of Bo\u011fazi\u00e7i", "description": "A bridge in Bophorus. It connects Europe and Asia. It drawed for show cultural things of Turkey", "website": "", "subreddit": "", "center": [310.5, 432.5], "path": [[300.5, 415.5], [300.5, 449.5], [306.5, 449.5], [306.5, 439.5], [326.5, 439.5], [326.5, 431.5], [324.5, 431.5], [324.5, 430.5], [324.5, 431.5], [322.5, 431.5], [322.5, 429.5], [321.5, 429.5], [321.5, 428.5], [320.5, 428.5], [320.5, 427.5], [318.5, 427.5], [318.5, 426.5], [317.5, 426.5], [317.5, 425.5], [315.5, 425.5], [315.5, 424.5], [314.5, 424.5], [314.5, 423.5], [313.5, 423.5], [313.5, 422.5], [312.5, 422.5], [312.5, 421.5], [310.5, 421.5], [310.5, 420.5], [308.5, 420.5], [308.5, 418.5], [307.5, 418.5], [307.5, 415.5], [307.5, 417.5], [300.5, 417.5]]},
{"id": "tyief0", "submitted_by": "AccordingClassroom30", "name": "Brandenburg ", "description": "The Coat of arms of the German state Brandenburg.\n", "website": "", "subreddit": "", "center": [1221.5, 1128.5], "path": [[1216.5, 1123.5], [1216.5, 1131.5], [1219.5, 1134.5], [1223.5, 1134.5], [1226.5, 1131.5], [1226.5, 1123.5]]},
{"id": "tyiag4", "submitted_by": "BreadFlops", "name": "Lorca's castle", "description": "Made by Lorca's 3 city habitants that managed to get their city's castle banner just in time before the witheout.\n\n\nMade by BreadFlops, VIRVeX and Peri", "website": "", "subreddit": "", "center": [308.5, 1856.5], "path": [[305.5, 1850.5], [311.5, 1850.5], [311.5, 1861.5], [305.5, 1861.5]]},
{"id": "tyi575", "submitted_by": "bup23", "name": "Territorial.io", "description": "This is the logo of an .io game where you try to take over a map on your own or with a team.", "website": "territorial.io", "subreddit": "", "center": [305.5, 1887.5], "path": [[302.5, 1884.5], [302.5, 1884.5], [302.5, 1884.5], [302.5, 1884.5], [302.5, 1885.5], [302.5, 1889.5], [302.5, 1890.5], [308.5, 1884.5], [305.5, 1884.5], [303.5, 1884.5], [302.5, 1884.5], [302.5, 1884.5], [302.5, 1885.5], [302.5, 1885.5], [302.5, 1890.5], [308.5, 1890.5], [308.5, 1884.5], [304.5, 1884.5], [304.5, 1888.5], [301.5, 1890.5], [301.5, 1891.5], [302.5, 1891.5], [303.5, 1891.5], [304.5, 1891.5], [305.5, 1891.5], [306.5, 1891.5], [307.5, 1891.5], [308.5, 1891.5], [309.5, 1891.5], [309.5, 1890.5], [309.5, 1888.5], [309.5, 1883.5], [301.5, 1883.5], [301.5, 1891.5], [301.5, 1883.5]]},
{"id": "tyi0hn", "submitted_by": "Responsible_Tie7242", "name": "Batman", "description": "Batman got destroyed by GTA V people in the last hour of r/place, but if given more prep time, he would have won like he always does. Because he's Batman", "website": "", "subreddit": "r/Batman", "center": [556.5, 1400.5], "path": [[545.5, 1393.5], [567.5, 1393.5], [568.5, 1407.5], [545.5, 1407.5]]},
{"id": "tyhy2a", "submitted_by": "bubbasplat", "name": "LeSneak", "description": "Originally an image of LeChuck from Monkey Island however the space was overtaken. \n\nHis evil undead eyes still remain to haunt the souls of those who dared to battle him. ", "website": "https://returntomonkeyisland.com/", "subreddit": "r/MonkeyIsland", "center": [528.5, 1185.5], "path": [[535.5, 1184.5], [521.5, 1184.5], [522.5, 1187.5], [535.5, 1187.5], [535.5, 1184.5]]},
{"id": "tyhxl0", "submitted_by": "Rillacle", "name": "Ratge Heart", "description": "The symbol of Alliance between the streamers Franqitom and MOONMOON", "website": "", "subreddit": "", "center": [1680.5, 1021.5], "path": [[1673.5, 1023.5], [1679.5, 1029.5], [1680.5, 1029.5], [1688.5, 1021.5], [1688.5, 1017.5], [1687.5, 1017.5], [1687.5, 1016.5], [1686.5, 1016.5], [1686.5, 1015.5], [1682.5, 1015.5], [1682.5, 1016.5], [1679.5, 1016.5], [1679.5, 1015.5], [1675.5, 1015.5], [1675.5, 1016.5], [1674.5, 1016.5], [1674.5, 1017.5], [1673.5, 1017.5], [1673.5, 1023.5]]},
{"id": "tyhvko", "submitted_by": "Yewolf59", "name": "La Heczone", "description": "A french Discord server of friends who play minecraft and other games ! We were also in alliance with MCSR and all", "website": "https://discord.gg/VjH2RCpcTg", "subreddit": "", "center": [1512.5, 1504.5], "path": [[1506.5, 1499.5], [1517.5, 1499.5], [1517.5, 1509.5], [1507.5, 1509.5], [1506.5, 1499.5]]},
{"id": "tyht9r", "submitted_by": "bubbasplat", "name": "Le(s)Chuck(s)", "description": "Evil undead pirate captain LeChuck from the point & click adventure series Monkey Island. \n\nHe is unfinished as we were working on him as the time run out. \n\nHe is doubled up as we were being attacked by the blue X and decided to shift him down. Due to this battle, from this day forth we have decided to use Y to mark buried treasure.\n\nThis was our last ditch effort to get him on the canvas after 2 previous iterations were wiped out by larger factions. \n\n", "website": "https://returntomonkeyisland.com/", "subreddit": "r/MonkeyIsland", "center": [1925.5, 970.5], "path": [[1934.5, 956.5], [1916.5, 956.5], [1917.5, 984.5], [1934.5, 984.5], [1934.5, 956.5]]},
{"id": "tyht6k", "submitted_by": "AnonymousRandPerson", "name": "Poland-India-Denmark heart", "description": "A heart depicting the flags of Poland, India, and Denmark.", "website": "", "subreddit": "/r/Poland, /r/PlaceIndia, /r/Denmark", "center": [536.5, 343.5], "path": [[532.5, 338.5], [529.5, 341.5], [529.5, 343.5], [535.5, 349.5], [537.5, 349.5], [543.5, 343.5], [543.5, 341.5], [540.5, 338.5], [538.5, 338.5], [537.5, 339.5], [535.5, 339.5], [534.5, 338.5], [532.5, 338.5]]},
{"id": "tyht0x", "submitted_by": "Vany-vonne", "name": "Crewmates in love", "description": "Dos tripulantes atrapados en el espacio disfrutan de sus ultimos momentos juntos antes de ser consumidos por The Void.", "website": "", "subreddit": "", "center": [1041.5, 1187.5], "path": [[1041.5, 1181.5], [1043.5, 1182.5], [1048.5, 1186.5], [1049.5, 1181.5], [1033.5, 1182.5], [1034.5, 1193.5], [1050.5, 1193.5], [1048.5, 1184.5], [1048.5, 1184.5]]},
{"id": "tyhs7d", "submitted_by": "AnonymousRandPerson", "name": "Denmark-India heart", "description": "A heart depicting the flags of Denmark and India", "website": "", "subreddit": "/r/IndiaPlace, /r/Denmark", "center": [536.5, 317.5], "path": [[533.5, 313.5], [531.5, 315.5], [531.5, 317.5], [536.5, 322.5], [541.5, 317.5], [541.5, 315.5], [539.5, 313.5], [538.5, 313.5], [537.5, 314.5], [535.5, 314.5], [534.5, 313.5]]},
{"id": "tyhpo5", "submitted_by": "FappingFapOhFapFappy", "name": "Eye of KomodoHype", "description": "KomodoHype is a global emote on twitch built by the 'Komodo Tribe' which consisted of twitch chatter Lord fartamor and Ludwig's prechat. After being destroyed by void only the eye remained in this spot with its allies the carrot farm and shrimps", "website": "https://www.twitch.tv/ludwig", "subreddit": "", "center": [1734.5, 1431.5], "path": [[1731.5, 1428.5], [1736.5, 1428.5], [1736.5, 1433.5], [1731.5, 1433.5]]},
{"id": "tyhn9a", "submitted_by": "AnonymousRandPerson", "name": "India heart", "description": "Heart depicting the flag of India.", "website": "https://en.wikipedia.org/wiki/India", "subreddit": "/r/IndiaPlace", "center": [237.5, 321.5], "path": [[234.5, 316.5], [231.5, 319.5], [231.5, 321.5], [237.5, 327.5], [243.5, 321.5], [243.5, 319.5], [240.5, 316.5], [239.5, 316.5], [238.5, 317.5], [236.5, 317.5], [235.5, 316.5], [234.5, 316.5]]},
{"id": "tyhm45", "submitted_by": "CoLLiNePhILLCollinS", "name": "Light Fury", "description": "Before the north moroccan expansion, there was Light Fury one of the main character of movie How to Train Your Dragon: The Hidden World.\n\nRIP", "website": "", "subreddit": "https://www.reddit.com/r/httyd/", "center": [1646.5, 785.5], "path": [[1634.5, 770.5], [1634.5, 800.5], [1657.5, 800.5], [1657.5, 770.5]]},
{"id": "tyhl8q", "submitted_by": "Babyhuehnchen", "name": "Pair of Mallards", "description": "A male (right) and female (left) mallard duck with a little heart above them. Mallards are the most common duck species in central Europe. Very small yet very precious", "website": "[https://en.wikipedia.org/wiki/Mallard](https://en.wikipedia.org/wiki/Mallard)", "subreddit": "", "center": [588.5, 28.5], "path": [[589.5, 21.5], [587.5, 21.5], [587.5, 22.5], [582.5, 22.5], [582.5, 23.5], [581.5, 23.5], [581.5, 26.5], [580.5, 26.5], [580.5, 25.5], [579.5, 25.5], [579.5, 24.5], [577.5, 24.5], [577.5, 25.5], [575.5, 25.5], [575.5, 26.5], [574.5, 26.5], [574.5, 27.5], [573.5, 27.5], [573.5, 29.5], [574.5, 29.5], [574.5, 30.5], [575.5, 30.5], [575.5, 31.5], [577.5, 31.5], [577.5, 32.5], [578.5, 32.5], [578.5, 33.5], [580.5, 33.5], [580.5, 34.5], [586.5, 34.5], [586.5, 33.5], [587.5, 33.5], [587.5, 29.5], [586.5, 29.5], [586.5, 29.5], [586.5, 27.5], [588.5, 27.5], [588.5, 25.5], [589.5, 25.5], [590.5, 25.5], [590.5, 26.5], [590.5, 27.5], [593.5, 27.5], [593.5, 28.5], [592.5, 28.5], [592.5, 29.5], [591.5, 29.5], [591.5, 32.5], [592.5, 32.5], [592.5, 33.5], [593.5, 33.5], [593.5, 34.5], [598.5, 34.5], [598.5, 33.5], [599.5, 33.5], [600.5, 33.5], [600.5, 32.5], [602.5, 31.5], [603.5, 31.5], [603.5, 30.5], [604.5, 30.5], [604.5, 29.5], [605.5, 29.5], [605.5, 27.5], [604.5, 27.5], [604.5, 26.5], [600.5, 26.5], [600.5, 27.5], [597.5, 27.5], [597.5, 24.5], [596.5, 24.5], [596.5, 23.5], [593.5, 23.5], [593.5, 24.5], [591.5, 24.5], [591.5, 21.5], [589.5, 21.5]]},
{"id": "tyhg8j", "submitted_by": "Spiritual-Dot-2943", "name": "Falta Mayor X", "description": "Falta Mayor X (Major Foul X) it's a music band, an esports team, a streaming group, and a bunch of friends who like to hang out. this is our mark on internet history.\n", "website": "https://www.facebook.com/FaltaMayorX", "subreddit": "", "center": [1919.5, 1369.5], "path": [[1913.5, 1366.5], [1924.5, 1366.5], [1924.5, 1371.5], [1913.5, 1371.5]]},
{"id": "tyhaw7", "submitted_by": "Elrimchik", "name": "Alisa", "description": "Almost built Alisa from the game Everlasting Summer\n\nRussian streamer Bratishkinoff started building Alice for the first time, but he didn't do it well because the whole Reddit tried to undress her. Due to censorship, Reddit painted it over. Mizkif took over when Reddit painted it over. But still, at the end of the game, Bratishkinoff managed to rebuild it for a long time.", "website": "https://www.twitch.tv/bratishkinoff", "subreddit": "r/89SQUAD89", "center": [1386.5, 1433.5], "path": [[1414.5, 1404.5], [1423.5, 1373.5], [1404.5, 1356.5], [1379.5, 1358.5], [1358.5, 1372.5], [1354.5, 1387.5], [1359.5, 1397.5], [1346.5, 1407.5], [1343.5, 1443.5], [1337.5, 1475.5], [1354.5, 1496.5], [1409.5, 1497.5], [1435.5, 1469.5], [1429.5, 1442.5], [1429.5, 1420.5], [1413.5, 1412.5]]},
{"id": "tyhaib", "submitted_by": "LookIAmANormalPerson", "name": "Pwitain Flag", "description": "Flag of the glorious nation of Pwitain.\nPwitain is a fictional country created by Pwerrr.", "website": "https://cdn.discordapp.com/attachments/567382423512285184/849244422910246912/IMG_20210531_202453.jpg", "subreddit": "r/oddlof", "center": [1794.5, 937.5], "path": [[1792.5, 936.5], [1792.5, 936.5], [1796.5, 936.5], [1796.5, 938.5], [1792.5, 938.5]]},
{"id": "tyh7ux", "submitted_by": "AnonymousRandPerson", "name": "United States-Argentina hearts", "description": "Hearts depicting the flags of the United States and Argentina.", "website": "", "subreddit": "/r/AmericanFlagInPlace, /r/argentina", "center": [1774.5, 1844.5], "path": [[1771.5, 1819.5], [1769.5, 1821.5], [1769.5, 1867.5], [1773.5, 1870.5], [1775.5, 1870.5], [1779.5, 1866.5], [1779.5, 1821.5], [1777.5, 1819.5]]},
{"id": "tyh3s8", "submitted_by": "AnonymousRandPerson", "name": "Country purple girl", "description": "The national flower of Costa Rica.", "website": "https://en.wikipedia.org/wiki/Guarianthe_skinneri", "subreddit": "/r/Ticos, /r/costarica", "center": [1611.5, 438.5], "path": [[1612.5, 427.5], [1606.5, 434.5], [1602.5, 434.5], [1602.5, 437.5], [1604.5, 437.5], [1604.5, 440.5], [1603.5, 441.5], [1603.5, 445.5], [1605.5, 445.5], [1605.5, 446.5], [1617.5, 446.5], [1620.5, 443.5], [1620.5, 440.5], [1619.5, 439.5], [1619.5, 436.5], [1620.5, 436.5], [1620.5, 433.5], [1615.5, 433.5], [1615.5, 430.5], [1612.5, 427.5]]},
{"id": "tyh1sa", "submitted_by": "AnonymousRandPerson", "name": "Hummingbird", "description": "One of the smallest species of birds.", "website": "https://en.wikipedia.org/wiki/Hummingbird", "subreddit": "/r/Ticos, /r/costarica", "center": [1594.5, 439.5], "path": [[1589.5, 432.5], [1587.5, 434.5], [1589.5, 436.5], [1589.5, 437.5], [1590.5, 438.5], [1590.5, 441.5], [1591.5, 442.5], [1591.5, 443.5], [1590.5, 444.5], [1589.5, 444.5], [1588.5, 445.5], [1589.5, 446.5], [1592.5, 446.5], [1593.5, 445.5], [1594.5, 445.5], [1598.5, 441.5], [1598.5, 439.5], [1599.5, 438.5], [1602.5, 438.5], [1602.5, 436.5], [1598.5, 436.5], [1597.5, 435.5], [1595.5, 435.5], [1594.5, 436.5], [1593.5, 436.5]]},
{"id": "tygz3c", "submitted_by": "AnonymousRandPerson", "name": "Sloth", "description": "A national symbol of Costa Rica.", "website": "https://en.wikipedia.org/wiki/Sloth", "subreddit": "/r/Ticos, /r/costarica", "center": [1569.5, 437.5], "path": [[1567.5, 429.5], [1567.5, 432.5], [1560.5, 432.5], [1557.5, 435.5], [1557.5, 437.5], [1561.5, 441.5], [1563.5, 441.5], [1567.5, 445.5], [1571.5, 445.5], [1573.5, 443.5], [1574.5, 443.5], [1578.5, 440.5], [1577.5, 439.5], [1579.5, 439.5], [1579.5, 433.5], [1577.5, 433.5], [1577.5, 430.5], [1574.5, 430.5], [1574.5, 433.5], [1570.5, 433.5], [1570.5, 429.5], [1567.5, 429.5]]},
{"id": "tygy8t", "submitted_by": "AnonymousRandPerson", "name": "Lizano sauce", "description": "A common condiment in Costa Rica.", "website": "https://en.wikipedia.org/wiki/Lizano_sauce", "subreddit": "/r/Ticos, /r/costarica", "center": [1455.5, 438.5], "path": [[1453.5, 427.5], [1453.5, 433.5], [1452.5, 434.5], [1452.5, 435.5], [1451.5, 436.5], [1451.5, 446.5], [1458.5, 446.5], [1458.5, 436.5], [1457.5, 435.5], [1457.5, 434.5], [1456.5, 433.5], [1456.5, 427.5], [1453.5, 427.5]]},
{"id": "tygwx7", "submitted_by": "AnonymousRandPerson", "name": "\u00a1Pura vida!", "description": "A popular greeting and slogan in Costa Rica that means 'pure life' or 'simple life'.", "website": "https://costarica.org/people/pura-vida/", "subreddit": "/r/Ticos, /r/costarica", "center": [1502.5, 437.5], "path": [[1472.5, 433.5], [1472.5, 440.5], [1532.5, 440.5], [1532.5, 433.5], [1472.5, 433.5]]},
{"id": "tygveq", "submitted_by": "aarnens", "name": "Moominhouse", "description": "The Moominhouse is the house of the iconic Finnish trolls called Moomins. The character on the right is Niiskuneiti, one of the central characters.", "website": "https://www.moomin.com/en/explore-moominvalley/moominhouse/", "subreddit": "/r/Suomi", "center": [563.5, 190.5], "path": [[537.5, 202.5], [541.5, 202.5], [544.5, 205.5], [557.5, 205.5], [563.5, 202.5], [587.5, 202.5], [594.5, 197.5], [595.5, 193.5], [593.5, 192.5], [592.5, 184.5], [588.5, 184.5], [584.5, 188.5], [581.5, 184.5], [577.5, 184.5], [572.5, 191.5], [569.5, 188.5], [570.5, 181.5], [563.5, 174.5], [580.5, 175.5], [580.5, 171.5], [577.5, 170.5], [562.5, 170.5], [561.5, 171.5], [561.5, 175.5], [559.5, 177.5], [557.5, 172.5], [555.5, 176.5], [548.5, 176.5], [544.5, 181.5], [539.5, 181.5], [536.5, 187.5]]},
{"id": "tygte9", "submitted_by": "AnonymousRandPerson", "name": "Red-eyed tree frog", "description": "A frog native to Central American countries including Costa Rica.", "website": "https://en.wikipedia.org/wiki/Agalychnis_callidryas", "subreddit": "/r/Ticos, /r/costarica", "center": [1435.5, 436.5], "path": [[1431.5, 429.5], [1429.5, 431.5], [1429.5, 432.5], [1428.5, 433.5], [1428.5, 434.5], [1429.5, 435.5], [1429.5, 436.5], [1428.5, 436.5], [1426.5, 438.5], [1426.5, 442.5], [1431.5, 442.5], [1431.5, 440.5], [1432.5, 440.5], [1433.5, 441.5], [1436.5, 441.5], [1437.5, 440.5], [1438.5, 440.5], [1438.5, 442.5], [1443.5, 442.5], [1443.5, 438.5], [1441.5, 436.5], [1441.5, 433.5], [1440.5, 432.5], [1440.5, 431.5], [1438.5, 429.5], [1437.5, 430.5], [1432.5, 430.5]]},
{"id": "tygrix", "submitted_by": "AnonymousRandPerson", "name": "Arenal Volcano eruption", "description": "A volcano in Costa Rica that erupted in 1968, killing 87 people and burying 3 villages.", "website": "https://en.wikipedia.org/wiki/Arenal_Volcano#July_29,_1968", "subreddit": "/r/Ticos, /r/costarica", "center": [1413.5, 438.5], "path": [[1416.5, 426.5], [1414.5, 428.5], [1413.5, 428.5], [1412.5, 429.5], [1412.5, 430.5], [1410.5, 432.5], [1410.5, 433.5], [1406.5, 437.5], [1406.5, 438.5], [1405.5, 439.5], [1405.5, 440.5], [1403.5, 442.5], [1402.5, 442.5], [1399.5, 445.5], [1399.5, 446.5], [1424.5, 446.5], [1424.5, 445.5], [1422.5, 443.5], [1421.5, 443.5], [1417.5, 439.5], [1417.5, 438.5], [1414.5, 435.5], [1414.5, 434.5], [1417.5, 434.5], [1419.5, 432.5], [1420.5, 432.5], [1422.5, 430.5], [1422.5, 429.5], [1424.5, 427.5], [1423.5, 426.5], [1416.5, 426.5]]},
{"id": "tygr18", "submitted_by": "Icy-Ad3530", "name": "Leoncock", "description": "British streamer currently living in Peru", "website": "https://trovo.live/leoncraft", "subreddit": "", "center": [1602.5, 1654.5], "path": [[1598.5, 1650.5], [1605.5, 1650.5], [1605.5, 1657.5], [1598.5, 1657.5]]},
{"id": "tyrvku", "submitted_by": "Kiribaku-", "name": "Minecraft Hardcore Heart", "description": "In the game Minecraft, your health bar is represented by 10 hearts. In the Hardcore difficulty, your hearts have a different texture, and if you die, you can't resurrect again.", "website": "", "subreddit": "/r/Minecraft", "center": [939.5, 666.5], "path": [[939.5, 671.5], [943.5, 667.5], [943.5, 664.5], [941.5, 663.5], [937.5, 663.5], [935.5, 665.5], [935.5, 667.5]]},
{"id": "tyrtuy", "submitted_by": "PROPLAYEN", "name": "Chara", "description": "Chara , also known as the fallen human, is the first human to fall into the Underground. Chara is their ''true name'' on the naming screen, though their name typically varies on what the player enters. They are distinct from the eighth fallen human, who is the protagonist in Undertale.", "website": "https://undertale.fandom.com/wiki/Chara", "subreddit": "/r/Undertale", "center": [686.5, 1801.5], "path": [[679.5, 1813.5], [688.5, 1814.5], [692.5, 1813.5], [694.5, 1811.5], [694.5, 1807.5], [692.5, 1805.5], [692.5, 1803.5], [694.5, 1802.5], [694.5, 1792.5], [690.5, 1788.5], [683.5, 1788.5], [678.5, 1793.5], [677.5, 1796.5], [677.5, 1801.5], [678.5, 1802.5], [685.5, 1802.5], [685.5, 1803.5], [679.5, 1807.5]]},
{"id": "tyrqx5", "submitted_by": "Kiribaku-", "name": "Mate", "description": "A Mate is a recipient traditionally made out of a dried-out and hollowed calabash gourd, that is used to drink the mate (or mat\u00e9) infused drink. The capybara and the hornero are drinking from it using a bombilla (straw).\nOver the course of /r/Place, people usually drew four dots on the mate, making it resemble a cute cat face.", "website": "", "subreddit": "", "center": [938.5, 674.5], "path": [[935.5, 670.5], [940.5, 670.5], [941.5, 671.5], [941.5, 676.5], [940.5, 677.5], [935.5, 677.5], [934.5, 676.5], [934.5, 671.5]]},
{"id": "tyrpw6", "submitted_by": "dab00mer9", "name": "Artemis", "description": "Artemis is a white cat who can talk and has a crescent moon on his forehead. He is Sailor Venus's companion, and the one who gave her the transformation pen.", "website": "", "subreddit": "/r/sailormoon", "center": [388.5, 994.5], "path": [[392.5, 998.5], [392.5, 990.5], [390.5, 990.5], [389.5, 992.5], [387.5, 991.5], [386.5, 990.5], [384.5, 990.5], [384.5, 998.5], [388.5, 998.5]]},
{"id": "tyrpvn", "submitted_by": "thymoral", "name": "Thymoral's slice", "description": "User thymoral placed their initials in a remote corner of r/place just before the end. They tried to hide it in the mountain to the right but the Germans seemed to be monitoring that closely.", "website": "", "subreddit": "/r/thymoral", "center": [1960.5, 1122.5], "path": [[1956.5, 1120.5], [1963.5, 1120.5], [1963.5, 1124.5], [1956.5, 1124.5]]},
{"id": "tyrpav", "submitted_by": "PhotoFar3154", "name": "Anne Rosses heart", "description": "heart that annette care day and night with much love", "website": "https://www.instagram.com/anne_rosses/", "subreddit": "", "center": [1483.5, 833.5], "path": [[1480.5, 830.5], [1486.5, 830.5], [1486.5, 835.5], [1480.5, 835.5], [1480.5, 830.5]]},
{"id": "tyroi8", "submitted_by": "PoizonMyst", "name": "Garry's Mod Logo and Error Code", "description": "A logo for the Garry's Mod video game, and the pink and black checkered missing pixel error code from the game.", "website": "https://store.steampowered.com/app/4000/Garrys_Mod/", "subreddit": "/r/GarrysMod", "center": [1066.5, 1756.5], "path": [[1061.5, 1741.5], [1070.5, 1741.5], [1070.5, 1754.5], [1083.5, 1755.5], [1083.5, 1759.5], [1070.5, 1760.5], [1070.5, 1770.5], [1061.5, 1770.5], [1060.5, 1760.5], [1052.5, 1753.5], [1052.5, 1750.5], [1061.5, 1750.5], [1061.5, 1750.5], [1061.5, 1750.5]]},
{"id": "tyrnei", "submitted_by": "PhotoFar3154", "name": "Annette Rosses Heart", "description": "heart that annette care day and night with much love", "website": "https://www.instagram.com/anne_rosses/?hl=es-la", "subreddit": "", "center": [1484.5, 831.5], "path": [[1480.5, 830.5], [1481.5, 833.5], [1487.5, 833.5], [1487.5, 831.5], [1487.5, 830.5], [1481.5, 830.5], [1480.5, 833.5], [1487.5, 832.5], [1487.5, 830.5]]},
{"id": "tyrn86", "submitted_by": "dismay-snk", "name": "Chibi Floch Forster", "description": "A chibi style artwork of Floch Forster from Attack on Titan, with a crown to represent his status as 'King Floch' amongst some fans of the series.", "website": "", "subreddit": "/r/titanfolk", "center": [1513.5, 364.5], "path": [[1509.5, 375.5], [1509.5, 370.5], [1507.5, 370.5], [1507.5, 367.5], [1508.5, 366.5], [1508.5, 362.5], [1507.5, 361.5], [1507.5, 359.5], [1507.5, 358.5], [1508.5, 357.5], [1509.5, 356.5], [1509.5, 354.5], [1510.5, 353.5], [1511.5, 354.5], [1512.5, 353.5], [1513.5, 353.5], [1514.5, 353.5], [1515.5, 354.5], [1516.5, 353.5], [1517.5, 354.5], [1517.5, 355.5], [1517.5, 356.5], [1518.5, 357.5], [1519.5, 358.5], [1519.5, 359.5], [1519.5, 361.5], [1518.5, 362.5], [1518.5, 364.5], [1517.5, 365.5], [1518.5, 366.5], [1519.5, 367.5], [1519.5, 369.5], [1518.5, 370.5], [1517.5, 370.5], [1517.5, 375.5], [1514.5, 375.5], [1514.5, 373.5], [1512.5, 373.5], [1512.5, 375.5]]},
{"id": "tyrj32", "submitted_by": "PoizonMyst", "name": "Half-life Logo", "description": "A mini logo for the Half-life video game.", "website": "https://store.steampowered.com/app/70/HalfLife/", "subreddit": "/r/HalfLife", "center": [1051.5, 1746.5], "path": [[1046.5, 1741.5], [1056.5, 1741.5], [1056.5, 1750.5], [1046.5, 1750.5], [1046.5, 1741.5], [1046.5, 1741.5]]},
{"id": "tyrhpy", "submitted_by": "Clausohnewitz", "name": "FDS Acronym", "description": "Supposed to be an acronym of the podcast FUMS - Die Show hosted by Max Fritzsching and Michael -Dings von FUMS- Strohmaier; a German football (soccer) podcast which humoristically summarizes the football week in general and the Bundesliga in more detail", "website": "https://fumsmagazin.de/fumsdieshow/", "subreddit": "", "center": [529.5, 1174.5], "path": [[524.5, 1172.5], [534.5, 1172.5], [534.5, 1175.5], [524.5, 1175.5]]},
{"id": "tyrfsv", "submitted_by": "Targed1", "name": "IRL (In Real Life)", "description": "IRL is an acronym meaning \"In Real Life\". It is often used as shorthand by younger generations, gamers, and people who frequently use the internet. Recently, it has adopted a meme persona where it is often used to contrast online presence with the expectation of reality or framed as \"edgy\" content for a reaction.", "website": "", "subreddit": "/r/me_irl", "center": [1763.5, 1814.5], "path": [[1753.5, 1811.5], [1773.5, 1811.5], [1773.5, 1817.5], [1753.5, 1817.5]]},
{"id": "tyrf4h", "submitted_by": "Alisdairy", "name": "In Memory of Mo Gaba", "description": "A beloved member of the Baltimore Ravens fan community, we will miss you.", "website": "https://en.wikipedia.org/wiki/Mo_Gaba", "subreddit": "", "center": [1806.5, 708.5], "path": [[1802.5, 705.5], [1801.5, 706.5], [1801.5, 711.5], [1811.5, 711.5], [1811.5, 705.5]]},
{"id": "tyre0d", "submitted_by": "PoizonMyst", "name": "Fortnite Logo", "description": "A hidden mini Fortnite Logo because the main one was always getting griefed", "website": "https://www.epicgames.com/fortnite/en-US/home", "subreddit": "/r/FortNiteBR", "center": [1654.5, 1655.5], "path": [[1658.5, 1660.5], [1658.5, 1660.5], [1649.5, 1660.5], [1649.5, 1649.5], [1658.5, 1649.5], [1658.5, 1660.5]]},
{"id": "tyqxqz", "submitted_by": "c3inn0", "name": "cry cubito", "description": "skin de minecraft del streamer xcry", "website": "https://www.google.com/url?sa=i&url=https%3A%2F%2Fwww.minecraftskins.com%2Fskin%2F19439315%2Fcry-alien-facha-pero-ahora-no-tan-cuadrado-para-que-no-se-queje%2F&psig=AOvVaw2LIO5mmNThBYLAEgGkifr1&ust=1649463449277000&source=images&cd=vfe&ved=0CAoQjRxqFwoTCKCS8q2Yg_cCFQAAAAAdAAAAABAN", "subreddit": "", "center": [1836.5, 711.5], "path": [[1832.5, 707.5], [1832.5, 707.5], [1832.5, 707.5], [1832.5, 707.5], [1832.5, 707.5], [1832.5, 707.5], [1832.5, 714.5], [1839.5, 714.5], [1839.5, 707.5], [1832.5, 707.5], [1832.5, 707.5]]},
{"id": "tyqxbw", "submitted_by": "Alisdairy", "name": "Towson University Logo", "description": "Founded in 1866 this is one of the largest public universities in Maryland and still produces the most teachers of any university in the state.", "website": "https://www.towson.edu/", "subreddit": "/r/Towson", "center": [1819.5, 717.5], "path": [[1817.5, 715.5], [1817.5, 718.5], [1819.5, 720.5], [1821.5, 720.5], [1821.5, 716.5], [1820.5, 716.5], [1819.5, 715.5]]},
{"id": "tyqww9", "submitted_by": "wannaclip", "name": "lemoncake10", "description": "A 10 in a lemon, representing streamer lemoncake10", "website": "https://twitch.tv/lemoncake10", "subreddit": "", "center": [1112.5, 1849.5], "path": [[1109.5, 1846.5], [1109.5, 1846.5], [1115.5, 1846.5], [1115.5, 1851.5], [1109.5, 1851.5], [1109.5, 1846.5]]},
{"id": "tyqsvr", "submitted_by": "nomeacuerdo1", "name": "Juzsmug", "description": "Smug emote from Australian streamer Juzcook", "website": "https://www.twitch.tv/juzcook", "subreddit": "", "center": [1024.5, 1663.5], "path": [[1011.5, 1651.5], [1031.5, 1650.5], [1037.5, 1660.5], [1033.5, 1664.5], [1035.5, 1677.5], [1013.5, 1677.5], [1016.5, 1669.5], [1014.5, 1663.5], [1010.5, 1661.5], [1011.5, 1651.5], [1013.5, 1649.5], [1010.5, 1650.5], [1010.5, 1650.5], [1013.5, 1649.5]]},
{"id": "tyqh3l", "submitted_by": "Brilliant-Whole-1851", "name": "Barista (Rhythm Heaven)", "description": "A dog that appears in every Rhythm Heaven game. Owns a cafe, and allows you to skip a minigame or simply have a conversation.", "website": "", "subreddit": "/r/rhythmheaven", "center": [1995.5, 351.5], "path": [[1990.5, 356.5], [1999.5, 356.5], [1999.5, 352.5], [2000.5, 351.5], [2000.5, 348.5], [1998.5, 348.5], [1997.5, 347.5], [1996.5, 346.5], [1993.5, 346.5], [1992.5, 347.5], [1991.5, 348.5], [1990.5, 348.5], [1989.5, 349.5], [1989.5, 351.5], [1990.5, 352.5]]},
{"id": "tyqewn", "submitted_by": "Brilliant-Whole-1851", "name": "P (Rhythm Heaven)", "description": "A P that appears in every rhythm heaven game, with varying appearances. Whenever you have to go for a perfect, it appears at the top and bobs to each input.", "website": "", "subreddit": "/r/rhythmheaven", "center": [1988.5, 344.5], "path": [[1984.5, 356.5], [1984.5, 350.5], [1983.5, 350.5], [1983.5, 338.5], [1993.5, 338.5], [1993.5, 339.5], [1994.5, 339.5], [1994.5, 340.5], [1995.5, 340.5], [1995.5, 345.5], [1994.5, 345.5], [1993.5, 346.5], [1992.5, 347.5], [1987.5, 347.5], [1987.5, 356.5]]},
{"id": "tyq9o5", "submitted_by": "I_Am_the_Slobster", "name": "Flag of Prince Edward Island", "description": "Canada's smallest province, Prince Edward Island, shorthand PEI, is one of Canada's three Maritime provinces. Home to Anne of Green Gables and red sand beaches, this province of 155,000 people is a well known tourist destination in Eastern Canada.", "website": "", "subreddit": "/r/PEI", "center": [218.5, 457.5], "path": [[211.5, 452.5], [225.5, 453.5], [225.5, 462.5], [210.5, 461.5]]},
{"id": "tyq2ii", "submitted_by": "Giornogiovanni7070", "name": "Pepelaugh", "description": "Its pepelaugh made by idk man", "website": "", "subreddit": "", "center": [1519.5, 1771.5], "path": [[1513.5, 1766.5], [1513.5, 1775.5], [1525.5, 1775.5], [1525.5, 1766.5]]},
{"id": "typwf3", "submitted_by": "PROPLAYEN", "name": "Meowmere", "description": "The Meowmere is an autoswinging melee weapon. When swung, it fires a projectile trailed by a rainbow and shaped like a cat's head, This was made on stream by the youtuber ChippyGaming.", "website": "https://terraria.fandom.com/wiki/Meowmere", "subreddit": "/r/Terraria", "center": [403.5, 1907.5], "path": [[402.5, 1913.5], [402.5, 1909.5], [401.5, 1909.5], [402.5, 1902.5], [403.5, 1903.5], [404.5, 1902.5], [405.5, 1903.5], [405.5, 1906.5], [405.5, 1909.5], [404.5, 1909.5], [404.5, 1913.5]]},
{"id": "typufa", "submitted_by": "PROPLAYEN", "name": "Demon Eye", "description": "The Demon Eye is a common flying enemy that appears on most Surface biomes during the night. It has a slow turn rate, follows the player, and bounces off blocks. Its trajectory is changed when hit with a weapon that causes knockback.", "website": "https://terraria.fandom.com/wiki/Demon_Eye", "subreddit": "/r/Terraria", "center": [410.5, 1894.5], "path": [[403.5, 1897.5], [403.5, 1894.5], [410.5, 1888.5], [416.5, 1888.5], [418.5, 1890.5], [418.5, 1892.5], [411.5, 1900.5], [409.5, 1901.5], [407.5, 1901.5]]},
{"id": "typqdc", "submitted_by": "nanitooale", "name": "pink and blu", "description": "pinkkk", "website": "https://www.youtube.com/", "subreddit": "channel/UCDeQ02bwQsKCOly9FzvdWHA", "center": [959.5, 1739.5], "path": [[934.5, 1736.5], [985.5, 1737.5], [985.5, 1742.5], [934.5, 1742.5]]},
{"id": "typq3n", "submitted_by": "AntoineLeGrand", "name": "Logo of UdeM & PolyMTL", "description": "The logo of the University of Montreal superimposed on the colors of the Polytechnique Montreal Engineering University", "website": "https://www.polymtl.ca/ & https://www.umontreal.ca/", "subreddit": "/r/PolyMTL", "center": [1073.5, 1070.5], "path": [[1083.5, 1073.5], [1083.5, 1069.5], [1078.5, 1066.5], [1070.5, 1065.5], [1061.5, 1073.5]]},
{"id": "typp1c", "submitted_by": "sandwhichisland", "name": "The Traphouse", "description": "The Traphouse is a small Discord server with @russian_sable as their mascot/icon which has been incorrectly nicknamed Robert.", "website": "https://www.traphouse.international/", "subreddit": "/r/thetraphouse", "center": [1578.5, 304.5], "path": [[1574.5, 298.5], [1582.5, 298.5], [1582.5, 309.5], [1582.5, 310.5], [1574.5, 310.5], [1574.5, 310.5]]},
{"id": "typicu", "submitted_by": "Targed1", "name": "Spike (Brawl Stars)", "description": "A small depiction of a smiling potted cactus. This pixel drawing was modeled after the brawler, Spike, in the hit Supercell game Brawl Stars.", "website": "https://supercell.com/en/games/brawlstars/", "subreddit": "/r/Brawlstars", "center": [629.5, 173.5], "path": [[627.5, 177.5], [631.5, 177.5], [631.5, 176.5], [632.5, 176.5], [632.5, 175.5], [633.5, 175.5], [633.5, 174.5], [632.5, 174.5], [632.5, 173.5], [632.5, 172.5], [631.5, 172.5], [631.5, 171.5], [630.5, 171.5], [630.5, 168.5], [629.5, 168.5], [629.5, 167.5], [628.5, 167.5], [628.5, 168.5], [628.5, 171.5], [627.5, 171.5], [627.5, 172.5], [625.5, 172.5], [625.5, 175.5], [626.5, 176.5]]},
{"id": "typgsj", "submitted_by": "MrLag12", "name": "EL GANSO GRITA", "description": "Simbolo de la comunidad de Jeffar Vlos", "website": "", "subreddit": "", "center": [1924.5, 204.5], "path": [[1910.5, 174.5], [1936.5, 175.5], [1938.5, 234.5], [1913.5, 232.5]]},
{"id": "typ923", "submitted_by": "Alisdairy", "name": "Baltimore Orioles Logo", "description": "An American professional baseball team based in Baltimore. The Orioles compete in Major League Baseball as a member club of the American League East division.", "website": "https://www.mlb.com/orioles", "subreddit": "/r/orioles", "center": [1826.5, 720.5], "path": [[1824.5, 715.5], [1822.5, 717.5], [1822.5, 723.5], [1824.5, 725.5], [1829.5, 725.5], [1829.5, 724.5], [1830.5, 723.5], [1831.5, 722.5], [1831.5, 717.5], [1830.5, 716.5], [1829.5, 715.5], [1824.5, 715.5]]},
{"id": "typ60s", "submitted_by": "SideEffct", "name": "Jimmy the Monitor", "description": "SideEffct's version of Clippy. Jimmy the monitor symbolizes the Safe Space since gaming is an escape for many individuals", "website": "https://twitch.tv/sideeffct", "subreddit": "", "center": [504.5, 1762.5], "path": [[501.5, 1759.5], [507.5, 1759.5], [506.5, 1766.5], [501.5, 1766.5]]},
{"id": "typ30c", "submitted_by": "Raiyne18", "name": "Shadow Emote", "description": "ShadowatLove emote from Yogscast member Shadowatnoon", "website": "https://twitch.tv/Shadowatnoon", "subreddit": "/r/yogscast", "center": [1509.5, 1771.5], "path": [[1504.5, 1774.5], [1504.5, 1766.5], [1513.5, 1766.5], [1513.5, 1775.5], [1504.5, 1775.5], [1504.5, 1766.5]]},
{"id": "tyoxud", "submitted_by": "Maolagin", "name": "ASCIIKER", "description": "Let's kick some ASCII", "website": "http://www.asciicker.com/", "subreddit": "/r/asciicker", "center": [549.5, 879.5], "path": [[536.5, 872.5], [536.5, 885.5], [562.5, 885.5], [562.5, 872.5]]},
{"id": "tyoqg4", "submitted_by": "Kemagaming46", "name": "Quanaril", "description": "A Turkhish streamer who streams gameplay streams and this is his channel logo.", "website": "https://www.twitch.tv/quanaril", "subreddit": "/r/Quanaril", "center": [1331.5, 488.5], "path": [[1322.5, 479.5], [1322.5, 496.5], [1340.5, 496.5], [1340.5, 479.5], [1322.5, 479.5]]},
{"id": "tyoji3", "submitted_by": "Last_Accident3741", "name": "Alsatian Historical Flag", "description": "The \"Rot und wiss\"\nFlag installed by Prof. Kush from Alsace", "website": "", "subreddit": "", "center": [1278.5, 1399.5], "path": [[1277.5, 1400.5], [1279.5, 1400.5], [1279.5, 1397.5], [1277.5, 1397.5]]},
{"id": "tyoiqk", "submitted_by": "DatDemo27", "name": "Puro (Former)", "description": "This area was formerly a portrait of the protagonist Puro, known as a community favorite for his friendly attitude, from the videogame Changed. He stayed up from the start of the second expansion, until a couple hours before the white death when it got overtaken by the current artwork.", "website": "", "subreddit": "/r/ChangedGame", "center": [656.5, 1111.5], "path": [[646.5, 1100.5], [666.5, 1100.5], [666.5, 1121.5], [646.5, 1121.5], [646.5, 1101.5]]},
{"id": "tyoijk", "submitted_by": "Meiminus", "name": "Amongus", "description": "Crewmates from Among Us are sneaking about.", "website": "", "subreddit": "", "center": [1873.5, 854.5], "path": [[1856.5, 843.5], [1875.5, 843.5], [1892.5, 854.5], [1889.5, 866.5], [1876.5, 867.5], [1869.5, 860.5], [1863.5, 863.5], [1855.5, 857.5], [1855.5, 843.5], [1855.5, 843.5]]},
{"id": "tyof7x", "submitted_by": "Last_Accident3741", "name": "Land of Contestation", "description": "Territory occupied by Prof. Kush (Cacabox's Artist) on the afternoon of April 4, 2022. Then indignantly contested by Juanmartin_56 following Argentinian opportunism and nationalism to install a flag there. This battle is part of the LATAM-France (Kameto) conflict.\nThis battle will end in victory Argentina, Prof. Kush to defend the French flag against the perfidy of Ibai.\n\nMany pixels lost their lives that day, let's pay tribute to them.", "website": "", "subreddit": "", "center": [1281.5, 1386.5], "path": [[1277.5, 1391.5], [1277.5, 1391.5], [1287.5, 1392.5], [1286.5, 1387.5], [1282.5, 1387.5], [1282.5, 1379.5], [1277.5, 1378.5]]},
{"id": "tyoa75", "submitted_by": "Westchester_kid", "name": "St. Mary's College + Holy Cross College", "description": "St. Mary's College Cross in the colors of Holy Cross College. Along with the University of Notre Dame, these colleges make up the tri-campus community in Notre Dame, Indiana.", "website": "", "subreddit": "/r/notredame", "center": [1794.5, 553.5], "path": [[1788.5, 548.5], [1799.5, 548.5], [1799.5, 557.5], [1788.5, 557.5]]},
{"id": "tyo5zg", "submitted_by": "Terrible_Draw_1248", "name": "Mario", "description": "Little Mario", "website": "", "subreddit": "", "center": [1591.5, 1322.5], "path": [[1586.5, 1328.5], [1596.5, 1328.5], [1596.5, 1316.5], [1586.5, 1316.5]]},
{"id": "tyo4bm", "submitted_by": "lsomeonel", "name": "Onix Client", "description": "Onix Client is a legit modification for Minecraft: Bedrock edition on windows.", "website": "https://discord.gg/onixclient", "subreddit": "/r/OnixClient", "center": [1266.5, 463.5], "path": [[1262.5, 459.5], [1270.5, 459.5], [1270.5, 467.5], [1262.5, 467.5]]},
{"id": "tyo1uv", "submitted_by": "HelloMegat_000", "name": "Megat_000 (Icon #3/Final Icon)", "description": "Megat_000 Is a composer/musician, focused mainly on the EDM Genere.\n\nThis is the last and official icon, that survived till the anti-void started.", "website": "https://sites.google.com/view/megmusic/official-website", "subreddit": "/r/LaCasaDeMegat_000", "center": [1029.5, 1635.5], "path": [[1026.5, 1631.5], [1026.5, 1639.5], [1031.5, 1639.5], [1031.5, 1631.5], [1031.5, 1631.5]]},
{"id": "tyo1mm", "submitted_by": "Pepbeb", "name": "Amugus", "description": "A white Among us character shaped like a mug, it's base is a transgender flag", "website": "", "subreddit": "", "center": [1776.5, 135.5], "path": [[1774.5, 133.5], [1773.5, 133.5], [1773.5, 136.5], [1775.5, 136.5], [1775.5, 139.5], [1779.5, 139.5], [1779.5, 132.5], [1775.5, 132.5], [1775.5, 133.5], [1773.5, 133.5]]},
{"id": "tyo0ly", "submitted_by": "Mighty_Chuck", "name": "Pig From Angry Birds", "description": "A bit of backstory for this one:\nOriginally the angry birds fans wanted to do more than the red bird, So they attempted to draw chuck (yellow bird) on the right side of red but it got destroyed, so later on they had another attempt to draw king pig on the right side of this little guy, But it turned into a pear by the Finn folks due to a famous Finnish joke involving a pear, so at the last hours of this board this little piggy was drawn.", "website": "", "subreddit": "/r/AngryBirds", "center": [557.5, 153.5], "path": [[561.5, 158.5], [552.5, 158.5], [552.5, 148.5], [561.5, 148.5], [561.5, 158.5]]},
{"id": "tynxtn", "submitted_by": "Dayvklar", "name": "Kebab pixel art", "description": "A Kebab pixel art made by the community of a Spanish variety streamer Jujalag (aka Sorrylag for his first youtube channel). The kebab is a constant reference in his channels and community in general. Sometimes saying \"sale kebab\" referring to a \"kebab time\" type of expression.", "website": "https://www.youtube.com/c/JUJALAG", "subreddit": "/r/SorryLag", "center": [1877.5, 960.5], "path": [[1882.5, 950.5], [1871.5, 950.5], [1871.5, 970.5], [1882.5, 970.5], [1882.5, 950.5]]},
{"id": "tynvji", "submitted_by": "Honey_Beat12", "name": "Onib wit Hat", "description": "An Original Charactermadeby theTwitter account \"DarknessBeat\", it was an Golbat, but it get replaced as a hat", "website": "https://twitter.com/darkness_beat", "subreddit": "", "center": [1284.5, 400.5], "path": [[1279.5, 395.5], [1288.5, 395.5], [1288.5, 404.5], [1279.5, 404.5], [1279.5, 395.5]]},
{"id": "tyntmr", "submitted_by": "Hemerythrin", "name": "NearlyOnRed Logo", "description": "A small rendering of the NearlyOnRed logo, an anime focused storytelling analysis channel. Adopted and defended by the VTuber coalition.", "website": "https://nearly.red", "subreddit": "/r/NearlyOnRed", "center": [233.5, 810.5], "path": [[231.5, 807.5], [234.5, 807.5], [235.5, 808.5], [235.5, 812.5], [234.5, 813.5], [231.5, 813.5], [230.5, 812.5], [230.5, 808.5]]},
{"id": "tynsp6", "submitted_by": "necessitycalls", "name": "Thomas Jefferson High School", "description": "Thomas Jefferson High School for Science and Technology is a magnet school in Virginia.", "website": "https://tjhsst.fcps.edu/", "subreddit": "/r/tjhsst", "center": [998.5, 101.5], "path": [[995.5, 96.5], [1000.5, 96.5], [1000.5, 105.5], [995.5, 105.5]]},
{"id": "tynrik", "submitted_by": "bruhccoli3", "name": "Master Ball", "description": "A Pok\u00e9 Ball that can catch a Pok\u00e9mon without fail.", "website": "", "subreddit": "/r/Pokemon", "center": [935.5, 708.5], "path": [[933.5, 714.5], [930.5, 713.5], [929.5, 711.5], [929.5, 705.5], [930.5, 704.5], [933.5, 703.5], [933.5, 702.5], [937.5, 702.5], [938.5, 703.5], [939.5, 703.5], [940.5, 704.5], [941.5, 706.5], [941.5, 711.5], [940.5, 712.5], [938.5, 713.5], [937.5, 714.5]]},
{"id": "tynpwu", "submitted_by": "bruhccoli3", "name": "Quick Ball", "description": "A type of Pok\u00e9 Ball. It can be used to catch a wild Pok\u00e9mon, being more likely to succeed if used at the start of the encounter.", "website": "", "subreddit": "/r/Pokemon", "center": [923.5, 708.5], "path": [[921.5, 714.5], [919.5, 713.5], [918.5, 711.5], [917.5, 710.5], [917.5, 705.5], [918.5, 704.5], [920.5, 703.5], [922.5, 702.5], [925.5, 702.5], [927.5, 703.5], [928.5, 705.5], [929.5, 710.5], [928.5, 712.5], [926.5, 713.5], [925.5, 714.5]]},
{"id": "tynnk6", "submitted_by": "bruhccoli3", "name": "Timer Ball", "description": "A type of Pok\u00e9ball. It can be used to catch a wild Pok\u00e9mon, being more likely to succeed the longer it has been since the start of the battle.", "website": "", "subreddit": "/r/Pokemon", "center": [911.5, 708.5], "path": [[909.5, 714.5], [908.5, 713.5], [906.5, 712.5], [906.5, 711.5], [905.5, 709.5], [905.5, 706.5], [906.5, 705.5], [906.5, 704.5], [908.5, 703.5], [912.5, 702.5], [913.5, 702.5], [915.5, 703.5], [916.5, 705.5], [917.5, 708.5], [917.5, 711.5], [913.5, 714.5]]},
{"id": "tynmwh", "submitted_by": "Chiverly", "name": ":argeseal:", "description": "Originating from a group of osu!tournament players, :argeseal: is a combination of the dog from Happy Doggy Monday, named after the osu!player \"Arge\" who had his profile picture of the dog from Happy Doggy Monday, and :seal-1:, another popular emote from within osu!tournament players.", "website": "https://osu.ppy.sh/users/11215030", "subreddit": "", "center": [1666.5, 1620.5], "path": [[1655.5, 1628.5], [1659.5, 1628.5], [1659.5, 1627.5], [1663.5, 1627.5], [1673.5, 1627.5], [1674.5, 1627.5], [1674.5, 1626.5], [1675.5, 1626.5], [1675.5, 1625.5], [1676.5, 1625.5], [1676.5, 1624.5], [1677.5, 1624.5], [1677.5, 1619.5], [1677.5, 1618.5], [1676.5, 1618.5], [1676.5, 1617.5], [1676.5, 1616.5], [1675.5, 1616.5], [1675.5, 1615.5], [1675.5, 1614.5], [1674.5, 1614.5], [1674.5, 1613.5], [1673.5, 1613.5], [1672.5, 1613.5], [1672.5, 1612.5], [1671.5, 1612.5], [1670.5, 1611.5], [1662.5, 1611.5], [1662.5, 1612.5], [1661.5, 1612.5], [1660.5, 1612.5], [1660.5, 1613.5], [1659.5, 1613.5], [1658.5, 1613.5], [1658.5, 1614.5], [1657.5, 1614.5], [1657.5, 1615.5], [1656.5, 1615.5], [1656.5, 1616.5], [1656.5, 1617.5], [1655.5, 1617.5], [1655.5, 1617.5], [1655.5, 1624.5], [1655.5, 1628.5], [1655.5, 1624.5], [1655.5, 1617.5], [1656.5, 1617.5], [1656.5, 1615.5]]},
{"id": "tynkr0", "submitted_by": "ootinii", "name": "ootinii", "description": "This is ootinii, he's a jawa and a gamer. We got him into his proper place next to Yoda at the very last minute.", "website": "", "subreddit": "", "center": [772.5, 1666.5], "path": [[768.5, 1662.5], [768.5, 1669.5], [776.5, 1669.5], [776.5, 1667.5], [775.5, 1667.5], [775.5, 1664.5], [774.5, 1664.5], [774.5, 1663.5], [773.5, 1663.5], [773.5, 1662.5], [768.5, 1662.5]]},
{"id": "tynkhq", "submitted_by": "bruhccoli3", "name": "Wooden House", "description": "During the events of r/place it caught fire. Luckily, the truck on its left transformed into a firetruck and put out the fire.", "website": "", "subreddit": "", "center": [1139.5, 1016.5], "path": [[1131.5, 1022.5], [1131.5, 1016.5], [1130.5, 1015.5], [1130.5, 1014.5], [1135.5, 1009.5], [1136.5, 1008.5], [1138.5, 1008.5], [1138.5, 1006.5], [1142.5, 1006.5], [1142.5, 1008.5], [1143.5, 1009.5], [1147.5, 1013.5], [1147.5, 1016.5], [1147.5, 1023.5], [1131.5, 1023.5]]},
{"id": "tynfb2", "submitted_by": "fka", "name": "Bosphorus Bridge", "description": "One of the bridges of Istanbul Bosphorus", "website": "", "subreddit": "/r/turkey", "center": [310.5, 431.5], "path": [[300.5, 415.5], [302.5, 449.5], [307.5, 448.5], [307.5, 438.5], [326.5, 437.5], [326.5, 430.5], [309.5, 420.5], [309.5, 416.5]]},
{"id": "tynabl", "submitted_by": "ILoveMeSomeChocolate", "name": "Coat of arms of the Faroe Islands", "description": "The head of the ram depicted on the Faroese coat of arms", "website": "https://en.wikipedia.org/wiki/Coat_of_arms_of_the_Faroe_Islands", "subreddit": "/r/place_nordicunion", "center": [418.5, 110.5], "path": [[415.5, 108.5], [414.5, 108.5], [414.5, 112.5], [415.5, 112.5], [415.5, 115.5], [418.5, 115.5], [418.5, 113.5], [420.5, 113.5], [420.5, 116.5], [422.5, 116.5], [422.5, 105.5], [421.5, 105.5], [421.5, 104.5], [417.5, 104.5], [417.5, 105.5], [416.5, 105.5], [416.5, 106.5], [415.5, 106.5], [415.5, 108.5], [414.5, 108.5]]},
{"id": "tyna1u", "submitted_by": "Fireboy88", "name": "Sudan flag", "description": "Sudan is the best", "website": "http://www.sudan.gov.sd/index.php/en/", "subreddit": "/r/Sudan", "center": [1217.5, 413.5], "path": [[1192.5, 397.5], [1168.5, 397.5], [1266.5, 395.5], [1266.5, 429.5], [1169.5, 432.5], [1167.5, 399.5], [1169.5, 399.5], [1174.5, 402.5], [1168.5, 398.5], [1168.5, 397.5]]},
{"id": "tyn9jq", "submitted_by": "_Niroc_", "name": "german flag in Kurzgesagt Picture", "description": "After the german r/placede community helped to defend the kurzgesagt logo, they were commemorated with a little flag in the bottom right corner", "website": "", "subreddit": "/r/placede", "center": [788.5, 68.5], "path": [[785.5, 66.5], [790.5, 66.5], [790.5, 70.5], [785.5, 70.5]]},
{"id": "tyn84t", "submitted_by": "ostensacken", "name": "Malta Polar", "description": "A non-alcoholic malt drink from Venezuela.", "website": "", "subreddit": "/r/vzla", "center": [1262.5, 795.5], "path": [[1257.5, 790.5], [1257.5, 798.5], [1258.5, 799.5], [1259.5, 800.5], [1260.5, 801.5], [1260.5, 803.5], [1259.5, 804.5], [1265.5, 804.5], [1265.5, 803.5], [1266.5, 802.5], [1267.5, 801.5], [1267.5, 790.5], [1266.5, 789.5], [1265.5, 788.5], [1259.5, 788.5], [1258.5, 789.5]]},
{"id": "tyn4vd", "submitted_by": "ostensacken", "name": "Arepa", "description": "A corn cake from Northern South America, cheese, various meats, and chicken.", "website": "", "subreddit": "/r/vzla", "center": [1254.5, 802.5], "path": [[1247.5, 801.5], [1247.5, 803.5], [1247.5, 804.5], [1259.5, 804.5], [1260.5, 804.5], [1260.5, 801.5], [1259.5, 800.5], [1258.5, 799.5], [1249.5, 799.5], [1248.5, 800.5], [1247.5, 801.5]]},
{"id": "tyn3p7", "submitted_by": "ostensacken", "name": "Angel Falls", "description": "The world's tallest uninterrupted waterfall. Located in Canaima National Park.", "website": "", "subreddit": "/r/vzla", "center": [1210.5, 793.5], "path": [[1204.5, 782.5], [1204.5, 783.5], [1205.5, 784.5], [1204.5, 785.5], [1203.5, 786.5], [1202.5, 787.5], [1203.5, 788.5], [1204.5, 791.5], [1203.5, 792.5], [1202.5, 793.5], [1201.5, 794.5], [1201.5, 803.5], [1216.5, 803.5], [1216.5, 801.5], [1223.5, 801.5], [1222.5, 800.5], [1221.5, 799.5], [1220.5, 797.5], [1219.5, 795.5], [1218.5, 795.5], [1217.5, 795.5], [1217.5, 792.5], [1216.5, 792.5], [1216.5, 783.5], [1215.5, 783.5], [1215.5, 782.5], [1214.5, 782.5], [1214.5, 781.5], [1213.5, 781.5], [1213.5, 780.5], [1211.5, 780.5], [1211.5, 781.5], [1211.5, 781.5], [1210.5, 781.5], [1205.5, 781.5], [1203.5, 781.5], [1203.5, 784.5]]},
{"id": "tymzxt", "submitted_by": "ostensacken", "name": "Lliklla", "description": "A rectangular, handwoven shoulder cloth worn by Quechua women in Bolivia and Peru.", "website": "", "subreddit": "/r/PERU", "center": [592.5, 636.5], "path": [[581.5, 631.5], [582.5, 632.5], [583.5, 633.5], [584.5, 634.5], [585.5, 635.5], [586.5, 636.5], [587.5, 637.5], [588.5, 638.5], [589.5, 639.5], [590.5, 640.5], [591.5, 641.5], [592.5, 642.5], [593.5, 643.5], [594.5, 644.5], [595.5, 645.5], [599.5, 645.5], [599.5, 630.5], [581.5, 630.5]]},
{"id": "tymwtl", "submitted_by": "RunPeaceRun", "name": "Wired", "description": "Community of Mert Gunhan's followers.", "website": "https://www.youtube.com/channel/UCdLLW3-VoB3XVwtGeYEe5cg", "subreddit": "/r/wiredpeople", "center": [1571.5, 1691.5], "path": [[1567.5, 1677.5], [1567.5, 1704.5], [1576.5, 1705.5], [1575.5, 1678.5], [1574.5, 1678.5], [1575.5, 1676.5]]},
{"id": "tymun6", "submitted_by": "GuymanPersonson", "name": "Wayne", "description": "A sentimental wheel partially indulges the skeletons. The people consider with a spirit. It is a mandible amidst a offending mirror. It is a vaccum... Meanwhile Gibby, king of the Moon, smears a engine despite the prison-fate. May it's glands endure 1000 Years!", "website": "https://store.steampowered.com/app/1286710/Hylics_2/", "subreddit": "/r/Hylics", "center": [1507.5, 1703.5], "path": [[1502.5, 1698.5], [1511.5, 1698.5], [1511.5, 1707.5], [1502.5, 1707.5]]},
{"id": "tymfdq", "submitted_by": "iryoku", "name": "The Crystal Tower", "description": "Originally from Final Fantasy III, this large tower forged from crystal is located in the Mor Dhona region on the shore of Silvertear Lake. The tower was built by the Allagan Empire to collect and store energy from the sun, and served as the setting for Final Fantasy XIV's first series of alliance raids.", "website": "https://finalfantasy.fandom.com/wiki/Crystal_Tower_(Final_Fantasy_XIV)", "subreddit": "/r/ffxiv", "center": [1255.5, 553.5], "path": [[1250.5, 556.5], [1250.5, 553.5], [1251.5, 552.5], [1251.5, 549.5], [1252.5, 549.5], [1253.5, 550.5], [1253.5, 551.5], [1254.5, 553.5], [1254.5, 548.5], [1254.5, 549.5], [1253.5, 549.5], [1252.5, 548.5], [1252.5, 544.5], [1253.5, 544.5], [1254.5, 545.5], [1254.5, 537.5], [1256.5, 537.5], [1256.5, 543.5], [1257.5, 543.5], [1257.5, 548.5], [1258.5, 547.5], [1259.5, 547.5], [1259.5, 549.5], [1256.5, 552.5], [1259.5, 555.5], [1258.5, 556.5], [1258.5, 559.5], [1259.5, 560.5], [1259.5, 561.5], [1257.5, 563.5], [1257.5, 565.5], [1250.5, 565.5], [1250.5, 563.5], [1254.5, 559.5], [1254.5, 556.5], [1253.5, 555.5], [1252.5, 555.5], [1251.5, 556.5]]},
{"id": "tyma0u", "submitted_by": "TakoSaratto", "name": "Guilty Gear Community", "description": "Sol Badguy, from the Guilty Gear fighting game series. Originally, this piece also covered the blue banner at the right. The community managed to endure the first two days, forging an alliance with JMU (relocated shorlty after due to Kirby) and streamer Nesua. However, the dawn of the last day came with a raid from a spanish streamer (Siro L\u00f3pez). Forging an alliance with the members of the Notre Dame High School, both communities took the place back, and divided the space between the two, then agreed to protect each other until the end.", "website": "", "subreddit": "/r/Guiltygear", "center": [1780.5, 549.5], "path": [[1773.5, 539.5], [1773.5, 558.5], [1787.5, 558.5], [1787.5, 539.5]]},
{"id": "tym9vw", "submitted_by": "biglu1991", "name": "ale \u2764\ufe0f lu", "description": "The first letters of the names of a real life italian couple.", "website": "", "subreddit": "", "center": [893.5, 1698.5], "path": [[895.5, 1703.5], [890.5, 1703.5], [890.5, 1693.5], [895.5, 1693.5], [895.5, 1703.5]]},
{"id": "tym5d3", "submitted_by": "giga_gamby", "name": "Bingo's Heart", "description": "After the British flag overtook Bingo, /r/bluey gave Bluey an orange heart to commemorate her.", "website": "https://www.bluey.tv/characters/", "subreddit": "/r/bluey", "center": [563.5, 531.5], "path": [[563.5, 534.5], [562.5, 533.5], [561.5, 532.5], [560.5, 531.5], [560.5, 530.5], [561.5, 529.5], [562.5, 529.5], [563.5, 530.5], [564.5, 529.5], [565.5, 529.5], [566.5, 530.5], [566.5, 531.5], [565.5, 532.5], [564.5, 533.5], [563.5, 534.5]]},
{"id": "tym1uj", "submitted_by": "SklionBeeblebrox", "name": "Digital Ducks", "description": "An artwork depicting the Digital Ducks, the cutest and deadliest NFT collection available on WAX!\n\nThe Quacks allied with its neighbors participated in the good understanding of the alliance.\n\nA limited edition commemorative free NFT of this artwork has been created for the occasion.", "website": "https://digital-duck.com/", "subreddit": "", "center": [1641.5, 514.5], "path": [[1632.5, 499.5], [1632.5, 529.5], [1648.5, 529.5], [1648.5, 528.5], [1650.5, 528.5], [1650.5, 499.5]]},
{"id": "tym14u", "submitted_by": "Omii_Online", "name": "The flag of Poland", "description": "It's the flag of Poland with a cat in the middle.", "website": "", "subreddit": "/r/poland", "center": [732.5, 178.5], "path": [[634.5, 138.5], [825.5, 138.5], [825.5, 198.5], [781.5, 198.5], [781.5, 238.5], [708.5, 238.5], [708.5, 235.5], [710.5, 235.5], [709.5, 220.5], [702.5, 213.5], [703.5, 209.5], [703.5, 203.5], [701.5, 201.5], [698.5, 199.5], [693.5, 197.5], [693.5, 194.5], [690.5, 194.5], [689.5, 194.5], [687.5, 196.5], [686.5, 195.5], [684.5, 193.5], [684.5, 193.5], [682.5, 194.5], [681.5, 195.5], [681.5, 198.5], [680.5, 199.5], [679.5, 201.5], [677.5, 202.5], [634.5, 202.5], [634.5, 189.5], [635.5, 189.5], [636.5, 186.5], [634.5, 185.5], [635.5, 184.5], [635.5, 183.5], [636.5, 182.5], [638.5, 182.5], [636.5, 181.5], [637.5, 179.5], [634.5, 179.5]]},
{"id": "tym069", "submitted_by": "Dextnt", "name": "Sweplox", "description": "A small Discord community composed of mostly IRL friends. 'SWPX' is a shortening of 'Sweplox'.", "website": "https://swpx.se/", "subreddit": "/r/sweplox", "center": [756.5, 641.5], "path": [[747.5, 637.5], [747.5, 646.5], [763.5, 646.5], [767.5, 637.5]]},
{"id": "tylx9s", "submitted_by": "Origamidos", "name": "Hyper Light Drone", "description": "Player companion from the indie game Hyper Light Drifter from heart Machine", "website": "", "subreddit": "/r/hyperlightdrifter", "center": [1392.5, 76.5], "path": [[1392.5, 71.5], [1392.5, 73.5], [1391.5, 73.5], [1391.5, 74.5], [1391.5, 75.5], [1391.5, 76.5], [1391.5, 77.5], [1391.5, 78.5], [1391.5, 79.5], [1392.5, 80.5], [1393.5, 79.5], [1393.5, 78.5], [1393.5, 77.5], [1393.5, 76.5], [1394.5, 76.5], [1395.5, 76.5], [1395.5, 75.5], [1393.5, 75.5], [1393.5, 74.5], [1393.5, 73.5], [1393.5, 72.5]]},
{"id": "tylwmb", "submitted_by": "Dextnt", "name": "Sweplox", "description": "A small Discord community composed of mostly IRL friends. \"SWPX\" is a shortening of \"Sweplox\"", "website": "https://swpx.se/", "subreddit": "/r/sweplox", "center": [756.5, 641.5], "path": [[747.5, 637.5], [747.5, 646.5], [763.5, 646.5], [767.5, 637.5]]},
{"id": "tyltne", "submitted_by": "Emerald_Pyro", "name": "AugieRFC Logo", "description": "Logo of the commentary YouTuber, and streamer AugieRFC. Known for RFC After Hours", "website": "https://AugieRFC.live", "subreddit": "/r/ClippedLive", "center": [1413.5, 1987.5], "path": [[1400.5, 1980.5], [1426.5, 1980.5], [1425.5, 1995.5], [1402.5, 1995.5]]},
{"id": "tylrvj", "submitted_by": "Oncensored", "name": "oncensored dinosaur", "description": "this dinosaur was created by a very small community of a streamer known as Oncensored, it was a small contribution from about 5 people and represents a small community that was able to make a small mark.", "website": "https://twitter.com/oncensored", "subreddit": "", "center": [793.5, 1763.5], "path": [[790.5, 1759.5], [789.5, 1760.5], [789.5, 1766.5], [797.5, 1766.5], [796.5, 1759.5], [793.5, 1759.5]]},
{"id": "tylp68", "submitted_by": "Erol123449", "name": "BH for Brawlhalla", "description": "a BH representing the Platform fighter Brawlhalla after having both lost a Bodvar to a streamer overdrawing it and an Emblem to rogue swedes", "website": "https://www.brawlhalla.com/", "subreddit": "/r/Brawlhalla", "center": [283.5, 1806.5], "path": [[278.5, 1803.5], [287.5, 1803.5], [287.5, 1803.5], [287.5, 1803.5], [287.5, 1809.5], [278.5, 1809.5]]},
{"id": "tylmb7", "submitted_by": "chihuahualoco", "name": "Hidden Among us", "description": "2 more hidden Among us characters. Keep looking for more!", "website": "", "subreddit": "", "center": [673.5, 831.5], "path": [[671.5, 828.5], [671.5, 836.5], [674.5, 836.5], [675.5, 831.5], [677.5, 830.5], [677.5, 829.5], [676.5, 828.5], [671.5, 828.5]]},
{"id": "tyllfm", "submitted_by": "Coversed", "name": "Hector", "description": "The pet rock of Kel who is a deuteragonist of Omori", "website": "https://omori.fandom.com/wiki/HECTOR", "subreddit": "/r/Omori", "center": [982.5, 848.5], "path": [[988.5, 843.5], [976.5, 842.5], [974.5, 854.5], [989.5, 853.5], [989.5, 852.5], [989.5, 844.5]]},
{"id": "tyldya", "submitted_by": "DrKosmitek", "name": "DrKosmitek Minecraft Head", "description": "A Minecraft head from the user DrKosmitek.", "website": "", "subreddit": "/r/WhatAUselessGroup", "center": [175.5, 90.5], "path": [[177.5, 92.5], [177.5, 87.5], [172.5, 87.5], [172.5, 92.5]]},
{"id": "tyl96r", "submitted_by": "chihuahualoco", "name": "Ikurrina Heart", "description": "An Ikurrina representative of the Basque Country Spanish \nautonomous community", "website": "", "subreddit": "", "center": [1021.5, 281.5], "path": [[1021.5, 286.5], [1017.5, 282.5], [1019.5, 278.5], [1023.5, 278.5], [1025.5, 281.5], [1025.5, 282.5], [1022.5, 285.5]]}
]

View file

@ -99,7 +99,8 @@ <h1 id="title">The 2022 /r/place Atlas</h1>
<canvas id="linesCanvas"></canvas>
<div id="innerContainer">
<canvas id="highlightCanvas" width="2000" height="2000"></canvas>
<img id="image" src="./_img/place-indexed-final-place.png" width="2000" height="2000" alt="Canvas of /r/place in the state of when the experiment was concluded." />
<img id="image" width="2000" height="2000" alt="Canvas of /r/place in the state of when the experiment was concluded." />
</div>
</div>
@ -138,7 +139,19 @@ <h1 id="title">The 2022 /r/place Atlas</h1>
<button id="hideListButton"></button>
<div id="zoomControls"><button title="Zoom In" id="zoomInButton"></button><button title="Reset View" id="zoomResetButton"></button><button title="Zoom Out" id="zoomOutButton"></button></div>
<div id="bottomBar">
<div id="zoomControls">
<button title="Zoom In" id="zoomInButton"></button>
<button title="Reset View" id="zoomResetButton"></button>
<button title="Zoom Out" id="zoomOutButton"></button>
</div>
<div id="timeControls">
<input type="range" min="1" max="1" value="1" class="slider" id="timeControlsSlider">
</div>
<div id="author">
<p>Code by <a href="https://draemm.li/various/place-atlas/" target="_blank" rel="author">Roland Rytz</a>. Source on <a target="_blank" href="https://github.com/placeAtlas/atlas">GitHub</a>. This site is powered by <a href="https://www.netlify.com">Netlify</a>. Images provided by <a target="_blank" href="https://place.thatguyalex.com/">Alex Tsernoh</a>.</p>
</div>
</div>
<div id="drawControlsContainer">
<a id="drawBackButton" href="./">&lt; Back to the Atlas</a>
@ -173,10 +186,6 @@ <h1 id="title">The 2022 /r/place Atlas</h1>
<p>Click anywhere on the image to start drawing a shape.
When you're happy with the result, click the "Finish" button above or press the Enter key.</p>
<p>You can then add more information about your object.</p>
<div style="background-color:#666; padding:20px">
<p><b>Warning</b></p>
<p><b>DO NOT</b> include the character <b>"</b> (quotation marks) in your submission. It will not be approved.</p>
</div><br>
<div style="background-color:#7289DA; padding:20px">
<p><b>Need Help?</b></p>
<b>You can ask for help on our discord server <a href="https://discord.gg/pJkm23b2nA">here</a>!</b><br>
@ -190,11 +199,12 @@ <h1 id="title">The 2022 /r/place Atlas</h1>
<div id="exportOverlay" class="overlay">
<div id="exportWindow">
<div style="background-color:#666; padding:5px">
<p><b>Warning</b></p>
<p><b>DO NOT</b> include the character <b>"</b> (quotation marks) in your submission. It will not be approved.</p>
</div>
<p><b>Recommended:</b> Post directly after clicking this button. Don't forget to flair it with the "New Entry" tag. </p>
<p>Please copy the text below and submit it as a<br>
new text post to <a target="_blank" href="https://www.reddit.com/r/placeAtlas2/">/r/placeAtlas2</a> on Reddit.</p>
<p>I will then check it and add it to the atlas.</p>
<textarea cols="50" rows="5" id="exportString"></textarea>
<div style="display:flex; flex-direction:column;align-items:center">
<a href="_blank" id="exportDirectPost">Post Direct to Reddit</a>
</div>
@ -225,10 +235,8 @@ <h2>Donation Links</h2>
<br>
</div>
</div>
<div id="author">
Code forked by <a href="https://place-atlas.stefanocoding.me/" target="_blank" rel="author">Stefano Haagmans</a>. Source on <a target="_blank" href="https://github.com/placeAtlas/atlas">GitHub</a>, Images provided by <a target="_blank" href="https://place.thatguyalex.com/">Alex Tsernoh</a>. This site is powered by <a href="https://www.netlify.com">Netlify</a>.
</div>
</div>
<script type="text/javascript" src="./_js/time.js?version=1.0.3"></script>
<script type="text/javascript" src="./_js/infoblock.js?version=1.0"></script>
<script type="text/javascript" src="./_js/pointInPolygon.js?version=1.0"></script>
<script type="text/javascript" src="./_js/atlas.js?version=1.0.50"></script>