Merge pull request #1234 from placeAtlas/master

Merge
This commit is contained in:
ash 2022-04-11 14:56:47 +01:00 committed by GitHub
commit 8af6b4abaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 186 additions and 176 deletions

View file

@ -8430,3 +8430,86 @@ tyb3kz
tyawj8
tya3uw
ty9636
u111qj
u110p0
u10yvd
u10viu
u10slw
u10rta
u10qs6
u10ps7
u10p1q
u10n8u
u10mkl
u10ljm
u10kzi
u1062c
u100l7
u0zu5h
u0zsl2
u0zlmh
u0zksr
u0z7lv
u0z76f
u0z2xh
u0z0do
u0yo2a
u0ym4w
u0yjrm
u0xx82
u0xwma
u0x7ao
u0wyvt
u0wh01
u0wf5i
u0w67f
u0vply
u0vm1i
u0vaga
u0v53w
u0v3d9
u0uywc
u0uxpx
u0usw4
u0uqmf
u0unl8
u0um9i
u0ui2e
u0uhsi
u0ugvt
u0ugt6
u0uafq
u0u3eh
u0txtl
u0tidp
u0tcd8
u0syph
u0sxef
u0swce
u0s3hg
u0rxa6
u0rc00
u0r2d2
u0quu8
u0qsu2
u0qs4m
u0qp3m
u0qj8t
u0qecu
u0qd9o
u0qcl9
u0pktk
u0pjrf
u0p97v
u0p0gp
u0oxb5
u0ovcw
u0one2
u0odqb
u0o9vu
u0o6yg
u0o2uy
u0ny8w
u0nx4x
u0nvr4
u0nu1q

View file

@ -1,148 +0,0 @@
u0mydr
u0mwxj
u0mwcx
u0mu37
u0ms72
u0mrgz
u0mqfj
u0mozw
u0mkko
u0mk12
u0mj93
u0mg5r
u0mefl
u0mdkc
u0mchi
u0mb6y
u0m7ol
u0m6uo
u0m5xy
u0m4kn
u0m3up
u0m2sl
u0m17q
u0m0o7
u0m0e2
u0lkqg
u0ljzj
u0lg1v
u0la9m
u0l8u8
u0l6mx
u0l04x
u0kzax
u0kw47
u0kvqb
u0km4v
u0kiy3
u0kcvk
u0k5tx
u0k0hp
u0jgjs
u0ja8g
u0ihnt
u0hnpj
u0hnmq
u0hcsf
u0gg84
u0flsv
u0ffg3
u0fewx
u0ctn0
u0c4jg
u0c3s4
u0c241
u0bzn5
u0by7b
u0bplz
u0be15
u0bcky
u0bc1w
u0bbkz
u0b40q
u0b3o4
u0b397
u0b2x1
u0ayk7
u0axny
u0awwp
u0awbz
u0avnr
u0an4y
u0alur
u0aiaj
u0ado3
u0a8h0
u0a7l8
u0a6tn
u0a5jp
u0a3so
u0a0tv
u0a0ay
u09zv0
u09ssy
u09rhm
u09oc3
u09jbs
u09i2s
u09fzu
u09eti
u09dms
u09dg6
u09ben
u099j5
u0977w
u096fm
u095x4
u090mi
u0904c
u08vz6
u08rdk
u08ngp
u08jdo
u08g67
u08emv
u08dc7
u08ch9
u089ja
u088bg
u0880k
u086n0
u084u1
u082p3
u0828x
u081u8
u0818m
u080s5
u07zh3
u07z4w
u07xr3
u07vk2
u07vja
u07uny
u07u1d
u07i8s
u077yo
u077y1
u075jt
u074p5
u073rt
u0738i
u070h9
u06pis
u06p92
tyrqka
tygp7u
tyfydt
tyfxq9
tyftac
tyezt5
tyenua
tydut9
tyd560
tybjpt
tybbnt
tyb3kz
tyawj8
tya3uw
ty9636

View file

@ -31,7 +31,7 @@ function createInfoBlock(entry) {
let headerElement = document.createElement("h2");
let linkElement = document.createElement("a");
linkElement.href = "?id=" + entry.id;
linkElement.href = "#" + entry.id;
linkElement.innerText = entry.name;
headerElement.appendChild(linkElement);

View file

@ -110,6 +110,14 @@ async function init(){
} else {
mode = "view";
}
// Backwards compatibility for old links using "search" id arg
if(args.includes("id=")){
let idHash = args.split("id=")[1].split("&")[0];
window.location.hash = idHash;
let idArgMatch = new RegExp(`id=${idHash}&?`); // Patten for the id plus a following & if present
window.location.search = window.location.search.substring(1).replace(idArgMatch, "");
}
}
document.body.dataset.mode = mode

View file

@ -27,12 +27,8 @@ function initOverlap(){
render();
updateLines();
var args = window.location.search;
if(args){
id = args.split("id=")[1];
if(id){
highlightEntryFromUrl();
}
if(window.location.hash){
highlightEntryFromUrl();
}
function renderBackground(atlas) {

View file

@ -102,7 +102,7 @@ hideListButton.addEventListener("click", function(e){
} else {
wrapper.classList.add('listHidden')
}
updateHovering();
updateHovering(e);
applyView();
render();
updateLines();
@ -154,7 +154,7 @@ window.addEventListener("resize", function(){
entriesListShown = false;
wrapper.className += " listHidden";
}
updateHovering();
updateHovering(e);
viewportWidth = document.documentElement.clientWidth;
@ -445,7 +445,7 @@ function buildObjectsList(filter, sort){
zoom = 4;
renderBackground(atlas);
applyView();
updateHovering();
updateHovering(e);
zoomOrigin = [
innerContainer.clientWidth/2 - this.entry.center[0]* zoom// + container.offsetLeft
@ -672,22 +672,14 @@ function updateHovering(e, tapped){
}
}
window.addEventListener("hashchange", highlightEntryFromUrl);
function highlightEntryFromUrl(){
var objectsContainer = document.getElementById("objectsList");
var id = 0;
var args = window.location.search;
if(args){
id = args.split("id=")[1];
if(id){
id = id.split("&")[0];
}
}
var id = window.location.hash.substring(1); //Remove hash prefix
//var id = parseInt(window.location.hash.substring(3));
var entries = atlas.filter(function(e){
return e.id === id;
});
@ -752,12 +744,8 @@ function initView(){
render();
updateLines();
var args = window.location.search;
if(args){
id = args.split("id=")[1];
if(id){
highlightEntryFromUrl();
}
if(window.location.hash){ // both "/" and just "/#" will be an empty hash string
highlightEntryFromUrl();
}
}

View file

@ -7632,5 +7632,88 @@
{"id": "tyawj8", "submitted_by": "KassXWolfXTigerXFox", "name": "Stone Mask ( Red Stone)", "description": "The Stone Mask is the ancient Aztec tool by which characters may become Vampires, famously used by Dio Brando in Part 1: Phantom Blood. This version appears in Part 2: Battle Tendency, when Pillar Man Kars uses it and the sunlight-concentrating Red Stone of Aja to become the Ultimate Life Form.", "website": "", "subreddit": "", "center": [130.5, 926.5], "path": [[133.5, 932.5], [131.5, 932.5], [130.5, 931.5], [127.5, 931.5], [125.5, 931.5], [125.5, 930.5], [125.5, 929.5], [124.5, 928.5], [124.5, 923.5], [125.5, 922.5], [126.5, 921.5], [132.5, 921.5], [133.5, 922.5], [134.5, 923.5], [135.5, 924.5], [135.5, 929.5], [134.5, 930.5], [134.5, 931.5], [133.5, 931.5]]},
{"id": "tya3uw", "submitted_by": "Assaro_Delamar", "name": "Mainzelmännchen", "description": "The Mainzelmännchen are fictional charackters from Germany's second TV-Channel ZDF, commonly seen at the beginning and end of ad-breaks", "website": "https://www.zdf-werbefernsehen.de/mainzelmaennchen/die-charaktere", "subreddit": "", "center": [1452.5, 1154.5], "path": [[1443.5, 1171.5], [1456.5, 1171.5], [1456.5, 1169.5], [1457.5, 1169.5], [1457.5, 1168.5], [1462.5, 1168.5], [1461.5, 1167.5], [1461.5, 1166.5], [1463.5, 1166.5], [1463.5, 1165.5], [1466.5, 1165.5], [1466.5, 1164.5], [1467.5, 1164.5], [1467.5, 1158.5], [1466.5, 1157.5], [1462.5, 1153.5], [1462.5, 1152.5], [1464.5, 1150.5], [1464.5, 1146.5], [1464.5, 1145.5], [1462.5, 1145.5], [1462.5, 1142.5], [1461.5, 1142.5], [1461.5, 1140.5], [1459.5, 1138.5], [1457.5, 1137.5], [1454.5, 1137.5], [1454.5, 1136.5], [1453.5, 1135.5], [1449.5, 1135.5], [1449.5, 1136.5], [1448.5, 1136.5], [1448.5, 1137.5], [1446.5, 1137.5], [1443.5, 1140.5], [1443.5, 1142.5], [1442.5, 1142.5], [1442.5, 1147.5], [1441.5, 1147.5], [1441.5, 1151.5], [1443.5, 1153.5], [1437.5, 1158.5], [1437.5, 1164.5], [1438.5, 1165.5], [1442.5, 1166.5], [1443.5, 1169.5], [1443.5, 1171.5]]},
{"id": "ty9636", "submitted_by": "PhilosoBee", "name": "Cussy", "description": "This is a depiction of cussy (or car-pussy), inspired by the Pixar movie Cars. Created by the HasanAbi Twitch community.", "website": "", "subreddit": "/r/Hasan_Piker", "center": [857.5, 1187.5], "path": [[819.5, 1202.5], [812.5, 1202.5], [808.5, 1196.5], [808.5, 1186.5], [810.5, 1180.5], [810.5, 1174.5], [818.5, 1174.5], [824.5, 1169.5], [830.5, 1164.5], [836.5, 1162.5], [844.5, 1161.5], [850.5, 1161.5], [860.5, 1160.5], [866.5, 1161.5], [871.5, 1163.5], [878.5, 1170.5], [881.5, 1172.5], [892.5, 1172.5], [897.5, 1174.5], [902.5, 1178.5], [905.5, 1183.5], [905.5, 1189.5], [905.5, 1196.5], [904.5, 1200.5], [903.5, 1205.5], [900.5, 1208.5], [895.5, 1210.5], [888.5, 1209.5], [884.5, 1208.5], [883.5, 1207.5], [881.5, 1208.5], [880.5, 1216.5], [878.5, 1220.5], [877.5, 1215.5], [877.5, 1211.5], [874.5, 1208.5], [869.5, 1208.5], [856.5, 1208.5], [849.5, 1208.5], [843.5, 1211.5], [838.5, 1212.5], [832.5, 1211.5], [828.5, 1208.5], [824.5, 1204.5], [824.5, 1202.5], [820.5, 1200.5]]},
{"id": "u0expw", "submitted_by": "omniphoenix", "name": "Plover", "description": "Plover is an open stenography project that relies on chorded typing to type very quickly with practise. Despite it's difficulty in learning, many regard it as cheating \nbecause of it's fast typing speeds of over 200 wpm, so it has been banned from the leaderboards of monkey type.", "website": "http: //www.openstenoproject.org/plover/", "subreddit": "https: //www.reddit.com/r/Plover/", "center": [647.5, 1319.5], "path": [[644.5, 1315.5], [652.5, 1315.5], [649.5, 1323.5], [643.5, 1322.5], [644.5, 1322.5]]}
{"id": "u0expw", "submitted_by": "omniphoenix", "name": "Plover", "description": "Plover is an open stenography project that relies on chorded typing to type very quickly with practise. Despite it's difficulty in learning, many regard it as cheating \nbecause of it's fast typing speeds of over 200 wpm, so it has been banned from the leaderboards of monkey type.", "website": "http: //www.openstenoproject.org/plover/", "subreddit": "https://www.reddit.com/r/Plover/", "center": [647.5, 1319.5], "path": [[644.5, 1315.5], [652.5, 1315.5], [649.5, 1323.5], [643.5, 1322.5], [644.5, 1322.5]]},
{"id": "u111qj", "submitted_by": "AnonymousRandPerson", "name": "Hakos Baelz", "description": "A Hololive English (Council) VTuber. Part of the CHAD CAST podcast.", "website": "https://en.hololive.tv/portfolio/items/hakos-baelz", "subreddit": "/r/Hololive", "center": [1347.5, 926.5], "path": [[1341.5, 919.5], [1339.5, 921.5], [1338.5, 925.5], [1338.5, 927.5], [1341.5, 930.5], [1342.5, 929.5], [1344.5, 929.5], [1343.5, 931.5], [1344.5, 932.5], [1345.5, 933.5], [1347.5, 933.5], [1351.5, 929.5], [1352.5, 929.5], [1353.5, 930.5], [1354.5, 930.5], [1355.5, 928.5], [1356.5, 924.5], [1355.5, 921.5], [1354.5, 920.5], [1353.5, 921.5], [1351.5, 921.5], [1349.5, 923.5], [1347.5, 925.5], [1343.5, 921.5], [1341.5, 919.5]]},
{"id": "u110p0", "submitted_by": "AnonymousRandPerson", "name": "IRyS", "description": "A Hololive English (Project Hope) VTuber. Part of the CHAD CAST podcast.", "website": "https://en.hololive.tv/portfolio/items/irys", "subreddit": "/r/Hololive", "center": [1347.5, 920.5], "path": [[1339.5, 913.5], [1339.5, 914.5], [1341.5, 917.5], [1338.5, 919.5], [1339.5, 920.5], [1341.5, 920.5], [1341.5, 922.5], [1340.5, 925.5], [1346.5, 925.5], [1347.5, 926.5], [1348.5, 925.5], [1354.5, 925.5], [1354.5, 920.5], [1353.5, 917.5], [1355.5, 914.5], [1354.5, 913.5], [1352.5, 915.5], [1351.5, 915.5], [1350.5, 914.5], [1349.5, 915.5], [1345.5, 915.5], [1344.5, 914.5], [1343.5, 915.5], [1342.5, 915.5], [1340.5, 913.5]]},
{"id": "u10yvd", "submitted_by": "AnonymousRandPerson", "name": "Mori Calliope", "description": "A Hololive English (Myth) VTuber. Part of the CHAD CAST podcast.", "website": "https://en.hololive.tv/portfolio/items/mori-calliope", "subreddit": "/r/Hololive", "center": [1347.5, 912.5], "path": [[1346.5, 903.5], [1345.5, 906.5], [1344.5, 905.5], [1342.5, 908.5], [1341.5, 912.5], [1339.5, 914.5], [1340.5, 915.5], [1340.5, 917.5], [1342.5, 917.5], [1343.5, 918.5], [1344.5, 917.5], [1350.5, 917.5], [1351.5, 918.5], [1352.5, 917.5], [1354.5, 915.5], [1355.5, 914.5], [1353.5, 912.5], [1353.5, 909.5], [1351.5, 907.5], [1351.5, 906.5], [1350.5, 905.5], [1349.5, 906.5], [1348.5, 905.5], [1348.5, 903.5], [1346.5, 903.5]]},
{"id": "u10viu", "submitted_by": "gabrielvieira10", "name": "Last Supper", "description": "Right side of the the Last Supper painting made by Leonardo da Vinci. It depicts Matthew, Jude Thaddeus, and Simon the Zealot.", "website": "https://en.wikipedia.org/wiki/The_Last_Supper_(Leonardo)", "subreddit": "", "center": [1065.5, 1092.5], "path": [[1062.5, 1074.5], [1082.5, 1074.5], [1082.5, 1106.5], [1070.5, 1106.5], [1070.5, 1108.5], [1068.5, 1108.5], [1068.5, 1109.5], [1065.5, 1109.5], [1065.5, 1108.5], [1047.5, 1108.5], [1048.5, 1107.5], [1048.5, 1097.5], [1039.5, 1097.5], [1040.5, 1096.5], [1041.5, 1095.5], [1042.5, 1094.5], [1043.5, 1093.5], [1061.5, 1075.5]]},
{"id": "u10slw", "submitted_by": "AnonymousRandPerson", "name": "Uruha Rushia heart", "description": "A green heart representing Uruha Rushia, a VTuber from the 3rd generation of Hololive Japan.", "website": "https://en.hololive.tv/portfolio/items/uruha-rushia", "subreddit": "/r/Hololive", "center": [1401.5, 879.5], "path": [[1400.5, 876.5], [1398.5, 878.5], [1398.5, 879.5], [1401.5, 882.5], [1404.5, 879.5], [1404.5, 878.5], [1402.5, 876.5], [1400.5, 876.5]]},
{"id": "u10rta", "submitted_by": "AnonymousRandPerson", "name": "Usada Pekora heart", "description": "A blue heart representing Usada Pekora, a VTuber from the 3rd generation of Hololive Japan. The heart has rabbit ears to match Usada Pekora's VTuber model.", "website": "https://en.hololive.tv/portfolio/items/usada-pekora", "subreddit": "/r/pekora, /r/Hololive", "center": [1399.5, 873.5], "path": [[1398.5, 869.5], [1396.5, 871.5], [1396.5, 874.5], [1399.5, 877.5], [1402.5, 874.5], [1402.5, 871.5], [1400.5, 869.5], [1398.5, 869.5]]},
{"id": "u10qs6", "submitted_by": "AnonymousRandPerson", "name": "Shirogane Noel heart", "description": "A silver heart representing Shirogane Noel, a VTuber from the 3rd generation of Hololive Japan.", "website": "https://en.hololive.tv/portfolio/items/shirogane-noel", "subreddit": "/r/Hololive", "center": [1372.5, 872.5], "path": [[1371.5, 869.5], [1369.5, 871.5], [1369.5, 872.5], [1372.5, 875.5], [1375.5, 872.5], [1375.5, 871.5], [1373.5, 869.5], [1371.5, 869.5]]},
{"id": "u10ps7", "submitted_by": "AnonymousRandPerson", "name": "Houshou Marine heart", "description": "A red heart representing Houshou Marine, a VTuber from the 3rd generation of Hololive Japan.", "website": "https://en.hololive.tv/portfolio/items/houshou-marine", "subreddit": "/r/Hololive", "center": [1367.5, 881.5], "path": [[1366.5, 878.5], [1364.5, 880.5], [1364.5, 881.5], [1367.5, 884.5], [1370.5, 881.5], [1370.5, 880.5], [1368.5, 878.5]]},
{"id": "u10p1q", "submitted_by": "AnonymousRandPerson", "name": "Shiranui Flare heart", "description": "An orange heart representing Shiranui Flare, a VTuber from the 3rd generation of Hololive Japan.", "website": "https://en.hololive.tv/portfolio/items/shiranui-flare", "subreddit": "/r/Hololive", "center": [1369.5, 876.5], "path": [[1368.5, 873.5], [1366.5, 875.5], [1366.5, 876.5], [1369.5, 879.5], [1372.5, 876.5], [1372.5, 875.5], [1370.5, 873.5], [1368.5, 873.5]]},
{"id": "u10n8u", "submitted_by": "HydricFox", "name": "Mexico-Georgia-Armenia Alliance", "description": "Heart depicting the three flags of the alliance. Previously there was 3 different hearts that eventually merged into this big one. Erased when Azerbaijan took over Georgia and Armenia.", "website": "", "subreddit": "", "center": [902.5, 196.5], "path": [[902.5, 193.5], [903.5, 193.5], [904.5, 192.5], [905.5, 191.5], [907.5, 191.5], [908.5, 192.5], [909.5, 193.5], [909.5, 197.5], [903.5, 203.5], [901.5, 203.5], [895.5, 197.5], [895.5, 193.5], [896.5, 192.5], [897.5, 191.5], [899.5, 191.5], [900.5, 192.5], [901.5, 193.5], [902.5, 193.5]]},
{"id": "u10mkl", "submitted_by": "AnonymousRandPerson", "name": "Kageyama Shien", "description": "A Holostars VTuber.", "website": "https://en.hololive.tv/portfolio/items/kageyama-shien", "subreddit": "/r/holostars, /r/Hololive", "center": [1398.5, 922.5], "path": [[1395.5, 919.5], [1394.5, 920.5], [1394.5, 923.5], [1395.5, 924.5], [1395.5, 926.5], [1401.5, 926.5], [1401.5, 924.5], [1402.5, 923.5], [1402.5, 919.5]]},
{"id": "u10ljm", "submitted_by": "AnonymousRandPerson", "name": "Astel Leda", "description": "A Holostars VTuber.", "website": "https://en.hololive.tv/portfolio/items/astel-leda", "subreddit": "/r/holostars, /r/Hololive", "center": [1398.5, 914.5], "path": [[1395.5, 910.5], [1393.5, 912.5], [1393.5, 916.5], [1396.5, 919.5], [1400.5, 919.5], [1403.5, 916.5], [1403.5, 912.5], [1401.5, 910.5], [1395.5, 910.5]]},
{"id": "u10kzi", "submitted_by": "AnonymousRandPerson", "name": "Hanasaki Miyabi", "description": "A Holostars VTuber.", "website": "https://en.hololive.tv/portfolio/items/hanasaki-miyabi", "subreddit": "/r/holostars, /r/Hololive", "center": [1398.5, 907.5], "path": [[1395.5, 902.5], [1393.5, 904.5], [1393.5, 911.5], [1403.5, 911.5], [1403.5, 904.5], [1401.5, 902.5], [1395.5, 902.5]]},
{"id": "u1062c", "submitted_by": "gabrielvieira10", "name": "K", "description": "Logo of the anime called \\\"K\\\", that stands for \\\"kings\\\". The anime aired on 2012.", "website": "https://myanimelist.net/anime/14467", "subreddit": "", "center": [406.5, 1809.5], "path": [[403.5, 1803.5], [408.5, 1803.5], [409.5, 1804.5], [410.5, 1805.5], [411.5, 1806.5], [411.5, 1812.5], [410.5, 1813.5], [409.5, 1814.5], [408.5, 1815.5], [403.5, 1815.5], [402.5, 1814.5], [401.5, 1813.5], [400.5, 1812.5], [400.5, 1806.5], [401.5, 1805.5], [402.5, 1804.5], [403.5, 1804.5]]},
{"id": "u100l7", "submitted_by": "AnonymousRandPerson", "name": "Inugami Korone", "description": "A Hololive VTuber.", "website": "https://en.hololive.tv/portfolio/items/inugami-korone", "subreddit": "/r/hololive", "center": [254.5, 720.5], "path": [[248.5, 715.5], [248.5, 721.5], [249.5, 722.5], [249.5, 723.5], [251.5, 725.5], [257.5, 725.5], [259.5, 723.5], [259.5, 722.5], [260.5, 721.5], [260.5, 715.5], [248.5, 715.5]]},
{"id": "u0zu5h", "submitted_by": "AnonymousRandPerson", "name": "Among Us crewmates", "description": "", "website": "https://en.wikipedia.org/wiki/Among_Us", "subreddit": "", "center": [1318.5, 397.5], "path": [[1332.5, 383.5], [1330.5, 385.5], [1330.5, 386.5], [1330.5, 390.5], [1332.5, 392.5], [1335.5, 392.5], [1335.5, 383.5], [1332.5, 383.5], [1287.5, 413.5], [1287.5, 418.5], [1290.5, 418.5], [1292.5, 416.5], [1292.5, 415.5], [1290.5, 413.5], [1287.5, 413.5]]},
{"id": "u0zsl2", "submitted_by": "HydricFox", "name": "Mexican Tacos and Avocado", "description": "It was nuked by polish streamers. Although the flag was recovered, the pixel art never was built again due to mayor interest in the new Mexican flag of the second canvas expansion. (Fun fact: The avocado was meant to be originally a lime but everyone misunderstood it)", "website": "", "subreddit": "/r/PlaceMexico", "center": [985.5, 217.5], "path": [[979.5, 229.5], [977.5, 229.5], [976.5, 228.5], [975.5, 228.5], [974.5, 227.5], [973.5, 226.5], [973.5, 223.5], [971.5, 223.5], [970.5, 224.5], [968.5, 224.5], [967.5, 223.5], [965.5, 223.5], [964.5, 222.5], [964.5, 221.5], [963.5, 220.5], [963.5, 215.5], [964.5, 214.5], [964.5, 213.5], [970.5, 207.5], [971.5, 207.5], [972.5, 206.5], [973.5, 206.5], [974.5, 205.5], [976.5, 205.5], [977.5, 204.5], [985.5, 204.5], [986.5, 205.5], [988.5, 205.5], [989.5, 206.5], [990.5, 206.5], [990.5, 208.5], [993.5, 208.5], [994.5, 209.5], [996.5, 209.5], [997.5, 210.5], [998.5, 211.5], [999.5, 211.5], [1000.5, 212.5], [1001.5, 213.5], [1001.5, 214.5], [1005.5, 218.5], [1005.5, 219.5], [1006.5, 220.5], [1006.5, 224.5], [1008.5, 224.5], [1006.5, 226.5], [1006.5, 228.5], [1005.5, 229.5], [1004.5, 229.5], [1003.5, 230.5], [1002.5, 230.5], [1002.5, 232.5], [1001.5, 233.5], [997.5, 233.5], [998.5, 232.5], [998.5, 230.5], [996.5, 230.5], [995.5, 229.5], [994.5, 229.5], [993.5, 228.5], [993.5, 227.5], [990.5, 227.5], [993.5, 224.5], [993.5, 223.5], [991.5, 223.5], [990.5, 224.5], [989.5, 224.5], [988.5, 225.5], [987.5, 225.5], [986.5, 226.5], [985.5, 226.5], [984.5, 227.5], [982.5, 227.5], [981.5, 228.5], [980.5, 228.5], [979.5, 229.5]]},
{"id": "u0zlmh", "submitted_by": "AnonymousRandPerson", "name": "Hanako Ikezawa", "description": "One of the main characters in Katawa Shoujo.", "website": "https://katawashoujo.fandom.com/wiki/Hanako_Ikezawa", "subreddit": "/r/katawashoujo", "center": [1593.5, 1179.5], "path": [[1589.5, 1172.5], [1587.5, 1174.5], [1587.5, 1175.5], [1586.5, 1176.5], [1586.5, 1183.5], [1588.5, 1185.5], [1596.5, 1185.5], [1597.5, 1184.5], [1599.5, 1184.5], [1599.5, 1174.5], [1597.5, 1172.5]]},
{"id": "u0zksr", "submitted_by": "beeplace", "name": "A bee", "description": "designed by u/beeplace", "website": "", "subreddit": "", "center": [759.5, 564.5], "path": [[755.5, 559.5], [763.5, 559.5], [763.5, 569.5], [755.5, 569.5], [755.5, 559.5]]},
{"id": "u0z7lv", "submitted_by": "MercurianTerr", "name": "Goby", "description": "The mascot and logo of the CWRU Fighting Gobies, a college Ultimate Frisbee team.", "website": "https://ultimate.case.edu/", "subreddit": "", "center": [1273.5, 1029.5], "path": [[1268.5, 1023.5], [1277.5, 1023.5], [1279.5, 1034.5], [1269.5, 1034.5], [1268.5, 1023.5]]},
{"id": "u0z76f", "submitted_by": "AnonymousRandPerson", "name": "Primogems", "description": "The currency of Genshin Impact", "website": "https://genshin-impact.fandom.com/wiki/Primogem", "subreddit": "/r/GenshinPlace, /r/Genshin_Impact", "center": [1848.5, 741.5], "path": [[1840.5, 729.5], [1838.5, 733.5], [1834.5, 735.5], [1838.5, 737.5], [1839.5, 740.5], [1841.5, 749.5], [1841.5, 750.5], [1840.5, 752.5], [1836.5, 754.5], [1840.5, 756.5], [1842.5, 760.5], [1844.5, 756.5], [1848.5, 754.5], [1844.5, 752.5], [1843.5, 748.5], [1841.5, 740.5], [1842.5, 737.5], [1846.5, 735.5], [1863.5, 732.5], [1866.5, 734.5], [1868.5, 738.5], [1870.5, 734.5], [1873.5, 732.5], [1870.5, 730.5], [1868.5, 726.5], [1866.5, 730.5], [1863.5, 732.5], [1846.5, 735.5], [1842.5, 733.5], [1840.5, 729.5]]},
{"id": "u0z2xh", "submitted_by": "AnonymousRandPerson", "name": "Venti", "description": "An archon and a playable character in Genshin Impact. He is dressed in Dutch clothing as part of a pact with the Dutch community.", "website": "https://genshin-impact.fandom.com/wiki/Venti", "subreddit": "/r/Genshin_Impact, /r/placeNE", "center": [1162.5, 28.5], "path": [[1160.5, 13.5], [1160.5, 16.5], [1157.5, 21.5], [1156.5, 21.5], [1154.5, 19.5], [1152.5, 21.5], [1152.5, 22.5], [1154.5, 24.5], [1154.5, 25.5], [1153.5, 26.5], [1153.5, 29.5], [1155.5, 32.5], [1157.5, 36.5], [1156.5, 37.5], [1156.5, 39.5], [1159.5, 39.5], [1159.5, 42.5], [1165.5, 42.5], [1165.5, 39.5], [1168.5, 39.5], [1168.5, 36.5], [1170.5, 34.5], [1170.5, 33.5], [1171.5, 32.5], [1171.5, 26.5], [1170.5, 25.5], [1170.5, 24.5], [1172.5, 22.5], [1172.5, 21.5], [1170.5, 19.5], [1168.5, 21.5], [1167.5, 21.5], [1165.5, 16.5], [1164.5, 13.5], [1160.5, 13.5]]},
{"id": "u0z0do", "submitted_by": "Hootsloop", "name": "Transgender flag", "description": "A flag made by the transgender community", "website": "https://en.wikipedia.org/wiki/Transgender_flag", "subreddit": "", "center": [46.5, 1017.5], "path": [[35.5, 1014.5], [35.5, 1020.5], [57.5, 1020.5], [57.5, 1014.5]]},
{"id": "u0yo2a", "submitted_by": "NurMarvin", "name": "Hüpferklan", "description": "A small, private Discord community of individuals who enjoy laughing and talking about axolotls. It developed as an off-spring from the public Discord community for the German development team \"CCBlueX\".", "website": "https://ccbluex.net", "subreddit": "", "center": [1514.5, 604.5], "path": [[1493.5, 601.5], [1493.5, 607.5], [1534.5, 607.5], [1534.5, 601.5]]},
{"id": "u0ym4w", "submitted_by": "flameduck", "name": "Rubber Ducky", "description": "Recreation of a rubber duck, made by Domohead and their Discord server Duck World. The specific duck image used is Domohead's profile picture. The eye was made blue as a nod to a group that was originally building a blue robot in the same spot.", "website": "", "subreddit": "", "center": [621.5, 903.5], "path": [[614.5, 901.5], [614.5, 902.5], [616.5, 904.5], [617.5, 908.5], [618.5, 909.5], [624.5, 909.5], [624.5, 908.5], [626.5, 907.5], [627.5, 906.5], [627.5, 899.5], [626.5, 899.5], [625.5, 900.5], [624.5, 900.5], [621.5, 897.5], [620.5, 897.5], [617.5, 899.5], [617.5, 900.5], [617.5, 900.5]]},
{"id": "u0yjrm", "submitted_by": "NecroseusAnastasia", "name": "King Necroseus, The Black Knight", "description": "Necroseus is a prominent character from the 'Soulwrought Legacies' series of dark fantasy novels, which is in the early stages of being written by its two authors. He is an ominous force within the history of the world, and by way of waraxe and black magic, he forged his reputation as living myth. This pixel art bust of his likeness was built through the effort and maintenance of the authors and their friends, and coexisted amongst the Shovel Knight characters for the latter two days of r/place until the whiteout. The Shovel Knight builders, not knowing his origin, affectionately called him 'Drip Knight.' On the r/place Atlas, this character was mistook for King Knight, a character from Shovel Knight.", "website": "", "subreddit": "", "center": [1808.5, 345.5], "path": [[1801.5, 346.5], [1805.5, 343.5], [1805.5, 338.5], [1808.5, 336.5], [1811.5, 338.5], [1811.5, 343.5], [1815.5, 346.5], [1815.5, 347.5], [1811.5, 351.5], [1805.5, 351.5]]},
{"id": "u0xx82", "submitted_by": "AnonymousRandPerson", "name": "MiniKirb", "description": "MiniKirb is a Kirby with a top hat. It was originally made by Xyloba and was adopted by Team Burgy soon after creation.", "website": "https://en.wikipedia.org/wiki/Kirby_(character)", "subreddit": "/r/Burgy", "center": [1922.5, 340.5], "path": [[1920.5, 335.5], [1920.5, 337.5], [1919.5, 337.5], [1919.5, 340.5], [1918.5, 340.5], [1918.5, 342.5], [1919.5, 342.5], [1919.5, 344.5], [1925.5, 344.5], [1925.5, 342.5], [1926.5, 342.5], [1926.5, 340.5], [1925.5, 340.5], [1925.5, 337.5], [1924.5, 337.5], [1924.5, 335.5]]},
{"id": "u0xwma", "submitted_by": "AnonymousRandPerson", "name": "Burgy", "description": "Burgy (a fusion of Kirby and a burger) is fan art made by James Turner, adapted by the Celeste speedrunning community and derived into many sub-fan-arts.", "website": "https://en.wikipedia.org/wiki/Kirby_(character)", "subreddit": "/r/Burgy", "center": [1930.5, 339.5], "path": [[1928.5, 334.5], [1926.5, 336.5], [1926.5, 337.5], [1925.5, 337.5], [1925.5, 340.5], [1926.5, 340.5], [1926.5, 343.5], [1927.5, 343.5], [1927.5, 344.5], [1932.5, 344.5], [1932.5, 343.5], [1934.5, 341.5], [1934.5, 340.5], [1935.5, 340.5], [1935.5, 337.5], [1934.5, 337.5], [1934.5, 336.5], [1932.5, 334.5], [1928.5, 334.5]]},
{"id": "u0x7ao", "submitted_by": "Lemonwires", "name": "Bomberman", "description": "The character \"Bomberman\" from the video game series of the same name. It was originally developed by Hudson Soft.", "website": "", "subreddit": "/r/bomberman", "center": [557.5, 1791.5], "path": [[564.5, 1801.5], [550.5, 1801.5], [550.5, 1796.5], [549.5, 1794.5], [551.5, 1792.5], [551.5, 1781.5], [554.5, 1781.5], [556.5, 1779.5], [557.5, 1779.5], [559.5, 1780.5], [560.5, 1781.5], [563.5, 1781.5], [563.5, 1792.5], [564.5, 1793.5], [565.5, 1795.5], [563.5, 1797.5]]},
{"id": "u0wyvt", "submitted_by": "AnonymousRandPerson", "name": "Flag of Argentina", "description": "", "website": "https://en.wikipedia.org/wiki/Argentina", "subreddit": "/r/argentina", "center": [453.5, 1664.5], "path": [[448.5, 1660.5], [448.5, 1667.5], [457.5, 1667.5], [457.5, 1660.5], [448.5, 1660.5]]},
{"id": "u0wh01", "submitted_by": "ProfessionalFish8505", "name": "Cherish Ball", "description": "A pure red pokeball with an indents around the center. It's only used for event pokemon, special pokemon received from limited time give-aways or other unique means.", "website": "", "subreddit": "/r/pokemon", "center": [1055.5, 708.5], "path": [[1049.5, 711.5], [1049.5, 705.5], [1050.5, 705.5], [1050.5, 704.5], [1051.5, 703.5], [1052.5, 703.5], [1053.5, 702.5], [1057.5, 702.5], [1058.5, 703.5], [1059.5, 703.5], [1060.5, 704.5], [1060.5, 705.5], [1061.5, 705.5], [1061.5, 711.5], [1060.5, 711.5], [1060.5, 712.5], [1059.5, 713.5], [1058.5, 713.5], [1057.5, 714.5], [1053.5, 714.5], [1052.5, 713.5], [1051.5, 713.5], [1050.5, 712.5], [1050.5, 711.5]]},
{"id": "u0wf5i", "submitted_by": "ProfessionalFish8505", "name": "Dream Ball", "description": "A pink and purple pokeball with a wave-like pattern. In generation 5, it was used to catch pokemon encountered in the dream world, which could have hidden abilities. In generation 8, they were given a use for normal catching, being skilled at catching sleeping pokemon.", "website": "", "subreddit": "/r/pokemon", "center": [1043.5, 708.5], "path": [[1037.5, 711.5], [1037.5, 705.5], [1038.5, 704.5], [1039.5, 703.5], [1040.5, 703.5], [1041.5, 702.5], [1045.5, 702.5], [1046.5, 703.5], [1047.5, 703.5], [1048.5, 704.5], [1048.5, 705.5], [1049.5, 705.5], [1049.5, 711.5], [1048.5, 711.5], [1048.5, 712.5], [1047.5, 713.5], [1046.5, 713.5], [1045.5, 714.5], [1041.5, 714.5], [1040.5, 713.5], [1039.5, 713.5], [1038.5, 712.5], [1038.5, 711.5], [1037.5, 711.5]]},
{"id": "u0w67f", "submitted_by": "ProfessionalFish8505", "name": "LGBT Traffic Jam", "description": "A series of cars on the /r/fuckcars highway that make up different pride colors. From left to right, we have the gay male pride flag, the trans flag, the lesbian flag, and the bisexual flag.", "website": "", "subreddit": "", "center": [1081.5, 716.5], "path": [[1069.5, 716.5], [1093.5, 716.5], [1069.5, 716.5]]},
{"id": "u0vply", "submitted_by": "monarchcycoldia", "name": "Flag of Cycoldia", "description": "The first location of the complete flag of Cycoldia, a micronation located insice of Houston. This later was taken over by a banner of a university, before being relocated 3 more times.", "website": "https://micronations.wiki/wiki/Grand_Republic_of_Cycoldia", "subreddit": "", "center": [1222.5, 48.5], "path": [[1214.5, 43.5], [1214.5, 53.5], [1229.5, 53.5], [1229.5, 43.5]]},
{"id": "u0vm1i", "submitted_by": "ProfessionalFish8505", "name": "Beast Ball", "description": "A pokeball designed to catch Ultra Beasts, a group of extradimensional pokemon introduced in Pokemon's 7th generation. While normal pokeballs struggle to catch Ultra Beasts, the Beast Ball is the opposite, struggling to catch any other Pokemon.", "website": "", "subreddit": "/r/Pokemon", "center": [1031.5, 708.5], "path": [[1027.5, 714.5], [1027.5, 713.5], [1026.5, 713.5], [1026.5, 711.5], [1025.5, 711.5], [1025.5, 705.5], [1026.5, 705.5], [1026.5, 704.5], [1027.5, 703.5], [1028.5, 703.5], [1029.5, 702.5], [1033.5, 702.5], [1034.5, 703.5], [1035.5, 703.5], [1036.5, 704.5], [1036.5, 705.5], [1037.5, 705.5], [1037.5, 711.5], [1036.5, 711.5], [1036.5, 712.5], [1035.5, 713.5], [1034.5, 714.5], [1027.5, 714.5]]},
{"id": "u0vaga", "submitted_by": "Kolix1", "name": "Draxi", "description": "Draxi is a furry artist and vtuber from the Hispanic Community :3\nTwitter:@Draxi_", "website": "https://www.twitch.tv/draxi_vt", "subreddit": "/u/Drexaco", "center": [411.5, 1782.5], "path": [[408.5, 1779.5], [408.5, 1785.5], [414.5, 1785.5], [414.5, 1779.5], [408.5, 1779.5]]},
{"id": "u0v53w", "submitted_by": "Ezoiar", "name": "Poundtown Ticket", "description": "A ticket from a community going with the name 'Poundtown'", "website": "", "subreddit": "", "center": [1057.5, 370.5], "path": [[1052.5, 368.5], [1061.5, 368.5], [1061.5, 372.5], [1052.5, 372.5]]},
{"id": "u0v3d9", "submitted_by": "Ezoiar", "name": "Sackboy's eyes", "description": "The character Sackboy from LittleBigPlanet. It was created by Poundtown after a deal was created by LBP Union and Poundtown to protect each other.", "website": "", "subreddit": "", "center": [1056.5, 376.5], "path": [[1051.5, 374.5], [1061.5, 374.5], [1061.5, 378.5], [1051.5, 378.5]]},
{"id": "u0uywc", "submitted_by": "AnonymousRandPerson", "name": "Gig 'em", "description": "Signature phrase among Texas A&M University students and fans.", "website": "https://www.tamu.edu/traditions/aggie-culture/aggie-terminology/index.html", "subreddit": "/r/aggies", "center": [877.5, 1965.5], "path": [[872.5, 1959.5], [872.5, 1970.5], [882.5, 1970.5], [882.5, 1959.5], [872.5, 1959.5]]},
{"id": "u0uxpx", "submitted_by": "Christ-is-King-777", "name": "Light Fury", "description": "This is the Light Fury that appeared in the 2019 film \"How to Train Your Dragon: The Hidden World\", the triquel to the film \"How To Train Your Dragon\". In this film, she falls in love with Toothless, the Night Fury from the first film, which can be found at co-ordinates \"835, 686\".\nThe subreddit would later make efforts to draw the 3 children of Toothless and the Light Fury, nicknamed \"Night Lights\", at co-ordinates \"726, 1769\".\nThe Light Fury was overtaken by Moroco's Red Extention, but Toothless and the Night Lights lived on until the white void.", "website": "", "subreddit": "/r/httyd", "center": [1645.5, 782.5], "path": [[1626.5, 798.5], [1664.5, 798.5], [1664.5, 767.5], [1656.5, 766.5], [1655.5, 765.5], [1650.5, 765.5], [1650.5, 769.5], [1639.5, 769.5], [1639.5, 765.5], [1635.5, 765.5], [1635.5, 766.5], [1634.5, 767.5], [1627.5, 767.5], [1626.5, 767.5]]},
{"id": "u0usw4", "submitted_by": "ProfessionalFish8505", "name": "Shiny Voltorb", "description": "The ball pokemon, this electric type is known to mimic pokeballs in the games, and here it is doing so on /r/place. Hopefully it doesn't explode here like it does in the games! This is the shiny form of voltorb, a rare color variation, with most being red and white instead.", "website": "", "subreddit": "/r/pokemon", "center": [1019.5, 708.5], "path": [[1013.5, 711.5], [1013.5, 705.5], [1014.5, 705.5], [1014.5, 704.5], [1015.5, 703.5], [1016.5, 703.5], [1017.5, 702.5], [1021.5, 702.5], [1022.5, 703.5], [1023.5, 703.5], [1024.5, 704.5], [1024.5, 705.5], [1025.5, 705.5], [1025.5, 711.5], [1024.5, 711.5], [1024.5, 712.5], [1023.5, 713.5], [1022.5, 713.5], [1021.5, 714.5], [1017.5, 714.5], [1016.5, 713.5], [1015.5, 713.5], [1014.5, 712.5], [1014.5, 711.5], [1014.5, 711.5], [1014.5, 711.5]]},
{"id": "u0uqmf", "submitted_by": "ProfessionalFish8505", "name": "Dusk Ball", "description": "A Dusk Ball is a green pokeball that excels at catching pokemon at night or in dark areas like caves. It has an even higher catch rate than an ultra ball when under these conditions, but it acts like a normal pokeball otherwise.", "website": "", "subreddit": "/r/pokemon", "center": [1007.5, 708.5], "path": [[1001.5, 711.5], [1001.5, 705.5], [1002.5, 705.5], [1002.5, 704.5], [1003.5, 703.5], [1004.5, 703.5], [1005.5, 702.5], [1009.5, 702.5], [1010.5, 703.5], [1011.5, 703.5], [1012.5, 704.5], [1012.5, 705.5], [1013.5, 705.5], [1013.5, 711.5], [1012.5, 711.5], [1011.5, 713.5], [1010.5, 713.5], [1009.5, 714.5], [1005.5, 714.5], [1004.5, 713.5], [1003.5, 713.5], [1002.5, 712.5], [1002.5, 711.5], [1001.5, 711.5]]},
{"id": "u0unl8", "submitted_by": "monarchcycoldia", "name": "Flag of Cycoldia", "description": "A micronation created on 6 November 2018. The flag design on r/place had moved 5 times before finally finding this location, then being raided after completion. The project was named the CYC Flag Project", "website": "https://micronations.wiki/wiki/Grand_Republic_of_Cycoldia", "subreddit": "", "center": [324.5, 1901.5], "path": [[318.5, 1898.5], [318.5, 1904.5], [330.5, 1904.5], [330.5, 1898.5]]},
{"id": "u0um9i", "submitted_by": "ProfessionalFish8505", "name": "Luxury Ball", "description": "A fancy pokeball with a stylish black, red, and gold design. While functionally it is no better than a normal pokeball, the pokemon appreciates it, and will build friendship with the trainer more quickly. This is useful for moves like Return, or for pokemon that need high friendship before they evolve.", "website": "", "subreddit": "/r/pokemon", "center": [995.5, 708.5], "path": [[989.5, 711.5], [989.5, 705.5], [990.5, 705.5], [990.5, 704.5], [991.5, 703.5], [992.5, 703.5], [993.5, 702.5], [997.5, 702.5], [998.5, 703.5], [999.5, 703.5], [1000.5, 704.5], [1000.5, 705.5], [1001.5, 705.5], [1001.5, 711.5], [1000.5, 711.5], [1000.5, 712.5], [999.5, 713.5], [998.5, 713.5], [997.5, 714.5], [993.5, 714.5], [992.5, 713.5], [991.5, 713.5], [990.5, 712.5], [990.5, 711.5], [990.5, 711.5], [989.5, 711.5]]},
{"id": "u0ui2e", "submitted_by": "ProfessionalFish8505", "name": "Premier Ball", "description": "A white pokeball with a red dividing line. You obtain it by buying ten or more pokeballs at once. Functionally it's the exact same as a normal pokeball, but it looks cool!", "website": "", "subreddit": "/r/pokemon", "center": [983.5, 708.5], "path": [[977.5, 711.5], [977.5, 705.5], [978.5, 705.5], [978.5, 704.5], [979.5, 703.5], [980.5, 703.5], [981.5, 702.5], [985.5, 702.5], [986.5, 703.5], [987.5, 703.5], [988.5, 704.5], [988.5, 705.5], [989.5, 706.5], [989.5, 710.5], [989.5, 711.5], [988.5, 711.5], [988.5, 711.5], [988.5, 712.5], [987.5, 713.5], [986.5, 713.5], [985.5, 714.5], [981.5, 714.5], [980.5, 713.5], [979.5, 713.5], [978.5, 712.5], [978.5, 711.5], [977.5, 711.5]]},
{"id": "u0uhsi", "submitted_by": "AnonymousRandPerson", "name": "NCD", "description": "The initials of r/NonCredibleDefense.", "website": "", "subreddit": "/r/NonCredibleDefense", "center": [864.5, 114.5], "path": [[861.5, 103.5], [861.5, 124.5], [866.5, 124.5], [866.5, 103.5]]},
{"id": "u0ugvt", "submitted_by": "iKunX", "name": "Ghost Power 13", "description": "Art made by Ghost Power community in one of his streamings. GF also means \"Ghost Force\", how he calls his community.\nDISCLAIMER: Not related with \"Ghost Force\" animated series.", "website": "https://twitch.tv/gozpawa", "subreddit": "", "center": [1831.5, 322.5], "path": [[1824.5, 310.5], [1838.5, 310.5], [1838.5, 333.5], [1823.5, 333.5], [1823.5, 310.5]]},
{"id": "u0ugt6", "submitted_by": "AnonymousRandPerson", "name": "Neoliberalism globe", "description": "The logo of neoliberalism.", "website": "https://neoliberalproject.org/", "subreddit": "/r/neoliberal", "center": [822.5, 114.5], "path": [[819.5, 100.5], [818.5, 101.5], [816.5, 101.5], [814.5, 103.5], [813.5, 103.5], [811.5, 105.5], [811.5, 106.5], [809.5, 108.5], [809.5, 110.5], [808.5, 111.5], [808.5, 117.5], [809.5, 118.5], [809.5, 120.5], [811.5, 122.5], [811.5, 123.5], [813.5, 125.5], [814.5, 125.5], [816.5, 127.5], [818.5, 127.5], [819.5, 128.5], [825.5, 128.5], [826.5, 127.5], [828.5, 127.5], [830.5, 125.5], [831.5, 125.5], [833.5, 123.5], [833.5, 122.5], [835.5, 120.5], [835.5, 118.5], [836.5, 117.5], [836.5, 111.5], [835.5, 110.5], [835.5, 108.5], [833.5, 106.5], [833.5, 105.5], [831.5, 103.5], [830.5, 103.5], [828.5, 101.5], [826.5, 101.5], [825.5, 100.5]]},
{"id": "u0uafq", "submitted_by": "AnonymousRandPerson", "name": "Rainbow flag", "description": "A symbol of the LGBT community.", "website": "https://en.wikipedia.org/wiki/Rainbow_flag_(LGBT)", "subreddit": "/r/neoliberal, /r/NonCredibleDefense", "center": [807.5, 114.5], "path": [[799.5, 99.5], [799.5, 129.5], [824.5, 129.5], [824.5, 127.5], [819.5, 127.5], [815.5, 125.5], [812.5, 122.5], [809.5, 117.5], [809.5, 111.5], [810.5, 108.5], [814.5, 104.5], [818.5, 102.5], [819.5, 101.5], [824.5, 101.5], [824.5, 99.5], [799.5, 99.5]]},
{"id": "u0u3eh", "submitted_by": "lindohuh", "name": "Mini Panama flags", "description": "Mini panama flags located in the Panama flag", "website": "", "subreddit": "/r/panama", "center": [1222.5, 1898.5], "path": [[1201.5, 1893.5], [1242.5, 1893.5], [1242.5, 1902.5], [1201.5, 1902.5]]},
{"id": "u0txtl", "submitted_by": "Renex_2552", "name": "Bort", "description": "A little pixelart created by the community of the argentinian youtuber and streamer \"Astrobort\", was deleted by the BAL logo shortafter.", "website": "https://www.twitch.tv/astrobort", "subreddit": "", "center": [1586.5, 1336.5], "path": [[1576.5, 1334.5], [1596.5, 1334.5], [1596.5, 1338.5], [1576.5, 1338.5]]},
{"id": "u0tidp", "submitted_by": "AnonymousRandPerson", "name": "Among Us crewmates", "description": "", "website": "https://en.wikipedia.org/wiki/Among_Us", "subreddit": "", "center": [1009.5, 1900.5], "path": [[1002.5, 1897.5], [1001.5, 1898.5], [1001.5, 1899.5], [1003.5, 1901.5], [1005.5, 1901.5], [1007.5, 1906.5], [1006.5, 1907.5], [1006.5, 1908.5], [1007.5, 1909.5], [1007.5, 1911.5], [1011.5, 1911.5], [1011.5, 1905.5], [1008.5, 1905.5], [1006.5, 1901.5], [1006.5, 1897.5], [1015.5, 1896.5], [1017.5, 1896.5], [1019.5, 1894.5], [1019.5, 1893.5], [1017.5, 1891.5], [1014.5, 1891.5], [1014.5, 1895.5], [1006.5, 1896.5], [1003.5, 1896.5]]},
{"id": "u0tcd8", "submitted_by": "LeGrandSarrazin", "name": "The Duel on Mustafar French Flag", "description": "Small French Flag prominently displayed beside the flashing sabers of Anakin and Obi-Wan. Could also be Dutch, but they didn't claim it first! ;P", "website": "https://en.wikipedia.org/wiki/France", "subreddit": "/r/PlaceFrance", "center": [709.5, 1588.5], "path": [[705.5, 1593.5], [705.5, 1586.5], [709.5, 1582.5], [712.5, 1582.5], [712.5, 1593.5], [705.5, 1593.5]]},
{"id": "u0syph", "submitted_by": "AnonymousRandPerson", "name": "Lupi", "description": "One of the protagonists in Paranormal Order: Enigma of Fear.", "website": "https://ordemparanormal.fandom.com/wiki/Lupi", "subreddit": "", "center": [1088.5, 549.5], "path": [[1089.5, 527.5], [1087.5, 528.5], [1087.5, 530.5], [1086.5, 531.5], [1086.5, 536.5], [1085.5, 537.5], [1085.5, 541.5], [1085.5, 547.5], [1083.5, 550.5], [1081.5, 550.5], [1079.5, 548.5], [1076.5, 548.5], [1073.5, 550.5], [1073.5, 555.5], [1070.5, 559.5], [1070.5, 567.5], [1074.5, 567.5], [1074.5, 562.5], [1077.5, 561.5], [1080.5, 566.5], [1083.5, 566.5], [1083.5, 564.5], [1080.5, 562.5], [1086.5, 559.5], [1088.5, 567.5], [1093.5, 567.5], [1092.5, 565.5], [1091.5, 558.5], [1094.5, 558.5], [1096.5, 566.5], [1100.5, 566.5], [1098.5, 561.5], [1099.5, 548.5], [1098.5, 544.5], [1100.5, 544.5], [1102.5, 542.5], [1102.5, 539.5], [1100.5, 537.5], [1100.5, 527.5], [1097.5, 527.5], [1095.5, 531.5], [1092.5, 531.5], [1090.5, 527.5]]},
{"id": "u0sxef", "submitted_by": "AnonymousRandPerson", "name": "Mia", "description": "One of the protagonists in Paranormal Order: Enigma of Fear.", "website": "https://ordemparanormal.fandom.com/wiki/Mia", "subreddit": "", "center": [1090.5, 532.5], "path": [[1082.5, 499.5], [1074.5, 508.5], [1077.5, 524.5], [1080.5, 530.5], [1081.5, 534.5], [1079.5, 544.5], [1083.5, 559.5], [1080.5, 561.5], [1082.5, 564.5], [1101.5, 566.5], [1102.5, 563.5], [1100.5, 562.5], [1099.5, 553.5], [1104.5, 549.5], [1104.5, 539.5], [1102.5, 526.5], [1102.5, 523.5], [1104.5, 519.5], [1104.5, 511.5], [1098.5, 504.5], [1090.5, 503.5], [1083.5, 499.5]]},
{"id": "u0swce", "submitted_by": "8bitInferno", "name": "The Ruby Hog", "description": "A small art created by a group of friends to represent their D&D party The Ruby Hogs.", "website": "", "subreddit": "", "center": [1930.5, 1367.5], "path": [[1923.5, 1361.5], [1936.5, 1361.5], [1936.5, 1373.5], [1924.5, 1373.5], [1924.5, 1373.5], [1923.5, 1373.5]]},
{"id": "u0s3hg", "submitted_by": "Large-Consequence899", "name": "Condesi", "description": "The popular discord bot", "website": "", "subreddit": "", "center": [1565.5, 1509.5], "path": [[1561.5, 1505.5], [1569.5, 1505.5], [1569.5, 1512.5], [1561.5, 1512.5], [1561.5, 1505.5]]},
{"id": "u0rxa6", "submitted_by": "Javgarag", "name": "Paintbrush", "description": "A paintbrush made by the Epic Mickey Wiki team in honor of the videogame Epic Mickey, released in 2010 for the Nintendo Wii.", "website": "https://epicmickey.fandom.com/wiki/Epic_Mickey_Wiki", "subreddit": "", "center": [1115.5, 484.5], "path": [[1117.5, 479.5], [1117.5, 481.5], [1113.5, 481.5], [1113.5, 479.5], [1114.5, 479.5], [1114.5, 478.5], [1117.5, 478.5], [1116.5, 478.5], [1116.5, 477.5], [1115.5, 476.5], [1114.5, 482.5], [1114.5, 483.5], [1114.5, 484.5], [1114.5, 485.5], [1114.5, 485.5], [1115.5, 486.5], [1115.5, 485.5], [1116.5, 485.5], [1116.5, 484.5], [1116.5, 483.5], [1116.5, 482.5], [1115.5, 482.5]]},
{"id": "u0rc00", "submitted_by": "AnonymousRandPerson", "name": "Brazil-Ireland heart", "description": "A heart depicting the flags of Brazil and Ireland.", "website": "", "subreddit": "/r/ireland, /r/brasil", "center": [1451.5, 1808.5], "path": [[1447.5, 1803.5], [1444.5, 1806.5], [1444.5, 1809.5], [1451.5, 1816.5], [1458.5, 1809.5], [1458.5, 1806.5], [1455.5, 1803.5], [1453.5, 1803.5], [1451.5, 1805.5], [1449.5, 1803.5], [1447.5, 1803.5]]},
{"id": "u0r2d2", "submitted_by": "AnonymousRandPerson", "name": "Sweden-Finland heart", "description": "A heart depicting the flags of Sweden and Finland.", "website": "", "subreddit": "/r/place_nordicunion, /r/Sweden, /r/Suomi", "center": [532.5, 120.5], "path": [[530.5, 117.5], [528.5, 119.5], [528.5, 120.5], [532.5, 124.5], [536.5, 120.5], [536.5, 119.5], [534.5, 117.5], [530.5, 117.5]]},
{"id": "u0quu8", "submitted_by": "LimpSubstance5357", "name": "Hatsune Miku", "description": "A small pixel art of Hatsune Miku, the famous vocaloid character", "website": "", "subreddit": "/r/vocaloid", "center": [796.5, 701.5], "path": [[786.5, 693.5], [806.5, 693.5], [806.5, 709.5], [786.5, 709.5], [786.5, 709.5]]},
{"id": "u0qsu2", "submitted_by": "AnonymousRandPerson", "name": "Ireland-France heart", "description": "A heart depicting the flags of Ireland and France.", "website": "", "subreddit": "/r/PlaceIreland, /r/PlaceFrance", "center": [164.5, 497.5], "path": [[161.5, 492.5], [158.5, 495.5], [158.5, 498.5], [163.5, 503.5], [164.5, 503.5], [169.5, 498.5], [169.5, 495.5], [166.5, 492.5]]},
{"id": "u0qs4m", "submitted_by": "AnonymousRandPerson", "name": "Italian cheese", "description": "Italy is known for its large variety of cheeses. This cheese was a compromise between the French and the Italians, after the Italians kept trying to turn the French flag on the wine bottle into an Italian flag.", "website": "https://en.wikipedia.org/wiki/List_of_Italian_cheeses", "subreddit": "/r/italy", "center": [151.5, 492.5], "path": [[150.5, 483.5], [142.5, 492.5], [140.5, 492.5], [140.5, 498.5], [160.5, 498.5], [160.5, 486.5], [157.5, 483.5], [150.5, 483.5]]},
{"id": "u0qp3m", "submitted_by": "AnonymousRandPerson", "name": "Vols-France heart", "description": "A heart with the colors of the Tennessee Vols and the flag of France.", "website": "", "subreddit": "/r/ockytop, /r/PlaceFrance", "center": [125.5, 452.5], "path": [[122.5, 448.5], [120.5, 450.5], [120.5, 452.5], [125.5, 457.5], [130.5, 452.5], [130.5, 450.5], [128.5, 448.5], [127.5, 448.5], [126.5, 449.5], [124.5, 449.5], [123.5, 448.5], [122.5, 448.5]]},
{"id": "u0qj8t", "submitted_by": "AnonymousRandPerson", "name": "France-Monado heart", "description": "A heart with the flag of France and the colors of the Monado from Xenoblade Chronicles.", "website": "", "subreddit": "/r/franceplace, /r/Xenoblade_Chronicles", "center": [1183.5, 743.5], "path": [[1182.5, 738.5], [1178.5, 742.5], [1178.5, 744.5], [1182.5, 748.5], [1185.5, 748.5], [1187.5, 746.5], [1187.5, 745.5], [1186.5, 744.5], [1186.5, 742.5], [1187.5, 741.5], [1187.5, 740.5], [1185.5, 738.5], [1182.5, 738.5]]},
{"id": "u0qecu", "submitted_by": "AnonymousRandPerson", "name": "France-Bolivia heart", "description": "A heart depicting the flags of France and Bolivia.", "website": "", "subreddit": "/r/franceplace, /r/bolivia", "center": [1143.5, 714.5], "path": [[1141.5, 709.5], [1138.5, 712.5], [1138.5, 715.5], [1143.5, 720.5], [1148.5, 715.5], [1148.5, 712.5], [1145.5, 709.5], [1141.5, 709.5]]},
{"id": "u0qd9o", "submitted_by": "AnonymousRandPerson", "name": "Venezuela-France hearts", "description": "Hearts depicting the flags of Venezuela and France.", "website": "", "subreddit": "/r/vzla, /r/franceplace", "center": [1200.5, 784.5], "path": [[1198.5, 774.5], [1195.5, 777.5], [1195.5, 791.5], [1200.5, 796.5], [1205.5, 791.5], [1205.5, 777.5], [1202.5, 774.5], [1201.5, 775.5], [1199.5, 775.5], [1198.5, 774.5]]},
{"id": "u0qcl9", "submitted_by": "AnonymousRandPerson", "name": "Greece-France heart", "description": "A heart depicting the flags of Greece and France.", "website": "", "subreddit": "/r/franceplace", "center": [1200.5, 759.5], "path": [[1197.5, 755.5], [1195.5, 757.5], [1195.5, 759.5], [1200.5, 764.5], [1205.5, 759.5], [1205.5, 757.5], [1203.5, 755.5], [1202.5, 755.5], [1201.5, 756.5], [1199.5, 756.5], [1198.5, 755.5], [1197.5, 755.5]]},
{"id": "u0pktk", "submitted_by": "AnonymousRandPerson", "name": "Finland-Denmark heart", "description": "A heart depicting the flags of Finland and Denmark.", "website": "", "subreddit": "/r/place_nordicunion, /r/NordicUnion, /r/suomi, /r/denmark", "center": [496.5, 141.5], "path": [[493.5, 137.5], [490.5, 140.5], [490.5, 141.5], [495.5, 146.5], [496.5, 146.5], [501.5, 141.5], [501.5, 140.5], [498.5, 137.5], [493.5, 137.5]]},
{"id": "u0pjrf", "submitted_by": "AnonymousRandPerson", "name": "Faroe Islands", "description": "The Faroe Islands as they appear on a map.", "website": "https://en.wikipedia.org/wiki/Faroe_Islands", "subreddit": "/r/place_nordicunion, /r/NordicUnion", "center": [434.5, 118.5], "path": [[430.5, 106.5], [428.5, 109.5], [428.5, 121.5], [425.5, 125.5], [418.5, 125.5], [416.5, 127.5], [415.5, 129.5], [413.5, 135.5], [415.5, 136.5], [417.5, 132.5], [421.5, 129.5], [425.5, 129.5], [433.5, 121.5], [441.5, 121.5], [442.5, 122.5], [446.5, 122.5], [450.5, 115.5], [449.5, 114.5], [446.5, 114.5], [446.5, 111.5], [444.5, 108.5], [441.5, 108.5], [439.5, 105.5], [436.5, 108.5], [432.5, 108.5], [431.5, 106.5], [430.5, 106.5]]},
{"id": "u0p97v", "submitted_by": "Janneske_2001", "name": "Zero Two attempt", "description": "Here you can see an attempt of making Zero Two. The red horns and headband are visible, same as her green eyes.", "website": "", "subreddit": "/r/zerotwo", "center": [1840.5, 1449.5], "path": [[1835.5, 1445.5], [1845.5, 1445.5], [1845.5, 1452.5], [1835.5, 1452.5], [1835.5, 1445.5]]},
{"id": "u0p0gp", "submitted_by": "AnonymousRandPerson", "name": "Aromantic flag", "description": "A flag representing the aromatic community.", "website": "https://en.wikipedia.org/wiki/Romantic_orientation#Aromanticism", "subreddit": "/r/PlacePride", "center": [459.5, 496.5], "path": [[456.5, 450.5], [456.5, 541.5], [462.5, 541.5], [462.5, 450.5], [456.5, 450.5]]},
{"id": "u0oxb5", "submitted_by": "kajnuna", "name": "Stony Brook University Logo", "description": "Logo of Stony Brook University. Covered up along with other NY universities in the last hours of r/place.", "website": "https://stonybrook.edu", "subreddit": "/r/SBU", "center": [1064.5, 243.5], "path": [[1060.5, 247.5], [1068.5, 247.5], [1068.5, 240.5], [1061.5, 239.5]]},
{"id": "u0ovcw", "submitted_by": "zum1ter", "name": "r/greenlettuce", "description": "A sign showing the subreddit name r/greenlettuce. However, this wasn't intended to read lettuce. It actually was supposed to be \"Green Lattice\" which is a subreddit with a much larger community. r/greenlettuce which had only about 80 members at the time attempted to change the letters around to advertise their own subreddit. This effort eventually failed.", "website": "", "subreddit": "/r/GreenLettuce", "center": [1094.5, 400.5], "path": [[1072.5, 393.5], [1116.5, 393.5], [1116.5, 407.5], [1072.5, 407.5], [1072.5, 393.5]]},
{"id": "u0one2", "submitted_by": "zum1ter", "name": "Juke's Towers of Hell [Former]", "description": "Juke's Towers of Hell is a platforming game on the ROBLOX platform where players are tasked with climbing very tall and difficult towers. It is notorious for its high difficulty. The three large towers (from left to right) are the Tower of Hecc (sic), the Tower of Screen Punching, and the Tower of Impossible Expectations. These are the first three towers ever added to the game, respectively. The small structures in the middle are other beloved towers in the community. Before it was destroyed, it remained on the r/greenlattice board. It can now be found down and to the right from the massive \"Leaves From The Vine\" artwork.", "website": "https://www.roblox.com/games/8562822414/Jukes-Towers-of-Hell", "subreddit": "", "center": [1004.5, 443.5], "path": [[991.5, 421.5], [1016.5, 421.5], [1016.5, 465.5], [991.5, 465.5], [991.5, 421.5]]},
{"id": "u0odqb", "submitted_by": "zum1ter", "name": "\"Colombia!\" Sign", "description": "The name of the country Colombia, made with the colors of the flag. It is found above the considerably larger Colombian flag.", "website": "", "subreddit": "", "center": [209.5, 550.5], "path": [[194.5, 548.5], [224.5, 548.5], [224.5, 552.5], [194.5, 552.5], [194.5, 548.5]]},
{"id": "u0o9vu", "submitted_by": "AnonymousRandPerson", "name": "Astérix", "description": "Titular character from the Astérix comics.", "website": "https://en.wikipedia.org/wiki/Asterix_(character)", "subreddit": "/r/franceplace", "center": [404.5, 775.5], "path": [[386.5, 764.5], [386.5, 766.5], [395.5, 774.5], [395.5, 781.5], [398.5, 784.5], [400.5, 784.5], [400.5, 788.5], [403.5, 791.5], [410.5, 791.5], [413.5, 788.5], [413.5, 787.5], [419.5, 783.5], [419.5, 780.5], [417.5, 778.5], [414.5, 778.5], [414.5, 775.5], [415.5, 774.5], [415.5, 768.5], [406.5, 760.5], [404.5, 760.5], [403.5, 759.5], [398.5, 759.5], [397.5, 761.5], [401.5, 764.5], [399.5, 766.5], [397.5, 766.5], [393.5, 764.5]]},
{"id": "u0o6yg", "submitted_by": "RocketAnny", "name": "ElMariana ZAZAZA", "description": "mexican streamer known as el mariana, this guy is very funny, we love you osvaldo. EMOBOSCADAAA EMBOSCADAA!! ^3^", "website": "https://www.twitch.tv/elmariana", "subreddit": "", "center": [1464.5, 1731.5], "path": [[1440.5, 1706.5], [1439.5, 1755.5], [1490.5, 1755.5], [1489.5, 1707.5]]},
{"id": "u0o2uy", "submitted_by": "RocketAnny", "name": "Aldogeo", "description": "Mexican twitch streamer.\nvery loved by his community for being very funny <3", "website": "https://www.twitch.tv/aldo_geo", "subreddit": "/r/Pendegeos", "center": [1508.5, 1724.5], "path": [[1491.5, 1709.5], [1491.5, 1738.5], [1526.5, 1738.5], [1525.5, 1709.5], [1510.5, 1709.5]]},
{"id": "u0ny8w", "submitted_by": "MrSergi0___", "name": "TheSergio13", "description": "Skin de minecraft del tiktoker TheSergio13", "website": "https://www.tiktok.com/@thesergio13?is_from_webapp=1&sender_device=pc", "subreddit": "/r/MrSergi0___", "center": [1766.5, 698.5], "path": [[1763.5, 695.5], [1763.5, 694.5], [1763.5, 701.5], [1769.5, 701.5], [1769.5, 694.5]]},
{"id": "u0nx4x", "submitted_by": "AnonymousRandPerson", "name": "Argentina-Blebs heart", "description": "A heart with the colors of Blebs and the flag of Argentina.", "website": "", "subreddit": "/r/argentina, /r/ArgPixelArt, /r/hrry", "center": [1554.5, 1818.5], "path": [[1552.5, 1815.5], [1550.5, 1817.5], [1550.5, 1819.5], [1554.5, 1823.5], [1558.5, 1819.5], [1558.5, 1817.5], [1556.5, 1815.5]]},
{"id": "u0nvr4", "submitted_by": "AnonymousRandPerson", "name": "Cristiano Ronaldo", "description": "Portuguese football (soccer) player, often considered one of the greatest football players of all time.", "website": "https://en.wikipedia.org/wiki/Cristiano_Ronaldo", "subreddit": "/r/portugal", "center": [1540.5, 1864.5], "path": [[1538.5, 1820.5], [1534.5, 1823.5], [1534.5, 1827.5], [1535.5, 1831.5], [1519.5, 1831.5], [1513.5, 1838.5], [1515.5, 1840.5], [1518.5, 1838.5], [1526.5, 1839.5], [1530.5, 1847.5], [1531.5, 1893.5], [1532.5, 1894.5], [1532.5, 1911.5], [1552.5, 1910.5], [1552.5, 1907.5], [1547.5, 1904.5], [1550.5, 1879.5], [1550.5, 1867.5], [1553.5, 1870.5], [1556.5, 1870.5], [1558.5, 1868.5], [1558.5, 1852.5], [1554.5, 1841.5], [1547.5, 1834.5], [1547.5, 1833.5], [1541.5, 1831.5], [1544.5, 1828.5], [1544.5, 1823.5], [1540.5, 1820.5]]},
{"id": "u0nu1q", "submitted_by": "AnonymousRandPerson", "name": "Lionel Messi", "description": "Argentine football (soccer) player, often considered one of the greatest football players of all time.", "website": "https://en.wikipedia.org/wiki/Lionel_Messi", "subreddit": "/r/argentina, /r/ArgPixelArt", "center": [1520.5, 1869.5], "path": [[1520.5, 1827.5], [1513.5, 1838.5], [1512.5, 1838.5], [1505.5, 1846.5], [1503.5, 1852.5], [1503.5, 1861.5], [1509.5, 1867.5], [1509.5, 1878.5], [1513.5, 1912.5], [1530.5, 1911.5], [1530.5, 1905.5], [1530.5, 1900.5], [1531.5, 1899.5], [1531.5, 1844.5], [1527.5, 1839.5], [1531.5, 1831.5], [1531.5, 1828.5], [1528.5, 1826.5]]}
]