Merge branch 'master' into timeline-tooltip

This commit is contained in:
Stefano 2022-04-10 12:23:11 +02:00 committed by GitHub
commit 2008edd35a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 174 additions and 37 deletions

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

BIN
web/_img/favicon-dark.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 454 B

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 192"><defs><style>.cls-1 {fill: #ff4500;}.cls-2 {fill: white;}</style></defs><polygon class="cls-1" points="154 0 154 38 39 38 39 192 0 192 0 0 154 0"/><polygon class="cls-1" points="192 38 192 192 77 192 77 153 154 153 154 38 192 38"/><polygon class="cls-1" points="154 38 68.8 68.8 123.2 123.2 154 38"/><polygon class="cls-2" points="68.8 68.8 39 153 123.2 123.2 68.8 68.8"/></svg>

After

Width:  |  Height:  |  Size: 440 B

BIN
web/_img/favicon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 474 B

1
web/_img/favicon.svg Normal file
View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 192 192"><defs><style>.cls-1 {fill: #ff4500;}.cls-2 {fill: black;}</style></defs><polygon class="cls-1" points="154 0 154 38 39 38 39 192 0 192 0 0 154 0"/><polygon class="cls-1" points="192 38 192 192 77 192 77 153 154 153 154 38 192 38"/><polygon class="cls-1" points="154 38 68.8 68.8 123.2 123.2 154 38"/><polygon class="cls-2" points="68.8 68.8 39 153 123.2 123.2 68.8 68.8"/></svg>

After

Width:  |  Height:  |  Size: 440 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><style>.cls-1 {fill: #ff4500;}.cls-2 {fill: black;}</style></defs><polygon class="cls-1" points="364 76 364 148 148 148 148 436 76 436 76 76 364 76"/><polygon class="cls-1" points="436 148 436 436 220 436 220 364 364 364 364 148 436 148"/><polygon class="cls-1" points="364 148 205 205 307 307 364 148"/><polygon class="cls-2" points="205 205 148 364 307 307 205 205"/></svg>

After

Width:  |  Height:  |  Size: 443 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 5.4 KiB

After

Width:  |  Height:  |  Size: 4.8 KiB

1
web/_img/logo.svg Normal file
View file

@ -0,0 +1 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><defs><style>.cls-1{fill:#fff;}.cls-2{fill:#ff4500;}</style></defs><rect class="cls-1" width="512" height="512"/><polygon class="cls-2" points="364 76 364 148 148 148 148 436 76 436 76 76 364 76"/><polygon class="cls-2" points="436 148 436 436 220 436 220 364 364 364 364 148 436 148"/><polygon class="cls-2" points="364 148 205 205 307 307 364 148"/><polygon points="205 205 148 364 307 307 205 205"/></svg>

After

Width:  |  Height:  |  Size: 470 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.1 KiB

After

Width:  |  Height:  |  Size: 17 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 4.5 KiB

After

Width:  |  Height:  |  Size: 52 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 14 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 44 KiB

27
web/_js/favicon.js Normal file
View file

@ -0,0 +1,27 @@
// Based on GitHub's favicon switcher. Temporary(?) fix for Chromium based browsers that won't dynamically update embedded CSS media query inside of SVG
function updateFavicon(colorScheme) {
const favicon = document.head.querySelector('.js-site-favicon[type="image/svg+xml"]')
const faviconFallback = document.head.querySelector('.js-site-favicon[type="image/png"]')
if (favicon && faviconFallback) {
if (colorScheme || colorScheme == 'dark') {
favicon.href = '_img/favicon-dark.svg';
faviconFallback.href = '_img/favicon-dark.png';
} else {
favicon.href = '_img/favicon.svg';
faviconFallback.href = '_img/favicon.png';
}
}
}
function prefersDarkColorScheme() {
return window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches
}
if (prefersDarkColorScheme()) {
// update favicon to dark on page load
updateFavicon('dark')
}
window.matchMedia('(prefers-color-scheme: dark)').addEventListener('change', () => {
updateFavicon(prefersDarkColorScheme())
})

View file

@ -14,26 +14,30 @@
-->
<!DOCTYPE html>
<html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>The 2022 /r/place Atlas</title>
<meta name="description" content="An Atlas of Reddit's /r/place, with information to each artwork of the canvas.">
<meta name="author" content="Roland Rytz">
<meta name="keywords" content="reddit, /r/place, april">
<meta name="application-name" content="2022 /r/place Atlas">
<meta name="robots" content="index, follow">
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1">
<meta name="color-scheme" content="dark">
<link rel="icon alternate" href="_img/favicon.png" type="image/png" class="js-site-favicon">
<link rel="icon" href="_img/favicon.svg" type="image/svg+xml" class="js-site-favicon">
<link href="./_css/style.css" rel="stylesheet" type="text/css" media="all">
<script type="text/javascript" src="./_js/favicon.js" defer></script>
</head>
<body>
<div id="wrapper">
<header class="aboutHeader">
<a href="./">
<img id="logo" src="./_img/logo-100x100.png" height="50" width="50" alt="">
<img id="logo" src="./_img/logo.svg" height="50" width="50" alt="">
<h1>The 2022 /r/place Atlas</h1>
</a>
<!--nav>

View file

@ -640,7 +640,7 @@
{"id": "twmsav", "submitted_by": "Kuberd", "name": "Gigachad Emote DGG", "description": "Popular Emote created by the DGG community together with the Destiny logo.", "website": "https://destiny.gg", "subreddit": "/r/destiny", "center": [1917.5, 1495.5], "path": [[1875.5, 1430.5], [1959.5, 1430.5], [1959.5, 1561.5], [1954.5, 1556.5], [1943.5, 1558.5], [1939.5, 1554.5], [1926.5, 1560.5], [1875.5, 1561.5], [1875.5, 1430.5]]},
{"id": "twmrxn", "submitted_by": "Nezarecs", "name": "Elite: Dangerous", "description": "A space simulation game. The duel coloured hearts and o7 salute represents the mutual love between the Star Citizen and Elite communities", "website": "https://www.elitedangerous.com/", "subreddit": "/r/EliteDangerous", "center": [1733.5, 101.5], "path": [[1719.5, 86.5], [1720.5, 117.5], [1745.5, 116.5], [1744.5, 107.5], [1749.5, 100.5], [1749.5, 87.5], [1719.5, 86.5]]},
{"id": "twmrnx", "submitted_by": "frosty704", "name": "Superstonk", "description": "Superstonk is a subreddit that converses in all things GameStop/GME stocks, including research, documentation, and crowd-sourced support. The face on the left is DeepFuckingValue, the original founding father of GME's short squeeze. The face on the right is Ryan Cohen, an entrepreneur who is the CEO of Chewy and is the Chairman of GameStop. He owns 11.9% of all total shares of the company.", "website": "", "subreddit": "/r/Superstonk", "center": [841.5, 795.5], "path": [[774.5, 735.5], [909.5, 736.5], [909.5, 855.5], [773.5, 855.5]]},
{"id": "twmr82", "submitted_by": "Lucas90012", "name": "gwa", "description": "gwa is a kind deity. He represents the \"Meta Studios\" discord server and the g should not be capitalized.", "website": "https://discord.gg/qMXFvwcNHM", "subreddit": "/r/gwaplace", "center": [1669.5, 525.5], "path": [[1664.5, 522.5], [1663.5, 520.5], [1664.5, 522.5], [1672.5, 522.5], [1673.5, 522.5], [1673.5, 521.5], [1674.5, 521.5], [1674.5, 520.5], [1674.5, 523.5], [1675.5, 523.5], [1675.5, 526.5], [1676.5, 526.5], [1676.5, 527.5], [1675.5, 527.5], [1675.5, 528.5], [1672.5, 528.5], [1672.5, 529.5], [1665.5, 529.5], [1665.5, 528.5], [1663.5, 528.5], [1662.5, 527.5], [1662.5, 524.5], [1663.5, 524.5], [1663.5, 522.5], [1664.5, 526.5], [1663.5, 524.5], [1663.5, 524.5], [1663.5, 523.5]]},
{"id": "twmr82", "submitted_by": "Lucas90012", "name": "gwa", "description": "gwa is a server emote for the Discord server Meta Studio. It is a cat. Please don't confuse it.", "website": "https: //discord.gg/Pf6EEJ84PK", "subreddit": "r/gwaplace", "center": [1669.5, 525.5], "path": [[1662.5, 519.5], [1664.5, 519.5], [1664.5, 520.5], [1665.5, 520.5], [1665.5, 521.5], [1672.5, 521.5], [1672.5, 520.5], [1673.5, 520.5], [1673.5, 519.5], [1675.5, 519.5], [1675.5, 522.5], [1676.5, 522.5], [1676.5, 525.5], [1677.5, 525.5], [1677.5, 528.5], [1676.5, 528.5], [1676.5, 529.5], [1673.5, 529.5], [1673.5, 530.5], [1665.5, 530.5], [1665.5, 529.5], [1663.5, 529.5], [1663.5, 528.5], [1662.5, 528.5], [1662.5, 527.5], [1661.5, 527.5], [1661.5, 523.5], [1662.5, 523.5], [1662.5, 519.5]]},
{"id": "twmr69", "submitted_by": "Kuberd", "name": "Koibu's K", "description": "Logo for popular Dungeons And Dragons professional Dungeon Master Koibu, associated with the DGG community.", "website": "https://regalgoblins.com/", "subreddit": "/r/Koibu", "center": [1599.5, 56.5], "path": [[1590.5, 41.5], [1590.5, 73.5], [1612.5, 64.5], [1607.5, 49.5], [1599.5, 41.5], [1590.5, 41.5], [1590.5, 41.5], [1590.5, 42.5]]},
{"id": "twmqp5", "submitted_by": "elljobellnackle", "name": "OMORI Title Screen", "description": "Art of the OMORI title screen, originally made by reddit user u/Radnos_ but modified to fit in the canvas. The main character, Sunny, is shown in the background, as well as Japanese text, 'Oyasumi'.", "website": "", "subreddit": "/r/omori", "center": [1776.5, 1525.5], "path": [[1700.5, 1496.5], [1852.5, 1496.5], [1852.5, 1553.5], [1700.5, 1553.5]]},
{"id": "twmqkp", "submitted_by": "NeoCipher790", "name": "Katawa Shoujo", "description": "Katawa Shoujo is a bishōjo-style visual novel by Four Leaf Studios that tells the story of a young man and five young women living with varying disabilities", "website": "https://www.katawa-shoujo.com/", "subreddit": "/r/katawashoujo", "center": [1475.5, 771.5], "path": [[1461.5, 763.5], [1485.5, 764.5], [1486.5, 780.5], [1472.5, 780.5], [1471.5, 772.5], [1461.5, 772.5], [1461.5, 764.5]]},
@ -1251,7 +1251,7 @@
{"id": "twqizt", "submitted_by": "bayerslyf", "name": "BT-7472", "description": "Character from the game Titanfall 2. Made by the northstar client discord server with contribution from the Team Fortress 2 and Titanfall 2 communities.", "website": "https://discord.gg/northstar", "subreddit": "", "center": [1546.5, 1952.5], "path": [[1522.5, 1923.5], [1528.5, 1917.5], [1571.5, 1918.5], [1570.5, 1985.5], [1522.5, 1986.5]]},
{"id": "twqivm", "submitted_by": "theminortom", "name": "Autobahn road sign", "description": "The Autobahn is the federal controlled-access highway system in Germany.", "website": "https://en.wikipedia.org/wiki/Autobahn", "subreddit": "/r/de", "center": [550.5, 848.5], "path": [[549.5, 871.5], [549.5, 860.5], [548.5, 860.5], [548.5, 856.5], [540.5, 856.5], [540.5, 857.5], [539.5, 857.5], [539.5, 840.5], [540.5, 840.5], [540.5, 839.5], [541.5, 839.5], [541.5, 838.5], [559.5, 838.5], [559.5, 839.5], [560.5, 839.5], [560.5, 840.5], [561.5, 840.5], [561.5, 858.5], [560.5, 858.5], [560.5, 859.5], [559.5, 859.5], [559.5, 860.5], [551.5, 860.5], [551.5, 871.5]]},
{"id": "twqir6", "submitted_by": "Antarioo", "name": "Gekoloniseerd", "description": "A meme by the Dutch reddit community is to colonize or GEKOLONISEERD every comment section of a post about any dutch topic", "website": "", "subreddit": "", "center": [446.5, 24.5], "path": [[384.5, 20.5], [508.5, 20.5], [508.5, 28.5], [384.5, 28.5]]},
{"id": "twqibg", "submitted_by": "Explodingmemes", "name": "Anarcho Communist Flag", "description": "The flag of the political ideology Anarcho Communism, an anarchist political ideology that advocates for the abolition of states and hierarchies.", "website": "", "subreddit": "/r/Anarchism", "center": [35.5, 398.5], "path": [[9.5, 378.5], [9.5, 418.5], [60.5, 418.5], [61.5, 378.5]]},
{"id": "twqibg", "submitted_by": "Explodingmemes", "name": "Anarcho-communism flag", "description": "The flag of the anarcho-communism political ideology, an anarchist political ideology that advocates for the abolition of states and hierarchies.", "website": "https://en.wikipedia.org/wiki/Anarcho-communism", "subreddit": "/r/anarchism, /r/anarchocommunism", "center": [35.5, 398.5], "path": [[9.5, 378.5], [9.5, 418.5], [60.5, 418.5], [61.5, 378.5]]},
{"id": "twqi7m", "submitted_by": "Dinkelwecken", "name": "Weiße Rose", "description": "The white rose is the symbol of a german student resistance organization against the Nazi regime. Through their work they became a famous german resistance symbol against Totalitarianism and facism. Most members were inacerated and executed.", "website": "https://en.wikipedia.org/wiki/White_Rose", "subreddit": "/r/placeDE", "center": [1893.5, 845.5], "path": [[1890.5, 868.5], [1901.5, 855.5], [1899.5, 850.5], [1908.5, 845.5], [1905.5, 835.5], [1885.5, 832.5], [1880.5, 837.5], [1881.5, 843.5], [1878.5, 847.5], [1886.5, 852.5], [1893.5, 853.5], [1890.5, 856.5], [1890.5, 865.5], [1888.5, 868.5]]},
{"id": "twqhov", "submitted_by": "wallmenis", "name": "Greek flag", "description": "Greece, officially the Hellenic Republic, is a country in Southeast Europe. It is situated on the southern tip of the Balkans, and is located at the crossroads of Europe, Asia, and Africa.", "website": "https://www.gov.gr/en/sdg", "subreddit": "/r/greece, /r/GreecePlace", "center": [1459.5, 1944.5], "path": [[1397.5, 1917.5], [1521.5, 1917.5], [1521.5, 1970.5], [1397.5, 1970.5]]},
{"id": "twqhcq", "submitted_by": "sealmealdeal", "name": "Happy in spite", "description": "Happy in spite is an artwork made by Ivan Seal, which was used by the Caretaker in 'an empty bliss beyond this world'", "website": "", "subreddit": "/r/TheCaretaker", "center": [275.5, 1896.5], "path": [[269.5, 1890.5], [269.5, 1890.5], [269.5, 1890.5], [269.5, 1890.5], [281.5, 1890.5], [281.5, 1901.5], [269.5, 1901.5]]},
@ -1513,7 +1513,7 @@
{"id": "twpj6z", "submitted_by": "Brilliant-Note-1889", "name": "The Starry Night by Van Gogh", "description": "Pixel art of The Starry Night (de Sterrennacht) by Vincent van Gogh accompanied by the master himself", "website": "https://en.wikipedia.org/wiki/The_Starry_Night", "subreddit": "/r/placeNL", "center": [1481.5, 18.5], "path": [[1450.5, 2.5], [1450.5, 33.5], [1501.5, 33.5], [1501.5, 34.5], [1515.5, 34.5], [1515.5, 21.5], [1514.5, 21.5], [1514.5, 20.5], [1513.5, 20.5], [1513.5, 19.5], [1512.5, 19.5], [1512.5, 17.5], [1511.5, 17.5], [1511.5, 14.5], [1512.5, 14.5], [1512.5, 8.5], [1511.5, 8.5], [1511.5, 7.5], [1510.5, 7.5], [1510.5, 6.5], [1509.5, 6.5], [1509.5, 5.5], [1506.5, 5.5], [1506.5, 2.5], [1450.5, 2.5]]},
{"id": "twpizt", "submitted_by": "MarUlberg", "name": "Ghibli x Cowboy Bebop", "description": "The plot originally claimed by France with their flag was converted by Karl Jacobs into the flag of the Kinoko Kingdom. YouTube streamer Ludwig started overtaking it unaware of who owned it and was quickly contacted by Karl Jacobs. After a brief dialog Ludwig was allowed to continue developing the Cowboy Bebop art over the flag. After the art was finished Ludwig went off to defend Kirby from the void. Once Kirby was safe he came back to this art to find the left side of the Kinoko Kingdom flag was still unclaimed and with his chat build the My Neighbor Totoro art beside his Cowboy Bebop art merging them together into a single piece. The art saw minimal sabotage throughout the remaining time.", "website": "https://www.youtube.com/c/Ludwigahgren", "subreddit": "/r/LudwigAhgren", "center": [1221.5, 1550.5], "path": [[1156.5, 1490.5], [1286.5, 1490.5], [1286.5, 1609.5], [1156.5, 1609.5]]},
{"id": "twpisl", "submitted_by": "gstewman", "name": "Professor Layton + Luke", "description": "Layton and Luke as well as 2 Hint Coins from the Professor Layton video game series!n(Hello r/ProfessorLayton!)", "website": "https://www.laytonseries.com/naen/", "subreddit": "/r/ProfessorLayton", "center": [1960.5, 346.5], "path": [[1953.5, 333.5], [1960.5, 333.5], [1960.5, 338.5], [1967.5, 338.5], [1968.5, 357.5], [1952.5, 357.5]]},
{"id": "twpik9", "submitted_by": "Orange_Jello5905", "name": "1312", "description": "1312 is a number sequence that lines up with All Cops Are Bastards, a political philosophy.n", "website": "", "subreddit": "/r/Anarchism", "center": [32.5, 415.5], "path": [[22.5, 411.5], [22.5, 411.5], [42.5, 411.5], [42.5, 418.5], [21.5, 418.5]]},
{"id": "twpik9", "submitted_by": "Orange_Jello5905", "name": "1312", "description": "1312 is a number sequence that lines up with the letters ACAB. This stands for 'All Cops Are Bastards', a political philosophy. The phrase used commonly by Skinheads, but during the late 2010s and early 2020s, it became a term used during anti-police and anti-police brutality demonstrations.", "website": "https://en.wikipedia.org/wiki/ACAB", "subreddit": "/r/anarchism", "center": [32.5, 415.5], "path": [[22.5, 411.5], [22.5, 411.5], [42.5, 411.5], [42.5, 418.5], [21.5, 418.5]]},
{"id": "twpihd", "submitted_by": "RedditLightmode", "name": "Province Flag Train", "description": "An NS (NS = National Railways) train featuring the flags of the 12 provinces of the Netherlands.\n\nFrom left to right:\n Groningen\n Drenthe\n Gelderland\n Friesland\n Limburg\n Noord-Brabant\n Overijssel\n Noord-Holland\n Utrecht\n Zeeland\n Zuid-Holland\n Flevoland", "website": "", "subreddit": "/r/PlaceNL", "center": [1238.5, 7.5], "path": [[1112.5, 2.5], [1365.5, 2.5], [1365.5, 3.5], [1366.5, 3.5], [1366.5, 4.5], [1367.5, 4.5], [1367.5, 5.5], [1368.5, 5.5], [1368.5, 6.5], [1369.5, 6.5], [1369.5, 7.5], [1369.5, 8.5], [1370.5, 8.5], [1370.5, 10.5], [1369.5, 10.5], [1369.5, 11.5], [1365.5, 11.5], [1365.5, 12.5], [1362.5, 12.5], [1362.5, 13.5], [1361.5, 13.5], [1361.5, 12.5], [1359.5, 12.5], [1359.5, 13.5], [1358.5, 13.5], [1358.5, 12.5], [1350.5, 12.5], [1350.5, 13.5], [1349.5, 13.5], [1349.5, 12.5], [1347.5, 12.5], [1347.5, 13.5], [1346.5, 13.5], [1346.5, 12.5], [1343.5, 12.5], [1343.5, 13.5], [1342.5, 13.5], [1342.5, 12.5], [1340.5, 12.5], [1340.5, 13.5], [1339.5, 13.5], [1339.5, 12.5], [1331.5, 12.5], [1331.5, 13.5], [1330.5, 13.5], [1330.5, 12.5], [1328.5, 12.5], [1328.5, 13.5], [1327.5, 13.5], [1327.5, 12.5], [1324.5, 12.5], [1324.5, 13.5], [1323.5, 13.5], [1323.5, 12.5], [1321.5, 12.5], [1321.5, 13.5], [1320.5, 13.5], [1320.5, 12.5], [1312.5, 12.5], [1312.5, 13.5], [1311.5, 13.5], [1311.5, 12.5], [1309.5, 12.5], [1309.5, 13.5], [1308.5, 13.5], [1308.5, 12.5], [1305.5, 12.5], [1305.5, 13.5], [1304.5, 13.5], [1304.5, 12.5], [1302.5, 12.5], [1302.5, 13.5], [1301.5, 13.5], [1301.5, 12.5], [1293.5, 12.5], [1293.5, 13.5], [1292.5, 13.5], [1292.5, 12.5], [1290.5, 12.5], [1290.5, 13.5], [1289.5, 13.5], [1289.5, 12.5], [1286.5, 12.5], [1286.5, 13.5], [1285.5, 13.5], [1285.5, 12.5], [1283.5, 12.5], [1283.5, 13.5], [1283.5, 12.5], [1282.5, 12.5], [1282.5, 11.5], [1281.5, 11.5], [1281.5, 10.5], [1277.5, 10.5], [1277.5, 11.5], [1276.5, 11.5], [1276.5, 12.5], [1275.5, 12.5], [1275.5, 13.5], [1274.5, 13.5], [1274.5, 12.5], [1272.5, 12.5], [1272.5, 13.5], [1271.5, 13.5], [1271.5, 12.5], [1268.5, 12.5], [1268.5, 13.5], [1267.5, 13.5], [1267.5, 12.5], [1265.5, 12.5], [1264.5, 13.5], [1264.5, 12.5], [1252.5, 12.5], [1252.5, 13.5], [1252.5, 12.5], [1249.5, 12.5], [1249.5, 13.5], [1248.5, 13.5], [1248.5, 12.5], [1246.5, 12.5], [1246.5, 13.5], [1245.5, 13.5], [1245.5, 12.5], [1238.5, 12.5], [1237.5, 12.5], [1237.5, 13.5], [1236.5, 13.5], [1236.5, 12.5], [1234.5, 12.5], [1234.5, 13.5], [1233.5, 13.5], [1233.5, 12.5], [1230.5, 12.5], [1230.5, 13.5], [1229.5, 13.5], [1229.5, 12.5], [1227.5, 12.5], [1227.5, 13.5], [1226.5, 13.5], [1226.5, 12.5], [1218.5, 12.5], [1218.5, 13.5], [1217.5, 13.5], [1217.5, 12.5], [1215.5, 12.5], [1215.5, 13.5], [1214.5, 13.5], [1214.5, 12.5], [1211.5, 12.5], [1211.5, 13.5], [1210.5, 13.5], [1210.5, 12.5], [1208.5, 12.5], [1208.5, 13.5], [1207.5, 13.5], [1207.5, 12.5], [1199.5, 12.5], [1199.5, 13.5], [1198.5, 13.5], [1198.5, 12.5], [1196.5, 12.5], [1196.5, 13.5], [1195.5, 13.5], [1195.5, 12.5], [1192.5, 12.5], [1192.5, 13.5], [1191.5, 13.5], [1191.5, 12.5], [1189.5, 12.5], [1189.5, 13.5], [1188.5, 13.5], [1188.5, 12.5], [1180.5, 12.5], [1180.5, 13.5], [1179.5, 13.5], [1179.5, 12.5], [1177.5, 12.5], [1177.5, 13.5], [1176.5, 13.5], [1176.5, 12.5], [1173.5, 12.5], [1173.5, 13.5], [1172.5, 13.5], [1172.5, 12.5], [1170.5, 12.5], [1170.5, 13.5], [1169.5, 13.5], [1169.5, 12.5], [1161.5, 12.5], [1161.5, 13.5], [1160.5, 13.5], [1160.5, 12.5], [1158.5, 12.5], [1158.5, 13.5], [1157.5, 13.5], [1157.5, 12.5], [1154.5, 12.5], [1154.5, 13.5], [1153.5, 13.5], [1153.5, 12.5], [1151.5, 12.5], [1151.5, 13.5], [1150.5, 13.5], [1150.5, 12.5], [1142.5, 12.5], [1142.5, 13.5], [1141.5, 13.5], [1141.5, 12.5], [1139.5, 12.5], [1139.5, 13.5], [1138.5, 13.5], [1138.5, 12.5], [1136.5, 12.5], [1136.5, 13.5], [1135.5, 13.5], [1135.5, 12.5], [1133.5, 12.5], [1132.5, 13.5], [1132.5, 12.5], [1122.5, 12.5], [1122.5, 13.5], [1121.5, 13.5], [1121.5, 12.5], [1119.5, 12.5], [1119.5, 13.5], [1118.5, 13.5], [1118.5, 12.5], [1116.5, 12.5], [1116.5, 13.5], [1110.5, 13.5], [1110.5, 12.5], [1109.5, 12.5], [1109.5, 11.5], [1108.5, 11.5], [1108.5, 10.5], [1107.5, 10.5], [1108.5, 10.5], [1108.5, 9.5], [1108.5, 8.5], [1109.5, 8.5], [1109.5, 6.5], [1110.5, 6.5], [1110.5, 4.5], [1111.5, 4.5], [1111.5, 3.5], [1112.5, 3.5], [1112.5, 2.5]]},
{"id": "twpih9", "submitted_by": "BlueGamesGER", "name": "Pfand System", "description": "In Germany, there is a bottle return system. When you buy certain products, you pay a deposit (Pfand) for the container. After returning the bottle to an accepting shop you get the deposit back.", "website": "", "subreddit": "", "center": [755.5, 1147.5], "path": [[744.5, 1131.5], [744.5, 1162.5], [765.5, 1162.5], [765.5, 1131.5]]},
{"id": "twpige", "submitted_by": "gamrin", "name": "Willen van Oranje (Stille Willem)", "description": "William the Silent (24 April 1533 10 July 1584), also known as William the Taciturn (translated from Dutch: Willem de Zwijger),[1][2] or, more commonly in the Netherlands,[3][4] William of Orange (Dutch: Willem van Oranje), was the main leader of the Dutch Revolt against the Spanish Habsburgs that set off the Eighty Years' War (15681648) and resulted in the formal independence of the United Provinces in 1581.", "website": "https://en.wikipedia.org/wiki/William_the_Silent", "subreddit": "/r/PlaceNL", "center": [1893.5, 19.5], "path": [[1881.5, 3.5], [1881.5, 34.5], [1905.5, 34.5], [1905.5, 3.5]]},
@ -3479,7 +3479,7 @@
{"id": "tx2dej", "submitted_by": "xkames76", "name": "Xayoo (Xayoo Industries) Logo", "description": "Xayoo (The biggest Polish Streamer) logo with meme signature ZEJU.", "website": "https://www.twitch.tv/xayoo_", "subreddit": "", "center": [1862.5, 1442.5], "path": [[1853.5, 1425.5], [1870.5, 1425.5], [1876.5, 1457.5], [1848.5, 1457.5]]},
{"id": "tx2dah", "submitted_by": "Dragon20942", "name": "University of Waterloo Subreddit", "description": "The University of Waterloo subreddit. This art was relocated once from the southeast quadrant on day 2. The goose tongue moves throughout the timeframe of r/place's duration. On June 24, 2020, Reddit user u/alyssnya drew anime girls representing each faculty of the university. This art became the current banner of the subreddit as of Place 2022. The goose is a prominent cultural symbol of the university, as well as the city itself.", "website": "", "subreddit": "/r/uwaterloo", "center": [1624.5, 186.5], "path": [[1587.5, 175.5], [1661.5, 175.5], [1661.5, 196.5], [1587.5, 196.5]]},
{"id": "tx2d3b", "submitted_by": "Maelmc", "name": "Typhlosion", "description": "The head of Pokémon Gold & Silver's Fire starter, Typhlosion.", "website": "https://bulbapedia.bulbagarden.net/wiki/Typhlosion_(Pok%C3%A9mon)", "subreddit": "", "center": [1909.5, 1161.5], "path": [[1905.5, 1156.5], [1913.5, 1156.5], [1913.5, 1166.5], [1905.5, 1166.5], [1905.5, 1156.5]]},
{"id": "tx2cxg", "submitted_by": "alreas", "name": "The r/wordle and r/mahjong collab", "description": "A strange collaboration between two small community around the same goal, survive until the end", "website": "", "subreddit": "", "center": [1647.5, 1947.5], "path": [[1630.5, 1940.5], [1647.5, 1940.5], [1647.5, 1939.5], [1655.5, 1939.5], [1655.5, 1940.5], [1660.5, 1940.5], [1660.5, 1946.5], [1655.5, 1946.5], [1655.5, 1960.5], [1647.5, 1960.5], [1647.5, 1946.5], [1630.5, 1946.5], [1630.5, 1940.5]]},
{"id": "tx2cxg", "submitted_by": "alreas", "name": "r/wordle and r/mahjong collab", "description": "A strange collaboration between two small communities around the same goal, survive until the end", "website": "", "subreddit": "/r/wordle, /r/mahjong", "center": [1647.5, 1947.5], "path": [[1630.5, 1940.5], [1647.5, 1940.5], [1647.5, 1939.5], [1655.5, 1939.5], [1655.5, 1940.5], [1660.5, 1940.5], [1660.5, 1946.5], [1655.5, 1946.5], [1655.5, 1960.5], [1647.5, 1960.5], [1647.5, 1946.5], [1630.5, 1946.5], [1630.5, 1940.5]]},
{"id": "tx2cs1", "submitted_by": "Cat2468", "name": "Punz Skin Art", "description": "This is art to represent the Minecraft skin of the Twitch streamer Punz.", "website": "https://twitch.tv/Punz", "subreddit": "", "center": [1143.5, 1090.5], "path": [[1130.5, 1069.5], [1156.5, 1069.5], [1156.5, 1110.5], [1130.5, 1110.5], [1130.5, 1069.5]]},
{"id": "tx2cn0", "submitted_by": "squidrobotfriend", "name": "hellofriend", "description": "The first spoken line of the first episode of Mr. Robot, 'eps1.0_hellofriend.mov'", "website": "", "subreddit": "/r/MrRobot", "center": [1075.5, 1626.5], "path": [[1044.5, 1631.5], [1044.5, 1621.5], [1105.5, 1621.5], [1105.5, 1631.5], [1091.5, 1631.5], [1091.5, 1634.5], [1090.5, 1634.5], [1089.5, 1633.5], [1088.5, 1632.5], [1087.5, 1631.5], [1044.5, 1631.5]]},
{"id": "tx2cjf", "submitted_by": "Senior-Lifeguard8894", "name": "heyartv twitch", "description": "French streamer", "website": "https://www.twitch.tv/heyartv", "subreddit": "", "center": [1175.5, 1938.5], "path": [[1156.5, 1924.5], [1157.5, 1957.5], [1176.5, 1957.5], [1176.5, 1951.5], [1180.5, 1948.5], [1196.5, 1942.5], [1199.5, 1937.5], [1200.5, 1924.5], [1156.5, 1924.5]]},
@ -4506,7 +4506,6 @@
{"id": "tx3tij", "submitted_by": "P_ablo24", "name": "Vegeta 777 skin head", "description": "Minecraft Vegeta Skin Head.", "website": "https://www.twitch.tv/vegetta777", "subreddit": "", "center": [1572.5, 620.5], "path": [[1567.5, 626.5], [1567.5, 614.5], [1576.5, 614.5], [1576.5, 626.5]]},
{"id": "tx3th4", "submitted_by": "mstilw577", "name": "Harvard University", "description": "Harvard students mistook the Besiege logo for the HSDM crest, and helped uphold it. In honor of this confusion, they modeled their /r/place contribution after the Besiege logo.", "website": "https://www.harvard.edu/", "subreddit": "/r/Harvard", "center": [363.5, 1544.5], "path": [[358.5, 1537.5], [368.5, 1537.5], [368.5, 1551.5], [358.5, 1551.5]]},
{"id": "tx3te9", "submitted_by": "cabaaa", "name": "SPQR", "description": "SPQR is an emblematic abbreviated phrase referring to the government and people of the ancient Roman Republic. A Vexillum can be seen on the left of the phrase.", "website": "https://discord.gg/HYuqrQx", "subreddit": "/r/SPQRposting", "center": [1627.5, 493.5], "path": [[1603.5, 498.5], [1604.5, 487.5], [1649.5, 486.5], [1650.5, 499.5], [1603.5, 499.5]]},
{"id": "tx3swr", "submitted_by": "thekoboy", "name": "Not Real Madrid", "description": "One of the worst football clubs in history. Not as good as Real Murcia Club de Fútbol.", "website": "", "subreddit": "", "center": [1466.5, 1682.5], "path": [[1442.5, 1661.5], [1491.5, 1660.5], [1491.5, 1704.5], [1441.5, 1704.5], [1440.5, 1701.5], [1441.5, 1660.5]]},
{"id": "tx3scq", "submitted_by": "_aguamentys", "name": "ESMA School", "description": "ESMA (École Supérieure des Métiers Artistiques) is a French art school mainly know for their 3D Animation and VFX Degree", "website": "https://www.youtube.com/c/Esmamovies", "subreddit": "", "center": [1733.5, 255.5], "path": [[1727.5, 249.5], [1738.5, 249.5], [1738.5, 260.5], [1727.5, 260.5]]},
{"id": "tx3rfw", "submitted_by": "Vico08lv", "name": "Peace And Cube", "description": "Peace And Cube (PAC) is a french Minecraft server who is running for over 8 years with the same map since his creation.", "website": "https://peaceandcube.fr", "subreddit": "/r/peaceandcube", "center": [832.5, 1560.5], "path": [[820.5, 1556.5], [820.5, 1561.5], [821.5, 1561.5], [821.5, 1564.5], [825.5, 1564.5], [825.5, 1563.5], [826.5, 1563.5], [826.5, 1562.5], [829.5, 1562.5], [829.5, 1564.5], [843.5, 1564.5], [843.5, 1556.5], [832.5, 1556.5], [820.5, 1556.5]]},
{"id": "tx3rca", "submitted_by": "KingDededeThe3rd", "name": "TierZoo Logo", "description": "The logo for TierZoo, an educational YouTube channel which uses gaming metaphors to teach zoology. The art itself was put together by /r/TierZoo.", "website": "https://www.tierzoo.com/", "subreddit": "/r/TierZoo", "center": [55.5, 343.5], "path": [[49.5, 337.5], [60.5, 337.5], [60.5, 349.5], [49.5, 349.5]]},
@ -5666,7 +5665,7 @@
{"id": "txf24u", "submitted_by": "RuckFobin", "name": "Rice University", "description": "Rice University's R logo along with a bowl of rice, created by students. William Marsh Rice University (Rice University) is a private research university in Houston, Texas.", "website": "https://www.rice.edu", "subreddit": "/r/riceuniversity", "center": [361.5, 1595.5], "path": [[352.5, 1591.5], [370.5, 1591.5], [371.5, 1592.5], [371.5, 1599.5], [352.5, 1599.5], [352.5, 1591.5]]},
{"id": "txf23w", "submitted_by": "kronzal", "name": "Ralsei", "description": "One of the main characters in DELTARUNE, a game created by Toby Fox. Everyone likes Ralsei.", "website": "", "subreddit": "/r/Deltarune", "center": [1770.5, 195.5], "path": [[1771.5, 184.5], [1769.5, 184.5], [1769.5, 185.5], [1768.5, 185.5], [1767.5, 186.5], [1765.5, 188.5], [1765.5, 189.5], [1765.5, 191.5], [1764.5, 191.5], [1764.5, 193.5], [1764.5, 194.5], [1764.5, 196.5], [1764.5, 197.5], [1765.5, 198.5], [1766.5, 199.5], [1765.5, 201.5], [1764.5, 201.5], [1763.5, 203.5], [1764.5, 204.5], [1766.5, 204.5], [1767.5, 204.5], [1769.5, 203.5], [1770.5, 205.5], [1771.5, 204.5], [1773.5, 204.5], [1774.5, 204.5], [1775.5, 204.5], [1776.5, 204.5], [1775.5, 202.5], [1774.5, 200.5], [1774.5, 199.5], [1774.5, 197.5], [1774.5, 197.5], [1774.5, 196.5], [1775.5, 195.5], [1776.5, 193.5], [1776.5, 192.5], [1775.5, 190.5], [1775.5, 189.5], [1774.5, 188.5], [1774.5, 187.5], [1772.5, 187.5], [1772.5, 185.5], [1771.5, 185.5], [1770.5, 184.5]]},
{"id": "txf1sg", "submitted_by": "FadingSweetness", "name": "Sky Moth", "description": "Art depicting a moth (a new player) from the game, Sky: Children of the Light) next to a crab from the game.", "website": "", "subreddit": "/r/SkyChildrenOfLight", "center": [1125.5, 1663.5], "path": [[1118.5, 1655.5], [1132.5, 1655.5], [1132.5, 1669.5], [1116.5, 1669.5], [1116.5, 1667.5], [1110.5, 1667.5], [1121.5, 1663.5], [1121.5, 1657.5]]},
{"id": "txh1h1", "submitted_by": "greenwolf25", "name": "Trans Circle-A", "description": "The Circle A is an a monogram that consists of the letter A for Anarchy surrounded by the letter O for Order. Here in the colors of the Transgender flag.", "website": "", "subreddit": "/r/AnarchismZ", "center": [28.5, 424.5], "path": [[29.5, 421.5], [27.5, 421.5], [25.5, 423.5], [26.5, 426.5], [27.5, 427.5], [29.5, 427.5], [31.5, 425.5], [31.5, 423.5], [29.5, 421.5]]},
{"id": "txh1h1", "submitted_by": "greenwolf25", "name": "Transgender circle-A", "description": "The circle-A is an a monogram that consists of the letter A for anarchy surrounded by the letter O for order. Here in the colors of the transgender flag.", "website": "https://en.wikipedia.org/wiki/Transgender", "subreddit": "/r/COMPLETEANARCHY, /r/anarchismZ", "center": [28.5, 424.5], "path": [[29.5, 421.5], [27.5, 421.5], [25.5, 423.5], [26.5, 426.5], [27.5, 427.5], [29.5, 427.5], [31.5, 425.5], [31.5, 423.5], [29.5, 421.5]]},
{"id": "txh0m1", "submitted_by": "AshikabiKun", "name": "Caribou", "description": "The caribou is an iconic Canadian animal.", "website": "https://en.wikipedia.org/wiki/Reindeer", "subreddit": "/r/quebec", "center": [961.5, 943.5], "path": [[949.5, 939.5], [949.5, 941.5], [950.5, 945.5], [950.5, 946.5], [951.5, 947.5], [955.5, 947.5], [960.5, 952.5], [961.5, 951.5], [963.5, 951.5], [963.5, 958.5], [963.5, 955.5], [965.5, 955.5], [965.5, 958.5], [965.5, 955.5], [966.5, 955.5], [966.5, 951.5], [970.5, 951.5], [970.5, 952.5], [972.5, 952.5], [972.5, 953.5], [973.5, 953.5], [973.5, 955.5], [974.5, 955.5], [974.5, 958.5], [974.5, 954.5], [973.5, 954.5], [973.5, 952.5], [975.5, 952.5], [975.5, 953.5], [976.5, 953.5], [976.5, 958.5], [976.5, 951.5], [975.5, 951.5], [975.5, 947.5], [976.5, 947.5], [977.5, 948.5], [976.5, 947.5], [976.5, 946.5], [977.5, 946.5], [976.5, 945.5], [975.5, 944.5], [974.5, 943.5], [973.5, 943.5], [972.5, 944.5], [971.5, 945.5], [970.5, 944.5], [969.5, 944.5], [968.5, 945.5], [967.5, 946.5], [966.5, 945.5], [966.5, 944.5], [965.5, 943.5], [964.5, 943.5], [963.5, 944.5], [958.5, 944.5], [958.5, 943.5], [956.5, 942.5], [959.5, 940.5], [962.5, 941.5], [964.5, 939.5], [964.5, 934.5], [963.5, 931.5], [960.5, 931.5], [958.5, 932.5], [953.5, 935.5], [949.5, 939.5]]},
{"id": "txh08i", "submitted_by": "ur8moms", "name": "Gnya", "description": "జ్ఞా (Gnya) the first letter in the Telugu (South Indian language) word for knowledge (జ్ఞానం). It got recognition when it started crashing Apple iPhones in 2018 because of bug in Unicode encoding.", "website": "", "subreddit": "/r/Ni_Bondha", "center": [1402.5, 43.5], "path": [[1394.5, 34.5], [1410.5, 34.5], [1410.5, 51.5], [1394.5, 51.5]]},
{"id": "txgzw2", "submitted_by": "ClearlyYouDont", "name": "Joeseppi", "description": "A mural made by the viewers of the Joeseppi YouTube channel", "website": "https://www.youtube.com/c/Joeseppi", "subreddit": "", "center": [1312.5, 669.5], "path": [[1291.5, 665.5], [1291.5, 672.5], [1332.5, 672.5], [1332.5, 665.5], [1291.5, 665.5]]},
@ -5674,7 +5673,7 @@
{"id": "txgyvo", "submitted_by": "Voxsyonreddit", "name": "NRX LOGO", "description": "NRX WAS A GROUP OF FRIENDS THAT TRIED TO WRITE NRX NEXT TO KENNY BUT WAS NEVER FINSIHED BECAUSE OF THE INSTANT VANDALISM BY SOME RANDOM GROUP WE TRIED TO GIVE PEACE BUT THEY DIDNT BUY IT :(", "website": "https://www.youtube.com/channel/UCs2Q15G6kCXn5N05SjZchKQ", "subreddit": "/r/NRXBOYS", "center": [528.5, 1543.5], "path": [[518.5, 1536.5], [518.5, 1536.5], [518.5, 1536.5], [518.5, 1549.5], [538.5, 1549.5], [538.5, 1537.5]]},
{"id": "txgyc2", "submitted_by": "farazsfh", "name": "Funnymans Investment Group", "description": "F.I.G is short for Funnymans Investment Group. They are a group of friends located in Canada. They fought a hard battle against FBC and coordinated through the Funnymans Discord. In the end, they emerged victorious for this land. GG EZ.", "website": "", "subreddit": ", /r/funnymansgg", "center": [1676.5, 1949.5], "path": [[1674.5, 1939.5], [1678.5, 1939.5], [1678.5, 1958.5], [1674.5, 1958.5]]},
{"id": "txgxhc", "submitted_by": "AshikabiKun", "name": "Snowy owl", "description": "The snowy owl is Québec's national bird.", "website": "https://en.wikipedia.org/wiki/Snowy_owl", "subreddit": "/r/quebec", "center": [971.5, 939.5], "path": [[966.5, 943.5], [966.5, 942.5], [967.5, 941.5], [968.5, 940.5], [968.5, 939.5], [969.5, 938.5], [970.5, 937.5], [971.5, 937.5], [971.5, 934.5], [972.5, 933.5], [974.5, 933.5], [975.5, 934.5], [975.5, 937.5], [974.5, 938.5], [974.5, 942.5], [972.5, 942.5], [972.5, 943.5], [971.5, 944.5], [970.5, 943.5], [968.5, 943.5], [968.5, 944.5], [967.5, 945.5], [967.5, 943.5], [966.5, 943.5]]},
{"id": "txgwnl", "submitted_by": "greenwolf25", "name": "Lesbian Circle-A", "description": "The Circle A is an a monogram that consists of the letter A for Anarchy surrounded by the letter O for Order. Here in the colors of the lesbian flag.", "website": "", "subreddit": "/r/AnarchismZ", "center": [4.5, 384.5], "path": [[3.5, 381.5], [1.5, 383.5], [1.5, 385.5], [3.5, 387.5], [5.5, 387.5], [7.5, 385.5], [7.5, 383.5], [5.5, 381.5]]},
{"id": "txgwnl", "submitted_by": "greenwolf25", "name": "Lesbian circle-A", "description": "The circle-A is an a monogram that consists of the letter A for anarchy surrounded by the letter O for order. Here in the colors of the lesbian flag.", "website": "https://en.wikipedia.org/wiki/Lesbian", "subreddit": "/r/COMPLETEANARCHY, /r/anarchismZ", "center": [4.5, 384.5], "path": [[3.5, 381.5], [1.5, 383.5], [1.5, 385.5], [3.5, 387.5], [5.5, 387.5], [7.5, 385.5], [7.5, 383.5], [5.5, 381.5]]},
{"id": "txgwdz", "submitted_by": "ImAMovieMaker", "name": "Blackmagic Design Logo", "description": "Blackmagic Design is an australian cinema company, the logo was created by the Discord Community, with help from our Allies 227. (It's rotated 90deg)", "website": "https://discord.gg/YA36tFQ", "subreddit": "/r/blackmagicdesign", "center": [818.5, 1832.5], "path": [[814.5, 1831.5], [822.5, 1831.5], [822.5, 1832.5], [821.5, 1832.5], [821.5, 1833.5], [814.5, 1833.5], [814.5, 1831.5]]},
{"id": "txgvzz", "submitted_by": "banana_who_can_type", "name": "An hourglass", "description": "thats it", "website": "", "subreddit": "", "center": [1921.5, 64.5], "path": [[1917.5, 55.5], [1925.5, 55.5], [1925.5, 72.5], [1917.5, 72.5], [1917.5, 55.5]]},
{"id": "txgvus", "submitted_by": "FlololoMama", "name": "Who's that Pokemon ?", "description": "- It's Dedenne !\n- It's pikachu !\n- F*****ck", "website": "", "subreddit": "/r/Pokemon", "center": [534.5, 1519.5], "path": [[532.5, 1515.5], [535.5, 1515.5], [536.5, 1520.5], [535.5, 1522.5], [532.5, 1522.5], [531.5, 1520.5]]},
@ -5940,12 +5939,10 @@
{"id": "txhelj", "submitted_by": "mehylotic", "name": "June Egbert", "description": "For a while, this section portrayed June Egbert, backed by a trans flag. June is the canonized transfeminine identity of the protagonist of Homestuck. It was changed back to the original John upon the insistence of the Russian 'Legion 413' VK community.", "website": "https://homestuck.com", "subreddit": "/r/homestuck", "center": [215.5, 113.5], "path": [[207.5, 101.5], [207.5, 125.5], [223.5, 125.5], [223.5, 101.5]]},
{"id": "txhejq", "submitted_by": "Soy-Slut", "name": "Tweek X Craig", "description": "A small pice representing the couple of Tweek and Craig from the show South Park", "website": "", "subreddit": "/r/southpark", "center": [478.5, 1685.5], "path": [[474.5, 1683.5], [481.5, 1683.5], [481.5, 1687.5], [474.5, 1687.5], [474.5, 1685.5], [480.5, 1684.5], [479.5, 1685.5], [481.5, 1683.5], [481.5, 1687.5], [474.5, 1687.5], [474.5, 1683.5], [480.5, 1686.5]]},
{"id": "txhdcu", "submitted_by": "marzeke", "name": "A", "description": "Catchphrase of hololive vtuber Gawr Gura coined during her first live stream", "website": "", "subreddit": "/r/GawrGura", "center": [266.5, 762.5], "path": [[265.5, 763.5], [265.5, 760.5], [267.5, 760.5], [267.5, 763.5]]},
{"id": "txhbky", "submitted_by": "South_Juice_7259", "name": "Ancap flag", "description": "This is the flag of the political ideology called anarcho-capitalism. Despite the terrible state of this flag, the small Ancap community is happy and proud of this project.", "website": "", "subreddit": "/r/Anarcho_Capitalism", "center": [1486.5, 531.5], "path": [[1473.5, 527.5], [1474.5, 527.5], [1473.5, 535.5], [1499.5, 535.5], [1499.5, 527.5]]},
{"id": "txhjk0", "submitted_by": "RealMan_Gelo", "name": "Minecraft Loading Screen at 69% - MCSR", "description": "", "website": "", "subreddit": "", "center": [1445.5, 1463.5], "path": [[1437.5, 1455.5], [1453.5, 1455.5], [1453.5, 1471.5], [1437.5, 1471.5]]},
{"id": "txhjdf", "submitted_by": "mitchrogoff", "name": "Southern Pudu", "description": "One of the two species of Pudu which are the worlds smallest species of deer. The southern Pudu is found in southern Chile and depicted here drinking mote con huesillo", "website": "", "subreddit": "/r/Chile", "center": [296.5, 488.5], "path": [[285.5, 498.5], [285.5, 492.5], [284.5, 492.5], [284.5, 491.5], [283.5, 490.5], [281.5, 490.5], [281.5, 489.5], [280.5, 489.5], [280.5, 487.5], [278.5, 487.5], [278.5, 484.5], [279.5, 484.5], [279.5, 482.5], [280.5, 481.5], [280.5, 480.5], [281.5, 480.5], [281.5, 478.5], [282.5, 478.5], [282.5, 472.5], [283.5, 471.5], [284.5, 472.5], [285.5, 473.5], [286.5, 474.5], [287.5, 475.5], [290.5, 475.5], [290.5, 474.5], [291.5, 474.5], [291.5, 473.5], [292.5, 473.5], [292.5, 472.5], [293.5, 471.5], [294.5, 470.5], [295.5, 471.5], [295.5, 485.5], [296.5, 485.5], [296.5, 486.5], [297.5, 486.5], [297.5, 487.5], [315.5, 487.5], [315.5, 488.5], [316.5, 489.5], [317.5, 490.5], [318.5, 491.5], [318.5, 498.5]]},
{"id": "txhj71", "submitted_by": "E_Xeon", "name": "Memes Out 4 Duterte", "description": "Currently stylized as meme$ out 4 du30: election year (杜特爾特·梅姆斯: 選舉年), is the name of a public Facebook group dedicated to posting memes typically clowning on Philippine politics, politicians, and/or other people and topics related.", "website": "", "subreddit": "", "center": [407.5, 1673.5], "path": [[397.5, 1670.5], [417.5, 1670.5], [417.5, 1675.5], [397.5, 1675.5], [397.5, 1670.5]]},
{"id": "txhiq9", "submitted_by": "RealMan_Gelo", "name": "Korbanoes", "description": "Top minecraft speedrunner, known for being the first to beat Minecraft in under 15 minutes on a random seed.", "website": "https://www.youtube.com/c/Korbanoes", "subreddit": "", "center": [1477.5, 1450.5], "path": [[1473.5, 1446.5], [1480.5, 1446.5], [1480.5, 1453.5], [1473.5, 1453.5]]},
{"id": "txhiln", "submitted_by": "XSmd24e", "name": "(Colors) Transgender Flag", "description": "", "website": "", "subreddit": "", "center": [28.5, 424.5], "path": [[25.5, 421.5], [25.5, 427.5], [31.5, 427.5], [31.5, 421.5]]},
{"id": "txhidp", "submitted_by": "scaryeehaw", "name": "Austin FC", "description": "Austin FC is Austin's Major League Soccer team, and current home of Our Lord and Saver Brad Stuver. VERDE. LISTOS.", "website": "https://www.austinfc.com/", "subreddit": "/r/AustinFC", "center": [863.5, 1627.5], "path": [[852.5, 1623.5], [852.5, 1631.5], [874.5, 1631.5], [874.5, 1623.5]]},
{"id": "txhia6", "submitted_by": "Dibiblios_Mouklias", "name": "Jerma Logo", "description": "A chess piece of the logo for the streamer Jerma985 who is pictured below as the \"sus\" guy.", "website": "", "subreddit": "/r/jerma985", "center": [90.5, 689.5], "path": [[84.5, 689.5], [85.5, 688.5], [86.5, 687.5], [88.5, 687.5], [88.5, 687.5], [89.5, 688.5], [90.5, 689.5], [91.5, 688.5], [92.5, 687.5], [92.5, 686.5], [92.5, 685.5], [91.5, 685.5], [90.5, 684.5], [91.5, 683.5], [91.5, 682.5], [92.5, 682.5], [93.5, 682.5], [95.5, 683.5], [95.5, 684.5], [95.5, 688.5], [94.5, 689.5], [93.5, 690.5], [92.5, 691.5], [92.5, 692.5], [91.5, 693.5], [90.5, 694.5], [87.5, 694.5], [86.5, 693.5], [85.5, 692.5], [84.5, 691.5], [84.5, 690.5]]},
{"id": "txhhzw", "submitted_by": "zweifelsfall", "name": "Nham and Spurr", "description": "The Minecraft skulls of two popular users and characters on the server Freddit Freebuild. Nham is the white cake, and Spurr is the mint chocolate chip ice cream.\nHaving done fierce battle against Slovakia for over 24 hours, their bodies were eventually cut off and destroyed by rogue Slovaks. The Freebuilders had at one point teamed up with the Catalunyan tongue.", "website": "", "subreddit": "/r/freebuild", "center": [1436.5, 158.5], "path": [[1427.5, 155.5], [1433.5, 155.5], [1433.5, 161.5], [1440.5, 161.5], [1440.5, 155.5], [1445.5, 155.5], [1445.5, 161.5], [1427.5, 161.5], [1427.5, 155.5]]},
@ -5997,7 +5994,7 @@
{"id": "txi3ea", "submitted_by": "RKaider", "name": "FFXIV Full Party and Limit Break Colours", "description": "A set of colours representing the limit break bar and the members of a full party using colours pertaining to the roles a player can play as. Blue is Tank, Green is Healer, and Red is DPS", "website": "", "subreddit": "/r/FFXIV", "center": [1283.5, 565.5], "path": [[1273.5, 563.5], [1293.5, 563.5], [1293.5, 566.5], [1273.5, 566.5]]},
{"id": "txi325", "submitted_by": "TheDakes", "name": "A small assortment of pride flags", "description": "A small assortment of pride flags, added by the 'Tim The Little Music Fox' community. Containing from top to bottom: 1. The rainbow gay pride flag. 2. The (at this moment in time incomplete) Omnisexual flag. 3. Two (Also not yet complete) Transgender flags", "website": "", "subreddit": "", "center": [1120.5, 1190.5], "path": [[1119.5, 1177.5], [1119.5, 1202.5], [1121.5, 1202.5], [1121.5, 1177.5]]},
{"id": "txi2fs", "submitted_by": "CluelesslyConcerned", "name": "Ian", "description": "Ian from SS13, the corgi of the Head of Personnel in some stations.", "website": "https://spacestation13.com", "subreddit": "/r/SS13", "center": [1698.5, 608.5], "path": [[1695.5, 596.5], [1694.5, 605.5], [1692.5, 608.5], [1693.5, 617.5], [1696.5, 618.5], [1698.5, 616.5], [1700.5, 618.5], [1702.5, 618.5], [1703.5, 616.5], [1704.5, 615.5], [1704.5, 607.5], [1703.5, 606.5], [1702.5, 605.5], [1702.5, 597.5], [1701.5, 596.5], [1700.5, 595.5], [1699.5, 596.5], [1698.5, 597.5], [1697.5, 596.5], [1696.5, 595.5]]},
{"id": "txi2a3", "submitted_by": "Caley19", "name": "BloxMania", "description": "CzechoSlovak Minecraft server community founded in march 2013", "website": "https://bloxmania.sk", "subreddit": "/r/slovakia", "center": [1449.5, 152.5], "path": [[1446.5, 145.5], [1453.5, 145.5], [1452.5, 160.5], [1446.5, 160.5]]},
{"id": "txi2a3", "submitted_by": "Caley19", "name": "BloxMania", "description": "A flag with a logo of a Czech and Slovak Minecraft Server Community BloxMania. Founded in march 2013 by Caley19 and his friends.", "website": "https://bloxmania.sk", "subreddit": "/r/slovakia", "center": [1450.5, 153.5], "path": [[1446.5, 145.5], [1453.5, 145.5], [1453.5, 160.5], [1446.5, 160.5]]},
{"id": "txi1lq", "submitted_by": "RealMan_Gelo", "name": "Elysaku", "description": "Top Minecraft AA (All Advancements) speedrunner, the first to obtain all advancements with 1HP on hardcore in Minecraft and has held multiple records in the main AA category.", "website": "https://www.twitch.tv/elysaku", "subreddit": "", "center": [1495.5, 1441.5], "path": [[1491.5, 1437.5], [1498.5, 1437.5], [1498.5, 1444.5], [1491.5, 1444.5]]},
{"id": "txi1hb", "submitted_by": "Xefraccil", "name": "Wilson", "description": "A small rendition of Wilson, creation of Musician and Engineer Martin Molin of the Band Wintergatan. Martin's quest is to create the perfect Marble Machine, an Instrument of instruments that plays music using marbles. During his creation of the Second version of the Machine, while cutting a gear with a CNC machine, an error occurred in the program and cut a gear that would remain with the community until this day, fondly named Wilson. You can catch the journey Martin is taking to build the Marble Machine on his YouTube channel Wintergatan.", "website": "https://youtube.com/c/Wintergatan", "subreddit": "/r/wintergatan", "center": [1317.5, 547.5], "path": [[1311.5, 543.5], [1311.5, 552.5], [1322.5, 552.5], [1322.5, 542.5], [1311.5, 542.5], [1311.5, 552.5]]},
{"id": "txi1di", "submitted_by": "sixshotsniper", "name": "Columbus Blue Jackets | Kivi 80", "description": "This banner was made in conjunction with the Crew 96 badge, to represent Columbus's NHL team and to honor Matiss Kivlenieks, a 24 year old CBJ goaltender who suffered a fatal fireworks accident in 2021.", "website": "https://discord.gg/crew96", "subreddit": "/r/BlueJackets", "center": [564.5, 1379.5], "path": [[560.5, 1366.5], [568.5, 1366.5], [567.5, 1392.5], [560.5, 1392.5]]},
@ -6011,7 +6008,6 @@
{"id": "txhzen", "submitted_by": "Shadoko_", "name": "Le-Gamer-Club", "description": "A Small Friend Groupe, That Was attacked By Homophobes, Nazis, Drug Addicts And The LBC Groupe.", "website": "https://matias.ma/nsfw/", "subreddit": "/r/le_gamer_club", "center": [182.5, 312.5], "path": [[175.5, 308.5], [189.5, 308.5], [189.5, 316.5], [175.5, 316.5]]},
{"id": "txhysz", "submitted_by": "sixshotsniper", "name": "Columbus Crew", "description": "The badge of the first club in the US's Major League Soccer. Built by members of the discordecke and r/TheMassive", "website": "https://discord.gg/crew96", "subreddit": "/r/TheMassive", "center": [578.5, 1380.5], "path": [[569.5, 1367.5], [568.5, 1395.5], [587.5, 1394.5], [589.5, 1366.5]]},
{"id": "txhykg", "submitted_by": "GilDev", "name": "GilDev", "description": "Multi-talented French engineer in embedded systems and computer programming, doing lots of different projects and contests. 🤯", "website": "https://gildev.dev", "subreddit": "", "center": [1688.5, 1613.5], "path": [[1676.5, 1609.5], [1699.5, 1609.5], [1699.5, 1616.5], [1676.5, 1616.5]]},
{"id": "txhybw", "submitted_by": "Demoniacc", "name": "Not FC Barcelona", "description": "The most hated club in Spain, for its foul play and lack of sportsmanship. Known for his arrogance and lack of effectiveness", "website": "", "subreddit": "/r/ealCojos", "center": [1756.5, 292.5], "path": [[1735.5, 280.5], [1773.5, 280.5], [1773.5, 301.5], [1766.5, 303.5], [1759.5, 305.5], [1757.5, 308.5], [1755.5, 313.5], [1745.5, 300.5], [1744.5, 295.5], [1736.5, 288.5]]},
{"id": "txhya9", "submitted_by": "RealMan_Gelo", "name": "Minecraft Eye of Ender - MCSR", "description": "", "website": "", "subreddit": "", "center": [1463.5, 1463.5], "path": [[1455.5, 1455.5], [1471.5, 1455.5], [1471.5, 1471.5], [1455.5, 1471.5]]},
{"id": "txhxw7", "submitted_by": "RealMan_Gelo", "name": "Reignex", "description": "Top Minecraft speedrunner, known for being the fastest to beat Minecraft in Jan-Feb 2021, later to be tied with Zylenox", "website": "https://www.twitch.tv/reignex", "subreddit": "", "center": [1495.5, 1486.5], "path": [[1491.5, 1482.5], [1498.5, 1482.5], [1498.5, 1489.5], [1491.5, 1489.5]]},
{"id": "txhxdk", "submitted_by": "King_Of_Moths", "name": "Killer Queen", "description": "From the long-running manga/anime series JoJo's Bizarre Adventure, Killer Queen is a being known as a Stand, with Stands being the physical manifestation of their user's ideals that only a select few have. In particular, Killer Queen is the Stand of Yoshikage Kira, the main antagonist of the fourth part of the series, JoJo's Bizarre Adventure: Diamond is Unbreakable. A serial killer with a fetish for the hands of women, Kira's Killer Queen has the ability to detonate both objects and people as if they were bombs, with Kira using this ability to swiftly destroy his enemies. The exact post Killer Queen is in references its third ability, Bites the Dust, which has the power to put its targets in a time loop.", "website": "https://jojowiki.com/Killer_Queen", "subreddit": "/r/StardustCrusaders", "center": [103.5, 916.5], "path": [[79.5, 901.5], [132.5, 911.5], [137.5, 922.5], [79.5, 928.5], [80.5, 924.5], [79.5, 914.5]]},
@ -6341,7 +6337,7 @@
{"id": "txm918", "submitted_by": "coasterTA", "name": "Titanfall logo", "description": "Titanfall is a series of first person shooter (FPS) video games developed by Respawn Entertainment, and published by Electronic Arts. Titanfall has been praised for it's approach to FPS gaming, with a fast and well-refined movement system, and combat involving titans (giant mechs).", "website": "", "subreddit": "/r/titanfall", "center": [826.5, 55.5], "path": [[839.5, 61.5], [815.5, 61.5], [823.5, 43.5]]},
{"id": "txm8sv", "submitted_by": "afrangry", "name": "Flag of England", "description": "", "website": "", "subreddit": "/r/england", "center": [615.5, 1714.5], "path": [[611.5, 1711.5], [611.5, 1717.5], [619.5, 1717.5], [619.5, 1711.5], [611.5, 1711.5]]},
{"id": "txm6p6", "submitted_by": "samg10018", "name": "Deepwoken", "description": "Deepwoken is a open world fantasy game on roblox made by Monad studios.", "website": "https://www.roblox.com/games/4111023553/Deepwoken", "subreddit": "/r/deepwoken", "center": [380.5, 1385.5], "path": [[341.5, 1462.5], [370.5, 1462.5], [370.5, 1418.5], [359.5, 1418.5], [359.5, 1389.5], [369.5, 1389.5], [370.5, 1388.5], [371.5, 1388.5], [372.5, 1389.5], [382.5, 1389.5], [382.5, 1391.5], [418.5, 1391.5], [418.5, 1373.5], [441.5, 1373.5], [441.5, 1339.5], [399.5, 1339.5], [399.5, 1350.5], [341.5, 1350.5], [341.5, 1462.5]]},
{"id": "txm6j0", "submitted_by": "DoggOwO", "name": "LGBTQ Pride Circle As", "description": "A sequence of circled As, associated with anarchist thought, each stylized in a different pride flag. Top-down and left-right:abrosexual, lesbian/wlw, aroace, genderfluid, agender, gay/mlm, pansexual, asexual, bisexual, transgender, non-binary", "website": "", "subreddit": "/r/COMPLETEANARCHY", "center": [12.5, 409.5], "path": [[0.5, 372.5], [8.5, 372.5], [8.5, 419.5], [40.5, 419.5], [40.5, 428.5], [0.5, 428.5], [0.5, 372.5]]},
{"id": "txm6j0", "submitted_by": "DoggOwO", "name": "LGBTQ pride circle-A's", "description": "A sequence of circled A's, associated with anarchist thought and queer anarchism, each stylized in a different pride flag. Top-down and left-right: abrosexual, lesbian/WLW, aroace, genderfluid, agender, gay/MLM, pansexual, asexual, bisexual, transgender, non-binary.\n\nQueer anarchism is an anarchist school of thought that advocates anarchism and social revolution as a means of queer liberation and abolition of hierarchies such as homophobia, lesbophobia, transmisogyny, biphobia, transphobia, heteronormativity, patriarchy, and the gender binary.", "website": "https://en.wikipedia.org/wiki/Anarchist_symbolism#Circle-A", "subreddit": "/r/COMPLETEANARCHY, /r/anarchismZ", "center": [12.5, 409.5], "path": [[0.5, 372.5], [8.5, 372.5], [8.5, 419.5], [40.5, 419.5], [40.5, 428.5], [0.5, 428.5], [0.5, 372.5]]},
{"id": "txm63b", "submitted_by": "Icediamondshark", "name": "Norticus", "description": "Norticus is a small hungarian youtuber who mainly makes minecraft videos.", "website": "", "subreddit": "", "center": [1287.5, 275.5], "path": [[1291.5, 271.5], [1283.5, 271.5], [1283.5, 278.5], [1291.5, 278.5]]},
{"id": "txm5qm", "submitted_by": "zundaa_", "name": "Gediminas castle tower", "description": "A symbol of the Lithuanian capital Vilnius. Located in the old town on top of Gediminas hill.", "website": "", "subreddit": "/r/lithuania", "center": [610.5, 1634.5], "path": [[596.5, 1645.5], [596.5, 1643.5], [600.5, 1643.5], [600.5, 1636.5], [601.5, 1636.5], [601.5, 1631.5], [602.5, 1631.5], [602.5, 1623.5], [605.5, 1623.5], [605.5, 1622.5], [606.5, 1622.5], [606.5, 1621.5], [609.5, 1621.5], [609.5, 1614.5], [609.5, 1613.5], [616.5, 1613.5], [616.5, 1617.5], [611.5, 1617.5], [611.5, 1621.5], [614.5, 1621.5], [614.5, 1622.5], [615.5, 1622.5], [615.5, 1623.5], [618.5, 1623.5], [618.5, 1631.5], [619.5, 1631.5], [619.5, 1636.5], [620.5, 1636.5], [620.5, 1643.5], [624.5, 1643.5], [624.5, 1646.5], [596.5, 1646.5]]},
{"id": "txm42c", "submitted_by": "Jackypoo222", "name": "Ukulele", "description": "And his music was electric…", "website": "https://www.riskofrain.com/", "subreddit": "/r/riskofrain", "center": [549.5, 422.5], "path": [[548.5, 428.5], [552.5, 424.5], [552.5, 423.5], [551.5, 422.5], [552.5, 421.5], [554.5, 419.5], [556.5, 417.5], [556.5, 415.5], [554.5, 415.5], [549.5, 420.5], [548.5, 420.5], [547.5, 420.5], [544.5, 423.5], [543.5, 424.5], [543.5, 425.5], [543.5, 426.5], [544.5, 427.5], [546.5, 428.5]]},
@ -6396,7 +6392,7 @@
{"id": "txle3n", "submitted_by": "Travuler", "name": "BOMBi", "description": "The character for an animation Youtube channel, FUNKe.", "website": "https://www.youtube.com/c/FUNKe", "subreddit": "", "center": [1578.5, 1321.5], "path": [[1575.5, 1317.5], [1575.5, 1325.5], [1581.5, 1325.5], [1581.5, 1317.5]]},
{"id": "txldpp", "submitted_by": "QuoiFeurQU", "name": "La Poubelle", "description": "La Poubelle is a French discord server called home to a small community of friends passionate of all internet cultures. The artwork chosen for r/place is a trash bin used as logo for the server.", "website": "https://fr.wikipedia.org/wiki/Sophiste", "subreddit": "", "center": [573.5, 153.5], "path": [[565.5, 146.5], [579.5, 146.5], [579.5, 161.5], [566.5, 161.5], [565.5, 146.5], [565.5, 161.5], [566.5, 161.5]]},
{"id": "txlcg4", "submitted_by": "UHavinAGiggleTherM8", "name": "Nordic hearts made by Maryland", "description": "The hearts signify the allyship and defensive pact between the Nordic Union and Maryland. r/Maryland and r/sweden has had a tight-knit relationship ever since they teamed up during the original r/place in 2017.", "website": "", "subreddit": "/r/Maryland", "center": [274.5, 36.5], "path": [[253.5, 33.5], [253.5, 39.5], [295.5, 39.5], [295.5, 33.5], [253.5, 33.5]]},
{"id": "txlbsc", "submitted_by": "geekahedron", "name": "Mahjong Tiles", "description": "The three dragon tiles in Mahjong. The Hatsu (green dragon) was changed to look like a 'C' to collaborate with the r/wordle artwork.", "website": "", "subreddit": "/r/Mahjong", "center": [1651.5, 1949.5], "path": [[1647.5, 1938.5], [1647.5, 1960.5], [1655.5, 1960.5], [1655.5, 1938.5], [1647.5, 1938.5]]},
{"id": "txlbsc", "submitted_by": "geekahedron", "name": "Mahjong tiles", "description": "The three dragon tiles in Mahjong. The hatsu (green dragon) was changed to look like a 'C' to collaborate with the r/wordle artwork.", "website": "https://en.wikipedia.org/wiki/Mahjong", "subreddit": "/r/Mahjong", "center": [1651.5, 1949.5], "path": [[1647.5, 1938.5], [1647.5, 1960.5], [1655.5, 1960.5], [1655.5, 1938.5], [1647.5, 1938.5]]},
{"id": "txlb5t", "submitted_by": "Floppydrips", "name": "Bubatz Luigi", "description": "The Head of a shocked looking Luigi from Mario Bros. The first light green pixels from the Hat were originally placed by the mods of r/Bubatz in an attempt to write their subreddit name in light green. Due to the large amount of other people placing pixels dont knowing what was originally planned, the Hivemind created a Luigi Head which survived until the end. At some point, it was attempted to place a Joint in Luigis Mouth, since -Bubatz- is a german slang term for that.", "website": "", "subreddit": "/r/Bubatz", "center": [1501.5, 62.5], "path": [[1504.5, 52.5], [1499.5, 52.5], [1498.5, 53.5], [1496.5, 55.5], [1496.5, 57.5], [1495.5, 58.5], [1494.5, 59.5], [1493.5, 60.5], [1493.5, 62.5], [1502.5, 71.5], [1502.5, 72.5], [1507.5, 72.5], [1508.5, 71.5], [1508.5, 63.5], [1507.5, 63.5], [1507.5, 61.5], [1507.5, 60.5], [1507.5, 59.5], [1506.5, 58.5], [1506.5, 56.5], [1505.5, 55.5], [1504.5, 54.5], [1504.5, 52.5], [1503.5, 52.5]]},
{"id": "txl9w0", "submitted_by": "Feeling_Ad1193", "name": "DEEPINS", "description": "A russian streamer and TikTok creator Ivan Bessmertnykh (@deepins)", "website": "https://www.twitch.tv/deepins02?lang=da", "subreddit": "", "center": [1682.5, 1690.5], "path": [[1651.5, 1697.5], [1651.5, 1697.5], [1651.5, 1682.5], [1713.5, 1682.5], [1713.5, 1697.5], [1696.5, 1697.5]]},
{"id": "txl9ri", "submitted_by": "chocomint1", "name": "PortalHub", "description": "A nod to PortalHub, a community project made on the Minecraft Hypixel Skyblock server by two friends, whose aim was to create a hub of Nether portals to help players travel around the game. The project then went on to become a YouTube channel centered around art on Minecraft.", "website": "https://www.youtube.com/portalhub", "subreddit": "/r/hypixelskyblock", "center": [1565.5, 271.5], "path": [[1551.5, 267.5], [1551.5, 274.5], [1579.5, 274.5], [1579.5, 267.5]]},
@ -6561,7 +6557,6 @@
{"id": "txp6y6", "submitted_by": "notdeedee", "name": "5up Leafling", "description": "A small leafling inspired by twitch streamer 5up's emotes and branding. This piece originated from his subtwitter and offline chat, and it was his community's first contribution to r/place. This piece evolved from an original design by @Heevanington on twitter.", "website": "https://twitch.tv/5uppp", "subreddit": "/r/5up", "center": [5.5, 632.5], "path": [[10.5, 621.5], [0.5, 621.5], [0.5, 642.5], [10.5, 642.5]]},
{"id": "txp6w2", "submitted_by": "EmersonEsq", "name": "Iran-Anarchist Truce Heart", "description": "A very late truce made between Iran and the Anarchist collective to the south who were defending the mosaic that separated them while Iran took control of what once was Cascadian territory.", "website": "", "subreddit": "", "center": [13.5, 335.5], "path": [[10.5, 332.5], [10.5, 337.5], [15.5, 337.5], [16.5, 337.5], [16.5, 332.5], [14.5, 332.5]]},
{"id": "txp6kt", "submitted_by": "JLMafiaa", "name": "Jobless Logo", "description": "Created by JL Nateos member of the jobless", "website": "", "subreddit": "JLMafiaa", "center": [1864.5, 79.5], "path": [[1850.5, 65.5], [1850.5, 93.5], [1878.5, 93.5], [1877.5, 64.5], [1850.5, 65.5]]},
{"id": "txp67l", "submitted_by": "CrazyPenks", "name": "Queer Anarchism", "description": "Queer anarchism is an anarchist school of thought that advocates anarchism and social revolution as a means of queer liberation and abolition of hierarchies such as homophobia, lesbophobia, transmisogyny, biphobia, transphobia, heteronormativity, patriarchy, and the gender binary.", "website": "", "subreddit": "/r/Anarchism", "center": [12.5, 409.5], "path": [[9.5, 372.5], [-0.5, 372.5], [-0.5, 430.5], [8.5, 429.5], [8.5, 420.5], [8.5, 430.5], [43.5, 428.5], [41.5, 419.5], [9.5, 419.5]]},
{"id": "txp5wx", "submitted_by": "Versicherungsbetrug", "name": "Minecraft Creepers", "description": "Creepers are explosive NPCs in the game Minecraft. One of the most famous songs of the Minecraft OST is called Sweden, which might be the reason for those Creepers to be on the Swedish flag.", "website": "", "subreddit": "/r/minecraft", "center": [786.5, 85.5], "path": [[773.5, 77.5], [773.5, 92.5], [799.5, 92.5], [799.5, 78.5]]},
{"id": "txp5va", "submitted_by": "HawkErZZ", "name": "NeoSekai Translations", "description": "The logo of NeoSekai Translations depicting a globe with the letters TL, a translation group that translates Japanese Manga, Web novels and Light Novels", "website": "http://neosekaitranslations.com/", "subreddit": "", "center": [1646.5, 1814.5], "path": [[1643.5, 1816.5], [1643.5, 1815.5], [1643.5, 1814.5], [1643.5, 1812.5], [1648.5, 1811.5], [1649.5, 1816.5], [1648.5, 1817.5], [1646.5, 1817.5], [1644.5, 1817.5]]},
{"id": "txp5lj", "submitted_by": "RoarG90", "name": "TibiaMMO - Lost Art", "description": "A lost pixel battle from a small community of a 25 year old game, how it looked: https://i.imgur.com/LaZFduo.png", "website": "https://www.tibia.com/", "subreddit": "/r/TibiaMMO", "center": [378.5, 1875.5], "path": [[339.5, 1861.5], [338.5, 1887.5], [418.5, 1889.5], [417.5, 1861.5]]},
@ -6877,7 +6872,7 @@
{"id": "txyw6n", "submitted_by": "Saray13434", "name": "BadBoyHalo", "description": "BadBoyHalo or BBH is a Youtuber and Streamer, loves muffins, so much so that he has a sing called Muffin (its considered to be an anti-skeppy song), he also has a dog name rat and he appears in the Dream SMP", "website": "https://www.twitch.tv/badboyhalo", "subreddit": "/r/badboyhalo", "center": [159.5, 922.5], "path": [[155.5, 918.5], [155.5, 925.5], [163.5, 925.5], [163.5, 918.5]]},
{"id": "txyw5g", "submitted_by": "Xachcen", "name": "Dark chao", "description": "A dark chao from the Sonic series of video games. Premiered in Sonic adventure 2", "website": "", "subreddit": "/r/chao", "center": [1388.5, 148.5], "path": [[1383.5, 142.5], [1393.5, 142.5], [1391.5, 154.5], [1383.5, 153.5], [1383.5, 153.5], [1383.5, 142.5]]},
{"id": "txyvni", "submitted_by": "valinkrai", "name": "Bean", "description": "Bean. The people in Many a True Nerd who know Bean know who Bean is.", "website": "", "subreddit": "", "center": [1496.5, 916.5], "path": [[1493.5, 919.5], [1498.5, 919.5], [1498.5, 912.5], [1493.5, 912.5]]},
{"id": "txyv2h", "submitted_by": "JayTheSpar", "name": "Anarcho-communism flag", "description": "The flag of the political ideology anarcho-communism", "website": "", "subreddit": "/r/anarchocommunism", "center": [1486.5, 531.5], "path": [[1473.5, 527.5], [1473.5, 535.5], [1499.5, 535.5], [1499.5, 527.5]]},
{"id": "txyv2h", "submitted_by": "JayTheSpar", "name": "Anarcho-communism flag", "description": "The flag of the anarcho-communism political ideology, an anarchist political ideology that advocates for the abolition of states and hierarchies.", "website": "https://en.wikipedia.org/wiki/Anarcho-communism", "subreddit": "/r/anarchism, /r/anarchocommunism", "center": [1486.5, 531.5], "path": [[1473.5, 527.5], [1473.5, 535.5], [1499.5, 535.5], [1499.5, 527.5]]},
{"id": "txyupx", "submitted_by": "DOOMdesign", "name": "Sunset", "description": "A small but beautiful sunset, drawn by the combined communities of twitch streamers @suuN and @doomdesign", "website": "", "subreddit": "", "center": [859.5, 1370.5], "path": [[853.5, 1364.5], [864.5, 1364.5], [864.5, 1375.5], [853.5, 1375.5]]},
{"id": "txyuov", "submitted_by": "Starriilite", "name": "Miraculous Ladybug", "description": "Small pixel chibi of Ladybug from the cartoon show, Miraculous: Tales of Ladybug and Cat Noir.", "website": "", "subreddit": "", "center": [1887.5, 1015.5], "path": [[1882.5, 1007.5], [1891.5, 1007.5], [1891.5, 1008.5], [1892.5, 1009.5], [1892.5, 1013.5], [1893.5, 1013.5], [1894.5, 1015.5], [1893.5, 1016.5], [1892.5, 1016.5], [1892.5, 1020.5], [1891.5, 1021.5], [1890.5, 1021.5], [1890.5, 1023.5], [1889.5, 1023.5], [1889.5, 1024.5], [1884.5, 1024.5], [1884.5, 1023.5], [1883.5, 1023.5], [1883.5, 1021.5], [1882.5, 1021.5], [1882.5, 1020.5], [1881.5, 1020.5], [1881.5, 1018.5], [1882.5, 1018.5], [1882.5, 1017.5], [1883.5, 1017.5], [1883.5, 1016.5], [1879.5, 1016.5], [1879.5, 1013.5], [1881.5, 1013.5], [1881.5, 1008.5], [1883.5, 1008.5], [1891.5, 1007.5]]},
{"id": "txyukw", "submitted_by": "targetbuddy", "name": "Hunter's Mark (Bloodborne)", "description": "A consumable item in the game Bloodborne, as well as a symbol that appears in various places in the game.", "website": "https://bloodborne.fandom.com/wiki/Hunter%27s_Mark", "subreddit": "/r/bloodborne", "center": [1408.5, 64.5], "path": [[1408.5, 74.5], [1401.5, 66.5], [1401.5, 64.5], [1401.5, 65.5], [1406.5, 60.5], [1406.5, 51.5], [1409.5, 51.5], [1409.5, 60.5], [1414.5, 65.5], [1414.5, 66.5], [1413.5, 67.5], [1412.5, 69.5], [1409.5, 72.5], [1409.5, 74.5], [1408.5, 74.5]]},
@ -7008,7 +7003,6 @@
{"id": "ty1fr5", "submitted_by": "Chupapig6996", "name": "River Plate flag failed attemp", "description": "After taking over the boca juniors flag with the help of bots and the communities of argentina, bolivia, paraguay and lovelive.\nThe community of River Plate attemp with the help of bots to make a flag before the final moments of the canvas", "website": "", "subreddit": "/r/CAriverplate", "center": [915.5, 699.5], "path": [[911.5, 695.5], [918.5, 695.5], [918.5, 702.5], [911.5, 702.5]]},
{"id": "ty1fai", "submitted_by": "Pilar3x", "name": "WatermelonPandaPantsuCrew", "description": "A Watermelon and a Pantsu, drawn by the community of twitch Vstreamer/Vtuber @sukidingels", "website": "https://www.twitch.tv/sukidingels", "subreddit": "", "center": [857.5, 1379.5], "path": [[869.5, 1375.5], [869.5, 1379.5], [868.5, 1379.5], [868.5, 1382.5], [867.5, 1382.5], [867.5, 1383.5], [866.5, 1383.5], [866.5, 1384.5], [851.5, 1384.5], [851.5, 1383.5], [850.5, 1383.5], [850.5, 1382.5], [849.5, 1382.5], [849.5, 1381.5], [848.5, 1381.5], [848.5, 1380.5], [847.5, 1380.5], [847.5, 1379.5], [846.5, 1379.5], [846.5, 1378.5], [845.5, 1378.5], [845.5, 1377.5], [844.5, 1377.5], [844.5, 1375.5], [869.5, 1375.5]]},
{"id": "ty1eib", "submitted_by": "Vigitant_01", "name": "Guya.moe", "description": "An unofficial fan website for the manga Kaguya-Sama: Love Is War. Mostly used as a place to host fan translations of the various mangas related to the series.", "website": "https://guya.moe/", "subreddit": "/r/Kaguya_sama", "center": [1504.5, 517.5], "path": [[1503.5, 535.5], [1505.5, 535.5], [1509.5, 530.5], [1509.5, 501.5], [1500.5, 501.5], [1500.5, 530.5]]},
{"id": "ty1ee2", "submitted_by": "Marshymellowyellow", "name": "1312", "description": "A numerical phrase that translates to the word ACAB. The phrase used to commonly be used by Skinheads, but during the late 2010s and early 2020s it became a far leftist term used during anti police and anti police brutality demonstrations. It can be seen as hateful, and is highly controversial. Due to the generalization of all cops, the movement is looked down upon by a large amount of people.", "website": "https://en.m.wikipedia.org/wiki/ACAB", "subreddit": "/r/anarchism", "center": [31.5, 413.5], "path": [[18.5, 408.5], [42.5, 406.5], [45.5, 420.5], [18.5, 419.5]]},
{"id": "ty1ecj", "submitted_by": "Ekksvar", "name": "StarClash", "description": "The ship representing the small group of people known as StarClash.", "website": "", "subreddit": "", "center": [245.5, 1234.5], "path": [[240.5, 1225.5], [250.5, 1225.5], [250.5, 1242.5], [240.5, 1242.5]]},
{"id": "ty1dhk", "submitted_by": "Delicious_Extent_495", "name": "KADEN", "description": "Uno de los mas famosísimos cantantes de los tiempos actuales, se hizo muy conocido con la frase \"KUCHAOOUU\" y \"CHUPALA VIC\"", "website": "https://www.youtube.com/channel/UCFU5DqQpNrb7VffuSb0u-gg", "subreddit": "", "center": [942.5, 1961.5], "path": [[949.5, 1952.5], [955.5, 1959.5], [950.5, 1969.5], [945.5, 1969.5], [944.5, 1966.5], [933.5, 1966.5], [933.5, 1967.5], [927.5, 1967.5], [927.5, 1963.5], [939.5, 1952.5], [941.5, 1955.5], [945.5, 1954.5], [948.5, 1952.5]]},
{"id": "ty1bxu", "submitted_by": "Possum_Gal", "name": "Pansexual Rainbow", "description": "A rainbow colored using the colors of pansexual pride. Pansexuality differs from Bisexuality because pansexuals are attracted to the person not their gender.", "website": "", "subreddit": "/r/transplace", "center": [698.5, 471.5], "path": [[699.5, 475.5], [699.5, 474.5], [700.5, 473.5], [702.5, 473.5], [703.5, 473.5], [704.5, 472.5], [705.5, 471.5], [704.5, 470.5], [704.5, 469.5], [704.5, 468.5], [704.5, 467.5], [704.5, 466.5], [703.5, 466.5], [699.5, 466.5], [698.5, 466.5], [698.5, 467.5], [697.5, 467.5], [696.5, 467.5], [696.5, 468.5], [695.5, 468.5], [694.5, 469.5], [694.5, 470.5], [693.5, 471.5], [692.5, 472.5], [692.5, 475.5], [692.5, 476.5], [699.5, 476.5]]},
@ -7684,7 +7678,6 @@
{"id": "tz8210", "submitted_by": "AnonymousRandPerson", "name": "Firey", "description": "The first contestant in Battle for Dream Island.", "website": "https://battlefordreamisland.fandom.com/wiki/Firey", "subreddit": "/r/BattleForDreamIsland, /r/place_CentralAlliance", "center": [493.5, 1072.5], "path": [[487.5, 1062.5], [485.5, 1064.5], [485.5, 1065.5], [484.5, 1066.5], [484.5, 1073.5], [483.5, 1074.5], [483.5, 1079.5], [486.5, 1079.5], [486.5, 1077.5], [487.5, 1077.5], [489.5, 1079.5], [489.5, 1080.5], [488.5, 1081.5], [488.5, 1083.5], [492.5, 1083.5], [492.5, 1079.5], [494.5, 1079.5], [494.5, 1083.5], [498.5, 1083.5], [498.5, 1081.5], [497.5, 1080.5], [497.5, 1079.5], [500.5, 1076.5], [500.5, 1079.5], [503.5, 1079.5], [503.5, 1074.5], [502.5, 1073.5], [502.5, 1066.5], [501.5, 1065.5], [501.5, 1064.5], [499.5, 1062.5], [498.5, 1062.5], [497.5, 1062.5], [497.5, 1064.5], [495.5, 1062.5], [493.5, 1064.5], [491.5, 1062.5], [489.5, 1064.5], [489.5, 1062.5]]},
{"id": "tz7wsw", "submitted_by": "goldenpggie", "name": "7 7 memorial", "description": "A small memorial for a beloved waterpolo trainer from Austria. In honour of their trainer and the impact he has had on these kids their childhoods, they wanted to return the favour by adding the trainers his favourite number: 7", "website": "", "subreddit": "", "center": [138.5, 710.5], "path": [[134.5, 711.5], [134.5, 707.5], [142.5, 707.5], [142.5, 712.5], [134.5, 712.5]]},
{"id": "tz7up9", "submitted_by": "KuraiShizen_", "name": "XinXon Juu <3", "description": "XinXon writed by JUupinyero's Twitch community. Xinxon is a word passed down by KuraiShizen that is used to show joy at any time.", "website": "https://www.twitch.tv/juupinyero", "subreddit": "[/r/JUuPinyero", "center": [1525.5, 606.5], "path": [[1512.5, 599.5], [1512.5, 612.5], [1538.5, 612.5], [1538.5, 599.5], [1512.5, 599.5]]},
{"id": "tz7rdc", "submitted_by": "JSARTONNE", "name": "Z French flag", "description": "Reconqu\u00eate (right-wing political party) VS LFI (extreme left-wing party). Fight for Eric Zemmour led by KBG Stream (Youtube Channel), without bot", "website": "https://www.youtube.com/watch?v=BDdB2IR4vwE", "subreddit": "", "center": [1677.5, 743.5], "path": [[1664.5, 765.5], [1687.5, 765.5], [1688.5, 762.5], [1689.5, 756.5], [1688.5, 756.5], [1688.5, 738.5], [1690.5, 734.5], [1690.5, 729.5], [1695.5, 723.5], [1694.5, 722.5], [1664.5, 722.5]]},
{"id": "tz7r38", "submitted_by": "Risiki", "name": "Highly contested territory", "description": "*Akhem* What is supposed to be here? No, no, no, definetly not Russia, not even the Russian oppositon. Some people though it should be Ukraine. People of Baltics would have prefered Baltic Prussian flag. Some Lithianian and Polish randoms were sure it is their land. Or is it sea? Eventually someone noticed that the are is starting to take shape of giant fish-shaped bay and suggested seeking out and inviting fish entusiasts, which mostly resolved the issue.", "website": "", "subreddit": "", "center": [1903.5, 167.5], "path": [[1913.5, 172.5], [1896.5, 172.5], [1896.5, 167.5], [1895.5, 165.5], [1895.5, 162.5], [1896.5, 161.5], [1899.5, 161.5], [1900.5, 162.5], [1900.5, 162.5], [1903.5, 162.5], [1904.5, 163.5], [1905.5, 164.5], [1905.5, 165.5], [1910.5, 165.5], [1910.5, 166.5], [1912.5, 166.5], [1912.5, 169.5], [1913.5, 169.5]]},
{"id": "tz7p1y", "submitted_by": "Hellon_", "name": "Three O'Clock", "description": "A French Sea of Thieves clan named \"Three O'Clock\"", "website": "", "subreddit": "", "center": [308.5, 1770.5], "path": [[299.5, 1767.5], [299.5, 1773.5], [316.5, 1773.5], [316.5, 1767.5], [299.5, 1767.5]]},
{"id": "tz7k6h", "submitted_by": "Squigglish", "name": "Iceland Heart", "description": "A heart adorned with the flag of Iceland.", "website": "https://en.wikipedia.org/wiki/Iceland", "subreddit": "/r/place_nordicunion", "center": [469.5, 102.5], "path": [[465.5, 104.5], [468.5, 107.5], [475.5, 101.5], [472.5, 98.5], [468.5, 98.5], [463.5, 99.5]]},
@ -7718,5 +7711,95 @@
{"id": "tz3zan", "submitted_by": "NerdMC", "name": "The Bottom-Left Brown Square", "description": "An attempt to create a brown square in the bottom-left corner of the canvas.", "website": "", "subreddit": "/r/bottomleftbrownsquare", "center": [4.5, 1995.5], "path": [[0.5, 1991.5], [8.5, 1991.5], [8.5, 1999.5], [0.5, 1999.5]]},
{"id": "tzjfto", "submitted_by": "Limp_Drop4391", "name": "The Golden Compass", "description": "The Golden Compass from His Dark Materials, a series of fantasy books (and now a TV show and Film) written by Philip Pullman, made as part of the Fantasy x Sci-fi alliance!", "website": "", "subreddit": "", "center": [1646.5, 1423.5], "path": [[1642.5, 1418.5], [1642.5, 1417.5], [1643.5, 1417.5], [1643.5, 1416.5], [1648.5, 1416.5], [1649.5, 1416.5], [1649.5, 1417.5], [1650.5, 1417.5], [1650.5, 1418.5], [1651.5, 1418.5], [1651.5, 1419.5], [1652.5, 1419.5], [1652.5, 1419.5], [1652.5, 1419.5], [1652.5, 1419.5], [1652.5, 1420.5], [1653.5, 1420.5], [1653.5, 1426.5], [1652.5, 1426.5], [1652.5, 1427.5], [1651.5, 1427.5], [1651.5, 1428.5], [1650.5, 1428.5], [1650.5, 1429.5], [1649.5, 1429.5], [1649.5, 1430.5], [1643.5, 1430.5], [1643.5, 1429.5], [1642.5, 1429.5], [1642.5, 1428.5], [1641.5, 1428.5], [1641.5, 1427.5], [1640.5, 1427.5], [1640.5, 1426.5], [1639.5, 1426.5], [1639.5, 1420.5], [1639.5, 1420.5], [1640.5, 1420.5], [1640.5, 1419.5], [1641.5, 1419.5], [1641.5, 1418.5]]},
{"id": "tzjdeb", "submitted_by": "REDIZAN", "name": "XinXon (JUuPinyero)", "description": "Judith Pinyero (JUuPinyero in social networks) is a Spanish YouTuber and Streamer born in the autonomous community of Catalonia\nAccording to what Judith told live, she said that her name came thanks to her little cousin who called her Ju diminutive of Judith and added JU plus her last name.", "website": "https://twitch.tv/JUuPinyero", "subreddit": "/r/JUuPinyero", "center": [1525.5, 605.5], "path": [[1513.5, 612.5], [1512.5, 599.5], [1538.5, 599.5], [1538.5, 612.5]]},
{"id": "tzjb5s", "submitted_by": "Interesting-Squash11", "name": "TPC BR", "description": "Neopets Discord server formed by Brazilian and Portuguese players.", "website": "", "subreddit": "/r/Neopets", "center": [306.5, 739.5], "path": [[302.5, 734.5], [302.5, 743.5], [310.5, 743.5], [310.5, 734.5], [302.5, 734.5]]}
{"id": "tzjb5s", "submitted_by": "Interesting-Squash11", "name": "TPC BR", "description": "Neopets Discord server formed by Brazilian and Portuguese players.", "website": "", "subreddit": "/r/Neopets", "center": [306.5, 739.5], "path": [[302.5, 734.5], [302.5, 743.5], [310.5, 743.5], [310.5, 734.5], [302.5, 734.5]]},
{"id": "tzxhb8", "submitted_by": "gogboostacarre", "name": "carreb / Cold Face emoji", "description": "A cold face emoji based on the minecraft skin of carreb. Built by Floaters. Eventually destroyed by the Messirve drawing.", "website": "https://namemc.com/skin/119db9f11f1e3640", "subreddit": "", "center": [1899.5, 940.5], "path": [[1894.5, 935.5], [1903.5, 935.5], [1903.5, 944.5], [1894.5, 944.5], [1894.5, 935.5]]},
{"id": "tzxeag", "submitted_by": "cats1338", "name": "Meta Studio", "description": "Meta Studio is an Incremental Game Discord server created by Flame.", "website": "https://discord.gg/Pf6EEJ84PK", "subreddit": "[/r/gwaplace](/r/gwaplace", "center": [1126.5, 1791.5], "path": [[1121.5, 1786.5], [1131.5, 1786.5], [1131.5, 1796.5], [1121.5, 1796.5], [1121.5, 1786.5]]},
{"id": "tzxcbo", "submitted_by": "ThaneBoi", "name": "Raphael", "description": "Red masked turtle from teenage mutant ninja turtles.", "website": "", "subreddit": "", "center": [1120.5, 223.5], "path": [[1118.5, 228.5], [1127.5, 224.5], [1129.5, 221.5], [1122.5, 216.5], [1114.5, 222.5], [1112.5, 227.5]]},
{"id": "tzxbmo", "submitted_by": "ThaneBoi", "name": "Leonardo", "description": "Blue masked turtle from teenage mutant ninja turtles.", "website": "", "subreddit": "", "center": [1106.5, 223.5], "path": [[1096.5, 230.5], [1107.5, 231.5], [1114.5, 225.5], [1117.5, 217.5], [1106.5, 214.5], [1095.5, 225.5], [1095.5, 225.5]]},
{"id": "tzxagt", "submitted_by": "ThaneBoi", "name": "Michelangelo", "description": "Orange masked turtle from teenage mutant ninja turtles.", "website": "", "subreddit": "", "center": [1158.5, 236.5], "path": [[1148.5, 240.5], [1162.5, 243.5], [1167.5, 242.5], [1169.5, 236.5], [1164.5, 231.5], [1153.5, 230.5], [1146.5, 234.5]]},
{"id": "tzx99p", "submitted_by": "ThaneBoi", "name": "Donatello", "description": "Purple masked turtle from teenage mutant ninja turtles.", "website": "", "subreddit": "", "center": [1124.5, 236.5], "path": [[1114.5, 242.5], [1130.5, 243.5], [1137.5, 235.5], [1136.5, 232.5], [1126.5, 229.5], [1116.5, 232.5], [1110.5, 236.5], [1112.5, 241.5]]},
{"id": "tzwws7", "submitted_by": "naliliV2", "name": "Logo OptiFine", "description": "OptiFine is a Minecraft optimization mod.\n\nIt allows Minecraft to run faster and look better with full support for HD textures and many configuration options.", "website": "https://optifine.net/home", "subreddit": "", "center": [810.5, 669.5], "path": [[804.5, 664.5], [807.5, 664.5], [807.5, 661.5], [815.5, 661.5], [815.5, 677.5], [804.5, 677.5]]},
{"id": "tzwtx2", "submitted_by": "IDontEatTheAvocados", "name": "Former Bluebias", "description": "Emote from Streamer and Youtuber txbergy (TXB), originating from his halloween stream in 2020 where he was asked to look directly at the camera", "website": "https://cdn.discordapp.com/attachments/469592747599331330/772378275934109696/2yuowh.jpg", "subreddit": "", "center": [37.5, 343.5], "path": [[35.5, 341.5], [39.5, 341.5], [39.5, 345.5], [35.5, 345.5], [35.5, 341.5], [35.5, 341.5]]},
{"id": "tzwr35", "submitted_by": "Top_Statistician6492", "name": "Bluebias (massacred)", "description": "An emote of content creator Tobias Bergdorf, where his face is covered in blue paint. It has been massacred by red and eggs.", "website": "https://www.reddit.com/user/tobiasbergdorf", "subreddit": "", "center": [0.5, 0.5], "path": [[35.5, 341.5], [35.5, 345.5], [36.5, 345.5], [36.5, 341.5], [37.5, 341.5], [37.5, 345.5], [38.5, 345.5], [38.5, 341.5], [39.5, 341.5], [39.5, 345.5], [37.5, 343.5]]},
{"id": "tzvojp", "submitted_by": "sosig808", "name": "artiso Logo", "description": "Artiso is a software company from Germany. I am a trainee in the company and decided to put a small version of our logo onto r/Place.", "website": "https://www.artiso.com", "subreddit": "", "center": [1795.5, 318.5], "path": [[1792.5, 316.5], [1792.5, 319.5], [1797.5, 319.5], [1797.5, 316.5], [1792.5, 316.5]]},
{"id": "tzujjw", "submitted_by": "_Falcon-_", "name": "amogus", "description": "The Last Supper amogus with a cool hat", "website": "", "subreddit": "/r/AmongUs", "center": [972.5, 1087.5], "path": [[971.5, 1084.5], [971.5, 1090.5], [971.5, 1089.5], [973.5, 1089.5], [973.5, 1090.5], [973.5, 1084.5], [973.5, 1085.5]]},
{"id": "tzsvvh", "submitted_by": "TheKadenChatYo", "name": "The Firey Flag", "description": "at the /r/BattleForDreamIsland there was a post that they were making firey in /r/place then later got destroyed by the ukraine flag. so they made a firey flag instead then later got covered", "website": "", "subreddit": "/r/BattleForDreamIsland", "center": [620.5, 876.5], "path": [[609.5, 866.5], [630.5, 866.5], [630.5, 885.5], [609.5, 885.5]]},
{"id": "tzs06o", "submitted_by": "Stepdaddy1", "name": "Denmark-Poland Heart", "description": "A heart depicting the flags of Denmark and Poland as a sign of peace between the two flags", "website": "", "subreddit": "/r/Denmark, /r/Poland", "center": [591.5, 343.5], "path": [[591.5, 348.5], [596.5, 343.5], [596.5, 342.5], [596.5, 341.5], [595.5, 340.5], [594.5, 339.5], [592.5, 339.5], [591.5, 340.5], [590.5, 340.5], [589.5, 339.5], [587.5, 339.5], [586.5, 340.5], [585.5, 341.5], [585.5, 343.5], [590.5, 348.5]]},
{"id": "tzrdwb", "submitted_by": "_scndry", "name": "The war of Horde and Alliance", "description": "The two colours in the backround of the World of Warcraft logo each represent a fraction.\nThe Horde (red) assaulted the Alliance (blue) in order to display dominance, in form of occupying more area within the logo.\nThe blue area was suprisingly well defended, which led to a back in forth.\nThe result is an underwhelming victory for the Horde.", "website": "", "subreddit": "/r/wow", "center": [325.5, 1867.5], "path": [[322.5, 1869.5], [327.5, 1869.5], [327.5, 1864.5], [322.5, 1864.5], [322.5, 1869.5], [327.5, 1869.5], [327.5, 1864.5], [322.5, 1864.5], [322.5, 1869.5], [327.5, 1869.5], [327.5, 1864.5], [322.5, 1864.5], [322.5, 1869.5]]},
{"id": "tzr314", "submitted_by": "gabwiell", "name": "Groupe INSA", "description": "Largest group of engineering schools in France", "website": "https://www.groupe-insa.fr/", "subreddit": "", "center": [20.5, 1074.5], "path": [[40.5, 1068.5], [40.5, 1079.5], [0.5, 1079.5], [0.5, 1068.5]]},
{"id": "tzqsot", "submitted_by": "OMEGA-LS", "name": "21 of love", "description": "A little input by one boy, 21 is the day of his anniversary with his girlfriend", "website": "https://twitter.com/OmegaFoxo", "subreddit": "", "center": [1113.5, 328.5], "path": [[1105.5, 325.5], [1113.5, 333.5], [1120.5, 325.5]]},
{"id": "tzqoeb", "submitted_by": "Shrezno", "name": "Alveus Sanctuary", "description": "Nonprofit wildlife sanctuary & virtual education center, founded by Maya Higa", "website": "https://www.alveussanctuary.org/", "subreddit": "", "center": [1957.5, 1345.5], "path": [[1950.5, 1337.5], [1965.5, 1337.5], [1965.5, 1348.5], [1961.5, 1348.5], [1962.5, 1354.5], [1950.5, 1354.5], [1950.5, 1343.5], [1950.5, 1337.5]]},
{"id": "tzputd", "submitted_by": "Davdusenn", "name": "VRChat group BMG Logo", "description": "BMG(Blue mirror gang) Is a small group of friends who enjoy chilling out in front of mirrors in VRChat while wearing blue colored avatars.", "website": "", "subreddit": "", "center": [1587.5, 1693.5], "path": [[1587.5, 1693.5], [1582.5, 1690.5], [1582.5, 1689.5], [1592.5, 1689.5], [1592.5, 1697.5], [1582.5, 1697.5], [1582.5, 1691.5], [1584.5, 1691.5], [1582.5, 1691.5], [1586.5, 1689.5]]},
{"id": "tzpf2v", "submitted_by": "ThijMan", "name": "Klonkie", "description": "Klonkie, Kloenk or Klok beer is The Netherlands most delicious beer. Real men of culture drink a Klonkie on room temperature. If you get served a cold Klonk, it is tradition that you warm it up on the heater or in the microwave.", "website": "https://deklokbier.nl/", "subreddit": "/r/klokmemes", "center": [965.5, 1960.5], "path": [[958.5, 1950.5], [971.5, 1950.5], [971.5, 1970.5], [958.5, 1970.5]]},
{"id": "tzp97t", "submitted_by": "Razaboch", "name": "TCBR Smile ( orb)", "description": "The smile (and pink jump orb) from the end of The Challenge by RobTop, a level in the game Geometry Dash. Created by members of the Aktimoose's Attic discord server.\n(Ireland was allowed to go behind a portion of it)", "website": "https://discord.gg/FfsxEvv", "subreddit": "", "center": [912.5, 1171.5], "path": [[905.5, 1166.5], [918.5, 1166.5], [918.5, 1176.5], [905.5, 1176.5]]},
{"id": "tzo6u9", "submitted_by": "AnonymousRandPerson", "name": "Boca Juniors", "description": "Colors of the Boca Juniors, one of the most popular football teams in Argentina.", "website": "https://en.wikipedia.org/wiki/Boca_Juniors", "subreddit": "/r/argentina", "center": [1120.5, 654.5], "path": [[1122.5, 645.5], [1120.5, 647.5], [1119.5, 647.5], [1114.5, 652.5], [1114.5, 661.5], [1125.5, 661.5], [1125.5, 659.5], [1124.5, 659.5], [1124.5, 652.5], [1125.5, 651.5], [1125.5, 647.5], [1123.5, 645.5]]},
{"id": "tzo5ll", "submitted_by": "SUS_Admin", "name": "Andiistische A", "description": "The A Icon, representative of the Andiistische Volkspartei. A niche German gaming community", "website": "", "subreddit": "", "center": [1976.5, 867.5], "path": [[1975.5, 868.5], [1975.5, 865.5], [1977.5, 865.5], [1977.5, 868.5]]},
{"id": "tzo4o8", "submitted_by": "AnonymousRandPerson", "name": "Flag of Argentina", "description": "", "website": "https://en.wikipedia.org/wiki/Argentina", "subreddit": "/r/argentina", "center": [1126.5, 662.5], "path": [[1116.5, 660.5], [1116.5, 661.5], [1119.5, 664.5], [1133.5, 664.5], [1136.5, 661.5], [1136.5, 660.5]]},
{"id": "tzo438", "submitted_by": "AnonymousRandPerson", "name": "Uruguay-Argentina hearts", "description": "Hearts depicting the flags of Uruguay and Argentina.", "website": "", "subreddit": "/r/uruguay, /r/argentina", "center": [1147.5, 665.5], "path": [[1103.5, 660.5], [1100.5, 663.5], [1100.5, 665.5], [1105.5, 670.5], [1189.5, 670.5], [1195.5, 665.5], [1195.5, 663.5], [1192.5, 660.5]]},
{"id": "tzo1vc", "submitted_by": "AnonymousRandPerson", "name": "Fernet-Branca Among Us crewmate", "description": "An Among Us crewmate on the label of a Fernet-Branca bottle.", "website": "https://en.wikipedia.org/wiki/Fernet-Branca", "subreddit": "/r/argentina", "center": [1019.5, 660.5], "path": [[1017.5, 657.5], [1017.5, 663.5], [1021.5, 663.5], [1021.5, 661.5], [1022.5, 661.5], [1022.5, 658.5], [1021.5, 658.5], [1021.5, 657.5], [1017.5, 657.5]]},
{"id": "tzo1ff", "submitted_by": "AnonymousRandPerson", "name": "Fernet con coca Among Us crewmate", "description": "An Among Us crewmate in a cup of fernet con coca.", "website": "https://en.wikipedia.org/wiki/Fernet_con_coca", "subreddit": "/r/argentina", "center": [1031.5, 655.5], "path": [[1029.5, 652.5], [1029.5, 657.5], [1033.5, 657.5], [1033.5, 656.5], [1034.5, 656.5], [1034.5, 653.5], [1033.5, 653.5], [1033.5, 652.5], [1029.5, 652.5]]},
{"id": "tzo0sc", "submitted_by": "AnonymousRandPerson", "name": "Coca-Cola Among Us crewmate", "description": "An Among Us crewmate on a Coca-Cola bottle label.", "website": "https://en.wikipedia.org/wiki/Coca-Cola", "subreddit": "/r/argentina", "center": [1040.5, 655.5], "path": [[1038.5, 652.5], [1038.5, 657.5], [1042.5, 657.5], [1042.5, 656.5], [1043.5, 656.5], [1043.5, 653.5], [1042.5, 653.5], [1042.5, 652.5], [1038.5, 652.5]]},
{"id": "tzo09g", "submitted_by": "AnonymousRandPerson", "name": "Coca-Cola", "description": "An American soft drink. Mixed with Fernet-Branca to make fernet con coca.", "website": "https://en.wikipedia.org/wiki/Coca-Cola", "subreddit": "/r/argentina", "center": [1041.5, 654.5], "path": [[1038.5, 641.5], [1038.5, 647.5], [1037.5, 648.5], [1037.5, 650.5], [1036.5, 651.5], [1036.5, 657.5], [1037.5, 658.5], [1037.5, 660.5], [1036.5, 661.5], [1036.5, 665.5], [1045.5, 665.5], [1045.5, 661.5], [1044.5, 660.5], [1044.5, 658.5], [1045.5, 657.5], [1045.5, 651.5], [1044.5, 650.5], [1044.5, 648.5], [1043.5, 647.5], [1043.5, 641.5]]},
{"id": "tznzdf", "submitted_by": "AnonymousRandPerson", "name": "Fernet-Branca", "description": "An alcoholic beverage from Italy. Mixed with Coca-Cola to make fernet con coca.", "website": "https://en.wikipedia.org/wiki/Fernet-Branca", "subreddit": "/r/argentina", "center": [1020.5, 655.5], "path": [[1017.5, 643.5], [1017.5, 651.5], [1015.5, 653.5], [1015.5, 665.5], [1024.5, 665.5], [1024.5, 653.5], [1022.5, 651.5], [1022.5, 643.5], [1017.5, 643.5]]},
{"id": "tznvdg", "submitted_by": "AnonymousRandPerson", "name": "Hornero", "description": "The hornero is the national bird of Argentina.", "website": "https://en.wikipedia.org/wiki/Hornero", "subreddit": "/r/argentina", "center": [950.5, 673.5], "path": [[945.5, 666.5], [943.5, 668.5], [940.5, 668.5], [940.5, 670.5], [943.5, 670.5], [945.5, 674.5], [947.5, 676.5], [948.5, 676.5], [948.5, 679.5], [954.5, 679.5], [954.5, 678.5], [959.5, 678.5], [959.5, 676.5], [956.5, 673.5], [956.5, 671.5], [953.5, 671.5], [953.5, 670.5], [951.5, 668.5], [950.5, 668.5], [950.5, 667.5], [948.5, 667.5], [948.5, 666.5]]},
{"id": "tznv9y", "submitted_by": "moabmauler5000", "name": "Liam Womp", "description": "The Womp is a common character in the emotes of Liam, a Twitch streamer and Super Mario 64 speedrunner. This one is slightly scuffed because it wasn't completely finished before the Great Whiteout occured.", "website": "https://www.twitch.tv/liam", "subreddit": "", "center": [1956.5, 1369.5], "path": [[1950.5, 1364.5], [1950.5, 1373.5], [1961.5, 1373.5], [1961.5, 1364.5]]},
{"id": "tzntqq", "submitted_by": "SuuMr", "name": "The Colorman Logo", "description": "The man the myth the Legend the Colorman - a highschool developer mainly known for his work on the Discord bot Dunhammer", "website": "https://colorman.me", "subreddit": "", "center": [268.5, 1741.5], "path": [[261.5, 1747.5], [261.5, 1734.5], [274.5, 1734.5], [274.5, 1747.5], [261.5, 1747.5]]},
{"id": "tznnzg", "submitted_by": "Ylaiv", "name": "Flappy Bird by Viet Nam", "description": "Flappy Bird is a mobile game developed by Vietnamese video game artist and programmer Dong Nguyen. This is drawn by Viet Nam community. But at the end other community try to draw overlap it.", "website": "", "subreddit": "/r/VietNam", "center": [1414.5, 1985.5], "path": [[1401.5, 1972.5], [1401.5, 1997.5], [1427.5, 1997.5], [1427.5, 1973.5]]},
{"id": "tznehh", "submitted_by": "bobanojj", "name": "Latesitoo's hair and glasses (pelo de la grasa)", "description": "drakeoffc's avatar was vandalised to match the look of Latesito/Late, a youtuber and streamer from the hispanic community.", "website": "https://www.youtube.com/c/LateCodOficial", "subreddit": "/r/latesitoo", "center": [1944.5, 623.5], "path": [[1909.5, 616.5], [1932.5, 600.5], [1958.5, 599.5], [1976.5, 612.5], [1987.5, 628.5], [1988.5, 639.5], [1899.5, 640.5], [1902.5, 629.5]]},
{"id": "tzn4d0", "submitted_by": "AnonymousRandPerson", "name": "Brazil-North Macedonia heart", "description": "A heart depicting the flags of Brazil and North Macedonia.", "website": "", "subreddit": "/r/brasil, /r/MKD", "center": [1170.5, 567.5], "path": [[1166.5, 563.5], [1164.5, 565.5], [1164.5, 568.5], [1169.5, 573.5], [1170.5, 573.5], [1175.5, 568.5], [1175.5, 565.5], [1173.5, 563.5], [1171.5, 563.5], [1170.5, 564.5], [1169.5, 564.5], [1168.5, 563.5], [1166.5, 563.5]]},
{"id": "tzn2is", "submitted_by": "AnonymousRandPerson", "name": "Magali", "description": "A character from Monica's Gang. Also known as Maggy.", "website": "https://en.wikipedia.org/wiki/Maggy_(Monica%27s_Gang)", "subreddit": "/r/brasil", "center": [1198.5, 608.5], "path": [[1197.5, 598.5], [1196.5, 599.5], [1195.5, 599.5], [1192.5, 602.5], [1192.5, 609.5], [1191.5, 609.5], [1191.5, 611.5], [1193.5, 611.5], [1193.5, 618.5], [1196.5, 618.5], [1197.5, 617.5], [1198.5, 617.5], [1199.5, 618.5], [1202.5, 618.5], [1202.5, 612.5], [1205.5, 612.5], [1205.5, 610.5], [1204.5, 610.5], [1203.5, 609.5], [1203.5, 602.5], [1200.5, 599.5], [1199.5, 599.5], [1198.5, 598.5], [1197.5, 598.5]]},
{"id": "tzn1t4", "submitted_by": "AnonymousRandPerson", "name": "Cebolinha", "description": "A character in Monica's Gang. Also known as Jimmy Five.", "website": "https://en.wikipedia.org/wiki/Jimmy_Five", "subreddit": "/r/brasil", "center": [1186.5, 607.5], "path": [[1183.5, 597.5], [1182.5, 598.5], [1184.5, 600.5], [1181.5, 600.5], [1181.5, 606.5], [1184.5, 609.5], [1180.5, 609.5], [1180.5, 611.5], [1183.5, 611.5], [1183.5, 616.5], [1182.5, 616.5], [1182.5, 618.5], [1185.5, 618.5], [1186.5, 617.5], [1187.5, 617.5], [1188.5, 618.5], [1191.5, 618.5], [1191.5, 616.5], [1190.5, 616.5], [1190.5, 611.5], [1192.5, 611.5], [1192.5, 609.5], [1189.5, 609.5], [1192.5, 606.5], [1192.5, 600.5], [1188.5, 600.5], [1190.5, 598.5], [1189.5, 597.5], [1187.5, 599.5], [1187.5, 597.5], [1185.5, 597.5], [1185.5, 599.5], [1183.5, 597.5]]},
{"id": "tzn100", "submitted_by": "AnonymousRandPerson", "name": "Mônica", "description": "The titular character from Monica's Gang.", "website": "https://en.wikipedia.org/wiki/Monica_(Monica%27s_Gang)", "subreddit": "/r/brasil", "center": [1174.5, 608.5], "path": [[1173.5, 597.5], [1172.5, 598.5], [1171.5, 598.5], [1168.5, 601.5], [1168.5, 602.5], [1167.5, 603.5], [1167.5, 605.5], [1171.5, 609.5], [1167.5, 609.5], [1167.5, 611.5], [1169.5, 611.5], [1169.5, 618.5], [1172.5, 618.5], [1173.5, 617.5], [1174.5, 617.5], [1175.5, 618.5], [1178.5, 618.5], [1178.5, 611.5], [1180.5, 611.5], [1180.5, 609.5], [1176.5, 609.5], [1180.5, 605.5], [1180.5, 603.5], [1179.5, 602.5], [1179.5, 601.5], [1176.5, 598.5], [1175.5, 598.5], [1174.5, 597.5]]},
{"id": "tzmzcb", "submitted_by": "AnonymousRandPerson", "name": "Cascão", "description": "A character in Monica's Gang. Also known as Smudge.", "website": "https://en.wikipedia.org/wiki/Smudge_(Monica%27s_Gang)", "subreddit": "/r/brasil", "center": [1161.5, 608.5], "path": [[1160.5, 597.5], [1154.5, 603.5], [1154.5, 604.5], [1155.5, 605.5], [1155.5, 606.5], [1157.5, 608.5], [1156.5, 609.5], [1157.5, 610.5], [1157.5, 616.5], [1156.5, 616.5], [1156.5, 618.5], [1159.5, 618.5], [1160.5, 617.5], [1161.5, 617.5], [1162.5, 618.5], [1165.5, 618.5], [1165.5, 616.5], [1164.5, 616.5], [1164.5, 611.5], [1167.5, 611.5], [1167.5, 609.5], [1166.5, 609.5], [1165.5, 608.5], [1165.5, 607.5], [1166.5, 606.5], [1166.5, 605.5], [1167.5, 604.5], [1167.5, 603.5], [1161.5, 597.5]]},
{"id": "tzmxtw", "submitted_by": "AnonymousRandPerson", "name": "Chico Bento", "description": "A character in Monica's Gang. Also known as Chuck Billy.", "website": "https://en.wikipedia.org/wiki/Chuck_Billy_(Chuck_Billy_%27n%27_Folks)", "subreddit": "/r/brasil", "center": [1148.5, 607.5], "path": [[1147.5, 597.5], [1144.5, 600.5], [1143.5, 599.5], [1141.5, 599.5], [1141.5, 601.5], [1143.5, 603.5], [1143.5, 605.5], [1144.5, 606.5], [1144.5, 607.5], [1145.5, 608.5], [1144.5, 609.5], [1142.5, 609.5], [1142.5, 611.5], [1145.5, 611.5], [1145.5, 616.5], [1144.5, 616.5], [1144.5, 618.5], [1147.5, 618.5], [1148.5, 617.5], [1149.5, 617.5], [1150.5, 618.5], [1153.5, 618.5], [1153.5, 616.5], [1152.5, 616.5], [1152.5, 608.5], [1154.5, 606.5], [1154.5, 603.5], [1156.5, 601.5], [1156.5, 599.5], [1154.5, 599.5], [1153.5, 600.5], [1152.5, 600.5], [1152.5, 599.5], [1150.5, 597.5]]},
{"id": "tzmxd1", "submitted_by": "pitaden", "name": "Void Clown", "description": "One of the first art to appear in the top left void, the clown was often attacked by Zfam, a turkish streamer who had hijacked a previous SS13 clown to promote himself. After Zfam's clown was destroyed, he would go on to perform false flag attacks where his community posed as our ally, fortnite, because he believed we had been the ones to destroy his clown. While the clown was often destroyed, it would always return shortly after.", "website": "https://spacestation13.com/", "subreddit": "/r/ss13", "center": [70.5, 104.5], "path": [[60.5, 94.5], [60.5, 109.5], [68.5, 112.5], [68.5, 115.5], [78.5, 115.5], [78.5, 94.5]]},
{"id": "tzmusi", "submitted_by": "pikkkkle", "name": "Pikkle Box", "description": "Small Streamer/Youtuber Pikkle's box was placed here before being replaced by mediavida", "website": "https://twitter.com/pikkle_", "subreddit": "", "center": [1607.5, 1503.5], "path": [[1593.5, 1491.5], [1620.5, 1491.5], [1620.5, 1514.5], [1593.5, 1514.5], [1593.5, 1491.5], [1593.5, 1491.5], [1593.5, 1491.5], [1593.5, 1491.5]]},
{"id": "tzmud1", "submitted_by": "AnonymousRandPerson", "name": "Flag of Uruguay", "description": "", "website": "https://en.wikipedia.org/wiki/Uruguay", "subreddit": "", "center": [1133.5, 610.5], "path": [[1128.5, 605.5], [1128.5, 615.5], [1138.5, 615.5], [1138.5, 605.5], [1128.5, 605.5]]},
{"id": "tzmtmy", "submitted_by": "AnonymousRandPerson", "name": "Flag of Colombia", "description": "", "website": "https://en.wikipedia.org/wiki/Colombia", "subreddit": "", "center": [1119.5, 616.5], "path": [[1114.5, 613.5], [1114.5, 619.5], [1124.5, 619.5], [1124.5, 613.5], [1114.5, 613.5]]},
{"id": "tzmtai", "submitted_by": "AnonymousRandPerson", "name": "Flag of Argentina", "description": "", "website": "https://en.wikipedia.org/wiki/Argentina", "subreddit": "/r/argentina", "center": [1133.5, 616.5], "path": [[1128.5, 613.5], [1128.5, 619.5], [1138.5, 619.5], [1138.5, 613.5]]},
{"id": "tzmt5d", "submitted_by": "Yhrtna", "name": "Halo Master Chief Helmet", "description": "Although the small Master Chief was not a part of the larger efforts by r/Halo, This lone helmet had stood along side the Battle-Bots logo and within the area for a majority of place. Only being moved once 6 pixels to the right after RAOT was covered by WSB. The small helmet was defended by the efforts of many of their neighbors.", "website": "", "subreddit": "/r/Halo", "center": [681.5, 569.5], "path": [[684.5, 566.5], [684.5, 572.5], [678.5, 572.5], [678.5, 566.5]]},
{"id": "tzmsux", "submitted_by": "AnonymousRandPerson", "name": "Flag of Brazil", "description": "", "website": "https://en.wikipedia.org/wiki/Brazil", "subreddit": "/r/brasil", "center": [1119.5, 610.5], "path": [[1114.5, 605.5], [1114.5, 615.5], [1124.5, 615.5], [1124.5, 605.5], [1114.5, 605.5]]},
{"id": "tzmsbl", "submitted_by": "AnonymousRandPerson", "name": "Flag of Argentina", "description": "", "website": "https://en.wikipedia.org/wiki/Argentina", "subreddit": "/r/argentina", "center": [1131.5, 597.5], "path": [[1128.5, 595.5], [1128.5, 599.5], [1134.5, 599.5], [1134.5, 595.5], [1128.5, 595.5]]},
{"id": "tzmrvv", "submitted_by": "AnonymousRandPerson", "name": "Flag of Brazil", "description": "", "website": "https://en.wikipedia.org/wiki/Brazil", "subreddit": "/r/brasil", "center": [1121.5, 597.5], "path": [[1118.5, 595.5], [1118.5, 599.5], [1124.5, 599.5], [1124.5, 595.5], [1118.5, 595.5]]},
{"id": "tzmk4i", "submitted_by": "screensuki", "name": "Screensuki's Mask", "description": "An extremely small creator by the name of \"screensuki\", depicted by a pixel recreation of his personas mask.", "website": "https://www.youtube.com/channel/UCMd4W22oFFf4jYcY2FOKdCw", "subreddit": "", "center": [1400.5, 833.5], "path": [[1398.5, 831.5], [1398.5, 835.5], [1402.5, 835.5], [1402.5, 831.5]]},
{"id": "tzmi8v", "submitted_by": "AnonymousRandPerson", "name": "Argentina-Brazil hearts", "description": "Hearts depicting the flags of Argentina and Brazil", "website": "", "subreddit": "/r/argentina, /r/brasil", "center": [1099.5, 619.5], "path": [[907.5, 613.5], [907.5, 625.5], [1290.5, 625.5], [1290.5, 613.5]]},
{"id": "tzmbdi", "submitted_by": "JerDGold", "name": "Phish Donut Flag", "description": "The red donuts on a blue background represent the dress pattern on the dress that their drummer, Jon Fishman (the band's namesake) wears. It has also been theorized by the band's frontman, Trey Anastasio, that the universe is a donut. He had this revelation while viewing the nine cubes.", "website": "https://www.phish.com", "subreddit": "/r/phish", "center": [67.5, 906.5], "path": [[0.5, 943.5], [0.5, 874.5], [153.5, 874.5], [135.5, 899.5], [134.5, 931.5], [103.5, 929.5], [92.5, 942.5], [1.5, 943.5]]},
{"id": "tzlxcz", "submitted_by": "desneut", "name": "Tindoiimu from Sdorica", "description": "she's not even there anymore", "website": "", "subreddit": "/r/Sdorica", "center": [194.5, 95.5], "path": [[189.5, 94.5], [188.5, 94.5], [200.5, 94.5], [200.5, 96.5], [189.5, 96.5], [188.5, 96.5]]},
{"id": "tzlvc8", "submitted_by": "AnonymousRandPerson", "name": "Melilla heart", "description": "A heart depicting the flag of Melilla, an autonomous city of Spain.", "website": "https://en.wikipedia.org/wiki/Melilla", "subreddit": "/r/esPlace", "center": [1117.5, 281.5], "path": [[1115.5, 277.5], [1112.5, 280.5], [1112.5, 282.5], [1117.5, 287.5], [1122.5, 282.5], [1122.5, 280.5], [1119.5, 277.5], [1118.5, 277.5], [1117.5, 278.5], [1116.5, 277.5], [1115.5, 277.5]]},
{"id": "tzlus7", "submitted_by": "AnonymousRandPerson", "name": "Ceuta heart", "description": "A heart depicting the flag of Ceuta, an autonomous city of Spain.", "website": "https://en.wikipedia.org/wiki/Ceuta", "subreddit": "/r/esPlace", "center": [1109.5, 281.5], "path": [[1107.5, 277.5], [1104.5, 280.5], [1104.5, 282.5], [1109.5, 287.5], [1114.5, 282.5], [1114.5, 280.5], [1111.5, 277.5], [1110.5, 277.5], [1109.5, 278.5], [1108.5, 277.5]]},
{"id": "tzlu40", "submitted_by": "AnonymousRandPerson", "name": "Catalonia heart", "description": "A heart depicting the flag of Catalonia, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Catalonia", "subreddit": "/r/esPlace", "center": [1101.5, 281.5], "path": [[1099.5, 277.5], [1096.5, 280.5], [1096.5, 282.5], [1101.5, 287.5], [1106.5, 282.5], [1106.5, 280.5], [1103.5, 277.5], [1102.5, 277.5], [1101.5, 278.5], [1100.5, 277.5], [1099.5, 277.5]]},
{"id": "tzltmj", "submitted_by": "AnonymousRandPerson", "name": "Aragon heart", "description": "A heart depicting the flag of Aragon, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Aragon", "subreddit": "/r/esPlace", "center": [1093.5, 281.5], "path": [[1091.5, 277.5], [1088.5, 280.5], [1088.5, 282.5], [1093.5, 287.5], [1098.5, 282.5], [1098.5, 280.5], [1095.5, 277.5], [1094.5, 277.5], [1093.5, 278.5], [1092.5, 277.5], [1091.5, 277.5]]},
{"id": "tzlt43", "submitted_by": "AnonymousRandPerson", "name": "Extremadura heart", "description": "A heart depicting the flag of Extremadura, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Extremadura", "subreddit": "/r/esPlace", "center": [1085.5, 281.5], "path": [[1083.5, 277.5], [1080.5, 280.5], [1080.5, 282.5], [1085.5, 287.5], [1090.5, 282.5], [1090.5, 280.5], [1087.5, 277.5], [1086.5, 277.5], [1085.5, 278.5], [1084.5, 277.5], [1083.5, 277.5]]},
{"id": "tzlsji", "submitted_by": "AnonymousRandPerson", "name": "Cantabria heart", "description": "A heart depicting the flag of Cantabria, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Cantabria", "subreddit": "/r/esPlace", "center": [1077.5, 281.5], "path": [[1075.5, 277.5], [1072.5, 280.5], [1072.5, 282.5], [1077.5, 287.5], [1082.5, 282.5], [1082.5, 280.5], [1079.5, 277.5], [1078.5, 277.5], [1077.5, 278.5], [1076.5, 277.5], [1075.5, 277.5]]},
{"id": "tzls01", "submitted_by": "AnonymousRandPerson", "name": "La Rioja heart", "description": "A heart depicting the flag of La Rioja, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/La_Rioja", "subreddit": "/r/esPlace", "center": [1069.5, 281.5], "path": [[1067.5, 277.5], [1064.5, 280.5], [1064.5, 282.5], [1069.5, 287.5], [1074.5, 282.5], [1074.5, 280.5], [1071.5, 277.5], [1070.5, 277.5], [1069.5, 278.5], [1068.5, 277.5], [1067.5, 277.5]]},
{"id": "tzlrgf", "submitted_by": "AnonymousRandPerson", "name": "Balearic Islands heart", "description": "A heart depicting the flag of the Balearic Islands, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Balearic_Islands", "subreddit": "/r/esPlace", "center": [1061.5, 281.5], "path": [[1059.5, 277.5], [1056.5, 280.5], [1056.5, 282.5], [1061.5, 287.5], [1066.5, 282.5], [1066.5, 280.5], [1063.5, 277.5], [1062.5, 277.5], [1061.5, 278.5], [1060.5, 277.5], [1059.5, 277.5]]},
{"id": "tzlpvk", "submitted_by": "AnonymousRandPerson", "name": "Castile and León heart", "description": "A heart depicting the flag of Castile and León, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Castile_and_Le%C3%B3n", "subreddit": "/r/esPlace", "center": [1053.5, 281.5], "path": [[1052.5, 277.5], [1051.5, 277.5], [1048.5, 280.5], [1048.5, 282.5], [1053.5, 287.5], [1058.5, 282.5], [1058.5, 280.5], [1055.5, 277.5], [1054.5, 277.5], [1053.5, 278.5], [1052.5, 277.5]]},
{"id": "tzlovv", "submitted_by": "AnonymousRandPerson", "name": "Community of Madrid heart", "description": "A heart depicting the flag of the Community of Madrid, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Community_of_Madrid", "subreddit": "/r/esPlace", "center": [1045.5, 281.5], "path": [[1043.5, 277.5], [1040.5, 280.5], [1040.5, 282.5], [1045.5, 287.5], [1050.5, 282.5], [1050.5, 280.5], [1047.5, 277.5], [1046.5, 277.5], [1045.5, 278.5], [1044.5, 277.5], [1043.5, 277.5]]},
{"id": "tzlo9r", "submitted_by": "AnonymousRandPerson", "name": "Region of Murcia heart", "description": "A heart depicting the flag of the Region of Murcia, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Region_of_Murcia", "subreddit": "/r/esPlace", "center": [1037.5, 281.5], "path": [[1035.5, 277.5], [1032.5, 280.5], [1032.5, 282.5], [1037.5, 287.5], [1042.5, 282.5], [1042.5, 280.5], [1039.5, 277.5], [1038.5, 277.5], [1037.5, 278.5], [1036.5, 277.5], [1035.5, 277.5]]},
{"id": "tzlne3", "submitted_by": "AnonymousRandPerson", "name": "Navarre heart", "description": "A heart depicting the flag of Navarre, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Navarre", "subreddit": "/r/esPlace", "center": [1029.5, 281.5], "path": [[1027.5, 277.5], [1024.5, 280.5], [1024.5, 282.5], [1029.5, 287.5], [1034.5, 282.5], [1034.5, 280.5], [1031.5, 277.5], [1030.5, 277.5], [1029.5, 278.5], [1028.5, 277.5], [1027.5, 277.5]]},
{"id": "tzlmhr", "submitted_by": "AnonymousRandPerson", "name": "Basque Country heart", "description": "A heart depicting the flag of Basque Country, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Basque_Country_(autonomous_community)", "subreddit": "/r/esPlace", "center": [1021.5, 281.5], "path": [[1019.5, 277.5], [1016.5, 280.5], [1016.5, 282.5], [1021.5, 287.5], [1026.5, 282.5], [1026.5, 280.5], [1023.5, 277.5], [1022.5, 277.5], [1021.5, 278.5], [1020.5, 277.5], [1019.5, 277.5]]},
{"id": "tzlm0n", "submitted_by": "AnonymousRandPerson", "name": "Asturias heart", "description": "A heart depicting the flag of Asturias, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Asturias", "subreddit": "/r/esPlace", "center": [1013.5, 281.5], "path": [[1011.5, 277.5], [1008.5, 280.5], [1008.5, 282.5], [1013.5, 287.5], [1018.5, 282.5], [1018.5, 280.5], [1015.5, 277.5], [1014.5, 277.5], [1013.5, 278.5], [1012.5, 277.5], [1011.5, 277.5]]},
{"id": "tzlkmd", "submitted_by": "AnonymousRandPerson", "name": "Valencian Community flag", "description": "A heart depicting the flag of the Valencian Community, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Valencian_Community", "subreddit": "/r/esPlace", "center": [1005.5, 281.5], "path": [[1003.5, 277.5], [1000.5, 280.5], [1000.5, 282.5], [1005.5, 287.5], [1010.5, 282.5], [1010.5, 280.5], [1007.5, 277.5], [1006.5, 277.5], [1005.5, 278.5], [1004.5, 277.5], [1003.5, 277.5]]},
{"id": "tzljsy", "submitted_by": "AnonymousRandPerson", "name": "Galicia heart", "description": "A heart depicting the flag of Galicia, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Galicia_(Spain)", "subreddit": "/r/esPlace", "center": [997.5, 281.5], "path": [[995.5, 277.5], [992.5, 280.5], [992.5, 282.5], [997.5, 287.5], [1002.5, 282.5], [1002.5, 280.5], [999.5, 277.5], [998.5, 277.5], [997.5, 278.5], [996.5, 277.5], [995.5, 277.5]]},
{"id": "tzliw5", "submitted_by": "AnonymousRandPerson", "name": "Andalusia heart", "description": "A heart depicting the flag of Andalusia, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Andalusia", "subreddit": "/r/esPlace", "center": [989.5, 281.5], "path": [[987.5, 277.5], [984.5, 280.5], [984.5, 282.5], [989.5, 287.5], [994.5, 282.5], [994.5, 280.5], [991.5, 277.5], [990.5, 277.5], [989.5, 278.5], [988.5, 277.5], [987.5, 277.5]]},
{"id": "tzlhsv", "submitted_by": "AnonymousRandPerson", "name": "Canary Islands heart", "description": "A heart depicting the flag of the Canary Islands, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Canary_Islands", "subreddit": "/r/esPlace", "center": [981.5, 281.5], "path": [[979.5, 277.5], [976.5, 280.5], [976.5, 282.5], [981.5, 287.5], [986.5, 282.5], [986.5, 280.5], [983.5, 277.5], [982.5, 277.5], [981.5, 278.5], [980.5, 277.5], [979.5, 277.5]]},
{"id": "tzlgxe", "submitted_by": "AnonymousRandPerson", "name": "Castilla-La Mancha heart", "description": "A heart depicting the flag of Castilla-La Mancha, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Castilla%E2%80%93La_Mancha", "subreddit": "/r/esPlace", "center": [973.5, 281.5], "path": [[971.5, 277.5], [968.5, 280.5], [968.5, 282.5], [973.5, 287.5], [978.5, 282.5], [978.5, 280.5], [975.5, 277.5], [974.5, 277.5], [973.5, 278.5], [972.5, 277.5], [971.5, 277.5]]},
{"id": "tzlfky", "submitted_by": "Gonza0001", "name": "Bananirou", "description": "The streamer \"Bananirou\" doing a reference about the meme of his channel \"777\"", "website": "", "subreddit": "/r/thevirginzone", "center": [1165.5, 203.5], "path": [[1206.5, 249.5], [1111.5, 249.5], [1111.5, 200.5], [1144.5, 200.5], [1145.5, 145.5], [1202.5, 146.5], [1202.5, 154.5], [1201.5, 153.5], [1200.5, 154.5], [1199.5, 154.5], [1199.5, 158.5], [1200.5, 158.5], [1201.5, 159.5], [1202.5, 161.5], [1202.5, 162.5], [1204.5, 162.5], [1206.5, 162.5]]},
{"id": "tzlffy", "submitted_by": "AnonymousRandPerson", "name": "Extremadura heart", "description": "A heart depicting the flag of Extremadura, an autonomous community of Spain.", "website": "https://en.wikipedia.org/wiki/Extremadura", "subreddit": "/r/esPlace", "center": [965.5, 281.5], "path": [[963.5, 277.5], [960.5, 280.5], [960.5, 282.5], [965.5, 287.5], [970.5, 282.5], [970.5, 280.5], [967.5, 277.5], [966.5, 277.5], [965.5, 278.5], [964.5, 277.5], [963.5, 277.5]]},
{"id": "tzleq2", "submitted_by": "AnonymousRandPerson", "name": "Second Spanish Republic heart", "description": "A heart depicting the flag of the Second Spanish Republic, Spain's governance from 1931 to 1939.", "website": "https://en.wikipedia.org/wiki/Second_Spanish_Republic", "subreddit": "/r/esPlace", "center": [957.5, 281.5], "path": [[955.5, 277.5], [952.5, 280.5], [952.5, 282.5], [957.5, 287.5], [962.5, 282.5], [962.5, 280.5], [959.5, 277.5], [958.5, 277.5], [957.5, 278.5], [956.5, 277.5], [955.5, 277.5]]},
{"id": "tzlddy", "submitted_by": "superdesu", "name": "SEVENTEEN leader line emojis", "description": "Representative emojis for the sub-unit leaders of the South Korean boy group SEVENTEEN: S.Coups (cherry), Hoshi (tiger), and Woozi (rice). Collaboration work with EiE (above).", "website": "https://twitter.com/pledis_17", "subreddit": "/r/seventeen", "center": [1705.5, 895.5], "path": [[1697.5, 892.5], [1697.5, 897.5], [1713.5, 897.5], [1713.5, 892.5], [1697.5, 892.5]]},
{"id": "tzlc6o", "submitted_by": "AnonymousRandPerson", "name": "Spain heart", "description": "A heart depicting the flag of Spain.", "website": "https://en.wikipedia.org/wiki/Spain", "subreddit": "/r/esPlace", "center": [949.5, 281.5], "path": [[947.5, 277.5], [944.5, 280.5], [944.5, 282.5], [949.5, 287.5], [954.5, 282.5], [954.5, 280.5], [951.5, 277.5], [950.5, 277.5], [949.5, 278.5], [948.5, 277.5], [947.5, 277.5]]},
{"id": "tzlba4", "submitted_by": "superdesu", "name": "SEVENTEEN", "description": "Logo of the 13-member South Korean boy group from Pledis Entertainment, SEVENTEEN, drawn in fandom colors (rose quartz and serenity). The corner features a Caratbong, the group's official lightstick.", "website": "https://twitter.com/pledis_17", "subreddit": "/r/seventeen", "center": [1713.5, 886.5], "path": [[1709.5, 880.5], [1709.5, 891.5], [1717.5, 891.5], [1717.5, 880.5], [1709.5, 880.5]]},
{"id": "tzl6ex", "submitted_by": "AnonymousRandPerson", "name": "Portugal-Spain heart", "description": "A heart depicting the flags of Portugal and Spain.", "website": "", "subreddit": "/r/portugal, /r/esPlace", "center": [920.5, 308.5], "path": [[918.5, 304.5], [915.5, 307.5], [915.5, 309.5], [920.5, 314.5], [925.5, 309.5], [925.5, 307.5], [922.5, 304.5], [921.5, 304.5], [920.5, 305.5], [919.5, 304.5], [918.5, 304.5]]},
{"id": "tzkw7w", "submitted_by": "-Hersch", "name": "Mokoko Seed", "description": "A small hidden Mokoko Seed among the Alliance. It comes from the game Lost Ark which recently had its western release. Like in the game the Mokoko Seed is small and hidden.", "website": "", "subreddit": "/r/lostarkgame", "center": [1166.5, 376.5], "path": [[1163.5, 379.5], [1167.5, 379.5], [1167.5, 378.5], [1168.5, 378.5], [1168.5, 377.5], [1169.5, 376.5], [1169.5, 375.5], [1169.5, 374.5], [1168.5, 374.5], [1168.5, 373.5], [1168.5, 372.5], [1169.5, 371.5], [1170.5, 371.5], [1170.5, 370.5], [1171.5, 370.5], [1171.5, 369.5], [1172.5, 369.5], [1170.5, 369.5], [1169.5, 370.5], [1169.5, 371.5], [1168.5, 372.5], [1166.5, 372.5], [1166.5, 371.5], [1165.5, 371.5], [1164.5, 372.5], [1165.5, 372.5], [1166.5, 372.5], [1167.5, 372.5], [1168.5, 372.5], [1168.5, 373.5], [1168.5, 374.5], [1167.5, 374.5], [1167.5, 375.5], [1166.5, 375.5], [1164.5, 375.5], [1164.5, 376.5], [1163.5, 376.5], [1163.5, 377.5], [1162.5, 377.5], [1162.5, 378.5]]},
{"id": "tzkp5c", "submitted_by": "Big_Jumping_Spider", "name": "Meg", "description": "A vandalized red sign. It said \"R0DS\" on it, with a small dog beside it. It was a tribute to the r0ds dead dog. The sign was vandalized by the French with the word \"chenil\" (kennel) minutes after the end of r/place, resulting in this mess in the last screenshot.", "website": "", "subreddit": "", "center": [1362.5, 476.5], "path": [[1350.5, 473.5], [1373.5, 473.5], [1373.5, 479.5], [1350.5, 479.5]]},
{"id": "tzknjm", "submitted_by": "Yakkrussel", "name": "Tin Pot Man (R2DA)", "description": "Tin Pot man from the popular Roblox game Reasons 2 Die Awakening, without his iconic green shirt.", "website": "", "subreddit": "/r/R2DA", "center": [165.5, 679.5], "path": [[162.5, 674.5], [168.5, 674.5], [168.5, 677.5], [169.5, 677.5], [170.5, 675.5], [171.5, 676.5], [171.5, 677.5], [170.5, 677.5], [170.5, 678.5], [169.5, 679.5], [168.5, 680.5], [167.5, 681.5], [167.5, 685.5], [166.5, 685.5], [165.5, 684.5], [164.5, 685.5], [163.5, 685.5], [163.5, 681.5], [163.5, 683.5], [161.5, 683.5], [161.5, 679.5], [162.5, 679.5], [162.5, 674.5]]},
{"id": "tzkmad", "submitted_by": "TRFlippeh", "name": "Counter Strike: Global Offensive shortened to CSGO", "description": "Name of popular FPS made by Valve.", "website": "", "subreddit": "/r/GlobalOffensive", "center": [1732.5, 1411.5], "path": [[1727.5, 1409.5], [1727.5, 1413.5], [1737.5, 1413.5], [1737.5, 1409.5], [1730.5, 1409.5]]},
{"id": "tzkj0y", "submitted_by": "Vickers-Viscount", "name": "University of Toronto", "description": "Coat of Arms of the University of Toronto (UofT), a public research university with campuses Toronto and Mississauga, Ontario. Canada. Meric Gertler (Our Lord and Saviour) is the president of the university.", "website": "https://www.utoronto.ca", "subreddit": "/r/uoft", "center": [1272.5, 45.5], "path": [[1264.5, 36.5], [1264.5, 51.5], [1272.5, 58.5], [1280.5, 51.5], [1280.5, 36.5]]},
{"id": "tzkgsp", "submitted_by": "Limp_Drop4391", "name": "Igglepiggle", "description": "Igglepiggle, a character from British Children's TV Show In The Night Garden, lovingly kept by someone", "website": "", "subreddit": "", "center": [690.5, 1444.5], "path": [[679.5, 1449.5], [679.5, 1446.5], [680.5, 1446.5], [680.5, 1445.5], [682.5, 1445.5], [681.5, 1447.5], [682.5, 1448.5], [681.5, 1448.5], [680.5, 1449.5], [680.5, 1449.5], [679.5, 1449.5], [681.5, 1449.5], [681.5, 1449.5], [681.5, 1448.5], [682.5, 1448.5], [682.5, 1447.5], [682.5, 1444.5], [682.5, 1442.5], [683.5, 1442.5], [683.5, 1438.5], [684.5, 1438.5], [684.5, 1438.5], [684.5, 1436.5], [687.5, 1436.5], [687.5, 1437.5], [687.5, 1436.5], [691.5, 1439.5], [691.5, 1442.5], [692.5, 1442.5], [692.5, 1446.5], [691.5, 1446.5], [689.5, 1447.5], [691.5, 1447.5], [693.5, 1444.5], [694.5, 1443.5], [694.5, 1443.5], [698.5, 1442.5], [698.5, 1443.5], [699.5, 1444.5], [699.5, 1451.5], [695.5, 1451.5], [695.5, 1450.5], [694.5, 1450.5], [694.5, 1449.5], [694.5, 1450.5], [694.5, 1449.5], [689.5, 1450.5], [688.5, 1450.5], [689.5, 1450.5], [684.5, 1445.5], [683.5, 1446.5], [682.5, 1446.5]]},
{"id": "tzkcii", "submitted_by": "MuFuDa19", "name": "University of Minnesota", "description": "The University of Minnesota, Twin Cities is a public land-grant research university in the Twin Cities of Minneapolis and Saint Paul, Minnesota. The Twin Cities campus comprises locations in Minneapolis and Falcon Heights, a suburb of St. Paul, approximately 3 miles apart. Ski-U-Mah! Go Gophes!", "website": "https://twin-cities.umn.edu/", "subreddit": "/r/uofm", "center": [1520.5, 774.5], "path": [[1508.5, 767.5], [1508.5, 780.5], [1531.5, 780.5], [1531.5, 768.5], [1508.5, 768.5]]},
{"id": "tzka65", "submitted_by": "AdrianValerian", "name": "Morrocoy Turtle", "description": "A species of Colombian Turtle, tipically it´s found on warm weathers and in the colombian coast", "website": "", "subreddit": "", "center": [384.5, 1334.5], "path": [[377.5, 1328.5], [377.5, 1330.5], [377.5, 1331.5], [376.5, 1331.5], [375.5, 1331.5], [375.5, 1332.5], [376.5, 1333.5], [376.5, 1336.5], [377.5, 1337.5], [378.5, 1337.5], [379.5, 1338.5], [380.5, 1338.5], [391.5, 1339.5], [393.5, 1336.5], [393.5, 1334.5], [391.5, 1334.5], [390.5, 1332.5], [389.5, 1331.5], [387.5, 1330.5], [385.5, 1330.5], [384.5, 1331.5], [383.5, 1332.5], [382.5, 1331.5], [382.5, 1328.5], [377.5, 1328.5]]},
{"id": "tzjzrq", "submitted_by": "Limp_Drop4391", "name": "A Tiny Frog", "description": "Just the cutest lil guy", "website": "", "subreddit": "", "center": [711.5, 293.5], "path": [[707.5, 294.5], [707.5, 293.5], [707.5, 292.5], [709.5, 293.5], [708.5, 291.5], [709.5, 291.5], [710.5, 291.5], [710.5, 290.5], [711.5, 290.5], [712.5, 290.5], [712.5, 291.5], [713.5, 291.5], [713.5, 292.5], [714.5, 292.5], [714.5, 293.5], [714.5, 293.5], [715.5, 293.5], [715.5, 294.5], [715.5, 295.5], [714.5, 295.5], [713.5, 295.5], [713.5, 295.5], [713.5, 294.5], [712.5, 294.5], [712.5, 295.5], [711.5, 295.5], [710.5, 295.5], [710.5, 295.5], [710.5, 294.5], [710.5, 295.5], [709.5, 295.5], [708.5, 295.5], [707.5, 295.5], [707.5, 292.5], [707.5, 295.5], [710.5, 295.5], [710.5, 295.5], [710.5, 294.5], [710.5, 295.5], [710.5, 294.5]]},
{"id": "tzxu63", "submitted_by": "Johnathan_Phil", "name": "Special Tree in a Box", "description": "A special tree with two Ms right next to the tree within a grey box. A special tree is a type of tree that transports people across the Horned Serpent Megastructure (or Wonderland). The two Ms means Monument Mythos, an analog horror series made by Alex Cansanas.", "website": "https://m.youtube.com/c/ALEXKANSAS", "subreddit": "/r/THEMONUMENTMYTHOS", "center": [1253.5, 1325.5], "path": [[1245.5, 1320.5], [1260.5, 1320.5], [1260.5, 1330.5], [1245.5, 1330.5]]},
{"id": "tzxsyh", "submitted_by": "Martin-Dutchie", "name": "Klonkie", "description": "A can of beer of the dutch beer brand \"De Klok\" (often referred to as a \"Klonkie\"). It is a budget beer brand of Grolsch, and refers to the name of the old brewery that it was made in. It has a big cultural presence under students, jokingly claiming the beer is drunk best at room temperature. This escalated to it now being featured on the cans itself \"for those who know\" as the recommended beverage's temperature.", "website": "", "subreddit": "/r/placenl", "center": [965.5, 1960.5], "path": [[958.5, 1951.5], [958.5, 1969.5], [971.5, 1969.5], [971.5, 1951.5], [958.5, 1951.5]]}
]

Binary file not shown.

Before

Width:  |  Height:  |  Size: 15 KiB

After

Width:  |  Height:  |  Size: 15 KiB

View file

@ -20,18 +20,33 @@
<title>The 2022 /r/place Atlas</title>
<meta name="description" content="An interactive map of Reddit's 2022 /r/place, with information to each artwork of the canvas.">
<meta name="author" content="Roland Rytz (2022 by Stefano#7366)">
<meta name="keywords" content="reddit, /r/place 2022">
<meta name="application-name" content="The /r/place Atlas 2022">
<meta name="robots" content="index, follow">
<meta property="og:title" content="The 2022 /r/place Atlas">
<meta property="og:type" content="website">
<meta property="og:url" content="https://place-atlas.stefanocoding.me/">
<meta property="og:image" content="https://place-atlas.stefanocoding.me/_img/logo.png">
<meta property="og:image:type" content="image/png">
<meta property="og:image:width" content="512">
<meta property="og:image:height" content="512">
<meta property="og:image:alt" content="The /r/place Atlas logo">
<meta property="og:description" content="An interactive map of Reddit's 2022 /r/place, with information to each artwork of the canvas.">
<!-- <meta name="google-site-verification" content="gZGHpBSMzffAbIn0qB8b00We6EwSGkDTfDoQVv-NWss"/> -->
<meta name="viewport" content="width=device-width, height=device-height, initial-scale=1, minimum-scale=1, maximum-scale=1, shrink-to-fit=no"> <!-- user-scalable=no -->
<meta name="mobile-web-app-capable" content="yes">
<meta name="color-scheme" content="dark">
<link rel="apple-touch-icon" href="_img/apple-touch-icon.png" sizes="180x180">
<link rel="icon alternate" href="_img/favicon.png" type="image/png" class="js-site-favicon">
<link rel="icon" href="_img/favicon.svg" type="image/svg+xml" class="js-site-favicon">
<link href="./_css/style.css" rel="stylesheet" type="text/css" media="all">
<link rel="manifest" href="./manifest.webmanifest">
<script type="text/javascript" src="./_js/favicon.js" defer></script>
<script type="application/ld+json">
{
"@context": "http://schema.org",
@ -67,7 +82,7 @@
<div id="wrapper">
<header>
<a href="./">
<img id="logo" src="./_img/logo.png" height="50" width="50" alt="Logo">
<img id="logo" src="./_img/logo.svg" height="50" width="50" alt="Logo">
<!-- If you wonder why I shrink the image in html,
it's because this is the image that will be used
by reddit and the like as the thumbnail for the site.

View file

@ -1,6 +1,6 @@
{
"theme_color": "#f69435",
"background_color": "#f69435",
"theme_color": "#923b15",
"background_color": "#111111",
"display": "minimal-ui",
"scope": "/",
"start_url": "/",
@ -10,23 +10,27 @@
"icons": [
{
"src": "_img/pwa/icon-192x192.png",
"sizes": "192x192",
"type": "image/png"
"sizes": "196x196",
"type": "image/png",
"purpose": "any"
},
{
"src": "_img/pwa/icon-256x256.png",
"sizes": "256x256",
"type": "image/png"
},
{
"src": "_img/pwa/icon-384x384.png",
"sizes": "384x384",
"type": "image/png"
"src": "_img/pwa/icon-maskable-192x192.png",
"sizes": "196x196",
"type": "image/png",
"purpose": "maskable"
},
{
"src": "_img/pwa/icon-512x512.png",
"sizes": "512x512",
"type": "image/png"
"type": "image/png",
"purpose": "any"
},
{
"src": "_img/pwa/icon-maskable-512x512.png",
"sizes": "512x512",
"type": "image/png",
"purpose": "maskable"
}
]
}